/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #777777;
    font-weight: 500;
    background: #ffffff;
    font-family: 'Quicksand', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #4a4c70;
}

a {
    color: #4a4c70;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #FDBE33;
    outline: none;
    text-decoration: none;
}



.btn.btn-custom {
    padding: 12px 20px;
    text-align: center; 
   font-size: 16px;
    font-weight: 500;
    color: #777777;
    border-radius: 0;
    border: 2px solid #FDBE33;
    box-shadow: inset 0 0 0 0 #FDBE33;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn.btn-custom:hover {
    color: #20212B;
    box-shadow: inset 0 0 0 30px #FDBE33;
}

.btn.btn-loadmore {
    padding: 12px 20px;
    text-align: center; 
   font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 0;
    border: 2px solid #fde4ae;
    border-radius: 4px;
    box-shadow: inset 0 0 0 0 #FDBE33;
    transition: ease-out 0.3s;
    background-color: #cda45e;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
    text-align: center;
}

.btn.btn-loadmore:hover {
    color: #8e8f9f;
    box-shadow: inset 0 0 0 30px #FDBE33;
}


.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1700px;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #FDBE33;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    background: #FDBE33;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #4a4c70;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #4a4c70;
}

.back-to-top:hover i {
    color: #FDBE33;
}



/****************************************************************** Top Bar CSS ******************************************************************************/
/* 
.top-bar {
  background: linear-gradient(135deg, #4a4c70 0%, #2a2c39 100%);
  color: white;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.top-bar.scrolled {
  opacity: 0.9;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}




.dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.contact-info {
    display: flex;
    gap: 15px; 
    align-items: center;
}

.contact-item1 {
    display: flex;
    align-items: center;
    gap: 6px; 
    font-size: 13px;
    line-height: 1;
    padding: 4px 0; 
}

.contact-icon {
    color: #FDBE33;
    font-size: 13px; 
    width: 16px;
    text-align: center;
    transition: all 0.2s ease;
}

.contact-item1 span {
    color: rgba(255,255,255,0.9);
    font-weight: 500; 
    transition: all 0.2s ease;
}

.contact-item1:hover .contact-icon {
    transform: translateY(-1px);
    color: white;
}

.contact-item1:hover span {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #FDBE33;
  transform: translateY(-2px);
}

.main-nav {
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.main-nav.sticky {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.logo-link {
 

  display: flex;
    align-items: center;
    height: 100%;
    padding: 5px 0;
}

.logo-img {


    height: 50px; 
    width: auto;
    max-width: 180px; 
    object-fit: contain;
    transition: all 0.3s ease;
}

.main-nav.sticky .logo-img {
      height: 40px; 

}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #4a4c70;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-link {
  color: #4a4c70;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #FDBE33;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #FDBE33;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: #4a4c70;
  font-weight: 600;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-toggle:hover,
.dropdown-toggle.active {
  color: #FDBE33;
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown-arrow.open {
  transform: rotate(180deg);
}

/* Ensure dropdown menu has proper positioning context */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 5px;
}

/* Desktop dropdown behavior - controlled by React state */

.dropdown-item {
  display: block;
  padding: 8px 20px;
  color: #4a4c70;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(205, 164, 94, 0.1);
  color: #FDBE33;
}


@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 80px 20px 20px;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 15px;
  }
}



/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, #4a4c70 0%, #2a2c39 100%);
  color: white;
  padding: 10px 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.top-bar.scrolled {
  opacity: 0.9;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-info {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-item1 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    line-height: 1;
    padding: 4px 0;
    white-space: nowrap;
}

.contact-icon {
    color: #FDBE33;
    font-size: 13px;
    width: 16px;
    text-align: center;
    transition: all 0.2s ease;
}

.contact-item1 span {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.contact-item1:hover .contact-icon {
    transform: translateY(-1px);
    color: white;
}

.contact-item1:hover span {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #FDBE33;
  transform: translateY(-2px);
}

/* Main Navigation */
.main-nav {
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.main-nav.sticky {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 5px 0;
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.main-nav.sticky .logo-img {
  height: 40px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #4a4c70;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-link {
  color: #4a4c70;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #FDBE33;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #FDBE33;
}

/* Dropdown Styles - Consolidated */

/* Mobile Menu */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 80px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .dropdown {
    width: 100%;
  }
  
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
  }
  
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 15px;
    opacity: 1;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    /* Override desktop hover behavior on mobile */
    opacity: 1 !important;
    visibility: visible !important;
  }

  .dropdown-menu.open {
    display: block;
    height: auto;
    visibility: visible;
  }
  
  .nav-link {
    width: 100%;
    padding: 10px 0;
  }
  
  .nav-link::after {
    display: none;
  }
}

/* Desktop dropdown behavior - ensure proper display on larger screens */
@media (min-width: 993px) {
  .dropdown-menu {
    /* Ensure desktop dropdowns are properly positioned */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
    z-index: 1000;
    /* Default state - hidden */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  /* Click-based dropdown behavior on desktop */
  .dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
  }
  
  /* Ensure dropdown arrow rotates on active state */
  .dropdown-arrow.open {
    transform: rotate(180deg);
  }
  
  /* Hover effects for desktop */
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
  }
  
  .dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
  
  /* Ensure dropdown items are properly styled */
  .dropdown-item {
    display: block;
    padding: 8px 20px;
    color: #4a4c70;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  
  .dropdown-item:hover {
    background: rgba(205, 164, 94, 0.1);
    color: #FDBE33;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .top-bar {
    padding: 15px 0;
  }
  
  .top-bar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }
  
  .contact-item1 {
    font-size: 12px;
    gap: 8px;
  }
  
  .contact-icon {
    font-size: 12px;
    width: 14px;
  }
  
  .social-links {
    width: 100%;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .social-icon {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .top-bar {
    padding: 12px 0;
  }
  
  .top-bar-content {
    gap: 12px;
  }
  
  .contact-info {
    gap: 6px;
  }
  
  .contact-item1 {
    font-size: 11px;
    gap: 6px;
  }
  
  .contact-icon {
    font-size: 11px;
    width: 12px;
  }
  
  .social-links {
    gap: 15px;
  }
  
  .social-icon {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .nav-menu {
    width: 100%;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .main-nav.sticky .logo-img {
    height: 35px;
  }
  
  /* Additional mobile top bar adjustments */
  .top-bar .container {
    padding: 0 15px;
  }
  
  .top-bar-content {
    padding: 0 5px;
  }
  
  .contact-info {
    margin-bottom: 8px;
  }
  
  .social-links {
    margin-top: 5px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .top-bar {
    padding: 10px 0;
  }
  
  .top-bar-content {
    gap: 10px;
  }
  
  .contact-info {
    gap: 5px;
  }
  
  .contact-item1 {
    font-size: 10px;
    gap: 5px;
  }
  
  .contact-icon {
    font-size: 10px;
    width: 11px;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-icon {
    font-size: 15px;
  }
  
  /* Container adjustments for very small screens */
  .top-bar .container {
    padding: 0 10px;
  }
  
  .top-bar-content {
    padding: 0 3px;
  }
}
/* -------------------------------------------------------TOP BANNER STYLES -----------------------------------------------*/
/* ==================== */

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 800px;
  overflow: hidden;
  margin-bottom: 92px;
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}

/* .slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
} */

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.4); */
    background: linear-gradient(135deg, rgba(33, 33, 33, 0.9) 0%, rgba(205,164,94,0.4) 100%);

}
/* .slide-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
} */
.slide-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.slide-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(255, 191, 52, 0.9);
  
  color: rgb(202, 202, 202);

}

/* .slide-description {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
} */

.slide-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 80%;
    margin: 0 auto 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    color: rgb(222, 220, 220);
}

.slide-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #FDBE33;
  color: #2a2c39;
  border: 2px solid #FDBE33;
}

