* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  max-width: 100%;
}

/* Top Section */
.top-section {
  background: linear-gradient(135deg, #1a5f4f 0%, #0d3d31 100%);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

.top-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-contact {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.top-contact a {
  color: #fff;
  text-decoration: none;
}

.top-contact a:hover {
  text-decoration: underline;
}

.top-contact i {
  font-size: 14px;
}

.top-social {
  display: flex;
  gap: 10px;
}

.top-social a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}

.top-social a:hover {
  background: #fff;
  color: #1a5f4f;
}

.top-buttons {
  display: flex;
  gap: 10px;
}

.top-btn {
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.top-btn-primary {
  background: #0066cc;
  color: #fff;
}

.top-btn-primary:hover {
  background: #004999;
}

.top-btn-secondary {
  background: #ffd700;
  color: #333;
}

.top-btn-secondary:hover {
  background: #ffed4e;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #0066cc;
}

.nav-menu .dropdown {
  position: relative;
}

.nav-menu .dropdown > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  margin-left: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 200px;
  padding: 15px 0;
}

.dropdown-menu.two-column {
  min-width: 400px;
  display: none;
  grid-template-columns: 1fr 1fr;
  padding: 15px;
  gap: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #0066cc;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown:hover .dropdown-menu.two-column {
  display: grid;
}

.btn-contact {
  background: #0066cc;
  color: #fff !important;
  padding: 10px 25px;
  border-radius: 5px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: #fff;
  width: 30px;
  border-radius: 6px;
}

/* Welcome Section */
.welcome-section {
  background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.welcome-section h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.welcome-section h2 {
  font-size: 28px;
  font-weight: 300;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #00a86b 0%, #008556 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.cta-section h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.cta-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background: #fff;
  color: #00a86b;
}

.btn-primary:hover {
  background: #f0f0f0;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #00a86b;
}

/* Page Content */
.page-content {
  padding: 60px 0;
  /* max-width: 1000px; */
  margin: 0 auto;
}

.page-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #0066cc;
  border-bottom: 3px solid #0066cc;
  padding-bottom: 15px;
}

.page-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #333;
  padding-left: 15px;
  border-left: 4px solid #0066cc;
}

.page-content h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #555;
}

.page-content h5 {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 16px;
}

.page-content ul,
.page-content ol {
  margin-left: 30px;
  margin-bottom: 30px;
}

.page-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.page-content li strong {
  color: #0066cc;
}

/* Enhanced Content Styling */
.page-content ul li {
  background: #f8f9fa;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 3px solid #0066cc;
  transition: all 0.2s;
}

.page-content ul li:hover {
  background: #e3f2fd;
  transform: translateX(3px);
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-content table th {
  background: #0066cc;
  color: white;
  padding: 15px;
  text-align: left;
}

.page-content table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
}

.page-content table tr:hover {
  background: #f8f9fa;
}

.page-content blockquote {
  border-left: 4px solid #00a86b;
  padding: 20px;
  margin: 30px 0;
  background: #f0f8f5;
  font-style: italic;
  border-radius: 5px;
}

.page-content code {
  background: #f4f4f4;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: monospace;
  color: #d63384;
}

.page-content pre {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
  overflow-x: auto;
  margin: 20px 0;
}

.page-content a {
  color: #0066cc;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.page-content a:hover {
  border-bottom: 1px solid #0066cc;
}

.page-content hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0066cc, transparent);
  margin: 40px 0;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
  display: block;
}

.visa-intro {
  background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  text-align: center;
}

