/* Base Styles */
:root {
    --primary-color: #ff6600;
    --secondary-color: #F00;
    --accent-color: #0099cc;
    --light-color: #f8f8f8;
    --dark-color: #222;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #28a745;
    --font-main: 'Arial', sans-serif;
    --font-heading: 'Georgia', serif;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 1;
	box-sizing: border-box;
	position: static;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 1000;
}

img {
    max-width: 100%;
    height: auto;
    justify-content: center;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--secondary-color);
}


.div1 {
  position: relative;
  width: 100%;
  max-width: 1300px; /* Prevents over-stretching */
  height: auto;
   top: 0;
  z-index:100; !important 
} 
   
.div2 {
	position: absolute;
	width: 275px;
	height: 85px;
	top: 15px;
	left: 110px;
	z-index:200; !important 
 }
 
.div3 {
  position: relative;
    width: 1235px;
  height: 31px;
  z-index:300; !important 
} 
   
p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

button, .button, .cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

button:hover, .button:hover, .cta-button:hover {
    background-color: #e55a00;
    color: white;
}

input, select {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    width: 100%;
    margin-bottom: 10px;
}

/* Header Styles */
header {
    background-color: #333;
    color: white;
    padding: 15px 2%; /* Responsive side padding */
    position: sticky;
    width: 100%; /* Takes full width of parent */
    max-width: 1280px; /* Prevents it from exceeding 1300px */
    height: 640px;
    top: 0;
    margin: 0 auto; /* Centers the header */
    left: 0;
    right: 0;
    z-index: 400 !important; /* Fixed syntax */
}


.logo-container {
    display: flex;
    align-items: center;
    top: 15px;
}

.logo {
    max-height: 60px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-right: 30px;
  z-index:500; !important 
}

.main-nav a {
    color: white;
    font-weight: bold;
    padding: 5px 0;
    position: relative;
    width: 1280px;
    margin: 0 auto; 
    left: 0;
    right: 0;
  z-index:600; !important 
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background-position: top;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
	position: relative;
  z-index:400; !important 
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.search-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2px;
    border-radius: 8px;
    margin-top: 2px;
}

.search-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Popular Destinations */
.popular-destinations {
    padding: 50px 0;
    background-color: white;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.destination-card {
    background-color: var(--accent-color);
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
    left: 0;
    right: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);

}

/* Three Column Layout */
.three-column-layout {
    padding: 30px 0;
    background-color: var(--light-color);
}

.three-column-layout .container {
    display: grid !important;
    grid-template-columns: 1fr 2fr 1fr !important;
    gap: 10px;
}

.column {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
}

.widget {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.widget h3 {
    background-color: #F00;
    color: white;
    padding: 15px;
    margin-bottom: 0;
}

.widget .content {
    padding: 15px;
}

.link-list a:hover {
    background-color: var(--light-color);
}

.investor-card {
    padding: 15px;
    text-align: center;
}

.investor-card img {
    margin-bottom: 10px;
    border-radius: 4px;
}

.cta-box {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

.services-grid {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.service-item {
    background-color: var(--light-color);
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
}

.chapters-section {
    margin-top: 30px;
}

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 8px;
}

.chapter-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

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

.chapter-card h4 {
    padding: 5px;
    text-align: center;
    margin-bottom: 0;
}

/* Right Column Widgets */
.featured-image {
    margin-bottom: 15px;
}

.featured-image img {
    width: 100%;
    display: block;
}

.hotel-card {
    padding: 15px;
}

.hotel-card h4 {
    margin: 10px 0;
}

.feature-list {
    padding: 0 15px 15px;
}

.feature-list li {
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color);
}

.small-text {
    font-size: 0.8rem;
    color: #666;
    padding: 0 15px 15px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ccc;
}

/* Services safari */
.services-safari {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 600px; /* Flex-grow, flex-shrink, min-width */
  padding: 0;
  text-align: center;
}

/* Center Column Content */
.main-content {
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    flex: 1 1 600px; /* Flex-grow, flex-shrink, min-width */
    box-shadow: var(--box-shadow);
}

/* Grid cells */
.grid-cell {
  box-sizing: border-box;
  text-align: center;
  justify-content: center;
  flex: 1 1 600px; /* Flex-grow, flex-shrink, min-width */
  background-color: #FF99FF;	
  padding: 1px;
}

/* Grid header */
.grid-headers {
  box-sizing: border-box;
  text-align: center;
  flex: 1 1 600px; /* Flex-grow, flex-shrink, min-width */
  background-color: #FF99FF;
}


/* Grid rows */
.grid-row {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  flex: 1 1 600px; /* Flex-grow, flex-shrink, min-width */
  border-radius: 8px;
  text-align: center;
  background-color: #FFFFFF; 
}

/* Image grid */
.image-grid {
  gap: 15px;
  padding: 10px;
  position: center;
  border: 1px solid #F0F0F0; 
  }

.hotel-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}
.hotel-item {
  display: flex;
  position: center;
  background-color: #FFFFFF;
  width: 100%;
  height: auto;
}