.btn-primary:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-video {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(5px);
}

.btn-video:hover {
  background: rgba(255, 255, 255, 0.3);
}

.play-icon {
  margin-right: 8px;
}

.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  transform: scale(1.2);
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 2;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .slide-title {
    font-size: 36px;
  }
  
  .slide-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 80vh;
  }
  
  .slide-title {
    font-size: 32px;
  }
  
  .slide-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn {
    width: 100%;
    padding: 10px 20px;
  }

  
}

@media (max-width: 576px) {
  .slide-title {
    font-size: 28px;
  }
  
  .slide-indicators {
    bottom: 20px;
  }
}

/*******************************/
/******* Page Header CSS *******/
/*******************************/
/* .cardvideo{
    margin: 1em auto;
    border: 2px solid #cda45e; 
    border-radius: 8px; 
} */
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 70px 0 90px 0;
    height: 550px; 

    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/top1.jpeg);
    background-attachment: fixed;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% 75%;
    /* background-size: contain; */
}

.page-header h2 {
    position: relative;
    color: #FDBE33;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 120px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #FDBE33;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header a:hover {
    color: #FDBE33;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    /* padding: 70px 0 90px 0; */
    margin-top: 5px;

        background-size:100% 35%; /* Ensure the image is fully visible on small screens */
        background-position: top center; /* Focus on the top of the image */
        /* padding: 120px 0 50px 0;  */
        min-height: 200px; /* Reduce height on smaller screens if needed */
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
        
    }
    
    .page-header a {
        font-size: 18px;
    }
}
 


/* topbanner home */
/* Home banner container */
/* General styling */
.homebanner-header {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .carousel-item {
    height: 500px;
    position: relative;
    min-height: 300px;

  }
  
  .carousel-bg {
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    min-height: 300px;

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;


  }
  
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .banner-content {
    text-align: center;
    color: white;
    max-width: 800px;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
    color: #cda45e;
    margin-bottom: 20px;
  }
  
  .banner-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .banner-buttons .btn-custom {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    color: white;
    background-color: #cda45e;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .banner-buttons .btn-custom:hover {
    background-color: #a58448;
  }
  
  /* Modal styling */
  .video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .video-content {
    position: relative;
    width: 80%;
    max-width: 700px;
    background: white;
    padding: 20px;
    border-radius: 10px;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: #cda45e;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  @media (max-width: 767.98px) {
    .carousel-item {
      height: 300px;
    }
  
    .banner-content h1 {
      font-size: 1.8rem;
    }
  
    .banner-content p {
      font-size: 0.9rem;
    }
  
    .banner-buttons .btn-custom {
      font-size: 0.8rem;
      padding: 8px 15px;
    }
  
    .video-content iframe {
      height: 250px;
    }
  }
  

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: #FDBE33;
}

.section-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/********************************************************************** About CSS **********************************************************************/

/* .about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    width: 100%;
    height: 70vh;
    border-radius: 15px;    

}


@media (max-width: 768px) {
    .about .about-img {
        width: 100%;
        height: 46vh;
        border-radius: 15px;    
    
    }
}

@media (max-width: 576px) {
    .about .about-img {
        width: 100%;
        height: 46vh;
        border-radius: 15px;    
    
    }
}


.about .about-tab {
    width: 100%;
}

.about .about-tab .nav.nav-pills .nav-link {
    padding: 8px;
    font-weight: 600;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    transition: none;
}

.about .about-tab .nav.nav-pills .nav-link:hover,
.about .about-tab .nav.nav-pills .nav-link.active {
    color: #FDBE33 ;
    padding-bottom: 7px;
    border-bottom: 3px solid #FDBE33;
}


.about .about-tab .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.about .about-tab .tab-content .container {
    padding: 0;
}

@media (max-width: 991.98px) {
    .about .section-header {
        margin-top: 30px;
    }
} */

/* Glass Morphism About Section */
/* Modern About Section */
/* Elegant About Section */
.elegant-about-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.elegant-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyMzgsMjM4LDI0OCwwLjEpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
    opacity: 0.3;
    z-index: 0;
}

.elegant-about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.elegant-about-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.elegant-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    color: #343a40;
}

