/* ====== Global Styles ===== */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
   font-family: 'Poppins', sans-serif;
   color: #333;
   line-height: 1.6;
   overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
}

.bg-primary {
   background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
}

.bg-lightgray {
   background-color: #f8f9fa;
}

.bg-dark-blue {
   background-color: #1a1a2e;
}

/* ====== Header Styles ===== */
.custom-header {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   transition: all 0.3s ease;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   background-color: #fff;
}

.custom-header.sticky-header {
   padding: 0;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-logo-text {
   font-size: 1.5rem;
   font-weight: 700;
   color: #fff;
   font-family: 'Playfair Display', serif;
}

.navbar-nav .nav-link {
   color: #1e3c72 !important;
   font-weight: 500;
   padding: 0.5rem 1rem !important;
   transition: all 0.3s ease;
   position: relative;
}

.navbar-nav .nav-link:hover {
   color: #1e3c72 !important;
}

.navbar-nav .nav-link::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 50%;
   width: 0;
   height: 2px;
   background-color: #ffd700;
   transition: all 0.3s ease;
   transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
   width: 80%;
}

.header-logo {
   width: 150px;
   height: auto;
}

.top-notice {
   background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
   margin-top: 100px;
   font-size: 0.9rem;
   color: #fff;
}

/* ====== Slider Styles ===== */
.top_slider {
   height: 95vh;
   overflow: hidden;
}

.carousel-item {
   height: 95vh;
}

.slider-item {
   height: 100%;
   background-size: cover;
   background-position: center;
   position: relative;
}

.slider-item::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(135deg, rgba(30, 60, 114, 0.8) 0%, rgba(42, 82, 152, 0.7) 100%);
}

.slider_1 {
   background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
}

.slider_2 {
   background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
}

.slider_3 {
   background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
}

.content_wrapper {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   text-align: center;
   z-index: 10;
   color: #fff;
   width: 100%;
   max-width: 800px;
   padding: 0 20px;
}

.content_wrapper h1 {
   font-size: 2.5rem;
   font-weight: 300;
   color: #ffd700;
   margin-bottom: 0.5rem;
}

.content_wrapper h2 {
   font-size: 3.5rem;
   font-weight: 700;
   margin-bottom: 1rem;
   color: #fff;
}

.content_wrapper h3 {
   font-size: 1.5rem;
   font-weight: 400;
   color: #fff;
}

.btn-custom {
   background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
   color: #1e3c72;
   padding: 12px 30px;
   border-radius: 30px;
   font-weight: 600;
   text-transform: uppercase;
   border: none;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-custom:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
   color: #1e3c72;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
   background-color: rgba(255, 255, 255, 0.3);
   border-radius: 50%;
   width: 50px;
   height: 50px;
}

