.header-logo a {
  display: inline-block;
  padding: 2px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7941d, #f05a28 35%, #2e7d32);
  transition: all 0.3s ease;
}

.header-logo img {
  display: block;
  max-height: 70px;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}


/* .header-logo a:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 10px rgba(255, 215, 120, 0.6),
    0 0 20px rgba(255, 200, 80, 0.4),
    0 0 30px rgba(255, 180, 60, 0.3);
} */

.header-logo a:hover img {
  transform: scale(1.03);
  /* subtle zoom */
}

.top-bar {
  background: linear-gradient(120deg, #0f4c81, #1e7a5a 45%, #f7941d);
  box-shadow: 0 8px 24px rgba(12, 36, 54, 0.25);
}

.top-bar .top-bar-content {
  padding: 10px 0;
}

.top-bar .top-bar-content .top-bar-start ul {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top-bar .top-bar-content .top-bar-start ul li {
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.top-bar .top-bar-content .top-bar-start ul li .icon {
  width: 26px;
  height: 26px;
  /* display: inline-flex; */
  align-items: center;
  justify-content: center;
  /* background: rgba(0, 0, 0, 0.25); */
  border-radius: 50%;
}

.top-bar .top-bar-content .top-bar-start ul li .icon svg path {
  fill: #ffffff;
}

.top-bar .top-bar-content .top-bar-start ul li a {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.2px;
}

.top-bar .top-bar-content .top-bar-start ul li:hover {
  background: rgba(255, 255, 255, 0.2);
}

.top-bar .top-bar-content .top-bar-start ul li:hover a {
  color: #ffffff;
}

.top-bar .top-bar-content .top-bar-right .language-area .language-btn {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  gap: 6px;
}

.top-bar .top-bar-content .top-bar-right .language-area .language-btn::after {
  display: none;
}

.top-bar .top-bar-content .top-bar-right .language-area .language-btn span {
  font-size: 14px;
}

.top-bar .top-bar-content .top-bar-right .language-area .language-list {
  border-radius: 10px;
  overflow: hidden;
}



* {
  font-family: "Poppins", sans-serif;
}



body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader__spinner {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid #1c4fa3;
  border-top-color: transparent;
  animation: preloader-spin 0.9s linear infinite;
}

.preloader__text {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1c4fa3;
}

.preloader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.buddhist-section {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

.place {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.place:hover {
  transform: translateY(-5px);
}

.place img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin-right: 20px;
}

.place-text {
  flex: 1;
  min-width: 250px;
}

.place h2 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.place p {
  color: #555;
  line-height: 1.6;
}

/* Alternate layout for even sections */
.place.even {
  flex-direction: row-reverse;
}

/* Responsive */
@media(max-width: 768px) {
  .place {
    flex-direction: column;
    text-align: center;
  }

  .place img {
    margin: 0 0 20px 0;
  }
}



.travel-info-modern {
  background: linear-gradient(135deg, #eef4fb, #ffffff);
  padding: 0px 20px;
  padding-bottom: 60px;
  font-family: "Segoe UI", sans-serif;
}

.travel-container {
  max-width: 1200px;
  margin: auto;
}

.travel-info-modern h2 {
  text-align: center;

  margin-bottom: 60px;
  color: #000;
  letter-spacing: 0.5px;
  font-family: "Rubik", serif;
  font-size: 48px;
  font-weight: 500;

}


.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

/* 🌈 Gradient Cards */
.travel-box {
  background: linear-gradient(135deg, #ffffff, #f2f7ff);
  border-radius: 22px;
  padding: 26px 22px 28px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;

}

/* Accent gradient line */
.travel-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #1a73e8, #00c6ff);
}

/* Hover effect */
.travel-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.15);
}

/* Icon style */
.travel-box i {
  font-size: 28px;
  color: #0f4c81;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e7f0ff, #fef6e9);
  box-shadow: inset 0 0 0 1px rgba(13, 43, 69, 0.08);
}

/* Headings */
.travel-box h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #0b3c5d;
  font-weight: 600;
}

/* Paragraph */
.travel-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .travel-info-modern h2 {
    font-size: 28px;
  }

  .travel-box {
    padding: 35px 25px;
  }
}




.tour-for {
  max-width: 1400px;
  margin: 70px auto;
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(12, 36, 54, 0.08);
}

.tour-for h2 {
  font-size: 34px;
  margin-bottom: 44px;
  color: #0d2b45;
  letter-spacing: 0.2px;
}

.tour-for .card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 9px;
}