.elegant-title-gradient {
    background: linear-gradient(90deg, #cda45e 0%, #FDBE33 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.elegant-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #cda45e 0%, #FDBE33 100%);
    border-radius: 2px;
}

.elegant-section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout */
.elegant-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.elegant-about-image-col {
    display: none;
}

.elegant-about-content-col {
    width: 100%;
}

/* Tabs Navigation */
.elegant-tabs-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.elegant-tab-button {
    padding: 12px 24px;
    background: white;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.elegant-tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(205, 164, 94, 0.1);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.elegant-tab-button:hover::before {
    opacity: 1;
}

.elegant-tab-button.active {
    background: linear-gradient(135deg, #cda45e 0%, #FDBE33 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(205, 164, 94, 0.3);
}

.elegant-tab-button.active .elegant-tab-icon {
    color: white;
}

.elegant-tab-icon {
    font-size: 1rem;
    color: #cda45e;
    transition: all 0.3s ease;
}

/* Tabs Content */
.elegant-tabs-content {
    width: 100%;
    position: relative;
}

.elegant-tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.elegant-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.elegant-tab-content-inner {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.elegant-tab-content-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #cda45e, #FDBE33);
}

.elegant-tab-title {
    font-size: 1.5rem;
    color: #343a40;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.elegant-tab-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #cda45e, #FDBE33);
    border-radius: 3px;
}

.elegant-tab-text {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1rem;
}

.elegant-tab-text p {
    margin-bottom: 20px;
}

.elegant-read-more-link {
    display: inline-flex;
    align-items: center;
    color: #cda45e;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.elegant-read-more-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #cda45e;
    transition: width 0.3s ease;
}

.elegant-read-more-link:hover {
    color: #FDBE33;
}

.elegant-read-more-link:hover::after {
    width: 100%;
}

.elegant-arrow-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.elegant-read-more-link:hover .elegant-arrow-icon {
    transform: translateX(5px);
}

/* Image Styles */
.elegant-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.elegant-about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.elegant-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(205, 164, 94, 0.3);
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(205,164,94,0.4) 100%);

    opacity: 0;
    transition: opacity 0.5s ease;
}

.elegant-image-wrapper:hover .elegant-about-image {
    transform: scale(1.05);
}

.elegant-image-wrapper:hover .elegant-image-overlay {
    opacity: 1;
}

/* Desktop Styles */
@media (min-width: 992px) {
    .elegant-about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .elegant-about-image-col {
        display: block;
    }
    
    .elegant-tabs-navigation {
        justify-content: flex-start;
    }
    
    .elegant-tab-content-inner {
        padding: 40px;
    }
    
    .elegant-section-title {
        font-size: 3rem;
    }
    
    .elegant-section-subtitle {
        font-size: 1.2rem;
    }
}

/* Animation Enhancements */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

/*******************************/
/********* **************************************************************Service CSS ****************************************/
/* .service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
    transition: .3s;
}

.service .service-icon {
    position: relative;
    width: 60px;
}

.service .service-icon i {
    position: relative;
    display: block;
    color: #FDBE33;
    font-size: 60px;
    line-height: 60px;
    margin-top: 5px;
}

.service .service-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.service .service-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 10px);
    top: 5px;
    left: 0;
    background: rgba(0, 0, 0, .1);
}

.service .service-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: #FDBE33;
}

.service .service-text h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service .service-text p {
    margin: 0;
} */
/* Premium Services Section */
.premium-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f8 100%);
    position: relative;
    overflow: hidden;
}

.premium-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyMDQsMTkwLDUxLDAuMDUpIj48L3JlY3Q+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIj48L3JlY3Q+PC9zdmc+');
    opacity: 0.6;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2a2c39;
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(90deg, #2a2c39, #4a4c70);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.3;
}

