*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5f7fa;
color:#333;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:#0b3d91;
color:white;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}
}

nav {
    display: flex;
    gap: 20px;
}

nav a{
color:white;
text-decoration:none;
margin-left:20px;
font-weight:500;
}

.hero{
height:90vh;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
overflow:hidden;
}

.hero-image{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.5);
z-index:-1;
}
.overlay{
position:relative;
z-index:1;
}
.hero h1{
font-size:60px;
}

.hero p{
font-size:22px;
margin:15px 0;
}

.btn{
display:inline-block;
padding:14px 30px;
background:#00b894;
color:white;
text-decoration:none;
border-radius:30px;
font-weight:bold;
}

.services{
padding:70px 30px;
text-align:center;
}

.cards{
display:flex;
gap:25px;
justify-content:center;
flex-wrap:wrap;
margin-top:30px;
}

.card{
background:white;
padding:30px;
width:300px;
border-radius:15px;
box-shadow:0 10px 20px rgba(0,0,0,.1);
}

.about{
padding:60px 40px;
text-align:center;
background:#eaf4ff;
}

footer{
background:#0b3d91;
color:white;
text-align:center;
padding:30px;
margin-top:50px;
}

@media (max-width: 768px) {

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 0;
}

}

.hero h1{
font-size:40px;
}
}
.destinations,
.packages{
padding:70px 20px;
text-align:center;
background:#fff;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:#25D366;
color:#fff;
font-size:30px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,.25);
z-index:999;
transition:.3s;
}

.whatsapp:hover{
transform:scale(1.1);
}
.gallery{
padding:80px 20px;
background:#f7f7f7;
text-align:center;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:40px;
}

.gallery img{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.15);
transition:.4s;
}

.gallery img:hover{
transform:scale(1.05);
}

.reviews{
padding:80px 20px;
background:white;
text-align:center;
}
.why-us {
  position: relative;
  width: 100%;
  display: block;
  clear: both;
  padding: 60px 20px;
  margin-top: 50px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-box {
  position: relative;
}

.gallery,
.reviews,
.contact {
  position: relative;
  clear: both;
  z-index: 2;
}
/* Part 4C - Enquiry Form */

.enquiry {
  padding: 60px 20px;
  text-align: center;
  clear: both;
}

.enquiry h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.enquiry form {
  max-width: 500px;
  margin: auto;
}

.enquiry input,
.enquiry textarea {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.enquiry textarea {
  height: 120px;
}

.enquiry button {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}
/* Part 5 - Footer */

.footer {
  padding: 50px 20px 20px;
  margin-top: 40px;
  clear: both;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-box {
  max-width: 300px;
}

.footer-box h3 {
  margin-bottom: 15px;
}

.footer-box a {
  display: block;
  text-decoration: none;
  margin: 8px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
}
/* Footer Links Style */

.footer-box a {
  color: inherit;
  text-decoration: none;
}

.footer-box a:hover {
  text-decoration: underline;
}
/* Mobile Responsive */

@media (max-width: 768px) {

.gallery-grid {
  grid-template-columns: 1fr;
}

.features,
.testimonial-container,
.footer-container {
  flex-direction: column;
  align-items: center;
}

.feature-box,
.testimonial-card,
.footer-box {
  width: 90%;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 26px;
}

}
.review-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  background: #25D366;
}
html {
  scroll-behavior: smooth;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    text-align:center;
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.card h3{
    margin:15px 0 10px;
}

.card p{
    padding:0 15px 20px;
}
/* =================================
   MOBILE RESPONSIVE - PART 1
================================= */

@media screen and (max-width: 768px) {

  /* Header */
  header {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
  }

  .logo img {
    width: 56px;
    height: 56px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    margin: 0;
    font-size: 15px;
  }

  /* Hero Section */
  .hero {
    height: 75vh;
    padding: 20px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.6;
    margin: 12px 0 18px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }
}
/* ===========================
   MOBILE RESPONSIVE - PART 2
=========================== */

@media screen and (max-width: 768px) {

  /* Destinations & Packages */
  .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .card {
    width: 95%;
    max-width: 350px;
    margin: 0 auto;
  }

  .destinations .card img,
  .gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
  }

  /* Gallery */
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Reviews */
  .reviews .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Enquiry Form */
  .enquiry form {
    width: 100%;
    padding: 0 15px;
  }

  .enquiry input,
  .enquiry textarea,
  .enquiry button {
    width: 100%;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-box {
    max-width: 100%;
  }

  /* Floating WhatsApp */
  .whatsapp {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 15px;
    right: 15px;
  }
}
/* ===========================
   HAMBURGER MENU
=========================== */

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#fff;
}

@media screen and (max-width:768px){

header{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    position:relative;
}

.logo{
    margin:0;
}

.menu-toggle{
    display:block;
}

nav{
    display:none;
    position:absolute;
    top:75px;
    left:0;
    width:100%;
    background:#0b3d91;
    flex-direction:column;
    text-align:center;
    padding:15px 0;
    z-index:999;
}

nav.active{
    display:flex;
}

nav a{
    margin:12px 0;
    font-size:17px;
}

}
/* ===========================
   LIGHTBOX GALLERY
=========================== */

.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    cursor:pointer;
    padding:20px;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:12px;
    box-shadow:0 0 30px rgba(255,255,255,.25);
    animation:zoomIn .3s ease;
}

@keyframes zoomIn{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}
.call-float{
    position: fixed !important;
    right: 20px !important;
    left: auto !important;
    bottom: 90px !important;
    width: 60px;
    height: 60px;
    background: #007BFF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    z-index: 1000;
}

.call-float i{
    color: #fff;
}
.booking-popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    justify-content:center;
    align-items:center;
    z-index:10000;
}