.tour-for .card {
  position: relative;
  background: #ffffff;
  padding: 28px 22px 30px;
  border-radius: 18px;
  border: 1px solid rgba(13, 43, 69, 0.08);
  box-shadow: 0 14px 28px rgba(12, 36, 54, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: left;
  overflow: hidden;
}

.tour-for .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(247, 148, 29, 0.6), rgba(46, 125, 50, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.tour-for .card i {
  color: #0f4c81;
  background: linear-gradient(135deg, #e7f0ff, #fef6e9);
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: inset 0 0 0 1px rgba(13, 43, 69, 0.08);
}

.tour-for .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 36, 54, 0.12);
  border-color: rgba(15, 76, 129, 0.2);
}

.tour-for .card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0d2b45;
  font-weight: 600;
}

.tour-for .card p {
  font-size: 15px;
  color: #4c5965;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .tour-for {
    margin: 50px auto;
    padding: 18px;
  }

  .tour-for h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .tour-for .card {
    text-align: center;
  }
}








.why-india {
  max-width: 1400px;
  margin: 80px auto;
  padding: 20px;
}

.why-india h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
  color: #222;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.info-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.card-img {
  height: 180px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 22px;
  text-align: center;
}

.why-india .card-content i {
  color: #1a73e8;
  background: #e8f1ff;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 12px;
}

.icon {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

.card-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.card-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
  .card-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-row {
    grid-template-columns: 1fr;
  }
}


.travel-assistance.modern {
  padding: 60px 20px;
  /* background: radial-gradient(circle at top, #eef2ff, #f9fafb); */
  position: relative;
  overflow: hidden;
}

.travel-assistance h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 70px;
  color: #111;
}

.modern-wrapper {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* Cards */
.modern-col {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
}

.modern-col.left {
  align-items: flex-end;
}

.modern-col.right {
  align-items: flex-start;
}

.modern-card {
  background: linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
  backdrop-filter: blur(12px);
  width: 220px;
  height: 220px;
  padding: 24px;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(12, 36, 54, 0.12), inset 0 0 0 1px rgba(13, 43, 69, 0.1);
  text-align: center;
  transition: 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modern-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 46px;
  height: 12px;
  background: linear-gradient(90deg, #0f4c81, #f7941d);
  clip-path: polygon(0 45%, 78% 45%, 78% 0, 100% 50%, 78% 100%, 78% 55%, 0 55%);
  transform: translateY(-50%);
  opacity: 0.8;
}

.modern-col.left .modern-card::after {
  right: -36px;
}

.modern-col.right .modern-card::after {
  left: -36px;
  transform: translateY(-50%) scaleX(-1);
}

.modern-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 28px 56px rgba(12, 36, 54, 0.18);
}

.modern-card .icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.modern-card i {
  color: #0f4c81;
  background: #ffffff;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin: 0 auto 10px;
  box-shadow: inset 0 0 0 1px rgba(13, 43, 69, 0.08);
}

.modern-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #0d2b45;
  font-weight: 600;
}

.modern-card p {
  font-size: 13px;
  color: #4c5965;
  line-height: 1.5;
}

/* Center Image */
.modern-center {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  background: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.center-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Glow Ring */
.glow-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: conic-gradient(#2f903a, #2caf5c, #df9517, #d1e83b);
  filter: blur(25px);
  opacity: 0.5;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .modern-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .modern-col {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }

  .modern-center {
    order: -1;
  }

  .modern-card::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .modern-col {
    flex-direction: column;
  }

  .modern-card {
    width: 200px;
    height: 200px;
  }
}

/* book-trip-form-css */
.travel-container {
  width: 95%;
  max-width: 1250px;
  margin: auto;
  padding: 6px 0;
}

.booking-header {
  text-align: center;
  margin-bottom: 50px;
}

.booking-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f2c59;
}

.booking-header p {
  color: #6c7a92;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 8px;
}