.section-title1 {
    font-size: 35px;
    font-weight: 400;
    color: #2a2c39;
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(90deg, #2a2c39, #4a4c70);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.3;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #cda45e 0%, #f8b500 100%);
    margin: 0 auto 25px;
    border-radius: 2px;
    transform-origin: center;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #6a6c7a;
    font-size: 18px;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Service Card */
.service-card {
    perspective: 1000px;
    height: 100%;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    overflow: hidden;
}

.service-card:hover .card-inner {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.service-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.icon-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #cda45e;
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(205, 164, 94, 0.1);
    border-radius: 50%;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .icon-bg {
    transform: scale(1);
    background: rgba(205, 164, 94, 0.2);
}

.service-content {
    text-align: center;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2a2c39;
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #cda45e;
    transition: all 0.3s ease;
}

.service-card:hover .service-title::after {
    width: 80px;
}

.service-description {
    color: #6a6c7a;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 15px;
}

.service-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #cda45e 0%, #f8b500 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-hover-effect {
    transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .service-icon-container {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .icon-wrapper {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .premium-services {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .premium-services {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title1 {
        font-size: 18px;
    }
    
    .service-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .icon-wrapper {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .card-inner {
        padding: 30px 20px;
    }
}

/*********--------------------------------------------------------------- Donate CSS----------------------------------------------- **********/
/* 
.donate {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: rgba(0, 0, 0, .5);
}
.donate-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.luxury-view-all-btn:hover .donate-icon {
    transform: scale(1.1);
}
.donate .donate-content {
    padding: 45px 0 15px 0;
}

.container .donate {
    margin: 90px 0;
}

.container .donate .donate-content {
    padding: 45px 30px 15px 30px;
}

.donate .donate-content .section-header {
    margin-bottom: 30px;
}

.donate .donate-content .section-header h2 {
    color: #ffffff;
}

.donate .donate-text p {
    color: #ffffff;
    font-size: 18px;
}

.donate .donate-form {
    padding: 90px 30px;
    background: #FDBE33;
}

.donate .donate-form .control-group {
    margin-bottom: 15px;
}

.donate .donate-form .form-control {
    height: 60px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 0;
    border: 1px solid #ffffff;
    background: transparent;
}

.donate .donate-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.donate .donate-form .form-control:-ms-input-placeholder,
.donate .donate-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.donate .donate-form .btn-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.donate .donate-form .btn.btn-custom {
    padding: 15px 0;
    width: 100%;
    height: 60px;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 0 #ffffff;
}

.donate .donate-form .btn.btn-custom:hover,
.donate .donate-form .btn.btn-custom.active {
    color: #FDBE33;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 30px #ffffff;
} */

/* Donate Page Container */
.donate-page {
  padding: 80px 0;
  background-color: #f8f9fa;
}

/* Main Donation Card */
.donate-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Donation Info Section */
.donate-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.donate-header {
  margin-bottom: 30px;
  text-align: center;
}

.donate-subtitle {
  font-size: 18px;
  color: #FDBE33;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.donate-title {
  font-size: 36px;
  font-weight: 700;
  color: #2a2c39;
  margin-bottom: 20px;
  position: relative;
}

.donate-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #FDBE33;
}

.donate-description p {
  color: #6a6c7a;
  line-height: 1.7;
  text-align: center;
}

/* Donation Form Section */
.donate-form-wrapper {
  /* background: #FDBE33; */
     background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(205,164,94,0.4) 100%), url(../img/help.jpeg);
    z-index: 1;

  padding: 40px;
  height: 100%;
}

.donate-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(253, 190, 51, 0.3);
}

/* Donation Amount Options */
.donation-amounts {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.amount-option {
  flex: 1;
  position: relative;
}

.amount-option input {
  position: absolute;
  opacity: 0;
}

.amount-option span {
  display: block;
  height: 50px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-option input:checked + span,
.amount-option.active span {
  background: #ffffff;
  color: #FDBE33;
}

.amount-option:hover span {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Payment Section */
.payment-section {
  margin: 25px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Donate Button */
.donate-button {
  width: 100%;
  height: 50px;
  background: #2a2c39;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.donate-button:hover {
  background: #4a4c70;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .donate-info,
  .donate-form-wrapper {
    padding: 30px;
  }
  
  .donate-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .donate-page {
    padding: 60px 0;
  }
  
  .donate-title {
    font-size: 28px;
  }
  
  .donation-amounts {
    flex-wrap: wrap;
  }
  
  .amount-option {
    min-width: calc(50% - 5px);
  }
}

@media (max-width: 576px) {
  .donate-info,
  .donate-form-wrapper {
    padding: 25px;
  }
  
  .donate-title {
    font-size: 24px;
  }
  
  .donate-subtitle {
    font-size: 16px;
  }
  
  .donation-amounts {
    flex-direction: column;
    gap: 8px;
  }
  
  .amount-option {
    width: 100%;
  }
}

/*******************************/
/********** Causes CSS *********/
/*******************************/
.causes {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.causes .causes-carousel {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
}

.causes .causes-item {
    margin: 0 15px;
    overflow: hidden;
    background: #f3f6ff;
}

.causes .causes-img {
    overflow: hidden;
}

.causes .causes-img img {
    width: 100%;
    transition: .3s;
}

.causes .causes-item:hover img {
    transform: scale(1.1);
}


.causes .causes-progress {
    width: 100%;
    margin-top: 32px;
    padding: 30px 30px 20px 30px;
}

.causes .progress {
    height: 10px;
    border-radius: 0;
    background: #dddddd;
    overflow: visible;
}

.causes .progress .progress-bar {
    position: relative;
    width: 0px;
    background: #FDBE33;
    overflow: visible;
    transition: 2s;
}

.causes .progress-bar span {
    position: absolute;
    top: -32px;
    right: 0;
    height: 23px;
    display: inline-block;
    padding: 2px 6px;
    background: #FDBE33;
    color: #20212B;
}

.causes .progress-bar span::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 23px;
    left: calc(50% - 6px);
    border: 6px solid;
    border-color: #FDBE33 transparent transparent transparent;
}

.causes .progress-text {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.causes .progress-text p {
    margin: 0;
}

.causes .causes-text {
    padding: 0 30px;
}

.causes .causes-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.causes .causes-text p {
    margin: 0;
}

.causes .causes-btn {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.causes .causes-btn .btn {
    padding: 10px 0;
    width: 50%;
}

.causes .causes-btn .btn:last-child {
    color: #20212B;
    background: #FDBE33;
}

.causes .causes-btn .btn:last-child:hover {
    color: #ffffff;
}



/*******************************/
/********** Facts CSS **********/
/*******************************/
.facts {
    position: relative;
    width: 100%;
    min-height: 450px;
    margin: 45px 0;
    display: flex;
    align-items: center;
    /* background: #434451; */
    /* background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/help.jpeg); */
     background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(205,164,94,0.4) 100%), url(../img/help.jpeg);
    z-index: -1;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;


    /* background: rgba(0, 0, 0, .5); */
}

/*  */
    




.facts .facts-item {
    display: flex;
    flex-direction: row;
    margin: 25px 0;
}

.facts .facts-item i {
    margin-top: 10px;
    font-size: 60px;
    line-height: 60px;
    color: #FDBE33;
}

.facts .facts-text {
    padding-left: 20px;
}

.facts .facts-text h3 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
}

.facts .facts-text h3::after {
    position: absolute;
    top: 0px;
    color: #ffffff;
    font-size: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.facts .facts-text h3.facts-plus::after {
    content: "\f067";
    right: -25px;
}

.facts .facts-text h3.facts-dollar::after {
    content: "\f155";
    right: -18px;
}

.facts .facts-text p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}




/*******------------------------------------------------- Testimonial CSS *------------------------------------------------------------******/

.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.testimonial .testimonial-profile img {
    width: 80px;
    margin-bottom: -1px;
}

.testimonial .testimonial-name {
    padding-left: 15px;
    width: calc(100% - 95px);
}

.testimonial .testimonial-name h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial .testimonial-name p {
    margin: 0;
    font-style: italic;
}

.testimonial .testimonial-text p {
    margin: 0;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: #FDBE33;
}

.testimonial .owl-dot.active {
    background: #20212B;
}


/*******************************/
/******** Volunteer CSS ********/
/*******************************/
.volunteer {
    position: relative;
    width: 100%;
    margin: 45px 0;
    /* background: rgba(42, 68, 83, 0.5); */
    /* background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.8)), ; */
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(205,164,94,0.4) 100%), url(../img/group.jpeg);
    z-index: -1;

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 450px;
}

.volunteer::after{
      background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(205,164,94,0.4) 100%);
    z-index: -1;
}





.volunteer .volunteer-content {
    padding: 30px 0 45px 0;
}

.container .volunteer {
    margin: 90px 0;
}

.container .volunteer .volunteer-content {
    padding: 45px 30px 15px 30px;
}

.volunteer .volunteer-content .section-header {
    margin-bottom: 30px;
}

.volunteer .volunteer-content .section-header h2 {
    color: #ffffff;
}

.volunteer .volunteer-text p {
    color: #ffffff;
    font-size: 18px;
}

.volunteer .volunteer-form {
    padding: 90px 30px;
    background: #FDBE33;
}

.volunteer .volunteer-form .control-group {
    margin-bottom: 15px;
}

.volunteer .volunteer-form .form-control {
    height: 60px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 0;
    border: 1px solid #ffffff;
    background: transparent;
}

.volunteer .volunteer-form textarea.form-control {
    height: 120px;
    padding: 15px;
}

.volunteer .volunteer-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.volunteer .volunteer-form .form-control:-ms-input-placeholder,
.volunteer .volunteer-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.volunteer .volunteer-form .btn.btn-custom {
    padding: 15px 0;
    width: 100%;
    height: 60px;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 0 #ffffff;
}

.volunteer .volunteer-form .btn.btn-custom:hover {
    color: #FDBE33;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 30px #ffffff;
}


/*******************************/
/************************************************************************ Event CSS *****************************************/
/* 
.event {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.event .event-item {
    margin-bottom: 30px;
    background: #f3f6ff;
    border: 2px solid #cda45e; 
    border-radius: 8px; 
}

.event .event-item img {
    width: 100%;
    border-radius: 8px;
}

.event .event-content {
    padding: 30px;
    display: flex;
}

.event .event-meta {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.event .event-meta p {
    position: relative;
    margin-bottom: 8px;
    padding-bottom: 8px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.event .event-meta p:last-child {
    border-bottom: none;
}

.event .event-meta i {
    color: #4a4c70;
    width: 25px;
}

.event .event-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.event .event-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 5px);
    top: 6px;
    left: 0;
    background: rgba(0, 0, 0, .15);
}

.event .event-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: #FDBE33;
}

.event .event-text h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.event .event-text p {
    margin: 0;
}

.event .btn.btn-custom {
    margin-top: 20px;
    padding: 8px 30px;
}

@media (max-width: 575.98px) {
    .event .event-content {
        flex-direction: column;
    }
    
    .event .event-meta {
        flex-direction: row;
    }
    
    .event .event-meta p {
        font-size: 14px;
        padding-right: 7px;
    }
    
    .event .event-meta p:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, .15);
    }
    
    .event .event-meta i {
        width: 18px;
    }
    
    .event .event-text {
        margin: 0;
        padding: 0;
    }
    
    .event .event-text::before,
    .event .event-text::after {
        display: none;
    }
} */


/* Modern Events Section */
.modern-events {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f8 100%);
    position: relative;
    overflow: hidden;
}

.modern-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyMDQsMTkwLDUxLDAuMDUpIj48L3JlY3Q+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIj48L3JlY3Q+PC9zdmc+');
    opacity: 0.6;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #cda45e;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2a2c39;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #2a2c39, #4a4c70);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #cda45e 0%, #f8b500 100%);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #6a6c7a;
    font-size: 18px;
    line-height: 1.6;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
}

/* Event Card */
.event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform: translateY(0);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(205, 164, 94, 0.1) 0%, rgba(248, 181, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.event-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.event-card:hover::before {
    opacity: 1;
}

/* Card Image */
.card-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.event-card:hover .event-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}

.date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #2a2c39;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.event-card:hover .date-badge {
    background: #cda45e;
    color: white;
}

.calendar-icon {
    margin-right: 8px;
    font-size: 14px;
}

/* Card Content */
.card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-meta {
    margin-bottom: 15px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #6a6c7a;
    margin-right: 15px;
}

.meta-icon {
    margin-right: 8px;
    color: #cda45e;
    font-size: 14px;
}

.event-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    flex: 1;
}

.event-title a {
    color: #2a2c39;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.event-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #cda45e;
    transition: width 0.3s ease;
}

.event-card:hover .event-title a::after {
    width: 100%;
}

.event-excerpt {
    color: #6a6c7a;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

/* Card Footer */
.card-footer {
    margin-top: auto;
}

.event-link {
    display: inline-flex;
    align-items: center;
    color: #cda45e;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.event-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #cda45e;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.link-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.event-card:hover .event-link::before {
    transform-origin: left;
    transform: scaleX(1);
}

.event-card:hover .event-link {
    color: #a58448;
}

.event-card:hover .link-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .card-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .modern-events {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .modern-events {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .card-image-container {
        height: 200px;
    }
    
    .event-title {
        font-size: 20px;
    }
    
    .date-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 12px;
    }
}

/*************************************************************Blog CSS ************************************************************************/
/* 
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    background: #f3f6ff;
    border: 2px solid #cda45e; 
    border-radius: 8px; 
}

.blog .blog-img {
    width: 100%;
}

.blog .blog-img img {
    width: 100%;
    border-radius: 8px; 

}

.blog .blog-text {
    padding: 30px 30px 15px 30px;
}

.blog .blog-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.blog .blog-text h3 a {
    color: #4a4c70;
}

.blog .blog-text h3 a:hover {
    color: #FDBE33;
}

.allLinks{
    color: #4a4c70;

}
.allLinks:hover{
    color: #FDBE33;


}

.blog .blog-text p {
    margin: 0;
}

.blog .blog-meta {
    margin: 0 30px;
    padding-top: 15px;
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p {
    margin: 0;
    color: #777777;
    padding: 0 30px;
    border-right: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p:first-child {
    padding-left: 0;
}

.blog .blog-meta p:last-child {
    padding-right: 0;
    border: none;
}

.blog .blog-meta i {
    color: #4a4c70;
    margin-right: 8px
}

.blog .pagination {
    margin-bottom: 15px;
}

.blog .pagination .page-link {
    color: #4a4c70;
    border-radius: 0;
    border-color: #4a4c70;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #FDBE33;
    background: #4a4c70;
}

.blog .pagination .disabled .page-link {
    color: #999999;
} */

/* Modern Projects Section */
.modern-projects {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9ff 0%, #f0f2ff 100%);
    position: relative;
    overflow: hidden;
}

.modern-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyMDQsMTkwLDUxLDAuMDMpIj48L3JlY3Q+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIj48L3JlY3Q+PC9zdmc+');
    opacity: 0.5;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #cda45e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2a2c39;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #cda45e 0%, #f8b500 100%);
    border-radius: 3px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #6a6c7a;
    font-size: 18px;
    line-height: 1.6;
}

/* Projects Container */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Project Card */
.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform: translateY(0);
    z-index: 1;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(205, 164, 94, 0.1) 0%, rgba(248, 181, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.project-card:hover::before {
    opacity: 1;
}

/* Card Image */
.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0.7;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #cda45e;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(205, 164, 94, 0.3);
}

/* Card Content */
.card-content {
    padding: 25px;
    position: relative;
}

.project-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6a6c7a;
}

.meta-icon {
    margin-right: 8px;
    color: #cda45e;
    font-size: 14px;
}

.project-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-title a {
    color: #2a2c39;
    text-decoration: none;
    transition: color 0.3s ease;
    background: linear-gradient(to right, #2a2c39 0%, #2a2c39 100%);
    background-size: 0 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease, color 0.3s ease;
    padding-bottom: 3px;
}

.project-card:hover .project-title a {
    color: #cda45e;
    background-size: 100% 2px;
}

.project-excerpt {
    color: #6a6c7a;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    color: #cda45e;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 25px;
}

.project-link::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #cda45e;
    transition: width 0.3s ease;
}

.link-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.project-card:hover .project-link {
    color: #a58448;
}

.project-card:hover .project-link::after {
    width: 30px;
}

.project-card:hover .link-arrow {
    transform: translateX(5px);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #2a2c39;
    transition: all 0.3s ease;
}

.btn-text {
    margin-right: 15px;
}

.btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #cda45e;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-arrow {
    width: 15px;
    height: 15px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: all 0.3s ease;
}

