﻿
/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}

.wow,
.animated {
    animation-duration: 2s !important;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.back-to-top:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

h1, h2, h3, .h1, .h2, .h3 {
    font-weight: 700 !important;
    font-family: 'Open', sans-serif !important;
}

h4, h5, h6, .h4, .h5, .h6 {
    font-weight: 600 !important;
    font-family: 'Open', sans-serif !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Button Start ***/

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary:hover {
    color: var(--bs-primary) !important;
    background: var(--bs-dark) !important;
    border-color: var(--bs-dark) !important;
}

.btn.btn-dark:hover {
    color: var(--bs-dark) !important;
    background: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}
/*** Button End ***/


/*** Topbar Start ***/
.topbar .topbar-inner {
    height: 45px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, .5);
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.fixed-top {
    transition: .5s;
}

.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.navbar .navbar-nav .nav-link {
    padding: 12px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 600;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent !important;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        background: var(--bs-light) !important;
        transition: .5s;
        opacity: 1;
    }
}

.navbar-toggler {
    background: var(--bs-secondary);
    color: var(--bs-light) !important;
    padding: 10px 20px;
    border: 2px solid var(--bs-primary) !important;
    box-shadow: none !important;
}
/*** Navbar End ***/

/*** Hero Header Start  ***/

.hero-header {
    margin-bottom: 2rem;
    padding-top: 15rem;
    padding-bottom: 20rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: changeBackground 25s infinite; /* 25s for 5 images */
}

.hero-header .hero-header-inner {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

/*** Keyframes for Changing Background ***/
@keyframes changeBackground {
    0% {
        background-image: url('../img/hero1.jpg');
    }
    20% {
        background-image: url('../img/hero2.jpg');
    }
    40% {
        background-image: url('../img/hero3.jpg');
    }
    60% {
        background-image: url('../img/hero4.jpg');
    }
    80% {
        background-image: url('../img/hero5.jpg');
    }
    100% {
        background-image: url('../img/hero1.jpg'); /* Loop back to the first image */
    }
}

@media (max-width: 992px) {
    .hero-header {
        padding-top: 12rem;
    }
}

.hero-header .breadcrumb-item {
    font-size: 18px;
}

/*** Hero Header End  ***/


/*** About Start ***/
.about a.btn.btn-light:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-primary) !important;
    border: 0;
}
/*** About End ***/


/*** Activities Start ***/
.activities .activities-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 45px rgba(12, 18, 20, .08);
    transition: 0.5s;
}

.activities .activities-item:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-dark) !important;
}

.activities .activities-item:hover a {
    background: var(--bs-light) !important;
    color: var(--bs-dark) !important;
}

.activities .activities-item:hover a:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}
/*** Activities End ***/


/*** Events Start ***/
.event-item img {
    transition: 0.5s;
}

.event .event-item a {
    transition: 0.5s;
}

.event-item:hover img {
    transition: 0.5s;
    transform: scale(1.2)
}

.event-item a:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
    opacity: 0.5s;
}
/*** Events End ***/


/*** Sermon Start ***/
.sermon .sermon-item {
    height: 100%;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.sermon-item img {
    transition: 0.5s;
}

.sermon-item:hover img {
    transform: scale(1.2)
}

.sermon-item .sermon-meta a,
.sermon-item .sermon-meta a i {
    transition: 0.5s;
}

.sermon-item .sermon-meta a:hover,
.sermon-item .sermon-meta a i:hover {
    color: var(--bs-primary) !important;
}
/*** Sermon End ***/


/*** Blog Start ***/
.blog-item {
    height: 100%;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.2)
}

.blog-item .blog-meta a,
.blog-item .blog-meta a i {
    transition: 0.5s;
}

