* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}



/* Fullscreen Hero Video */
/* Video Banner Styles */
.video-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.banner-content {
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.banner-overlay h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  line-height: 1.2;
}

.banner-overlay p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: #ff6b6b;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
  border: 2px solid #ff6b6b;
}

.cta-button:hover {
  background: transparent;
  color: #ff6b6b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

/* Animation for banner content */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  margin-top: 10px;
  display: block;
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateX(-50%) translateY(0);
  }
  40% {
      transform: translateX(-50%) translateY(-10px);
  }
  60% {
      transform: translateX(-50%) translateY(-5px);
  }
}

/* Banner text variations */
.banner-text-primary {
  color: #ff6b6b;
}

.banner-subtitle {
  font-size: 1.4rem;
  margin-bottom: 10px;
  opacity: 0.8;
  font-weight: 300;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .banner-overlay h1 {
      font-size: 2.8rem;
  }
  
  .banner-overlay p {
      font-size: 1.1rem;
  }
  
  .cta-button {
      padding: 12px 30px;
      font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .banner-overlay h1 {
      font-size: 2.2rem;
  }
  
  .banner-overlay p {
      font-size: 1rem;
      max-width: 90%;
  }
  
  .banner-subtitle {
      font-size: 1.2rem;
  }
  
  .cta-button {
      padding: 12px 25px;
  }
}

@media (max-width: 576px) {
  .banner-overlay h1 {
      font-size: 1.8rem;
  }
  
  .banner-overlay p {
      font-size: 0.9rem;
  }
  
  .banner-subtitle {
      font-size: 1rem;
  }
  
  .cta-button {
      padding: 10px 20px;
      font-size: 0.9rem;
  }
  
  .scroll-indicator {
      font-size: 0.8rem;
  }
}

/* Banner overlay variations */
.overlay-dark {
  background: rgba(0, 0, 0, 0.6);
}

.overlay-gradient {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Video controls */
.video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.video-control-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.video-control-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Fullscreen Hero Video close */



/* servis inteduction section */
  
.servis-content-section {
            padding:50px 5%;
            background: #f9f9f9;
        }

.servis-section-title {
            text-align: center;
            margin-bottom: 50px;
        }

.servis-section-title h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
        }

.servis-section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            font-size: medium;
        }

.services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

.service-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

.service-card:hover {
            transform: translateY(-10px);
        }

.service-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

.service-content {
            padding: 25px;
        }

.service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

.service-content p {
            color: #666;
            line-height: 1.6;
        }
/* servis inteduction section Close */






/*---tour plan open--*/



#tour-plan-heading {
  text-align: center;
  margin: 40px 0 20px;
}

#tour-plan-heading h2 {
  color: black;
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
}

.card-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

.card-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  transition: background 0.3s ease;
}

/* Hover background change */
.card-section:hover {
  background: #eef7ff;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card h3 {
  margin: 15px 0 5px;
}

.card p {
  color: #555;
  padding: 0 10px;
}

.card button {
 
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 15px 0;
  cursor: pointer;
 
  transition: background 0.3s ease;
  display: inline-block;
  background: #1a5276;
  

  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #1a5276;
  align-self: flex-start;
}

.card button:hover {
  background: #005fa3;
}