.load-more-btn:hover .btn-text {
    color: #cda45e;
}

.load-more-btn:hover .btn-circle {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(205, 164, 94, 0.4);
}

.load-more-btn:hover .btn-arrow {
    transform: rotate(45deg) translate(3px, -3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .projects-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .card-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .modern-projects {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .project-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .modern-projects {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .load-more-btn {
        font-size: 14px;
    }
    
    .btn-circle {
        width: 40px;
        height: 40px;
    }
}
/*********************************************************************** Contact CSS******************************* *********/
/* .contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .contact-img {
    position: relative;
    width: 100%;
}

.contact .contact-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.contact .contact-form {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: -100px;
    padding: 30px;
    background: #f3f6ff;
}

@media (max-width: 991.98px) {
    .contact .contact-form {
        max-width: 600px;
    }
}

@media (max-width: 767.98px) {
    .contact .contact-form {
        max-width: 400px;
    }
}

@media (max-width: 575.98px) {
    .contact .contact-form {
        max-width: 300px;
    }
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 150px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form .btn.btn-custom {
    width: 100%;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.contact-item {
    background: #cda45e;
    color:#f8f9fa !important;
    background-size: cover;
    transition: .5s;
}


.contact-item:hover {
    background: #FDBE33;
    color: #FFFFFF;
    background-size: cover;
}

.contact-item .contact-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    color: rgb(0, 128, 79);
    background: #FFFFFF;
    transform: rotate(-45deg);
}


.contact-item .contact-icon div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(165, 218, 215);
    transition: .5s;
}


.contact-item .contact-icon i {
    transform: rotate(45deg);
    transition: .5s;
}

.contact-item:hover .contact-icon div {
    background: rgb(0, 128, 79);
}


.contact-item:hover .contact-icon i {
    color: rgb(165, 218, 215);
} */

/* Premium Contact Section */
.premium-contact-section {
  padding: 80px 0;
  background: #f8f9fa;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2a2c39;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #cda45e 0%, #FDBE33 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6a6c7a;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Grid Layout */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* Map Container */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  height: 500px;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .map-container {
    height: 600px;
  }
}

.google-map {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Sidebar - Matches map height */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

@media (min-width: 992px) {
  .contact-sidebar {
    height: 600px; /* Matches map height */
  }
}

/* Contact Cards */
.contact-info-card,
.message-us-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Adjusted heights to match map */
.contact-info-card {
  flex: 1;
}

.message-us-card {
  flex: 0 0 auto;
}

.card-title {
  font-size: 1.5rem;
  color: #2a2c39;
  margin-bottom: 25px;
  position: relative;
}

.title-underline {
  position: relative;
}

.title-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #cda45e 0%, #FDBE33 100%);
  border-radius: 2px;
}

/* Contact Details */
.contact-details {
  display: grid;
  gap: 20px;
}

.contact-items {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px;
  border-radius: 10px;
  cursor: default;
}

.contact-icons {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #cda45e;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-icons:hover, .contact-items:hover {
  
  color: #eeeeec;
  
}


.contact-items h4 {
  font-size: 1.1rem;
  color: #2a2c39;
  margin-bottom: 8px;
}

.contact-items p {
  color: #6a6c7a;
  line-height: 1.6;
}

/* Message Us Section */
.message-description {
  color: #6a6c7a;
  margin-bottom: 25px;
  line-height: 1.6;
}

.message-buttons {
  display: grid;
  gap: 15px;
}

.whatsapp-btn,
.email-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
}

.email-btn {
  background: #2a2c39;
  color: white;
}

.btn-icon {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .premium-contact-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .map-container {
    height: 400px;
  }
  
  .contact-info-card,
  .message-us-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }
  
  .map-container {
    height: 300px;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .contact-items {
    flex-direction: column;
  }
  
  .contact-icons {
    margin-bottom: 10px;
  }
}

/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
}