.booking-box{
    background:#fff;
    width:90%;
    max-width:420px;
    padding:25px;
    border-radius:15px;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.booking-box h2{
    text-align:center;
    margin-bottom:20px;
}

.booking-box input,
.booking-box textarea{
    width:100%;
    padding:12px;
    margin:8px 0;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
    box-sizing:border-box;
}

.booking-box textarea{
    resize:none;
    height:90px;
}

.booking-box button{
    width:100%;
    padding:12px;
    background:#25D366;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:17px;
    cursor:pointer;
}

.booking-box button:hover{
    background:#1ebe5d;
}

.close-popup{
    position:absolute;
    top:10px;
    right:15px;
    font-size:28px;
    cursor:pointer;
}
.booking-box input,
.booking-box textarea,
.booking-box button{
    width:100%;
    box-sizing:border-box;
}

.booking-box input[type="date"]{
    width:100%;
    height:52px;
    padding:12px;
    margin:8px 0;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
    box-sizing:border-box;
    background:#fff;
    color:#333;
}
.booking-box input[type="text"]{
    height:52px;
}
.review-slider{
    overflow:hidden;
    width:100%;
}

.review-slider .cards{
    display:flex;
    gap:25px;
    flex-wrap:nowrap;
    justify-content:flex-start;
    animation:reviewSlide 40s linear infinite;
}

.review-slider .cards:hover{
    animation-play-state:paused;
}

@keyframes reviewSlide{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(calc(-325px * 3));
    }
}

@media (max-width:768px){

    .review-slider .card{
        min-width:85%;
        flex:0 0 85%;
    }

    @keyframes reviewSlide{
        0%{
            transform:translateX(0);
        }
        100%{
            transform:translateX(calc(-90% * 2));
        }
    }
}
.about{
text-align:center;
padding:50px 20px;
}

.about-points{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
max-width:1200px;
margin-left:auto;
margin-right:auto;
}

.about-points div{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.35s;
border:1px solid #eef2f7;
}

.about-points div:hover{
transform:translateY(-8px);
box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.about-points h3{
color:#0b3d91;
margin-bottom:15px;
font-size:22px;
}

.about-points p{
color:#555;
line-height:1.7;
font-size:16px;
}
.cta{
text-align:center;
padding:50px 20px;
background:#f1f8ff;
border-radius:15px;
margin:40px 20px;
}

.cta h2{
font-size:32px;
margin-bottom:15px;
}

.cta p{
font-size:18px;
margin-bottom:25px;
}

.cta a{
display:inline-block;
padding:14px 30px;
background:#25D366;
color:white;
text-decoration:none;
border-radius:30px;
font-weight:bold;
}
.cta{
text-align:center;
}

.cta a{
margin:0 auto;
}
@media(max-width:600px){

.cta{
text-align:center;
display:flex;
flex-direction:column;
align-items:center;
}

.cta a{
display:inline-block;
margin:20px auto 0;
}

}
.destinations,
.packages{
text-align:center;
}

.destinations h2,
.packages h2{
text-align:center;
}
@media (max-width:600px){

.destinations,
.packages{
    width:100%;
    text-align:center;
}

.destinations h2,
.packages h2{
    text-align:center;
    width:100%;
}

}
.faq{
padding:60px 20px;
background:#f8f9fa;
text-align:center;
}

.faq h2{
margin-bottom:30px;
font-size:32px;
}

.faq-item{
max-width:800px;
margin:20px auto;
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
text-align:left;
}

.faq-item h3{
margin-bottom:10px;
color:#0b3d91;
}

.faq-item p{
color:#555;
line-height:1.6;
}
/* ===========================
   PREMIUM TOUR PACKAGES V2
=========================== */

.packages{
    padding:80px 20px;
    background:#f7f9fc;
}

.packages h2{
    text-align:center;
    font-size:38px;
    color:#0b3d91;
    margin-bottom:50px;
}

.packages .cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    max-width:1400px;
    margin:auto;
}