.hotel-safari {
  width: 100%;
  height: auto;
  flex: 1; /* Distribute space evenly */
  margin: 5px;
  position: center;
  justify-content: center;
  border: 1px solid #FF99FF; 
}

.hotel-image, .hotel-details {
  flex: 1; /* Distribute space evenly */
  padding: 5px;
  text-align: left;
  width: 100%;
  height: auto;
  margin-top: 15px;
}


.hotel-image img {
  width: 100%;
  height: auto;
  padding: 5px;
  display: flex;
  margin: 0 auto;
  position: center;
  justify-content: center;
}

.hotel-details strong {
  text-align: left;
  font-size: 16px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

.hotel-details span {
  text-align: left;
  color: #000000;
  font-size: 14px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

.hotel-details .myButton {
  /* Add your button styles here */
}

/* Header cell */
.header-cell {
  display: flow;
  background-color: #FF99FF;
  align-items: center;
  padding: 5px;
  text-align: center;
}

/* Navigation cell */
.nav-cell {
  display: flex;
  text-align: center;
  align-items: center;
  gap: 5px;
  background-color: #333333;
}



/* Responsive Styles */
@media (max-width: 1024px) {
    .three-column-layout .container {
        grid-template-columns: 1fr 2fr;
    }
    
    .right-column {
        grid-column: span 2;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--dark-color);
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .search-row {
        flex-direction: column;
    }
    
    .three-column-layout .container {
        grid-template-columns: 1fr;
    }
    
    /* Hide left and right columns on mobile, only show center column */
    .left-column, .right-column {
        display: none;
    }
    
    .center-column {
        grid-column: 1;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chapters-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Force 3-column layout with !important */
main.three-column-layout .container {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

main.three-column-layout .column {
  box-sizing: border-box !important;
  margin: 0 10px !important;
}

main.three-column-layout .column.left-column {
  flex: 0 0 25% !important;
  max-width: 25% !important;
  order: 1 !important;
}

main.three-column-layout .column.center-column {
  flex: 0 0 50% !important;
  max-width: 50% !important;
  order: 2 !important;
}

main.three-column-layout .column.right-column {
  flex: 0 0 25% !important;
  max-width: 25% !important;
  order: 3 !important;
  float: none !important;
  clear: none !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}


  /* For older browsers */
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    main.three-column-layout .column.left-column {
      width: 30%;
    }
    
    main.three-column-layout .column.center-column {
      width: 70%;
    }
    
    main.three-column-layout .column.right-column {
      width: 100%;
      clear: both;
      margin-top: 20px;
    }
  }
}

  /* For older browsers */
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    main.three-column-layout .column.left-column,
    main.three-column-layout .column.center-column,
    main.three-column-layout .column.right-column {
      float: none;
      width: 100%;
      padding-left: 0;
      padding-right: 0;
      clear: both;
    }
  }
}

/* Base responsive adjustments */
body {
  overflow-x: hidden; /* Prevent horizontal scrolling */
  max-width: 100vw; /* Ensure content doesn't exceed viewport */
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
  /* Prevent zoom distortion */
  html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    touch-action: manipulation; /* Prevents accidental zoom */
  }
  
  /* Force single column layout */
  .content-section, .vip-section {
    display: block !important;
    width: 100% !important;
    float: none !important;
  }
  
  /* Adjust table display */
  table {
    font-size: 14px; /* Smaller text for mobile */
    white-space: normal; /* Allow text wrapping */
  }
  
  td, th {
    padding: 8px 4px; /* Smaller cell padding */
    display: block; /* Stack cells vertically */
    width: 100% !important;
  }
  
  /* List items adjustments */
  ul {
    padding-left: 20px;
  }
  
  li {
    margin-bottom: 8px;
  }
  

  /* Prevent image distortion */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  h1, h2 {
    font-size: 1.5rem; /* Smaller headings */
  }
  
  /* Further table adjustments */
  table {
    font-size: 12px;
  }
  
  /* List spacing */
  ul {
    padding-left: 15px;
  }
}


/* Base Reset (Prevents Overflow) */
body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}


/* Input & Form Fixes */
input, select {
  width: 100%;
  max-width: 300px; /* Prevents over-stretching */
  padding: 10px;
  margin: 5px 0;
  box-sizing: border-box; /* Ensures padding doesnâ€™t break width */
}

/* Mobile Zoom Protection */
@media (max-width: 768px) {
  html {
    touch-action: pan-y; /* Blocks pinch-zoom */
    -webkit-text-size-adjust: 100%; /* Prevents font scaling */
  }
  
  /* Force single-column layout */
  body {
    padding: 5px;
  }
  
  input, select, button {
    max-width: 100%; /* Full width on small screens */
  }
}