.single .single-tags a:hover {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
    border: 15px solid #ffffff;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 600;
    margin-right: 50px;
}
.single .post-item .post-text i{
    /* margin-right: 0 !important;
    padding-right: 0; */
    /* right: 0; */
    /* right: 0; */
    color: #cda45e;
}

.single .post-item .post-text a:hover {
    color: #FDBE33;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    color: #999999;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4c70;
    background: #FDBE33;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #FDBE33;
    background: #4a4c70;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
    border-radius: 0;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #FDBE33;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form input:focus,
.single .comment-form textarea:focus {
    border-color: #FDBE33;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #FDBE33;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
    border-color: #FDBE33;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #FDBE33;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #4a4c70;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #4a4c70;
    background: #FDBE33;
    border-radius: 0;
}


.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #FDBE33;
    background: #4a4c70;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #FDBE33;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
    border-radius: 0;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
/* .footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #20212B;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/donate.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #FDBE33;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #FDBE33;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    padding: 6px 0;
    margin: 2px;
}

.footer .footer-social a {
    margin-top: 5px;
}

.footer .footer-newsletter form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 60px;
    border: none;
    border-radius: 0;
}

.footer .footer-newsletter label {
    margin-top: 5px;
    color: #777777;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    padding: 15px 0;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: #FDBE33;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}



@media (max-width: 768px) {
    .allTitle {
        font-size: 24px; 
    font-weight: 600;

    }
}

@media (max-width: 576px) {
    .allTitle {
        font-size: 20px; 
    font-weight: 600;

    }
} */

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    color: #fff;
    padding: 80px 0 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Parallax Background */
.footer-background {
        position: absolute; /* Changed from fixed to absolute */

    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    z-index: -2;
    opacity: 0.9;
}

.footer-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(205,164,94,0.4) 100%);
    
    z-index: -1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(253,190,51,0.2);
}