.booking-info {
  background: linear-gradient(160deg, #0f2c59, #1c4fa3);
  color: white;
  padding: 40px;
  border-radius: 18px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item i {
  background: #ffffff26;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* FORM */
.booking-form {
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-field {
  position: relative;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 45px 14px 15px;
  border-radius: 10px;
  border: 1.8px solid #e0e6f1;
  outline: none;
  background: #f9fbff;
}

.form-field i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #7c8db5;
}

.form-field label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 0 6px;
  font-size: 13px;
  color: #7c8db5;
  transition: .25s;
}

.form-field input:focus+label,
.form-field input:valid+label,
.form-field textarea:focus+label,
.form-field textarea:not(:placeholder-shown)+label {
  top: -9px;
  font-size: 11px;
  color: #1c4fa3;
}

.form-field select:focus+label,
.form-field select:valid+label {
  top: -9px;
  font-size: 11px;
  color: #1c4fa3;
}

.textarea-field textarea {
  height: 120px;
  resize: none;
}

.booking-btn {
  width: 100%;
  margin-top: 25px;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff8a00, #ff5a00);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.booking-btn:hover {
  transform: translateY(-3px);
}

@media(max-width:900px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

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

/* ----whatsaap-btn---- */
/* MAIN WIDGET */
.contact-widget {
  position: fixed;
  left: 20px;
  bottom: 30px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

/* TOGGLE BUTTON */
.cw-toggle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff7a00, #ff4d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
  animation: pulse 2s infinite;
  transition: .3s;
}

.cw-toggle:hover {
  transform: scale(1.08);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 90, 0, .7);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(255, 90, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 0, 0);
  }
}

/* OPTIONS PANEL */
.cw-options {
  position: absolute;
  bottom: 75px;
  right: -143;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: .35s ease;
}

/* ACTIVE STATE */
.contact-widget.active .cw-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* EACH ITEM */
.cw-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
  transition: .3s;
  white-space: nowrap;
}

/* WHATSAPP */
.cw-item.whatsapp {
  background: #005294;
}

.cw-item.whatsapp:hover {
  background: #20bd5a;
  transform: translateX(-5px);
}

/* CALL */
.cw-item.call {
  background: #005294;
}

.cw-item.call:hover {
  background: #0062cc;
  transform: translateX(-5px);
}

.cw-item i {
  font-size: 20px;
}

/* MOBILE */
@media(max-width:768px) {

  .cw-item span {
    display: none;
  }

  .cw-item {
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }
}

/* Main Image */
.main-img {
    height: 580px;
    object-fit: cover;
    width: 100%;
}

/* Small Images */
.small-img {
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s ease;
}

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

/* Info Box Styling */
.info-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Booking Box Special */
.booking-box {
    border-top: 4px solid #005294;
}

/* Button */
.proceed {
    background: linear-gradient(45deg,#005294, #005294);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px;
    transition: 0.3s ease;
}

.proceed:hover {
    background: linear-gradient(45deg,#005294 , #005294);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .main-img {
        height: 250px;
    }

    .small-img {
        height: 80px;
    }
}
/* ===== Blog Detail Page ===== */
.blog-detail-page {
    background: #f4f6f9;
    padding: 0px 0;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

/* ===== Top Image ===== */
.blog-detail-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-detail-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}



/* ===== Content Box ===== */
.blog-detail-content {
 
    padding: 20px;
  
   
}

.blog-detail-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a2b49;
}

.blog-meta {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 25px;
}

.blog-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.blog-detail-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a2b49;
}

.blog-detail-content ul {
    padding-left: 20px;
}

.blog-detail-content ul li {
    margin-bottom: 10px;
    color: #555;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

    .blog-detail-image img {
        height: 250px;
    }

    .blog-detail-content {
        padding: 25px;
    }

    .blog-detail-content h1 {
        font-size: 24px;
    }
}
/* ===== Conclusion Box ===== */
.blog-conclusion {
    background: #e9e3d8;
    padding: 35px 40px;
    border-radius: 15px;
    margin-top: 40px;
    position: relative;
    border-left: 6px solid #005294;
}

.blog-conclusion h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a2b49;
}

.blog-conclusion p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

/* ===== Share Section ===== */
.blog-share {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-share span {
    font-weight: 500;
    color: #333;
}

.blog-share a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background:#005294;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s ease;
}

.blog-share a:hover {
    background: rgba(243,128,53,1);
    transform: translateY(-3px);
}



/* Hero Section Image Fix */
.banner-write-image {
  max-width: 100%;
  height: auto;
}

.banner-write-image img {
  width: 100%;
  max-width: 400px;
  max-height: 350px;
  object-fit: contain;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .banner-write-image img {
    max-width: 100%;
    max-height: 280px;
  }
}

.section-gallery {
  padding: 10px 10px;
  max-width: 1450px;
  margin: auto;
}

.section-gallery h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

/* ---------- Gallery Rows and Columns ---------- */
.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-col {
  flex: 1 1 calc(33.333% - 20px);
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-col img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s, filter 0.3s;
}

.gallery-col img:hover {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* ---------- Modal / Fullscreen Lightbox ---------- */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.modal .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.modal .close:hover {
  color: #ff4444;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .gallery-col {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .gallery-col {
    flex: 1 1 100%;
  }
}



