
body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f5f7fa;
  color: #333;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #0b3c5d;
  color: #fff;
  padding: 25px 0;
  text-align: center;
}

.header h1 {
  font-size: 32px;
  letter-spacing: 1px;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
  url("/blogs/image/blog_bg_image.png") center/cover no-repeat;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* BLOG SECTION */
.blogs {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card h3 {
  padding: 15px;
  font-size: 20px;
}

.blog-card p {
  padding: 0 15px 15px;
  font-size: 14px;
  color: #555;
}

.blog-card a {
  display: block;
  text-align: center;
  background: #0b3c5d;
  color: #fff;
  padding: 12px;
  text-decoration: none;
  font-weight: bold;
}

.blog-card a:hover {
  background: #06293d;
}

/* FOOTER */
.footer {
  background: #0b3c5d;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
{margin:0;padding:0;box-sizing:border-box}
body{
  font-family: 'Segoe UI', Arial, sans-serif;
  background:#f5f7fb;
  color:#333;
  line-height:1.7;
}

/* HERO */
.hero{
  background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),url('/blogs/image/blog_bg_image.png') center/cover no-repeat;
  color:#fff;
  padding:80px 20px;
  text-align:center;
}
.hero h1{font-size:42px;margin-bottom:10px}
.hero p{font-size:18px}

/* CONTAINER */
.container{
  max-width:1200px;
  margin:auto;
  padding:30px 20px;
  background:#fff;
}

/* SECTION */
.section{margin-top:50px}
.section h2{
  font-size:30px;
  margin-bottom:15px;
  color:#0b3c5d;
}
.section p{margin-bottom:15px}

/* IMAGE */
.section img{
  width:100%;
  border-radius:12px;
  margin:20px 0;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

/* CARD */
.card{
  background:#f9fbff;
  padding:20px;
  border-radius:15px;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}
.card h3{margin-bottom:10px;color:#0b3c5d}

/* ITINERARY */
.itinerary-day{
  background:#eef6fb;
  padding:20px;
  border-left:5px solid #0b3c5d;
  border-radius:10px;
  margin-bottom:20px;
}

/* FAQ */
.faq{
  background:#f1f6fb;
  padding:30px;
  border-radius:15px;
}
.faq h3{margin-top:20px}

/* CTA */
.cta{
  background:#0b3c5d;
  color:#fff;
  padding:40px 20px;
  text-align:center;
  margin-top:60px;
}
.cta a{
  display:inline-block;
  margin-top:15px;
  padding:12px 30px;
  border:2px solid #fff;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-weight:bold;
}

/* FOOTER */
.footer{
  background:#0b3c5d;
  color:#fff;
  text-align:center;
  padding:15px;
}
.destination-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:30px;
  margin-top:30px;
}

.destination-card{
  background:#ffffff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,0.12);
  transition:all 0.3s ease;
}

.destination-card:hover{
  transform:translateY(-6px);
}

.destination-card img{
  width:100%;
  height:300px;
  object-fit:cover;
}

.destination-content{
  padding:10px;
}

.destination-content h3{
  font-size:22px;
  color:#0b3c5d;
  margin-bottom:20px;
}

.destination-content p{
  font-size:15px;
  color:#555;
}

/* Mobile Optimization */
@media(max-width:768px){
  .destination-card img{
    height:190px;
  }
}


/* RESPONSIVE */
@media(max-width:768px){
.hero h1{font-size:32px}
.section h2{font-size:24px}
}
/* MODAL BACKGROUND */
.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  z-index:10000;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* MODAL BOX */
.modal-content{
  background:#fff;
  width:90%;
  max-width:450px;
  padding:30px;
  border-radius:18px;
  position:relative;
  animation:popup 0.3s ease;
}

/* CLOSE BUTTON */
.close-btn{
  position:absolute;
  top:15px;
  right:18px;
  font-size:26px;
  cursor:pointer;
  color:#555;
}

/* FORM */
.enquiry-form input,
.enquiry-form textarea{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border-radius:8px;
  border:1px solid #ccc;
}

.enquiry-form button{
  width:100%;
  padding:12px;
  background:#0b3c5d;
  color:#fff;
  border:none;
  border-radius:30px;
  font-size:16px;
  font-weight:bold;
  cursor:pointer;
}

/* ANIMATION */
@keyframes popup{
  from{transform:scale(0.8);opacity:0}
  to{transform:scale(1);opacity:1}
}
/* RIGHT SIDE BUTTON CONTAINER */
.side-buttons{
  position:fixed;
  right:0;
  top:10%;
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:5px;
}

/* COMMON BUTTON STYLE */
.side-btn{
  width:40px;
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:600;
  text-decoration:none;
  border:none;
  cursor:pointer;
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  letter-spacing:1px;
  box-shadow:0 6px 15px rgba(0,0,0,0.3);
}

/* COLORS */
.side-btn.whatsapp{background:#25D366;}
.side-btn.call{background:#0b3c5d;}
.side-btn.quote{background:#1f3c88;}

/* HOVER EFFECT */
.side-btn:hover{
  filter:brightness(1.1);
}

/* MOBILE ADJUST */
@media(max-width:768px){
  .side-btn{
    width:45px;
    height:140px;
    font-size:14px;
  }
}

/* SLIDE IN FROM RIGHT */
@keyframes slideIn{
  from{
    opacity:0;
    transform:rotate(180deg) translateX(80px);
  }
  to{
    opacity:1;
    transform:rotate(180deg) translateX(0);
  }
}

/* SOFT FLOAT EFFECT */
@keyframes floatY{
  0%{ transform:rotate(180deg) translateY(0); }
  50%{ transform:rotate(180deg) translateY(-6px); }
  100%{ transform:rotate(180deg) translateY(0); }
}
.side-btn:hover{
  filter:brightness(1.15);
  box-shadow:0 10px 25px rgba(0,0,0,0.4);
}
.side-btn.whatsapp{ animation-delay:0.1s; }
.side-btn.call{ animation-delay:0.25s; }
.side-btn.quote{ animation-delay:0.4s; }
@media(max-width:768px){
  .side-btn{
    animation:slideIn 0.6s ease forwards;
  }
}
/* WHY CHOOSE US IMAGE LAYOUT */
.why-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.why-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.why-content h2{
  margin-bottom:15px;
}

.why-intro{
  color:#555;
  margin-bottom:25px;
}

.why-points{
  display:grid;
  gap:18px;
}

.why-point{
  display:flex;
  gap:15px;
  align-items:flex-start;
}

.why-point i{
  font-size:26px;
  color:#0b3c5d;
  min-width:30px;
}

.why-point h3{
  font-size:18px;
  margin-bottom:5px;
  color:#0b3c5d;
}

.why-point p{
  font-size:15px;
  color:#555;
}

/* Mobile */
@media(max-width:900px){
  .why-wrapper{
    grid-template-columns:1fr;
  }
}
.blog-section {
  padding: 60px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  flex: 1;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111;
}

.blog-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.read-more {
  display: block;
  text-align: center;
  background: #0b3c5d;
  color: #fff;
  padding: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.read-more:hover {
  background: #06283d;
}
.sticky-buttons {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.sticky-btn {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 5px 06px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: 1px;
  font-size: 14px;
}

.whatsapp {
  background: #25d366;
}

.call {
  background: #0b3c5d;
}

.quote {
  background: #f7a603;
}
.home {
  background: #0a6cf7;
}
.sticky-btn:hover {
  opacity: 0.9;
}
/* Logo Top Left */
.banner-logo {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 99;
}
.banner-logo img {
    width: 90px;          /* size adjust kar sakte ho */
    height: 90px;
    object-fit: contain;

    background: #ffffff; /* white circle background */
    padding: 5px;

    border-radius: 50%;  /* 👈 circle banane ka main rule */
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}