/* Footer Columns */
.footer-column {
    padding: 20px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    color: #FDBE33;
    font-weight: 600;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #FDBE33;
}

/* Contact Column */
.contact-info2 {
    margin-bottom: 25px;
}

.contact-item2 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-icon2 {
    margin-right: 15px;
    color: #FDBE33;
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(253,190,51,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDBE33;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FDBE33;
    color: #000;
    transform: translateY(-3px);
}

/* Links Column */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FDBE33;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #FDBE33;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Newsletter Column */
.volunteer-text {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #ddd;
}

.volunteer-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #cda45e 0%, #FDBE33 100%);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(205,164,94,0.3);
}

.volunteer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(205,164,94,0.4);
}

/* Copyright Section */
.copyright-section {
    padding: 30px 0;
    text-align: center;
}

.copyright-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gold-text {
    color: #FDBE33;
    font-weight: 600;
}

.designer-credit a {
    color: #FDBE33;
    text-decoration: none;
    transition: all 0.3s ease;
}

.designer-credit a:hover {
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, #cda45e 0%, #FDBE33 100%);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 99;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .copyright-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-column {
        padding: 0 20px;
    }
}

/* Animation Enhancements */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

/* all title underline */
.allTitle{
    font-size: 30px;
    font-weight: 700;
    color: #cda45e;
    cursor: pointer;    
}


.alltitleLine{
    width: 120px;
    height: 1px;
    background:#6a6966 none repeat scroll 0 0;
    /* margin: auto auto auto 20px; */
    margin: auto auto 16px;
}

/***************************************************************** gallery*************************************************************** */

/* .gallery {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.gallery .gallery-item {
    margin-bottom: 15px;
    padding-bottom: 0px;
    background: #f3f6ff;
    border: 2px solid #cda45e; 
    border-radius: 5px; 
}

.gallery .gallery-img {
    width: 100%;
    border-radius: 5px; 
}

.gallery .gallery-img img {
    width: 100%;
} */

/* Modern Gallery Section */
.modern-gallery {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2a2c39;
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(90deg, #2a2c39, #4a4c70);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #cda45e 0%, #f8b500 100%);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #6a6c7a;
    font-size: 18px;
    line-height: 1.6;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(205, 164, 94, 0.2);
    border-radius: 50%;
    border-top-color: #cda45e;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Masonry Grid */
.masonry-grid {
    display: flex;
    margin-left: -15px;
    width: auto;
}

.masonry-grid-column {
    padding-left: 15px;
    background-clip: padding-box;
}

/* Gallery Item */
.gallery-item {
    margin-bottom: 30px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
}

.zoom-icon {
    width: 50px;
    height: 50px;
    background: rgba(205, 164, 94, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 50px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: #cda45e;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(205, 164, 94, 0.3);
}

.view-more-btn:hover {
    background: #b8934a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(205, 164, 94, 0.4);
}

.arrow-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.view-more-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .modern-gallery {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .modern-gallery {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .view-more-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}


.allLinks{
    color: #4a4c70;

}
.allLinks:hover{
    color: #FDBE33;
}
.errorIcon{
    width: 180px;
    height: 180px;
}

.pageerror{
    position: relative;
    margin-bottom: 45px;
    padding: 210px 0 90px 0;
    text-align: center;
    

}

.LoaderAnimation{
    width: 140px;
    height: 140px;
}

/* Add custom styles to your card input fields */
.StripeElement {
    padding: 10px 12px !important;
    font-size: 16px !important;
    border: 1px solid #ccc !important;
    border:1px solid transparent !important;
    border-radius: 4px !important;
    width:350px !important;
    box-sizing: border-box !important;
    background-color: white !important;
    box-shadow: 0 1px 3px 0 #e6ebf1 !important;
    -webkit-transition: box-shadow 150ms ease !important;
    transition: box-shadow 150ms ease !important;
  }
  
  .StripeElement--focus {
    border-color: #4CAF50 !important; /* Change border color on focus */
    box-shadow: 0 1px 3px 0 #cfd7df !important;

  }
  
  .StripeElement--invalid {
    border-color: #fa755a !important;
  }
  
  .StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
  }
  .po{
    color: blue;
  }


  /* -------------------------------------------video gallery ------------------------------------------------------------------ */
  /* Modern Video Gallery Section */
.modern-video-gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f8 100%);
    position: relative;
    overflow: hidden;
}

.modern-video-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyMDQsMTkwLDUxLDAuMDUpIj48L3JlY3Q+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIj48L3JlY3Q+PC9zdmc+');
    opacity: 0.6;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2a2c39;
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(90deg, #2a2c39, #4a4c70);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #cda45e 0%, #f8b500 100%);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #6a6c7a;
    font-size: 18px;
    line-height: 1.6;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(205, 164, 94, 0.2);
    border-radius: 50%;
    border-top-color: #cda45e;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
}

/* Video Card */
.video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform: translateY(0);
    z-index: 1;
}