/* Tablet view (2 cards per row) */
@media (max-width: 992px) {
  .card-section {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile view (1 card per row) */
@media (max-width: 576px) {
  .card-section {
      grid-template-columns: 1fr;
  }
}
/*---tour plane close--*/


/*---About us--*/
.about-snt {
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f9fa; /* Optional: A light background */
}

.about-snt .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-snt h2 {
  color: #2c3e50; /* A dark, elegant color */
  margin-bottom: 1rem;
}

.about-snt .lead {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.highlight-item {
  flex: 1 1 300px; /* This makes it responsive */
  max-width: 350px;
  padding: 1rem;
}

.highlight-item h3 {
  color: #e67e22; /* A warm, accent color */
  margin-bottom: 0.5rem;
}

.about-snt .closing {
  font-style: italic;
  color: #666;
  margin: 2rem auto;
  max-width: 600px;
}

.tagline {
  font-weight: bold;
  color: #2c3e50;
  font-size: 1.1rem;
}

/*---About us over--*/



/* Content Section */
.content {
  padding: 100px 20px;
  background: #027aeb;
  text-align: center;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  #navbar {
    padding: 15px 20px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    background: rgba(0,0,0,0.95);
    width: 70%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    transition: right 0.5s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
    display: flex;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hero-content h1 {
    font-size: 2rem;
    padding: 0 20px;
  }

  .hero-content p {
    font-size: 1rem;
  }
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: transparent;
  padding: 0;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 70px;
  height: 70px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .whatsapp-float img {
    width: 45px;
    height: 45px;
  }
}


/* WhatsApp Floating Button finish */

footer {
  text-align: center;
  margin-top: 40px;
  padding: 10px;
  background-color: #eee;
}

/*destination slider*/


.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #2c3e50;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  margin: 10px auto;
  border-radius: 2px;
}

.subtitle {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
  padding: 20px 0;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.destination-card {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.card-content p {
  color: #7f8c8d;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.card-link {
  display: inline-block;
  color: #3498db;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: #2ecc71;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.nav-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bdc3c7;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-btn.active {
  background: #3498db;
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #3498db;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #2ecc71;
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.auto-play-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  color: #7f8c8d;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-toggle {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #bdc3c7;
  transition: .4s;
  border-radius: 24px;
}

.slider-toggle:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider-toggle {
  background-color: #3498db;
}

input:checked + .slider-toggle:before {
  transform: translateX(26px);
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
  .destination-card {
      flex: 0 0 calc(50% - 20px);
  }
  
  .section-title {
      font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .destination-card {
      flex: 0 0 calc(100% - 20px);
  }
  
  .prev-btn, .next-btn {
      width: 40px;
      height: 40px;
      font-size: 1rem;
  }
  
  .section-title {
      font-size: 1.8rem;
  }
  
  .subtitle {
      font-size: 1rem;
  }
}

/*  destination slider  */


.full-width-section {
  width: 100vw;
  padding: 80px 0;
  background: #0a1f2e;
  position: relative;
  overflow: hidden;
}

.section-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.8rem;
  color: white;
  font-weight: 300;
  letter-spacing: 2px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.destination-card {
  flex: 0 0 33.333%;
  height: 600px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  transition: all 0.3s ease;
}

.destination-card:hover::before {
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.9) 100%);
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  position: absolute;
  bottom: 60px;
  left: 40px;
  right: 40px;
  z-index: 2;
  color: white;
}

.card-content h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 1px;
}

.card-content .location {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #e0e0e0;
  font-weight: 300;
}

.explore-btn {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 12px 30px;
  border: 2px solid white;
  border-radius: 30px;
  transition: all 0.3s ease;
  background: transparent;
}

.explore-btn:hover {
  background: white;
  color: #0a1f2e;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 12px;
}

.nav-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn.active {
  background: white;
  transform: scale(1.2);
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #0a1f2e;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
  .destination-card {
      flex: 0 0 50%;
      height: 500px;
  }
  
  .section-title {
      font-size: 2.3rem;
  }
  
  .card-content h3 {
      font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .destination-card {
      flex: 0 0 100%;
      height: 450px;
  }
  
  .prev-btn, .next-btn {
      width: 40px;
      height: 40px;
      font-size: 1rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .card-content {
      left: 25px;
      right: 25px;
      bottom: 40px;
  }
  
  .card-content h3 {
      font-size: 1.6rem;
  }
  
  .full-width-section {
      padding: 60px 0;
  }
}

/* get a quate */


header {
  text-align: center;
  padding: 30px 0;
  background: linear-gradient(135deg, #1e5799 0%, #207cca 51%, #2989d8 100%);
  color: white;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.form-container {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
}

input, select, textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.phone-input-container {
  display: flex;
}

.phone-input-container input {
  flex: 1;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.iti {
  width: 100%;
}

.iti__selected-flag {
  padding: 0 10px;
}

.btn {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.3s;
  width: 100%;
}

.btn:hover {
  background: #2980b9;
}

.success-message {
  background: #2ecc71;
  color: white;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
  display: none;
}

@media (min-width: 768px) {
  .form-row {
      display: flex;
      gap: 20px;
  }
  
  .form-group {
      flex: 1;
  }
  
  .btn {
      width: auto;
  }
}


/* discover more Section Styling */
.flip-card-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #222;
}

.flip-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 × 2 layout */
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.flip-card {
  perspective: 1000px;
  cursor: pointer;
  height: 350px; /* Fixed height for uniform size */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Front Side */
.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-front h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
  text-shadow: 0 3px 6px rgba(0,0,0,0.6);
  font-weight: bold;
  text-transform: uppercase;
}

/* Back Side */
.flip-card-back {
  background: #0077b6;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.card-back-content h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.card-back-content p {
  font-size: 1rem;
  line-height: 1.5;
}

.details-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: white;
  color: #0077b6;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.details-btn:hover {
  background: #023e8a;
  color: white;
}


/* Responsive */
@media (max-width: 900px) {
  .flip-card-grid {
    grid-template-columns: 1fr; /* stack vertically */
  }
  .flip-card {
    height: 300px;
  }
}

/*Discover More Section Close*/

/* Event & Social Section */
.event-social-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.event-social-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Each Box */
.event-social-box {
  position: relative;
  flex: 1 1 calc(50% - 20px);
  min-height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.event-social-box:hover {
  transform: scale(1.05); /* 🟢 background zoom effect */
}

/* Overlay Content */
.box-content {
  background: rgba(0,0,0,0.5);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}

.box-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Button */
.visit-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  cursor: pointer;
}

.visit-btn:hover {
  background: #ff9900;
  color: #fff;
  transform: scale(1.1);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .event-social-box {
    flex: 1 1 100%;
    min-height: 220px;
  }
  .box-content h3 {
    font-size: 1.4rem;
  }
}
