

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 60px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
    border: none;
   
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
}
/*** Topbar Start ***/
/* Pulse effect */
.pulse-effect {
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Topbar Buttons */
.topbar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  background-color: #FEBE10;
  color: white;
  transition: all 0.3s ease;
}
.topbar-btn i {
  font-size: 16px;
  line-height: 1;
}
.topbar-btn:hover {
  transform: scale(1.05);
  background-color: #1da851;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.4);
  color: white;
}

/* Topbar Bar Background */
.topbar-bar {
  background-color: #006400 !important; /* Hindu Sindoor Red */
  color: white;
}

/* Marquee Text */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #006400; /* optional */
  padding: 10px 0;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  font-family: "Lucida Console", "Courier New", monospace;
  font-weight: 700;
  font-size: clamp(12px, 3vw, 16px);
  color: white;
  animation: marquee 20s linear infinite;
}

@media (max-width: 576px) {
  .marquee-text {
    font-size: 15px !important;
  }
}

@keyframes marquee {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Responsive Fixes */
@media (max-width: 767.98px) {
  .topbar-btn {
    width: 100%;
    font-size: 13px;
    padding: 8px 12px;
  }

  .topbar-bar .row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .marquee-wrapper {
    font-size: 14px;
    text-align: center;
  }
}

/*** Topbar Start ***/ 
.wide-btn {
  width: 100%;
  padding: 10px 16px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .wide-btn {
    max-width: 100%;
  }
}

@keyframes colorChangeGreen {
  0% { background-color: #198754; }
  50% { background-color: #157347; }
  100% { background-color: #198754; }
}

@keyframes colorChangeYellow {
  0% { background-color: #ffc107; }
  50% { background-color: #e0a800; }
  100% { background-color: #ffc107; }
}

.btn-animate-green {
  animation: colorChange#006400 3s infinite ease-in-out;
}
.btn-animate-yellow {
  animation: colorChangeGreen 3s infinite ease-in-out;
}
@keyframes darkColorFlash {
  0%   { color: #ffffff; }
  25%  { color: #ffc107; }   /* Amber */
  50%  { color: #ff5722; }   /* Deep Orange */
  75%  { color: #00e676; }   /* Green Accent */
  100% { color: #ffffff; }
}

.urdu-keyword span {
  font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;
  font-size: 1.1rem;
  font-weight: 600;
  direction: rtl;
  text-align: center;
  width: 100%;
  display: block;
  line-height: 1.5;
  animation: darkColorFlash 1.2s infinite linear;
}


@media (max-width: 576px) {
  .urdu-keyword span {
    font-size: 1rem;
    line-height: 1.4;
  }
}
/* Mobile fix for Urdu keyword button */
@media (max-width: 576px) {
  .urdu-keyword {
    flex-direction: column !important;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    white-space: normal;
  }

  .urdu-keyword span {
    width: 100% !important;
    display: block;
  }
}

.bg-background{
	background-color:#000000;
}

/*** Topbar End ***/

/*** Navbar ***/
.bg-light-color{
	background-color:#006400;
}
.sticky-top {
    transition: 1s;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: #FEBE10;
}
.text-dark-color .text-secondary-color{
	color:#FEBE10;
}
.text-secondary-color{
	color:#FEBE10;
}
.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    transition: .5s;
    z-index: 99;
}

.navbar .navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 2px solid #FEBE10;
    opacity: 0;
    transition: 0.5s;
    z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
    border-bottom: 0;
    border-right: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
    border-top: 0;
    border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: #ffffff !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: #FEBE10;
}

.nav-bar .navbar-toggler { 
    color: var(--bs-dark);
    box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

.navbar .nav-item .dropdown-menu {
    background: var(--bs-light);
    transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
    background: #006400;
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        margin-top: 15% !important;
        transform: rotateX(-75deg);
        transform-origin: 0 0;
        border: 0;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 991px) {
    .navbar .nav-item .dropdown-menu {
        position: relative;
        margin-top: 0;
        transition: 0.5s;
    }

    .navbar .navbar-nav .nav-item::after,
    .navbar .navbar-nav .nav-item::before {
        display: none;
    }

    .navbar .navbar-nav .nav-item:hover::after,
    .navbar .navbar-nav .nav-item:hover::before,
    .navbar .navbar-nav .nav-item.active::after,
    .navbar .navbar-nav .nav-item.active::before {
        display: none;

    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar .navbar-nav .nav-item.nav-link {
        padding: 12px 0;
    }
}

@media (min-width: 992px) {
  .navbar-nav {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}

/*** Navbar End ***/



/*** Carousel Hero Header Start ***/

.banner-slide-img {
  width: 100%;
  height: 65vh;
  object-fit: cover;
}

/* Adjust height for smaller screens */
@media (max-width: 768px) {
  .banner-slide-img {
    height: 40vh;
  }
}

.header-carousel .header-carousel-item {
    height: 700px;
}

.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  width: 48px;
  height: 48px;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60% 60%;
  filter: brightness(10);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 36px;
    height: 36px;
    border-width: 1.5px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 50% 50%;
  }
}


.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** About Start ***/
.about-item-content-img {
    border: 4px solid #0d6efd;
    box-shadow: 0 0 10px #0d6efd;
    animation: glowBorder 2s ease-in-out infinite;
}

@keyframes glowBorder {
    0% {
        box-shadow: 0 0 5px #0d6efd;
    }
    50% {
        box-shadow: 0 0 20px #20c997;
    }
    100% {
        box-shadow: 0 0 5px #0d6efd;
    }
}
.btn-secondary {
    background-color: #019001;      /* New background color */
    color: #fff;                    /* Text color */
    border-color: #019001;          /* Border */
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #20c997;     /* Hover background */
    border-color: #20c997;
    color: #fff;
}


.about-item-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
}

/* Make sure the image is fully visible and responsive */
.astrologer-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain; /* Ensure full image is shown */
    display: block;
}


.about .about-item-image .img-1 {
    margin-bottom: 250px; 
    margin-right: 0;
    border: 4px solid;
    border-color: var(--bs-secondary) var(--bs-light) var(--bs-light) var(--bs-secondary);
    z-index: 3;
}

.about .about-item-image .img-2 {
    margin-top: 250px; 
    margin-left: 0;
    border: 4px solid;
    border-color: var(--bs-light) var(--bs-secondary) var(--bs-secondary) var(--bs-light); 
    z-index: 3;
}



.about .about-item-image .about-item-image-content {
    width: 55%;
    height: 55%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bs-secondary);
    border: 4px solid var(--bs-primary);
    opacity: 0.9;
    z-index: 4;
}

.about .about-item-image .about-item-image-effect {
    position: absolute;
    top: 0;
    right: 0;
}
.about-item-content {
    background-image: url('https://images.unsplash.com/photo-1594393835945-8c3cbdf1a5b2?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    border-radius: 12px;
}

/*** About End ***/
/*** Fact Counter ***/
@keyframes fadeGreenOverlay {
    0% {
        opacity: 0.7;
        transform: scaleX(0.95);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        opacity: 0.7;
        transform: scaleX(0.95);
    }
}

@keyframes slideWhiteCard {
    0% {
        box-shadow: 10px 10px rgba(0, 102, 0, 0.6);
    }
    50% {
        box-shadow: 20px 20px rgba(0, 102, 0, 1);
    }
    100% {
        box-shadow: 10px 10px rgba(0, 102, 0, 0.6);
    }
}

.counter {
    background: linear-gradient(
        rgba(0, 0, 0, 0.95),   /* Almost pure black */
        rgba(0, 0, 0, 0.85)    /* Still very dark black */
    ), url(../img/counter.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}


.counter .counter-btn:hover {
    background: var(--bs-white);
    color: var(--bs-secondary);
}

.counter .counter-box {
    padding-right: 20px;
    padding-bottom: 20px;
}

.counter .counter-item {
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.counter .counter-item .counter-item-style {
    position: absolute;
    width: calc(100% - 20px);
    height: 100%;
    top: 0;
    left: 0;
    background: green;
    z-index: 2;
    animation: fadeGreenOverlay 4s ease-in-out infinite;
}

.counter .counter-item .counter-item-inner {
    position: relative;
    top: 20px;
    left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    background: var(--bs-white);
    box-shadow: 20px 20px rgba(0, 102, 0, 1);
    z-index: 3;
    animation: slideWhiteCard 4s ease-in-out infinite;
}

.counter .counter-item .counter-counting {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-primary);
    font-size: 30px;
}

/*** Fact Counter ***/


/*** Features Start ***/
.feature-card {
  overflow: hidden;
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/*** Features End ***/
/*** Why Choose US ***/

.why-choose-us .section-title-badge {
  font-size: 1.3rem;
  padding: 12px 32px;
  border-radius: 35px;
  font-weight: 700;
  display: inline-block;
  background-color: #f5c400;
  color: #000;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .why-choose-us .section-title-badge {
    font-size: 1.05rem;
    padding: 10px 24px;
  }
}

.why-choose-us h2 {
  font-size: 3rem;
  margin-bottom: 45px;
}

.why-choose-us h2,
.why-choose-us h4,
.why-choose-us h6 {
  color: #FEBE10 !important;
}
.why-choose-us p {
  color: #fffefc !important;
}

.why-choose-us h4 {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-size: 1.8rem;
  color: #0a4d22;
  font-weight: 700;
  margin: 0 auto 30px;
  border: none;
}

.why-choose-us span.fw-bold {
  font-size: 1rem;
  color: #0a4d22;
  margin-bottom: 6px;
  display: inline-block;
}

.why-choose-us .progress {
  height: 22px;
  border-radius: 20px;
  background-color: #f0f0f0;
}

.why-choose-us .progress-bar {
  font-weight: 600;
  font-size: 14px;
  padding: 3px 10px;
}


/* Expertise box - transparent background, no glow */
.why-choose-us .expertise-box,
.why-choose-us .border.border-danger {
  background: transparent !important;
  color: #111;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.why-choose-us {
  position: relative;
  z-index: 1;
  color: #fffefc;
  background: url('../img/your-image.jpg') center/cover no-repeat;
  background-attachment: scroll;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.65); /* darker overlay */
  z-index: 0;
}

.why-choose-us * {
  position: relative;
  z-index: 1;
  color: #fffefc !important;
}

.why-choose-us .speciality-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* ICONS */
.why-choose-us .speciality-item i {
  font-size: 28px;
  margin-right: 15px;
  color: #0a4d22;
  flex-shrink: 0;
}

.why-choose-us .speciality-item h6,
.why-choose-us h6.mb-1.text-success {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a4d22;
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}

.why-choose-us .speciality-item h6::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 5px;
  background: linear-gradient(to right, #0a4d22, #00ff66);
  border-radius: 20px;
}

.feature-box {
  position: relative;
  background-color: #000000;
  border-radius: 8px;
  padding: 1.5rem;
  color: #fff;
  z-index: 1;
  overflow: hidden;
}

.feature-box::before,
.feature-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 2px solid transparent;
  z-index: -1;
}

.feature-box::before {
  top: 0;
  left: 0;
  background: linear-gradient(135deg, transparent, #006400, transparent);
  animation: animateCorners 3s linear infinite;
}

.feature-box::after {
  bottom: 0;
  right: 0;
  background: linear-gradient(315deg, transparent, #006400, transparent);
  animation: animateCorners 3s linear infinite reverse;
}

@keyframes animateCorners {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  50% {
    transform: translateX(0%) translateY(0%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}
.bg-dark-Y{
	background-color:#000000;
}

@media (max-width: 768px) {
  .why-choose-us {
    background-attachment: scroll !important;
  }
}

@media (max-width: 576px) {
  .why-choose-us h2 {
    font-size: 2rem;
  }

  .why-choose-us h4 {
    font-size: 1.4rem;
  }

  .why-choose-us .progress-bar {
    font-size: 12px;
  }

  .why-choose-us .speciality-item i {
    font-size: 24px;
    margin-right: 12px;
  }

  .why-choose-us h6.mb-1.text-success {
    font-size: 1rem;
  }
}

/*** Why Choose End ***/


/*** Services Start ***/
.service-section {
  background-color: #000000; /* purple/maroon */
}

.service-card {
  background: #006400;
  border: 2px solid orange;
  padding: 10px;
  border-radius: 5px;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card img {
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 6 / 7; /* maintains 600x700 ratio */
  object-fit: cover;
  border-radius: 5px;
  transition: 0.4s;
}

.service-card h5 {
  color: #fffefc;
  font-weight: bold;
  margin-top: 15px;
  text-align: center;
}

.service-card .phone {
  display: inline-block;
  margin-top: 10px;
  color: #7a005b;
  font-weight: bold;
  text-decoration: none;
}
.service-card .phone:hover {
  color: orange;
}
.phone-box {
  width: 100%;
  max-width: 220px;
  margin: 10px auto 0;
  text-align: center;
  font-weight: bold;
  color: #7a005b;
  border: 2px solid orange;
  border-radius: 5px;
  padding: 5px 10px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 0px rgba(255, 165, 0, 0.5);
}

.phone-box:hover {
  background-color: #fff8e1;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
  transform: scale(1.05);
}



/*** Services End ***/


/*** Projects Start ***/
.project {
    background-color: #006400; /* Light grey - you can change to any color */
}

.project .project-item {
    position: relative;
    overflow: hidden;
}

.project .project-item .project-img {
    position: relative;
    overflow: hidden;
    z-index: 1;

}

.project .project-item .project-img::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    background: #FEBE10;
    z-index: -1;
    animation: bounceAnim 2s infinite ease-in-out;
}

/* Bounce Keyframes */
@keyframes bounceAnim {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


.project .project-item .project-content a.h4 {
    transition: 0.5s;
}

.project .project-item:hover .project-content a.h4:hover {
    color: var(--bs-secondary);
}
.animated-text {
  animation: colorChange 0.5s infinite alternate;
  font-weight: bold;
}

@keyframes colorChange {
  0%   { color: #FF6347; }   /* Tomato */
  25%  { color: #FFD700; }   /* Gold */
  50%  { color: #FFFFFF; }   /* White */
  75%  { color: #FF69B4; }   /* Hot Pink */
  100% { color: #ADD8E6; }   /* Light Blue */
}

/*** Projects End ***/
/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-secondary);
}
.blog-item .btn {
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.blog-item:hover .btn {
  transform: scale(1.05);
}

/*** Blog End ***/


/*** Tour Booking Start ***/
.booking {
  background: linear-gradient(rgba(2, 60, 20, 0.92), rgba(2, 60, 20, 0.92)), url(../img/contact-form.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.form-box-custom {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid #f5c400; /* golden yellow */
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(245, 196, 0, 0.3);
  animation: borderPulse 2s infinite;
  transition: all 0.3s ease-in-out;
}

@keyframes borderPulse {
  0% {
    box-shadow: 0 0 12px rgba(245, 196, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 22px rgba(245, 196, 0, 0.9);
  }
  100% {
    box-shadow: 0 0 12px rgba(245, 196, 0, 0.5);
  }
}

.form-box-custom .form-control {
  border-radius: 12px;
  background-color: #ffffff;
  color: #000;
  border: none;
}

.form-box-custom .form-control:focus {
  border-color: #f5c400;
  box-shadow: 0 0 0 0.2rem rgba(245, 196, 0, 0.25);
}

.form-box-custom label {
  color: #333;
}

.form-box-custom h2,
.form-box-custom p {
  color: #fff;
}


.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
.btn-hover-animate {
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.btn-hover-animate:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.btn-call-now {
  background-color: #28a745; /* initial green */
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  animation: pulseColor 2s infinite, vibrate 0.3s infinite;
  border-radius: 50px;
  padding: 12px 32px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
}

@keyframes pulseColor {
  0% {
    transform: scale(1);
    background-color: #28a745;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.6);
  }
  50% {
    transform: scale(1.05);
    background-color: #f5c400;
    box-shadow: 0 0 20px 10px rgba(245, 196, 0, 0.3);
  }
  100% {
    transform: scale(1);
    background-color: #28a745;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.6);
  }
}

@keyframes vibrate {
  0% { transform: translate(0); }
  20% { transform: translate(-1px, 1px); }
  40% { transform: translate(-1px, -1px); }
  60% { transform: translate(1px, 1px); }
  80% { transform: translate(1px, -1px); }
  100% { transform: translate(0); }
}


/*** Tour Booking end ***/



/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    border: 1px solid var(--bs-secondary);
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border: 1px solid var(--bs-primary);
    background: var(--bs-secondary) !important;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}
/*** testimonial End ***/

/* Contact Form Muslim Theme */
.contact {
    background: linear-gradient(rgba(0, 10, 0, 0.9), rgba(0, 30, 15, 0.95)),
                url('../img/counter.jpg') center/cover no-repeat;
    color: #fff;
}

.contact h1, 
.contact h5, 
.contact p {
    color: #fff;
}

.contact input, 
.contact textarea {
    border: none;
    border-radius: 8px;
}

.contact input:focus, 
.contact textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 150, 70, 0.5);
}

.contact button {
    font-size: 18px;
    font-weight: bold;
    background-color: #0b6623; /* Muslim Green */
    border: none;
}

.contact button:hover {
    background-color: #0e8a35;
}


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 77, 38, 0.9), rgba(0, 77, 38, 1)), url(../img/footer-img.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

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

.footer .footer-item a,
.footer a {
    display: flex;
    align-items: center;
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
    text-decoration: none;
}

.footer .footer-item a i,
.footer a i {
    margin-right: 8px;
    color: var(--bs-warning);
    min-width: 18px;
}

.footer .footer-item p,
.footer p {
    line-height: 35px;
}

.footer a:hover {
    letter-spacing: 0.5px;
    color: var(--bs-white);
}

.footer .footer-btn a,
.footer .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #006400;
}
/*** copyright end ***/

/*** bottom call button ***/
@media (max-width: 767.98px) {
  .mobile-fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #000000; /* Same as btn-success */
  }

  .mobile-fixed-buttons a {
    height: 60px;
    font-size: 16px;
    border-radius: 0;
  }

  .mobile-bottom-spacer {
    height: 60px; /* Same height as the fixed buttons */
    width: 100%;
  }
}
 /*** Flag ***/
.countries-section {
    background: #f9f9f9;
}
.countries-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a4d2e; /* Islamic green */
}
.flags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}
.flag-card {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    padding: 15px;
    transition: all 0.3s ease-in-out;
}
.flag-card img {
    width: 80px;
    height: auto;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 2px solid #1a4d2e;
}
.flag-card p {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.flag-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
@media (max-width: 576px) {
    .flag-card img {
        width: 60px;
    }
    .flag-card p {
        font-size: 12px;
    }
}

/*** keyword ***/
/* Container Styling */
/* Wrapper + container */
.specializations-section {
  background: #000;                  /* section background */
  color: #fff;
  padding: clamp(28px, 4vw, 60px) 16px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
.specializations-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Heading */
.specializations-section h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin: 0 0 30px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

/* Grid: 3 columns desktop, 2 tablet, 1 mobile */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 28px);
  align-items: start;
}

/* Card */
.specialization-card {
  background: linear-gradient(180deg,#004d26 0%, #006400 100%); /* deep Muslim greens */
  border-radius: 14px;
  padding: clamp(14px, 2.2vw, 28px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  transition: transform .28s ease, box-shadow .28s ease;
  min-height: 220px;
}
.specialization-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* List & links */
.specialization-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.specialization-card li {
  margin-bottom: clamp(8px, 1.2vw, 12px);
}
.specialization-card li:last-child { margin-bottom: 0; }

/* Make the whole list item clickable and easy to tap */
.specialization-card a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(.88rem, 1.6vw, 1rem);
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Arrow / bullet */
.specialization-card a::before {
  content: "➤";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffd700; /* gold */
  font-size: 0.98em;
}

/* Ensure text doesn't overlap the arrow */
.specialization-card a { padding-left: 30px; }

/* Hover state */
.specialization-card a:hover {
  background: rgba(255,255,255,0.03);
  color: #ffd700;
  transform: translateX(4px);
}

/* Responsive breakpoints */
@media (max-width: 992px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .specialization-card { min-height: 200px; }
}

@media (max-width: 576px) {
  .cards-grid { grid-template-columns: 1fr; }
  .specialization-card { padding: 14px; min-height: unset; }
  .specializations-section { padding: 22px 12px; }
  .specialization-card a { font-size: .95rem; padding: 9px 10px; }
  .specialization-card a::before { left: -10px; }
}/*** keyword End ***/