.carousel-indicators li {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .active {
   background-color: #ffd700;
}

/* ====== About Section Styles ===== */
.container-aboutus {
   background-color: #fff;
}

.about-content {
   display: flex;
   align-items: center;
   gap: 50px;
   flex-wrap: wrap;
}

.about-content .content {
   flex: 1;
   min-width: 300px;
}

.about-content .about-image {
   flex: 1;
   min-width: 300px;
}

.about-img-placeholder {
   width: 100%;
   height: 400px;
   background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 10px;
}

.about-img-placeholder i {
   font-size: 8rem;
   color: rgba(255, 255, 255, 0.3);
}

.pre_title {
   color: #ffd700;
   font-size: 1rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 2px;
   margin-bottom: 10px;
}

.section_heading {
   font-size: 2.5rem;
   color: #1e3c72;
   margin-bottom: 30px;
}

.about-content h2 {
   font-size: 2.5rem;
   color: #1e3c72;
   margin-bottom: 20px;
}

.about-content p {
   font-size: 1.1rem;
   color: #666;
   line-height: 1.8;
}

.sponsorship-section a{
   color: #004aad;
   text-decoration: none;
   font-weight: 600;
}
/* ====== Services Section Styles ===== */
.ourServices_container {
   background-color: #f8f9fa;
}

.services-sections {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
   margin-top: 40px;
}

.service-section {
   background: #fff;
   padding: 40px 30px;
   border-radius: 10px;
   text-align: center;
   transition: all 0.3s ease;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-section:hover {
   transform: translateY(-10px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-section .icon {
   margin-bottom: 20px;
}

.service-section .icon i {
   font-size: 3.5rem;
   color: #2a5298;
   transition: all 0.3s ease;
}

.service-section:hover .icon i {
   color: #ffd700;
   transform: scale(1.1);
}

.service-section h3 {
   font-size: 1.5rem;
   color: #1e3c72;
   margin-bottom: 15px;
}

.service-section p {
   color: #666;
   font-size: 1rem;
}

/* ====== Destinations Section Styles ===== */
.container-destinations {
   background-color: #fff;
}

.destinations-content {
   max-width: 900px;
   margin: 0 auto;
}

.destination-item {
   padding: 25px;
   background-color: #f8f9fa;
   border-radius: 8px;
   transition: all 0.3s ease;
}

.destination-item:hover {
   background-color: #e9ecef;
   transform: translateX(10px);
}

.destination-header {
   align-items: center;
   margin-bottom: 10px;
}

.destination-header h3 {
   font-size: 1.5rem;
   color: #1e3c72;
   margin: 0;
   flex: 1;
}

.dots {
   flex: 1;
   height: 1px;
   background: repeating-linear-gradient(
      to right,
      #ccc 0,
      #ccc 5px,
      transparent 5px,
      transparent 10px
   );
   margin: 0 15px;
}

.price {
   font-size: 1.2rem;
   font-weight: 600;
   color: #2a5298;
}

.destination-item > div:not(.destination-header) {
   color: #666;
   font-size: 1rem;
}

/* ====== Contact Section Styles ===== */
.container-contactus {
   background-color: #f8f9fa;
}

.contact-form .form-control {
   border: 2px solid #e0e0e0;
   border-radius: 5px;
   padding: 12px 15px;
   font-size: 1rem;
   transition: all 0.3s ease;
}

.contact-form .form-control:focus {
   border-color: #2a5298;
   box-shadow: 0 0 0 0.2rem rgba(42, 82, 152, 0.25);
}

.btn-submit {
   background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
   color: #fff;
   padding: 12px 40px;
   border-radius: 30px;
   font-weight: 600;
   border: none;
   transition: all 0.3s ease;
}

.btn-submit:hover {
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
   color: #fff;
}

.alert-success-custom {
   background-color: #d4edda;
   border-color: #c3e6cb;
   color: #155724;
   border-radius: 5px;
}

/* ====== Footer Styles ===== */
footer {
   background-color: #1a1a2e;
   color: #fff;
   position: relative;
}

.frame.black {
   height: 5px;
   background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
}

.footer_wp h3 {
   color: #ffd700;
   font-size: 1.5rem;
   margin-bottom: 20px;
   font-family: 'Playfair Display', serif;
}

.footer_wp p,
.footer_wp a {
   color: #ccc;
   text-decoration: none;
   transition: all 0.3s ease;
}

.footer_wp a:hover {
   color: #ffd700;
}

.footer-address,
.footer-phone,
.footer-email {
   align-items: flex-start;
}

.footer-address i,
.footer-phone i,
.footer-email i {
   color: #ffd700;
   margin-right: 15px;
   margin-top: 5px;
   font-size: 1.2rem;
}

.footer_wp ul {
   list-style: none;
   padding: 0;
}

.footer_wp ul li {
   color: #ccc;
   margin-bottom: 10px;
}

.footer-social a {
   display: inline-block;
   width: 40px;
   height: 40px;
   line-height: 40px;
   text-align: center;
   background-color: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   margin-right: 10px;
   transition: all 0.3s ease;
}

.footer-social a:hover {
   background-color: #ffd700;
   color: #1a1a2e;
   transform: translateY(-3px);
}

.footer-social i {
   font-size: 1.5rem;
}

.back-to-top {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
   color: #fff;
   display: none;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
   z-index: 999;
   transition: all 0.3s ease;
}

.back-to-top:hover {
   transform: translateY(-5px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
   color: #fff;
}

/* ====== Modal Styles ===== */
.modal-content {
   border-radius: 10px;
   overflow: hidden;
}

.modal-header {
   border: none;
   padding: 8px 20px;
}

.modal-header .close {
   color: #1a1a2e !important;
   opacity: 1;
   font-size: 2rem;
}

.popup_text {
   bottom: 0;
   left: 0;
}

footer hr{
   border-color: #ccc;
}

/* ====== Responsive Adjustments ===== */
@media (max-width: 768px) {
   .content_wrapper h1 {
      font-size: 1.8rem;
   }

   .content_wrapper h2 {
      font-size: 2.5rem;
   }

   .content_wrapper h3 {
      font-size: 1.2rem;
   }

   .section_heading {
      font-size: 2rem;
   }

   .about-content {
      flex-direction: column;
   }

   .services-sections {
      grid-template-columns: 1fr;
   }

   .top_slider,
   .carousel-item {
      height: 85vh;
   }
}