/* Prevent text wrapping issues */
h1, h2, p {
  word-break: break-word; /* Ensures text doesnâ€™t overflow */
}

/* Fix for "mm/old/7777" repeated text */
.input-group {
  margin-bottom: 15px; /* Adds spacing between fields */
}


/* ===== DOLPHIN THEME: MOBILE-FRIENDLY FIXES ===== */
/* Makes content flow smoothly like water! */

/* ðŸš€ Base Reset (Prevents Overflow & Distortion) */
body {
  overflow-x: hidden;
  max-width: 100%;
  margin: 0 auto;
  font-family: Arial, sans-serif; /* Ensures clean readability */
}


/* ðŸŒŠ Fluid Container (Scales Like Water) */
.container {
  width: 100%;
  max-width: 1300px; /* Prevents over-stretching */
  margin: 0 auto;
  padding: 0 15px;
}


/* ðŸ“± Mobile-First Adjustments (Dolphin-Smart!) */
@media (max-width: 768px) {
  /* Stops zoom distortion */
  html {
    -webkit-text-size-adjust: 100%;
    touch-action: pan-y; /* Blocks accidental zoom */
  }


  /* ðŸ¬ Fixes Table Overflow (Now Scrolls Horizontally) */
  table {
    width: 100% !important;
    display: block;
    overflow-x: auto;
    white-space: nowrap; /* Keeps table cells aligned */
  }


  /* ðŸï¸ Destination Lists (Flexible & Neat) */
  .popular-destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .destination-group {
    flex: 1 1 45%; /* Two columns (adjust as needed) */
    min-width: 150px;
  }


  /* ðŸ–¼ï¸ Image Fix (Prevents Squishing) */
  img, .slicer-image {
	max-width: 100% !important;
	height: 204px !important;
	display: inherit;
	width: 314px;
	position: static;
  }
}


/* ðŸŒ Extra Small Screens (Smart Scaling) */
@media (max-width: 480px) {
  .destination-group {
    flex: 1 1 100%; /* Single column on tiny screens */
  }
  
  /* ðŸ“‰ Smaller Fonts for Readability */
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  p, li { font-size: 0.9rem; }
}


/* Hide desktop menu on mobile */
@media (max-width: 768px) {
  .desktop-menu { display: none; }
  .mobile-menu-btn { display: block; }
}

/* Adds gentle animations */
img, table, .destination-group {
  transition: all 0.3s ease;
}

.destination-group:hover {
  transform: translateY(-3px); /* Subtle "jump" effect */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Media Queries for Different Screen Sizes */
/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    header {
        padding: 12px 3%; /* Slightly more side padding for tablets */
    }
}

/* Mobile (Up to 768px) */
@media (max-width: 768px) {
    header {
        padding: 10px 4%; /* More side padding for better mobile spacing */
        /* Optional: Adjust font size if needed */
    }
}

/* Small Mobile (Up to 480px) */
@media (max-width: 480px) {
    header {
        padding: 8px 5%; /* Even more padding for small screens */
        /* You can also reduce font size here if text feels cramped */
    }
}

element.style {
}
user agent stylesheet
input:not([type="image" i]) {
    box-sizing: border-box;
}
user agent stylesheet
input:not([type="image" i], [type="range" i], [type="checkbox" i], [type="radio" i]) {
    overflow-clip-margin: 0px !important;
    overflow: clip !important;
}
user agent stylesheet
input[type="submit" i] {
    appearance: auto;
    user-select: none;
    text-align: center;
    cursor: default;
    box-sizing: border-box;
    background-color: buttonface;
    color: buttontext;
    white-space: pre;
    padding-block: 1px;
    padding-inline: 6px;
    border-width: 2px;
    border-style: outset;
    border-color: buttonborder;
    border-image: initial;
}
user agent stylesheet
input:not([type="file" i], [type="image" i], [type="checkbox" i], [type="radio" i]) {
}
user agent stylesheet
input {
    font-style: ;
    font-variant-ligatures: ;
    font-variant-caps: ;
    font-variant-numeric: ;
    font-variant-east-asian: ;
    font-variant-alternates: ;
    font-variant-position: ;
    font-variant-emoji: ;
    font-weight: ;
    font-stretch: ;
    font-size: ;
    font-family: ;
    font-optical-sizing: ;
    font-size-adjust: ;
    font-kerning: ;
    font-feature-settings: ;
    font-variation-settings: ;
    text-rendering: auto;
    color: fieldtext;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    appearance: auto;
    -webkit-rtl-ordering: logical;
    cursor: text;
    background-color: field;
    margin: 0em;
    padding: 1px 0px;
    border-width: 2px;
    border-style: inset;
    border-color: light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
    padding-block: 1px;
    padding-inline: 2px;
}