.packages .card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    transition:.35s ease;
    position:relative;
}

.packages .card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.packages .card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.packages .card h3{
    font-size:27px;
    color:#0b3d91;
    padding:20px 22px 10px;
}

.packages .card p{
    padding:0 22px;
    margin:10px 0;
    font-size:16px;
    color:#555;
    line-height:1.7;
}

.packages .card h4{
    color:#0a8f3d;
    font-size:28px;
    padding:15px 22px;
}

.packages .btn{
    display:block;
    width:calc(100% - 44px);
    margin:0 22px 25px;
    text-align:center;
    background:#0b3d91;
    color:#fff;
    text-decoration:none;
    padding:14px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.packages .btn:hover{
    background:#082d6b;
}
/* ===== Premium Package Badges ===== */

.package-badge{
position:absolute;
top:15px;
right:15px;
background:#ff9800;
color:#fff;
padding:8px 14px;
font-size:13px;
font-weight:700;
border-radius:30px;
box-shadow:0 5px 15px rgba(0,0,0,.2);
z-index:10;
}

.package-rating{
padding:0 22px;
font-size:18px;
color:#f4b400;
margin-top:5px;
margin-bottom:10px;
}

.package-buttons{
display:flex;
gap:12px;
padding:0 22px 25px;
}

.package-buttons .btn{
margin:0;
flex:1;
}

.details-btn{
background:#f1f5f9;
color:#0b3d91;
border:2px solid #0b3d91;
text-decoration:none;
padding:14px;
text-align:center;
border-radius:12px;
font-weight:600;
transition:.3s;
}

.details-btn:hover{
background:#0b3d91;
color:#fff;
}

@media (max-width:768px){

.packages{
padding:60px 15px;
}

.packages h2{
font-size:30px;
}

.packages .cards{
grid-template-columns:1fr;
gap:25px;
}

.packages .card img{
height:220px;
}

.package-buttons{
flex-direction:column;
}

}
.details-popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.6);
z-index:999;
align-items:center;
justify-content:center;
}

.details-box{
background:white;
width:90%;
max-width:500px;
padding:30px;
border-radius:20px;
position:relative;
}

.close-details{
position:absolute;
right:20px;
top:10px;
font-size:30px;
cursor:pointer;
}
/* ===========================
   PREMIUM SERVICES SECTION
=========================== */

.services{
padding:80px 20px;
background:#ffffff;
}

.services h2{
text-align:center;
font-size:38px;
color:#0b3d91;
margin-bottom:50px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1300px;
margin:auto;
}

.service-card{
background:#fff;
padding:35px 25px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.35s;
border:1px solid #eef2f7;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.service-icon{
width:80px;
height:80px;
margin:0 auto 20px;
background:#eaf3ff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:36px;
}

.service-card h3{
font-size:23px;
color:#0b3d91;
margin-bottom:15px;
}

.service-card p{
font-size:16px;
color:#555;
line-height:1.7;
}

@media(max-width:768px){

.services{
padding:60px 15px;
}

.services h2{
font-size:30px;
}

.service-grid{
grid-template-columns:1fr;
gap:25px;
}

.service-card{
padding:30px 20px;
}

.service-icon{
width:70px;
height:70px;
font-size:32px;
}

}
/* ===========================
   PREMIUM STATS SECTION
=========================== */

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
padding:70px 20px;
background:#f7f9fc;
max-width:1300px;
margin:auto;
}

.stat-card{
background:#fff;
padding:35px 20px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.35s;
border:1px solid #eef2f7;
}

.stat-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.stat-number{
font-size:42px;
font-weight:700;
color:#0b3d91;
margin-bottom:10px;
}

.stat-card p{
font-size:18px;
color:#555;
font-weight:500;
line-height:1.5;
}

@media(max-width:768px){

.stats{
grid-template-columns:repeat(2,1fr);
gap:18px;
padding:50px 15px;
}

.stat-number{
font-size:34px;
}

.stat-card p{
font-size:15px;
}

}
.flatpickr-input{
    width:100%;
    height:52px;
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
    box-sizing:border-box;
    background:#fff;
}
@media (max-width:768px){

.booking-box{
    width:90%;
    max-width:400px;
    box-sizing:border-box;
}

.booking-box input,
.booking-box select,
.booking-box textarea{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
}

.flatpickr-calendar{
    max-width:100vw !important;
}

.flatpickr-input{
    width:100% !important;
    box-sizing:border-box;
}

}
.flatpickr-wrapper{
    width:100% !important;
    display:block !important;
}

