
/* Import Google Font: Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
/* Resetting margin, padding, and box-sizing for all elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  background:#f8f9fa;

}

/* Root variables for easy theming */
:root {
  --primary-color: #ffa500;
  --primary-dark: #e69500;
  --white: #ffffff;
  --black: #000000;
  --transparent-bg: rgba(0, 0, 0, 0.5);
  --font-family: 'Poppins', sans-serif;
}

/* Remove default left padding from unordered lists */
ul {
  padding-left: 0px !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  margin: 0 0 10px;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.7rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 500;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

h5 {
  font-size: 1.25rem;
  font-weight: 400;
}

h6 {
  font-size: 1rem;
  font-weight: 300;
}

section{
  padding: 40px 0;
}
header{
  background-color: #ffffff;
  position: sticky;
   top:0;
   z-index: 1000;
}
.menu-bar li .nav-link{
  margin: 0 10px !important;
  font-weight: 500;
}
.menu-btn a{
  background-color: #e69500 !important;
  color: #ffffff;
}


/* Little pointer triangle above the search box */
.search-box .input-box::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: var(--transparent-bg) !important;
  right: 10px;
  top: -6px;
  transform: rotate(45deg); /* Diagonal pointer effect */
}
/* Search Input Field Styling */


.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  border-radius: 4px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}

/* Pay Us Button (Desktop) */


.payus-desktop {
  padding: 0px 15px;
  margin-left: 20px;
  color: white;
  background-color: var(--primary-dark);
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease;
}

.payus-desktop:hover {
  background-color: var(--primary-color);
}

/* Pay Us Button (Mobile) */


.payus-mobile {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--primary-color);
  padding: 8px 12px;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 15px;
}

/* Navbar Hamburger Menu & Sidebar Logo - Hidden by default for desktop */


.navbar .nav-links .sidebar-logo,
.navbar .bx-menu {
  display: none;
}

/* Hero Section with Fullscreen Height */


.hero-section {
  position: relative;
  width: 100%;
 
  overflow: hidden;
}

/* Video Container Inside Hero Section */


.video-container {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  background: var(--transparent-bg) !important;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensures video fills area without distortion */
}
/* Overlay Content Styling for Hero Section */


.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  width: 100%;
  padding: 0 1rem;
}

.overlay-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

/* Search Form Styling */


.search-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.search-form input {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.search-form button {
  padding: 0.75rem;
  border: none;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-form button:hover {
  background-color: var(--primary-dark);
}


.mobile-payus-btn {
  display: none !important;
}
.customized-card img{
    position: relative;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.blog-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none;
        border-radius: 15px;
        overflow: hidden;
        background: #fff;
    }
    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    .blog-group-itiimg {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }
    .blog-card-body {
        padding: 1.5rem;
    }
    .blog-card-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #2c3e50;
    }
    .blog-card-text {
        font-size: 0.9rem;
        color: #6c757d;
        line-height: 1.6;
    }
    .blog-btn-custom {
        background-color: #e74c3c;
        color: #fff;
        border-radius: 25px;
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
        transition: background-color 0.3s ease;
    }
    .blog-btn-custom:hover {
        background-color: #c0392b;
    }
    .blog-meta-icon {
        color: #27ae60;
        font-size: 1rem;
    }
    .blog-meta-text {
        font-size: 0.85rem;
        color: #7f8c8d;
    }
/* Footer start */
.footer {
  background-color: #8d0707 !important;
  padding-top: 3rem;
  
}
.footer-logotxt{
  color: var(--white) !important;
}
.offer-discount img{
  position: relative;
  aspect-ratio: 2/1;
  object-fit: cover;
  
}
.super-items .super-deal{
    background: red;
    padding: 27px 10px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}
.iti-travimg img{
  position: relative;
  aspect-ratio: 2/1;
  object-fit: cover;
  border-radius: 10px;
}
.group-itiimg{
  position: relative;
  aspect-ratio: 2/1;
  object-fit: cover;

}



.visa-page .section-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 0;
}

.visa-page .section-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.visa-page .section-header p {
  font-size: 1.1rem;
  font-weight: 400;
}

.visa-page h3,
.visa-page h4 {
  color: var(--primary-dark);
  font-weight: 600;
}

.visa-page .table th {
  background-color: var(--primary-dark);
  color: var(--white);
}

.visa-page .form-label {
  font-weight: 500;
}

.visa-page input,
.visa-page select,
.visa-page textarea {
  border: 1px solid #ccc;
  transition: 0.3s;
}

.visa-page input:focus,
.visa-page select:focus,
.visa-page textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(255, 165, 0, 0.4);
}

.visa-page button {
  background-color: var(--primary-color);
  border: none;
  transition: 0.3s;
}

.visa-page button:hover {
  background-color: var(--primary-dark);
}


/* visa finish */

/* Footer finish */
/* ========================= */
/* 💻 1920px and below       */
/* ========================= */
@media (max-width: 1920px) {
  /* Currently no custom styles, add here if needed */
}

/* ========================= */
/* 💻 1440px and below       */
/* ========================= */
@media (max-width: 1440px) {
  /* Add any needed large-screen adjustments */
}

/* ========================= */
/* 💻 1280px and below       */
/* ========================= */
@media (max-width: 1280px) {
  .overlay-content h1{
    font-size: 1.4rem;

  }
}

/* ========================= */
/* 💻 920px and below        */
/* ========================= */
@media (max-width: 920px) {
  .search-form input{
    padding: 0.7rem 1rem;

  }
  h2 {
    font-size: 2.2rem;
    font-weight: 600;
}
}

/* ========================= */
/* 📱 800px and below        */
/* ========================= */
@media (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .overlay-content h1{
    font-size: 1rem;

  }
  .search-form input{
    padding: 0.5rem 1rem;

  }
  .search-form button {
    padding: 0.5rem;
  }
  .offer-discount img{
    margin: 10px;
    border-radius: 10px;
  }
  .slick-arrow{
    display: none !important;
  }
  .super-items .super-deal {
   
    padding: 0px 0px;
   
}

}

/* ========================= */
/* 📱 370px and below        */
/* ========================= */
@media (max-width: 370px) {
  .offer-discount img {
    margin: 10px;
    border-radius: 10px;
}

}

/* ========================= */
/* 📱 320px and below        */
/* ========================= */
@media (max-width: 320px) {
  /* Add ultra-mobile styling if needed */
}