.visa-intro h2 {
  color: #fff;
  border: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.visa-intro p {
  font-size: 18px;
  margin: 0;
}

.info-box {
  background: #f8f9fa;
  border-left: 4px solid #00a86b;
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

/* Package Pages */
.package-intro {
  background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  text-align: center;
}

.package-intro h2 {
  color: #fff;
  border: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.package-intro p {
  font-size: 18px;
  margin: 0;
}

.package-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.package-info-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
}

.package-info-card:hover {
  border-color: #0066cc;
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
  transform: translateY(-5px);
}

.package-info-card i {
  font-size: 40px;
  color: #0066cc;
  margin-bottom: 15px;
}

.package-info-card h3 {
  font-size: 18px;
  color: #333;
  margin: 15px 0 10px 0;
}

.package-info-card p {
  font-size: 16px;
  color: #666;
  margin: 0;
  font-weight: 600;
}

.itinerary {
  margin: 40px 0;
}

.day-item {
  background: #fff;
  border-left: 4px solid #0066cc;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.day-item:hover {
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
  transform: translateX(5px);
}

.day-item h3 {
  color: #0066cc;
  margin: 0 0 15px 0;
  font-size: 20px;
}

.day-item h3 i {
  margin-right: 10px;
}

.day-item p {
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.warning-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.blog-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  transition: all 0.3s;
}

.blog-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.blog-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.blog-card h3 a {
  color: #0066cc;
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: #004999;
}

.blog-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card .btn {
  display: inline-block;
  background: #0066cc;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s;
}

.blog-card .btn:hover {
  background: #004999;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a5f4f 0%, #0d3d31 100%);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffd700;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 10px;
  display: inline-block;
}

.footer-pay-btn {
  display: inline-block;
  background: #0066cc;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin: 20px 0;
  transition: all 0.3s;
}

.footer-pay-btn:hover {
  background: #004999;
  transform: translateY(-2px);
}

.footer-col p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.footer-col p i {
  margin-right: 10px;
  color: #ffd700;
  width: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #ffd700;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
}

.footer-social-icons a:hover {
  background: #ffd700;
  color: #1a5f4f;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 968px) {
  .logo img {
    height: 40px;
  }

  .top-section {
    font-size: 11px;
    padding: 8px 0;
  }

  .top-section .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .top-contact {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .top-contact-item {
    justify-content: center;
  }

  .top-social {
    justify-content: center;
  }

  .top-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .top-btn {
    padding: 8px 15px;
    font-size: 12px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    transition: left 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    gap: 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
    padding: 10px 0;
    background: #f8f9fa;
  }

  .dropdown-menu.two-column {
    grid-template-columns: 1fr;
    min-width: 100%;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown.active .dropdown-menu.two-column {
    display: grid;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .btn-contact {
    display: inline-block;
    margin: 10px 0;
  }

  .hero-slider {
    height: 300px;
  }

  .slide img {
    object-fit: fill;
  }

  .welcome-section {
    padding: 40px 0;
  }

  .welcome-section h1 {
    font-size: 32px;
  }

  .welcome-section h2 {
    font-size: 20px;
  }

  .country-cards {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .page-content h1 {
    font-size: 32px;
  }

  .page-content h2 {
    font-size: 24px;
  }

  .visa-intro {
    padding: 25px;
  }
}

/* Package Gallery */
.package-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.package-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.package-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.package-description {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.package-description h2 {
  color: #0066cc;
  font-size: 26px;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #0066cc;
}

.package-description h3 {
  color: #00a86b;
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.package-description p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.package-description ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.package-description ul li {
  background: #f8f9fa;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
  transition: all 0.3s;
  position: relative;
  padding-left: 45px;
}

.package-description ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #00a86b;
  font-size: 16px;
}

.package-description ul li:hover {
  background: #e3f2fd;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .package-gallery {
    grid-template-columns: 1fr;
  }

  .package-image {
    height: 200px;
  }

  .package-description {
    padding: 20px;
  }
}

/* Timeline Styles */
.timeline-container {
  position: relative;
  padding: 40px 0;
  margin: 40px 0;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #0066cc 0%, #00a86b 100%);
}

.timeline-item {
  position: relative;
  padding-left: 120px;
  margin-bottom: 40px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
}

.timeline-day {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
  border: 5px solid #fff;
}

.timeline-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #0066cc;
  transition: all 0.3s;
}

.timeline-content:hover {
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
  transform: translateX(5px);
}

.timeline-content h3 {
  color: #0066cc;
  margin: 0 0 15px 0;
  font-size: 22px;
}

.timeline-content p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.package-intro-text {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 5px solid #0066cc;
}

.package-intro-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.inclusions-section {
  background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
  padding: 50px;
  margin: 60px 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.inclusions-section h2 {
  color: #fff;
  margin: 0 0 40px 0;
  font-size: 36px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.inclusions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
}

.inclusions-list li {
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s;
  line-height: 1.6;
  color: #333;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.inclusions-list li:hover {
  background: #f0f8ff;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.inclusions-list li::before {
  content: "\2713";
  color: #fff;
  font-size: 12px;
  width: 24px;
  height: 24px;
  background: #00a86b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 30px;
  }

  .timeline-item {
    padding-left: 80px;
  }

  .timeline-day {
    width: 60px;
    height: 60px;
    font-size: 13px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-content h3 {
    font-size: 18px;
  }

  .inclusions-list {
    grid-template-columns: 1fr;
  }

  .inclusions-section {
    padding: 25px;
  }
}

/* Package Layout */
.package-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin: 40px 0;
}

.package-timeline {
  position: relative;
}

.package-timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50px;
  bottom: 50px;
  width: 3px;
  background: linear-gradient(180deg, #0066cc 0%, #00a86b 100%);
}

.package-timeline .timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}

.package-timeline .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
  border: 4px solid #fff;
  z-index: 1;
}

.package-timeline .timeline-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #0066cc;
  transition: all 0.3s;
}

.package-timeline .timeline-content:hover {
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
  transform: translateX(5px);
}

.package-timeline .timeline-content h3 {
  color: #0066cc;
  margin: 0 0 15px 0;
  font-size: 20px;
}

.package-timeline .timeline-content p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.package-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.package-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.package-images img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
  .package-layout {
    grid-template-columns: 1fr;
  }

  .package-timeline::before {
    left: 20px;
  }

  .package-images {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .package-images img {
    height: 180px;
  }

  .package-timeline .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .package-timeline .timeline-item {
    padding-left: 60px;
  }

  .inclusions-list {
    grid-template-columns: 1fr;
  }

  .inclusions-list li {
    border-right: none;
  }
}

/* Visa Page Styles */
.page-hero {
  background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #fff;
  border: none;
}

.page-hero p {
  font-size: 20px;
  margin: 0;
}

.visa-content {
  padding: 60px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin: 40px 0;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.visa-section {
  margin: 50px 0;
}

.visa-section h2 {
  font-size: 28px;
  color: #0066cc;
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 4px solid #0066cc;
}

.visa-section h3 {
  font-size: 22px;
  color: #333;
  margin: 30px 0 20px 0;
}

.document-list,
.steps-list,
.processing-list,
.visa-types,
.fees-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.document-list li,
.steps-list li,
.processing-list li,
.visa-types li,
.fees-list li {
  background: #f8f9fa;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
  line-height: 1.8;
  transition: all 0.3s;
}

.document-list li:hover,
.steps-list li:hover,
.processing-list li:hover,
.visa-types li:hover,
.fees-list li:hover {
  background: #e3f2fd;
  transform: translateX(5px);
}

.document-list li strong {
  color: #0066cc;
  font-weight: 600;
}

.document-list li em {
  display: block;
  margin-top: 5px;
  color: #666;
  font-size: 14px;
}

.center-image {
  text-align: center;
  margin: 40px 0;
}

.center-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Countries Grid */
.countries-grid,
.cis-countries {
  padding: 60px 0;
}

.cis-countries {
  background: #f8f9fa;
}

.cis-countries h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.country-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.country-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 1px solid black;
}

.country-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.1) 0%,
    rgba(0, 168, 107, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 15px;
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.country-card:hover h3 {
  color: #0056b3;
}

.country-card:hover::before {
  opacity: 1;
}

.country-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.4s;
  border-radius: 15px 15px 0 0;
  margin: 0;
}

.country-card:hover img {
  transform: scale(1.03);
}

.page-content a.country-card {
  border: 1px solid black;
}
.country-card h3 {
  color: #333;
  font-size: 18px;
  padding: 15px;
  margin: 0;
  background: #fff;
  position: relative;
  z-index: 1;
  font-weight: 600;
  border-radius: 0 0 15px 15px;
  transition: color 0.3s;
}

@media (max-width: 968px) {
  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .center-image img {
    max-width: 100%;
  }
}