.flatpickr-wrapper input{
    width:100% !important;
}

#bdate{
    width:100% !important;
}
.logo{
    display:flex !important;
    align-items:center !important;
    gap:08px !important;
}

.logo img{
    width:60px !important;
    height:60px !important;
    object-fit:contain;
}

.logo span{
    font-size:28px !important;
    font-weight:700 !important;
    color:#ffffff !important;
    letter-spacing:0.5px;
    font-family:'Poppins', sans-serif;
}
header{
    padding:18px 20px !important;
}

.logo img{
    width:70px !important;
    height:70px !important;
}

.logo span{
    font-size:20px !important;
    font-weight:700 !important;
    color:#fff !important;
}

.menu-toggle{
    font-size:32px !important;
}
@media (max-width:768px){

.hero{
    height:85vh;
    padding:0 20px;
}

.hero h1{
    font-size:42px;
    line-height:1.15;
    margin-bottom:18px;
}

.hero p{
    font-size:20px;
    line-height:1.5;
    margin-bottom:28px;
}

.hero .btn{
    padding:14px 34px;
    font-size:20px;
    border-radius:30px;
}

}
.reviews{
    padding:60px 20px;
    text-align:center;
}

.reviews h2{
    font-size:38px;
    margin-bottom:35px;
    color:#0b3d91;
    font-weight:700;
}

.elfsight-app-6d549362-37dd-4332-ae1c-5ca0ca0e8c38{
    max-width:1200px;
    margin:0 auto;
}
.package-types{
    text-align:center;
    padding:50px 20px;
}

.package-types h2{
    font-size:32px;
    margin-bottom:15px;
}

.package-types > p{
    max-width:800px;
    margin:0 auto 30px;
    line-height:1.7;
}

.package-types .about-points{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.package-types .about-points > div{
    background:white;
    padding:25px;
    width:300px;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,.1);
}
.destinations-info{
    text-align:center;
    padding:50px 20px;
}

.destinations-info h2{
    font-size:32px;
    margin-bottom:15px;
}

.destinations-info > p{
    max-width:800px;
    margin:0 auto 30px;
    line-height:1.7;
}

.destinations-info .about-points{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.destinations-info .about-points > div{
    background:white;
    padding:25px;
    width:300px;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,.1);
}
.best-time{
    text-align:center;
    padding:50px 20px;
}

.best-time h2{
    font-size:32px;
    margin-bottom:15px;
}

.best-time > p{
    max-width:800px;
    margin:0 auto 30px;
    line-height:1.7;
}

.best-time .about-points{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.best-time .about-points > div{
    background:white;
    padding:25px;
    width:300px;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,.1);
}
/* SEO FAQ Section */

.seo-faq{
    padding:50px 20px;
    text-align:center;
}

.seo-faq h2{
    font-size:32px;
    margin-bottom:30px;
}

.seo-faq .faq-box{
    max-width:900px;
    margin:0 auto;
    text-align:left;
}

.seo-faq .faq-box h3{
    margin-top:25px;
    margin-bottom:10px;
    font-size:22px;
    color:#0b3d91;
}

.seo-faq .faq-box p{
    line-height:1.8;
    margin-bottom:20px;
    color:#555;
}

@media (max-width:768px){

.seo-faq h2{
    font-size:26px;
}

.seo-faq .faq-box h3{
    font-size:20px;
}

}
/* SEO Intro */

.seo-intro{
    padding:60px 20px;
    text-align:center;
}

.seo-intro h1{
    font-size:42px;
    margin-bottom:20px;
    color:#0b3d91;
}

.seo-intro p{
    max-width:900px;
    margin:0 auto 20px;
    line-height:1.8;
}

/* Why Choose Our Kashmir Tour Packages */

.why-kashmir{
    padding:60px 20px;
    text-align:center;
}

.why-kashmir h2{
    font-size:32px;
    margin-bottom:20px;
}

.why-kashmir > p{
    max-width:900px;
    margin:0 auto 30px;
    line-height:1.8;
}

.why-kashmir .about-points{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.why-kashmir .about-points > div{
    background:#fff;
    padding:25px;
    width:300px;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,.1);
}
.view-all-packages{
    display:flex;
    justify-content:center;
    margin-top:40px;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:30px;
}

.hero-buttons .btn{
    display:inline-block;
}

.btn-outline{
    background:transparent;
    color:#fff;
    border:2px solid #fff;
}

.btn-outline:hover{
    background:#fff;
    color:#0b3d91;
}

@media (max-width:768px){

.hero-buttons{
    flex-direction:column;
    gap:15px;
}

.hero-buttons .btn{
    width:260px;
    text-align:center;
}

}