.blog-item .blog-meta a:hover,
.blog-item .blog-meta a i:hover {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-img {
    height: 100%;
    padding: 25px;
    background: var(--bs-white);
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team .team-item {
    position: relative;
    overflow: hidden;
}

.team .team-item img {
    transition: 0.5s;
}

.team .team-item:hover img {
    transform: scale(1.2);
}

.team .team-item .team-content {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   padding: 15px;
   transform: translateX(-50%, -50%);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: 0.5s;
}

.team .team-item:hover .team-content {
    opacity: 1;
    background: rgba(241, 193, 82, .7);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial-item {
    background: var(--bs-light);
    padding: 40px;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel {
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 60px;
    height: 40px;
    background: var(--bs-primary);
    color: var(--bs-dark);
    font-size: 22px;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}

.testimonial-carousel .owl-nav .owl-next {
    left: auto;
    right: 0px;
}

.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}
/*** testimonial End ***/


/*** Footer Start ***/
.footer {
    margin-top: 6rem;
    background: var(--bs-dark);
}

.footer .footer-item p {
    font-size: 16px;
    line-height: 35px;
}

.footer .border-top,
.footer .border-bottom {
    border-color: rgba(255, 255, 255, .08) !important;
}

.footer button {
    border: 0;
    transition: 0.5s;
}

.footer button:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.footer-item a.btn.btn-light:hover {
    background: var(--bs-primary);
    color: var(--bs-dark) !important;
    border: var(--bs-primary);
}

.footer-item a,
.footer-item a i {
    transition: 0.5s;
}

.footer-item a:hover,
.footer-item a i:hover {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** Logo Start ***/
.logo {
    width: 500px; /* Adjust the width as needed */
    height: 70px; /* Maintain the aspect ratio */
}
/*** Logo End ***/


/* package-details-section Start  */
.package-details-section {
    padding: 15px;
    background-color: #f9f9f9;
    text-align: center;
}

.details-header h2 {
    font-size: 1.5rem;
    color: #bc8906;
    line-height: 1.3;
}

.details-header h2 span {
    color: #000;
    display: block;
}

.details-header .subheading {
    color: #555;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 0 10px;
}

.tab {
    padding: 8px 15px;
    background-color: #bc8906;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 0.9rem;
    flex-grow: 1;
    text-align: center;
    max-width: 150px;
}

.tab.active {
    background-color: #905c04;
}

.tab-content {
    display: none;
    text-align: left;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
}

.tab-content.active {
    display: block;
}

.tab-content ul {
    list-style: none;
    padding: 0;
}

.tab-content li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
}

.tab-content i {
    margin-right: 8px;
    color: #bc8906;
    font-size: 0.9rem;
}

.price {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 480px) {
    .details-header h2 {
        font-size: 1.3rem;
    }
    
    .tab {
        padding: 6px 12px;
        font-size: 0.85rem;
        max-width: 120px;
    }
    
    .tab-content {
        padding: 12px;
    }
    
    .tab-content li {
        font-size: 0.85rem;
    }
    
    .price {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .tabs {
        gap: 5px;
    }
    
    .tab {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}
/* package-details-section End  */


/* plane start  */

/* Map Section - Full Responsive Code */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Noto Color Emoji;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
  }
  
  /* Map Section */
  .map-section {
    padding: 40px 20px;
    background: linear-gradient(90deg, #eaeef7, #f7faff);
  }
  
  .map-container {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .map-box {
    width: 45%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .map-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .map-box h3 {
    background-color: #bc8906;
    color: #fff;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  .map-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  
  .map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 5px solid #bc8906;
  }
  
  /* Plane Animation */
  .plane-animation {
    position: absolute;
    font-size: 24px;
    color: #bc8906;
    transform: translate(-50%, -50%);
    animation: planeFly 3s linear infinite;
  }
  
  @keyframes planeFly {
    from {
      left: var(--source-x);
      top: var(--source-y);
    }
    to {
      left: var(--destination-x);
      top: var(--destination-y);
    }
  }
  
  /* Animated Route Section */
  .route-container {
    margin-top: 20px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .route-container h3 {
    font-size: 1.2rem;
    color: #bc8906;
    margin-bottom: 15px;
  }
  
  .route-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  .stop {
    background: #f7f7f7;
    padding: 10px 15px;
    font-weight: bold;
    color: #333;
    border-radius: 5px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }
  
  .line {
    position: relative;
    width: 80px;
    height: 2px;
    background: #bc8906;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .line .plane {
    position: absolute;
    top: -6px;
    left: -20px;
    font-size: 16px;
    color: #bc8906;
    animation: movePlane 3s linear infinite;
  }
  
  @keyframes movePlane {
    from {
      left: -20px;
    }
    to {
      left: 100px;
    }
  }
  
  /* Mobile Responsive Styles */
  @media (max-width: 767px) {
    .map-section {
      padding: 25px 15px;
    }
    
    .map-container {
      flex-direction: column;
      gap: 15px;
    }
    
    .map-box {
      width: 100%;
      margin-bottom: 15px;
    }
    
    .map-wrapper {
      height: 220px;
    }
    
    .plane-animation {
      display: none;
    }
    
    .route-container {
      margin-top: 15px;
      padding: 15px;
      overflow-x: auto;
    }
    
    .route-container h3 {
      font-size: 1.1rem;
      margin-bottom: 15px;
    }
    
    .route-animation {
      justify-content: flex-start;
      min-width: 550px;
      gap: 10px;
    }
    
    .stop {
      padding: 8px 12px;
      font-size: 0.85rem;
    }
    
    .line {
      width: 60px;
    }
    
    .line .plane {
      animation: movePlaneMobile 2s linear infinite;
    }
    
    @keyframes movePlaneMobile {
      from { left: -15px; }
      to { left: 70px; }
    }
  }
  
  @media (max-width: 480px) {
    .map-section {
      padding: 20px 10px;
    }
    
    .map-wrapper {
      height: 180px;
    }
    
    .route-container {
      padding: 15px 10px;
    }
    
    .route-animation {
      min-width: 450px;
      gap: 8px;
    }
    
    .stop {
      font-size: 0.8rem;
      padding: 6px 10px;
    }
    
    .line {
      width: 50px;
    }
    
    @keyframes movePlaneMobile {
      to { left: 60px; }
    }
  }
  
  /* plane stop */

  
  /* plane stop  */












.umrah-packages {
  padding: 50px 0;
  background-color: #f9f9f9;
  text-align: center;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffcc00;
}
.section-subtitle {
  font-size: 18px;
  font-style: italic;
  margin: 10px 0;
  color: #555;
}
.section-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.package-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.package-card {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  width: 48%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.package-image {
  width: 40%;
  margin-right: 20px;
}

.package-image img {
  width: 100%;
  border-radius: 10px;
}

.package-details {
  width: 60%;
  text-align: left;
}

.package-details h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.package-details .price {
  font-size: 24px;
  color: #ffcc00;
  font-weight: bold;
  margin-bottom: 10px;
}

.package-details p {
  font-size: 14px;
  color: #777;
}

.details-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  background-color: #ffcc00;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

.details-btn:hover {
  background-color: #ff9900;
}

.badge {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  margin-bottom: 10px;
}

.logo:hover {
    box-shadow: none; /* Remove box shadow */
    background: none; /* Remove background if any */
    border: none; /* Remove border if any */
    /* Add any other properties to override hover effects */
}





/* Testimonial Section */
.testimonial-section {
    padding: 1.5rem 1rem 2rem;
    background: linear-gradient(135deg, rgba(188,137,6,0.03) 0%, rgba(255,255,255,1) 100%);
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: 2rem;
    color: #bc8906;
    position: relative;
    display: inline-block;
    margin: 0;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.heading-decor {
    animation: float 3s ease-in-out infinite;
    display: inline-block;
    margin: 0 10px;
}

.testimonial-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transform: translateZ(0);
}

.testimonial-video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(188,137,6,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(188,137,6,0.05), transparent);
    animation: shine 6s infinite;
}

.testimonial-text {
    position: relative;
    min-height: 180px;
}

.testimonial-slide {
    position: absolute;
    opacity: 0;
    transition: all 0.6s ease;
    transform: translateY(20px);
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-slide p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-slide p::before {
    content: '❝';
    position: absolute;
    left: -15px;
    top: -10px;
    color: #bc8906;
    font-size: 2.5rem;
    opacity: 0.3;
}

.testimonial-author {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(188,137,6,0.1);
    padding-top: 1.5rem;
}

.testimonial-author p {
    color: #bc8906;
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #bc8906;
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.dot.active::before {
    transform: scale(1);
}

@keyframes shine {
    0% { transform: translate(-50%, -50%) rotate(45deg); }
    100% { transform: translate(50%, 50%) rotate(45deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-content-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-video {
        height: 250px;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-slide p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        padding: 1rem 0.5rem;
    }
    
    .testimonial-video {
        height: 200px;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .testimonial-slide p {
        padding-left: 25px;
    }
    
    .testimonial-slide p::before {
        font-size: 2rem;
        left: -10px;
    }
}






/* Unique Features Section */
.container h2 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.container .row .col-lg-4 .p-4 {
    transition: transform 0.3s ease;
}

.container .row .col-lg-4 .p-4:hover {
    transform: translateY(-5px);
}

.container .row img {
    max-width: 100%;
    height: auto;
}


