@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #ff833e;
  --primary-color-dark: #db6f35;
  --text-dark: #333333;
  --text-light: #767268;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Bebas Neue", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}
.header__cont {
  max-width: var(--max-width);
  margin: auto;
  padding-block: 4rem 2rem;
  padding-inline: 1rem;
  display: grid;
  gap: 2rem;
  overflow-x: hidden;
}

.header__image {
  position: relative;
  isolation: isolate;
  margin-bottom: 70px;

  /* bg image
  background: url('./images/call\ back.jpg') no-repeat center center;
  background-size: cover;
  border-radius:50%; */
}

.header__image::before {
  position: absolute;
  content: "";
  width: 70%;
  max-width: 550px;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("./images/team5.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 100%;
  opacity: 0.5;
  z-index: -1;
}

.header__image img {
  max-width: 520px;
  margin-inline: auto;
  width: 100%;
}

.header__image__card {
  position: absolute;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  background-color: var(--white);
  white-space: nowrap;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.header__image__card span {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.header__image__card-1 {
  top: 25%;
  left: 0;
  transform: translate(-50%, -50%);
}

.header__image__card-2 {
  top: 10%;
  right: 2rem;
  transform: translateY(-50%);
}

.header__image__card-3 {
  top: 60%;
  left: 0;
  transform: translateY(-50%);
}

.header__image__card-4 {
  top: 70%;
  right: 0;
  transform: translateY(-50%);
}

.header__cntnt h1 {
  font-size: 5rem;
  font-family: var(--header-font);
  color: var(--text-dark);
  line-height: 5.5rem;
  text-align: center;
}

.header__cntnt h1 span {
  color: var(--primary-color);
}

.header__cntnt p {
  color: var(--text-light);
  line-height: 1.75rem;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.header__cntnt .bar {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}
.header-call-btn {
  margin-top: 60px;
  margin-left: 30%;
}

/* Large screen */
@media (width > 768px) {
  .header__cont {
    padding-block: 2rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .header__cntnt :is(h1, p, .bar) {
    text-align: left;
  }
}

/* Small screen (mobile) */
@media (max-width: 768px) {
  .header__cont {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header__image img {
    max-width: 100%;
    height: auto;
  }

  .header__cntnt h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .header__cntnt p {
    font-size: 0.95rem;
    line-height: 1.5rem;
    padding: 0 1rem;
  }

  .header-call-btn {
    margin-left: 0;
    display: flex;
    justify-content: center;
  }

  /* cards adjust inside */
  .header__image__card {
    font-size: 0.85rem;
    padding: 0.5rem 0.7rem;
  }
  .header__image__card span {
    font-size: 1.1rem;
  }
  .header__image__card-1 { left: 15%; }
  .header__image__card-2 { right: 15%; }
  .header__image__card-3 { left: 15%; }
  .header__image__card-4 { right: 15%; }
}
/* ############################################### */



/*##################### map button ###############*/

.map-btn {
  --color: #0056b3;
  padding: 0.8em 1.7em;
  background-color: transparent;
  border-radius: .3em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: .5s;
  font-weight: 400;
  font-size: 17px;
  border: 2px dashed;
  font-family: inherit;
  text-transform: uppercase;
  color: var(--color);
  z-index: 1;
}
.map-btn::before, .map-btn::after {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: var(--color);
  transition: 1s ease;
}
.map-btn::before {
  top: -1em;
  left: -1em;
}
.map-btn::after {
  left: calc(100% + 1em);
  top: calc(100% + 1em);
}
.map-btn:hover::before, .map-btn:hover::after {
  height: 410px;
  width: 410px;
}
.map-btn:hover {
  color: white;
}
.map-btn:active {
  filter: brightness(.8);
}
@media (max-width: 767px) {
  .map-btn {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
  .map-btn:hover {
  color: black;
}
}

 

/* ######################### header agency name ###################################### */
.Agency-name {
  --w:18ch;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  letter-spacing: var(--w);
  width:var(--w);
  overflow: hidden;
  white-space: nowrap;
  text-shadow: 
    calc(-1*var(--w)) 0, 
    calc(-2*var(--w)) 0, 
    calc(-3*var(--w)) 0, 
    calc(-4*var(--w)) 0,
    calc(-5*var(--w)) 0, 
    calc(-6*var(--w)) 0, 
    calc(-7*var(--w)) 0, 
    calc(-8*var(--w)) 0, 
    calc(-9*var(--w)) 0,
    calc(-10*var(--w)) 0,
    calc(-11*var(--w)) 0,
    calc(-12*var(--w)) 0,
    calc(-13*var(--w)) 0,
    calc(-14*var(--w)) 0,
    calc(-15*var(--w)) 0,
    calc(-16*var(--w)) 0;
  animation: l16 2s infinite;
}
.Agency-name:before {
  content:"Rakhshan Travels";
}
@keyframes l16 {
  20% {text-shadow: 
    calc(-1*var(--w)) 0, 
    calc(-2*var(--w)) 0 red, 
    calc(-3*var(--w)) 0, 
    calc(-4*var(--w)) 0 #ffa516,
    calc(-5*var(--w)) 0 #63fff4, 
    calc(-6*var(--w)) 0, 
    calc(-7*var(--w)) 0, 
    calc(-8*var(--w)) 0 green, 
    calc(-9*var(--w)) 0,
    calc(-10*var(--w)) 0,
    calc(-11*var(--w)) 0 red,
    calc(-12*var(--w)) 0,
    calc(-13*var(--w)) 0 #ffa516,
    calc(-14*var(--w)) 0 #63fff4,
    calc(-15*var(--w)) 0 green,
    calc(-16*var(--w)) 0;
  }
  40% {text-shadow: 
    calc(-1*var(--w)) 0, 
    calc(-2*var(--w)) 0 red, 
    calc(-3*var(--w)) 0 #e945e9, 
    calc(-4*var(--w)) 0,
    calc(-5*var(--w)) 0 green, 
    calc(-6*var(--w)) 0 orange, 
    calc(-7*var(--w)) 0, 
    calc(-8*var(--w)) 0 green, 
    calc(-9*var(--w)) 0,
     calc(-10*var(--w)) 0,
    calc(-11*var(--w)) 0 red,
    calc(-12*var(--w)) 0,
    calc(-13*var(--w)) 0 #ffa516,
    calc(-14*var(--w)) 0 #63fff4,
    calc(-15*var(--w)) 0 green,
    calc(-16*var(--w)) 0;
  }
  60% {text-shadow: 
    calc(-1*var(--w)) 0 lightblue, 
    calc(-2*var(--w)) 0, 
    calc(-3*var(--w)) 0 #e945e9, 
    calc(-4*var(--w)) 0,
    calc(-5*var(--w)) 0 green, 
    calc(-6*var(--w)) 0, 
    calc(-7*var(--w)) 0 yellow, 
    calc(-8*var(--w)) 0 #ffa516, 
    calc(-9*var(--w)) 0 red,
     calc(-10*var(--w)) 0,
    calc(-11*var(--w)) 0 red,
    calc(-12*var(--w)) 0,
    calc(-13*var(--w)) 0 #ffa516,
    calc(-14*var(--w)) 0 #63fff4,
    calc(-15*var(--w)) 0 green,
    calc(-16*var(--w)) 0;
  }
  80% {text-shadow: 
    calc(-1*var(--w)) 0 lightblue, 
    calc(-2*var(--w)) 0 yellow, 
    calc(-3*var(--w)) 0 #63fff4, 
    calc(-4*var(--w)) 0 #ffa516,
    calc(-5*var(--w)) 0 red, 
    calc(-6*var(--w)) 0, 
    calc(-7*var(--w)) 0 grey, 
    calc(-8*var(--w)) 0 #63fff4, 
    calc(-9*var(--w)) 0,
     calc(-10*var(--w)) 0,
    calc(-11*var(--w)) 0 red,
    calc(-12*var(--w)) 0,
    calc(-13*var(--w)) 0 #ffa516,
    calc(-14*var(--w)) 0 #63fff4,
    calc(-15*var(--w)) 0 green,
    calc(-16*var(--w)) 0;
  }
}
@media(max-width: 768px){
  .Agency-name{
    display: none;
  }
}
/* ######################### header name end ###################################### */




   
  






/* ############################### navbar logo ############################ */
 /* Logo Styling */
 .navbar-brand {
  display: flex;
  align-items: center;
}

.logo {
  max-width: 150px;
  height: auto;
}

/* Navbar Items Center on Large Screens */
@media (min-width: 992px) {
  .navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .navbar-nav .nav-link {
  color: white !important;
}
}

/* Hamburger (Toggle Button) Right Side */
.navbar-toggler {
  border: none;
  outline: none;
}

/* Sidebar Background White */
.offcanvas {
  background-color: white !important;
}

/* Sidebar Items Left Aligned */
.navbar-nav .nav-item {
  text-align: left;
}

/* Hover Effect (Blue Background) */
.nav-hover:hover {
  background-color: #007bff;
  color: white !important;
  border-radius: 5px;
}


  /* Default behavior for large screens: Hide the image */
  .navbar .navbar-brand img {
    display: none; 
  }
  @media (max-width: 768px) {
    .navbar .navbar-brand img {
      display: block; 
      height: 50px;
      border-radius: 50%;
    }
  
    
    .navbar .navbar-brand {
      display: flex;
      align-items: center;
    }
  }
  

@media (max-width: 768px) {
  .logo__img{
    display: none;
  }
}




/* ########################## slider start ############################# */
.carousel-item img {
  height: 400px;
  object-fit: cover;
  filter: brightness(70%);
}
.carousel-caption{
  margin-bottom: 6rem;
}
.carousel-caption h2 {
  background: linear-gradient(to right, #4ade80, #22d3ee);
  -webkit-background-clip: text;
  color: transparent;
}
.carousel-caption p {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* ############################## slider end ################################ */



 /* ############################# contact strat ############################# */
 .contact{
  margin-top: -50px;
 }
 .support-section {
  background-color: #d9eaf7;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap; /* Elements ko wrap karne ke liye */
}

.support-section .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.support-section .contact-info {
  flex-grow: 1;
}

.support-section .contact-info h5 {
  margin: 0;
  font-weight: bold;
}

.support-section .contact-info small {
  color: gray;
}

.support-section .contact-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap; /* Small screens ke liye wrapping enable */
}

.support-section .contact-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
}

.support-section .contact-links a:hover {
  text-decoration: underline;
}

.support-section .contact-links i {
  color: #007bff;
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .support-section {
    flex-direction: column;
    align-items: center;
  }

  .support-section .profile-image,
  .support-section .contact-info {
    align-items: center;
    gap: 10px;
  }

  .support-section .contact-info {
    text-align: center;
  }

  .support-section .contact-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .support-section .contact-links a {
    justify-content: center; 
  }
}


/* ################################ contact end ################################# */



/* ############################## visa, umrah, tour cards ####################### */
.card {
border: none;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.card-image {
position: relative;
}

.card-image img {
width: 100%;
height: 200px;
object-fit: cover;
transition: transform 0.3s ease;
}

.card:hover .card-image img {
transform: scale(1.1);
}

.card-badge {
position: absolute;
top: 10px;
left: 10px;
background: #ff4d6d;
color: white;
font-size: 0.8rem;
font-weight: bold;
padding: 5px 10px;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-body {
padding: 20px;
background: linear-gradient(135deg, #6f42c1, #8a63d2);
color: white;
border-radius: 0 0 15px 15px;
}

.card-title {
font-size: 1.3rem;
font-weight: bold;
}

.card-text {
font-size: 0.9rem;
margin: 10px 0;
color: rgba(255, 255, 255, 0.8);
}


.btn-warning {
background: #ff4d6d;
border: none;
color: white;
padding: 8px 20px;
border-radius: 20px;
font-weight: bold;
font-size: 0.9rem;
cursor: pointer;
transition: background 0.3s ease;
}

.btn-warning:hover {
background: #e0435f;
}

.btn-outline-light {
color: white;
border: 1px solid white;
transition: color 0.3s ease, background 0.3s ease;
}

.btn-outline-light:hover {
background: white;
color: #6f42c1;
}

/* ########################## visa, umrah, tour cards end ####################### */


/* ########################## read and less more start ######################### */
.read-more-text {
  display: none;
}
.read-more-text--show {
  display: inline;
}
/* ############################# read and less more end ######################### */

 /* ############################ call to action start ############################ */
 .call-to-action {
  position: relative;
  background: url('./images/call\ back.jpg') no-repeat center center;
  background-size: cover;
  height: 400px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Overlay to darken the background */
.call-to-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}


.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  border: 2px solid white;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
  background-color: orange;
  color: black;
}
/* ################################# call to action end ############################ */








/* ############################### our team member ############################# */

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.3); 
  border-radius: 50%;
}


.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00aaff;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #00aaff; 
}


.left-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-container {
  max-width: 370px;
  margin: 50px auto;
  background: linear-gradient(to bottom, #0056b3 60%, orange 63%);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #000;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}
.logo {
  text-align: left;
}
.logo img {
  /* max-width: 60px; */
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.company-name {
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: white;
}
/* .map-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: white;
  background: #003366;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.map-icon:hover {
  transform: rotate(360deg);
} */
.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  margin: 20px auto;
  display: block;
  transition: transform 0.3s ease;
}
.profile-img:hover {
  transform: scale(1.1);
}
.name {
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  /* margin-top: 10px; */
  color: white;
}
.designation {
  text-align: center;
  font-size: 1rem;
  color: white;
}
.social-icons {
  text-align: center;
  margin-top: 20px;
  font-size: 25px;
}
.social-icons a {
  text-decoration: none;
  margin: 5px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.2);
}
.social-icons img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.call-button {
  margin-top: 20px;
  text-align: center;
}
.call-button button {
  background: #007bff;
  color: white;
  font-size: 1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.call-button button:hover {
  background-color: #0056b3;
}
.footer-text {
  text-align: center;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #666;
}
/* ############################### our team member ############################# */





/* ############################## footer ########################################### */
.footer {
  /* background: linear-gradient(145deg, #2d2d2d, #1f1f1f); */
  background-color: #1437B8;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-logo {
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.footer-logo:hover {
  transform: scale(1.1);
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ffb400;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 20px;
}

.footer-contact {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffb400;
}

.social-icons {
  margin-top: 20px;
}

.social-icon {
  color: #fff;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ffb400;
}


/* Footer Bottom Section */
.footer-bottom {
  background: #222;
  text-align: center;
  color: #aaa;
  font-size: 0.8rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-logo {
    width: 100px;
    height: auto;
  }
}
/* ##################################### footer end ############################ */









/* ############################################################################## */
/* ################## best umrah package section ################################ */
.pkg{
  border: 2px solid lightslategray;
  box-shadow: 4px 1px 5px lightslategrey;
}
 /* Custom Styling */
 .package-card {
  border: 2px solid #1d3e6e;
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.package-header {
  background-color: #1d3e6e;
  color: white;
  font-weight: bold;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
}

.package-body {
  padding: 20px;
  color: #333;
}

.nights {
  color: red;
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
}

.pricing-table {
  text-align: center;
  margin-top: 15px;
}

.pricing-table th, .pricing-table td {
  padding: 8px 15px;
  font-size: 0.9rem;
}

.hotel-info {
  font-size: 0.90rem;
  text-align: center;
  margin-top: 15px;
}
/* ########################## pricing table end ################################ */




/* ################################### contact form ###################################### */
.form-section{
  background-image: url(./images/5100570.jpg);
  background-size: cover;
  background-repeat: no-repeat;

}
.quote-section {
  /* background-color: #f8f9fa; */
  /* padding: 4rem; */
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
  /* background-color: blue; */

}

.quote-form {
  background-color: #e5e7eb;
  padding: 2rem;
  border-radius: 10px;
}

.quote-form input,
.quote-form textarea {
  border: 1px solid #ced4da;
  border-radius: 5px;
}

.quote-form button {
  background-color: #007bff;
  color: #fff;
  border: none;
}

.quote-form h1 {
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
}
/* ################################### contact form ###################################### */


/* ###################################################################################### */
/* ################################## best umrah packages ############################## */
/* ############################# makkah zyarat places start ############################## */
/* General Styles */
.custom-list-item {
  gap: 0.5rem;
  margin-left: 10px;
  /* list-style: none; */
}

.custom-list-item li {
  margin-bottom: 0.8rem;
}

.image-grid img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .custom-list-item {
    font-size: 1rem;
  }

  .custom-list-item li {
    margin-bottom: 0.4rem;
  }
}

@media (max-width: 576px) {
  .custom-list-item {
    font-size: 0.9rem;
  }

  .custom-list-item li {
    margin-bottom: 0.8rem;
  }

  h2.fw-bold.fs-4 {
    font-size: 1.2rem;
    text-align: center;
  }
}

/* ############################# makkah zyarat places start ############################## */






/* ############################## umrah guided section start ############################ */
h1 {
  font-family: 'Arial', sans-serif;
  font-weight: bold;
}
.content-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}
ol {
  padding-left: 20px;
}
.intention {
  background: #e9f7ef;
  padding: 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.2rem;
}
/* ################################ umrah guided section end ############################### */




/* ######################################################################################## */
/* ##################################### world tour ####################################### */
/* ########################## thailand tour and maldives tour #############################*/
.container {
  flex-direction: row;
  gap: 20px;
}
.container2 {
  display: flex;
}
.container-thailand{
  flex-wrap: wrap; 
}

.content-box {
  flex: 2;
}


.image-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start; 
}


.image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
  
  .container-thailand {
      flex-direction: column;
  }

  
  .second-image {
      display: none;
  }

  
  .image-box {
      align-items: center; 
  }
}
/* ########################## thailand tour and maldives tour end #############################*/


.header {
  background-color: #007bff;
  color: white;
  text-align: center;
  padding: 3px;
  width: 85%;
  margin: auto;
}

.map-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px;
}

.locations {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  height: 500px;
  overflow-y: auto;
}

.map {
  flex: 2;
  min-width: 200px;
  height: 500px;
}

.location-item {
  margin-bottom: 15px;
}

.location-item h5 {
  margin: 0;
}

.location-item .details-btn {
  margin-top: 5px;
}

















/* HTML: <div class="loader"></div> */
.loader {
  width: 150px;
  height: 30px;
  display: flex;
  justify-content: center;
  margin-left: 18px;
}
.loader:before,
.loader:after {
  content: "";
  background: #000;
  width: 15px;
  clip-path: polygon(0 10px,calc(100% - 15px) 10px,calc(100% - 15px) 0,100% 50%,calc(100% - 15px) 100%,calc(100% - 15px) calc(100% - 10px),0 calc(100% - 10px));
  animation: l2 3s infinite linear;
}
.loader:before {
  transform: scaleX(-1);
}
@keyframes l2 {
  90%,100%{flex-grow: .5}
}






















/* HTML: <div class="loader"></div> contact */
.loader_circle {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(#000 0 90deg,#ccc 0 180deg);
  animation: l21 1s infinite linear;
}
@keyframes l21 {
  100% {transform: rotate(.5turn)}
}







/* HTML: <div class="loader"></div> call to action*/
.loader_call {
  width: 50px;
  aspect-ratio: 1;
  color: #f03355;
  --_c:no-repeat radial-gradient(farthest-side,currentColor 92%,#0000);
  background: 
    var(--_c) 50% 0   /12px 12px,
    var(--_c) 50% 100%/12px 12px,
    var(--_c) 100% 50%/12px 12px,
    var(--_c) 0    50%/12px 12px,
    var(--_c) 50%  50%/12px 12px,
    conic-gradient(from 90deg at 4px 4px,#0000 90deg,currentColor 0)
    -4px -4px/calc(50% + 2px) calc(50% + 2px);
  animation: l8 1s infinite linear;
}
@keyframes l8 {to{transform: rotate(.5turn)}}














/* ##################################### Visa Form Styling ##################################### */

/* General Container Styling */
.container-visa {
  background-color: rgb(229 231 235);
  border-radius: 15px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  padding: 30px;
}

.container_form1 {
  padding: 50px;
}

@media (max-width: 576px) {
  .container_form1 {
    padding: 20px;
  }
}

/* Tabs Styling */
.nav-tabs .nav-link {
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  color: #007bff;
}

.nav-tabs .nav-link:hover {
  background-color: #e9ecef;
}

.nav-tabs .nav-link.active {
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border-radius: 5px;
}

/* Form Section Styling */
.form-section {
  background: white;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-section h5 {
  background: #007bff;
  color: white;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

/* Labels & Inputs */
label {
  font-weight: bold;
  color: #333333;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: all 0.3s;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

input:focus, select:focus, textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

input:hover, select:hover, textarea:hover {
  border-color: #0056b3;
}

/* Buttons */
.btn-primary {
  background-color: #007bff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Question Sections */
.question-section {
  padding: 15px;
  margin-top: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
}

.question-section h6 {
  margin-bottom: 15px;
  font-size: 1.2em;
  font-weight: bold;
  background-color: #007bff;
  color: white;
  padding: 6px;
  border-radius: 10px;
  /* text-align: center; */
}

/* Hidden Form Option */
.hidden-form-option {
  display: none;
  padding: 10px;
  background: #f1f1f1;
  border-radius: 5px;
  margin-top: 10px;
}


/* ######################### visa price card  */

.unique-pricing-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  /* text-align: center; */
  background-color: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.unique-pricing-card-header {
  background-color: #6c3483; /* Purple shade */
  text-align: center;
  color: #fff;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
}

.unique-price {
  font-size: 36px;
  color: #6c3483;
  margin: 20px 0;
  text-align: center;
}

.unique-price span {
  font-size: 16px;
  color: #555;
}

.unique-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unique-pricing-features li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.unique-pricing-button {
  background-color: #6c3483;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 20px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.unique-pricing-button:hover {
  background-color: #512d73;
}

.unique-badge {
  position: absolute;
  top: 10px;
  right: -5px;
  background-color: #28a745; /* Green */
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
  transform: rotate(45deg);
  width: 80px;
}










  /* #headerNavbarWrapper {
    background-color: white; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease;
  } */