.video-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.video-container {
    position: relative;
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px 16px 0 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-icon, .expand-icon {
    width: 50px;
    height: 50px;
    background: rgba(205, 164, 94, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 0 10px;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.play-icon:hover, .expand-icon:hover {
    background: #b8934a;
    transform: scale(1.1);
}

.video-info {
    padding: 20px;
    background: #fff;
}

.video-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2a2c39;
}

.video-meta {
    display: flex;
    align-items: center;
}

.video-date {
    font-size: 14px;
    color: #6a6c7a;
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 50px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: #cda45e;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(205, 164, 94, 0.3);
}

.view-more-btn:hover {
    background: #b8934a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(205, 164, 94, 0.4);
}

.arrow-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.view-more-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .modern-video-gallery {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .modern-video-gallery {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .view-more-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .video-title {
        font-size: 18px;
    }
}



/* ============--------------------------------------teusted companies------------------------------------------------------------ */
/* Company Trust Section */
.company-trust-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2a2c39;
  margin-bottom: 15px;
  line-height: 1.3;
}

.highlight {
  color: #cda45e;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(205, 164, 94, 0.2);
  z-index: -1;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #cda45e, #f8b500);
  margin: 0 auto 20px;
}

.section-description {
  color: #6a6c7a;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Logo Container */
.logo-container {
  margin-top: 40px;
}

.logo-track {
  background: white;
  border-radius: 12px;
  padding: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Logo Items */
.logo-item {
  margin: 0 40px;
  display: inline-block;
}

.logo-wrapper {
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.company-logo {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-wrapper:hover .company-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-title {
    font-size: 32px;
  }
  
  .logo-item {
    margin: 0 30px;
  }
  
  .logo-wrapper {
    padding: 15px 25px;
    height: 90px;
  }
  
  .company-logo {
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  .company-trust-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-description {
    font-size: 16px;
  }
  
  .logo-item {
    margin: 0 20px;
  }
  
  .logo-wrapper {
    padding: 12px 20px;
    height: 80px;
  }
  
  .company-logo {
    max-width: 80px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 24px;
  }
  
  .logo-track {
    padding: 20px 0;
  }
  
  .logo-item {
    margin: 0 15px;
  }
  
  .logo-wrapper {
    padding: 10px 15px;
    height: 70px;
  }
  
  .company-logo {
    max-width: 70px;
  }
}
/*******************************/
/******************************************************** Team CSS *******************************************************/
/* Team Section - Bootstrap Enhanced */
.luxury-team-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f5f0 0%, #f0e9e1 100%);
}

.luxury-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(205,164,94,0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(253,190,51,0.03) 0%, transparent 20%);
    background-size: 300px 300px;
    z-index: 0;
}

.luxury-team-container {
    position: relative;
    z-index: 1;
}

/* Header */
.luxury-team-header {
    text-align: center;
    margin-bottom: 60px;
}

.luxury-team-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #2a2c39;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.luxury-team-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #cda45e 0%, #f8b500 100%);
    border-radius: 3px;
}

.luxury-team-subtitle {
    font-size: 1.2rem;
    color: #6a6c7a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Team Cards - Bootstrap Grid */
.luxury-team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    margin-bottom: 30px;
}

.luxury-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Image Container - Fixed Aspect Ratio */
.luxury-team-img-container {
    position: relative;
    width: 100%;
    padding-top: 120%; /* 5:6 aspect ratio */
    overflow: hidden;
}

.luxury-team-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.luxury-team-card:hover .luxury-team-img {
    transform: scale(1.05);
}

.luxury-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    padding-bottom: 30px;
}

.luxury-team-card:hover .luxury-team-overlay {
    opacity: 1;
}

/* Social Icons */
.luxury-team-social {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.luxury-team-card:hover .luxury-team-social {
    transform: translateY(0);
}

.luxury-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.luxury-social-link:hover {
    background: #cda45e;
    transform: translateY(-3px);
}

.luxury-social-icon {
    color: white;
    font-size: 1rem;
}

/* Team Info */
.luxury-team-info {
    padding: 25px;
    text-align: center;
}

.luxury-team-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2a2c39;
}

.luxury-team-position {
    font-size: 0.95rem;
    color: #6a6c7a;
    margin-bottom: 0;
}

/* View All Button */
.luxury-team-view-all {
    text-align: center;
    margin-top: 40px;
}

.luxury-view-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: linear-gradient(90deg, #cda45e 0%, #FDBE33 100%);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(205,164,94,0.3);
    border: none;
}

.luxury-view-all-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(205,164,94,0.4);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .luxury-team-title {
        font-size: 2.2rem;
    }
    
    .luxury-team-subtitle {
        font-size: 1.1rem;
    }
    
    .luxury-team-img-container {
        padding-top: 110%;
    }
}

@media (max-width: 768px) {
    .luxury-team-section {
        padding: 80px 0;
    }
    
    .luxury-team-header {
        margin-bottom: 40px;
    }
    
    .luxury-team-img-container {
        padding-top: 100%;
    }
}

@media (max-width: 576px) {
    .luxury-team-section {
        padding: 60px 0;
    }
    
    .luxury-team-title {
        font-size: 2rem;
    }
    
    .luxury-team-info {
        padding: 20px 15px;
    }
}

/* Big screen dropdown fix */
@media (min-width: 1200px) {
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    z-index: 9999;
    margin-top: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  
  /* Ensure dropdown doesn't get cut off */
  .dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
  }
}

/* Additional dropdown fixes for better reliability */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  position: relative;
  z-index: 1001;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-item {
  display: block;
  padding: 8px 20px;
  color: #4a4c70;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.dropdown-item:hover {
  background: rgba(205, 164, 94, 0.1);
  color: #FDBE33;
  text-decoration: none;
}

/* Force dropdown visibility when open */
.dropdown-menu.open {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure proper stacking context */
.main-nav {
  position: relative;
  z-index: 1000;
}

.nav-container {
  position: relative;
  z-index: 1001;
}