
/* Reset Styles */
body, ul, li, a {
    /*margin: 0;*/
    /*padding: 0;*/
    /*list-style: none;*/
    /*text-decoration: none;*/
        margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    /*text-align: center;*/
}
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    color: #333;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .logo img {
    width: 70px;
}

.header .menu {
    display: flex;
    gap: 20px;
}

.header .menu li {
    position: relative;
}

.header .menu li a {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-transform: capitalize;
}

.header .menu li:hover > a {
    color: #1EC6B6;
}

.header .menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    display: none;
    padding: 10px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.header .menu li:hover ul {
    display: block;
}

.header .menu li ul li {
    padding: 5px 15px;
}

.header .menu li ul li a {
    color: #555;
    font-size: 14px;
}

.header .menu li ul li a:hover {
    color: #1EC6B6;
}

/* Burger Icon */
.burger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 10px;
    border-top: 1px solid #ddd;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.mobile-menu li a {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu li ul {
    display: none;
    padding: 10px 0 0 20px;
}

.mobile-menu li.active ul {
    display: block;
}

.mobile-menu li ul li {
    padding: 5px 0;
}

.mobile-menu li ul li a {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .header .menu {
        display: none;
    }

    .burger {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
    }
}



.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  width: 100%;
}

.card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover; /* This will ensure the image covers the area without distortion */
  object-position: center; /* This centers the image inside the container */
}

.card-heading {
  padding: 20px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.card-button {
  display: block;
  text-align: center;
  padding: 10px;
  background-color: #ff6600;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  margin: 20px auto 20px auto;
  width: 80%;
  transition: background-color 0.3s ease;
}

.card-button:hover {
  background-color: #e55c00;
}

@media (max-width: 768px) {
  .card-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .card-container {
    grid-template-columns: 1fr;
  }

  .card-heading {
    font-size: 1.2rem;
  }
}

.ourAcheivement_list i {
font-size: 30px; /* Adjust size */
color: #333; /* Change color */
margin-right: 15px; /* Spacing between icon and text */
}
/* General container and layout styling */
.ourAcheivement .container {
padding: 30px 30px;
max-width: 1200px;
margin: 0 auto;
}

.row {
display: flex;
flex-wrap: wrap;
/*align-items: center;*/
}

/* Left column with text content */
.ourAcheivement .col-md-6 {
flex: 1;
padding: 20px;
}

.header-text {
margin-bottom: 20px;
}

.header {
font-size: 36px;
font-weight: 700;
text-align: center;
position: relative;
}

.header .header-ico {
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
}

.header .header-ico img {
width: 40px;
height: 40px;
}

/* Subheading text styling */
.subheading {
font-size: 22px;
font-weight: 600;
color: #555;
margin-bottom: 20px;
}

/* List of achievements */
.ourAcheivement_list {
list-style: none;
padding: 0;
margin: 0;
}

.ourAcheivement_list li {
display: flex;
align-items: flex-start;
margin-bottom: 20px;
}

.ourAcheivement_list i {
font-size: 30px;
color: #333;
margin-right: 20px;
flex-shrink: 0;
}

.ourAcheivement_list div {
flex: 1;
}

.ourAcheivement_list .subheading {
font-size: 20px;
font-weight: 600;
color: #333;
margin-bottom: 10px;
}

.ourAcheivement_list p {
font-size: 16px;
color: #666;
line-height: 1.6;
}

/* Right column with logo */
.col-md-6.text-center {
flex: 1;
padding: 20px;
}

.col-md-6.text-center img {
max-width: 250px;
height: auto;
display: block;
margin: 0 auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
.header {
font-size: 28px;
margin-top: 5vh;
}

.subheading {
font-size: 18px;
}

.ourAcheivement_list li {
flex-direction: column;
align-items: flex-start;
}

.ourAcheivement_list i {
margin-right: 0;
margin-bottom: 10px;
}

.col-md-6 {
flex: 1 100%;
}

.col-md-6.text-center img {
max-width: 200px;
}
}

/* Container for the section */
.company-logo-section {
padding: 50px 15px;
background-color: #f4f4f4; /* Optional background color */
}

.company-logo-section .container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}

/* Section title */
.company-logo-section .section-title {
font-size: 28px;
font-weight: 700;
margin-bottom: 30px;
}

/* Logo container for the grid */
.logo-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* 150px min width for each logo */
gap: 70px; /* Gap between logos */
justify-items: center;
}

/* Styling for individual logo items */
.logo-item {
display: flex;
justify-content: center;
align-items: center;
max-width: 200px; /* Optional: limit the max width of each logo */
margin: 0 auto;
}

.logo-item img {
max-width: 108%;
height: auto;
display: block;
transition: transform 0.3s ease;
}

.logo-item img:hover {
transform: scale(1.1); /* Optional hover effect */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
.company-logo-section .section-title {
font-size: 24px;
}

.logo-container {
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); /* Adjust grid for smaller screens */
}
}

/* General Styles for Sticky Sidebar */
.mystickyelements-fixed {
    position: fixed;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* For Desktop - Position at the bottom-right */
@media only screen and (min-width: 1025px) {
    .mystickyelements-position-screen-left {
        left: 20px; /* Default position: Left */
        right: auto;
        bottom: 20px;
    }

    .mystickyelements-position-screen-right {
        right: 20px; /* Change position to Right */
        left: auto;
        bottom: 20px;
    }

    .mystickyelements-lists {
        list-style: none;
        padding: 0;
    }

    .mystickyelements-lists li {
        margin-bottom: 20px;
    }

    .mystickyelements-social-icon {
        display: block;
        padding: 20px;
        background: #7761DF;
        color: #FFF;
        border-radius: 50%;
        text-align: center;
        font-size: 24px;
        transition: background 0.3s ease;
        cursor: pointer;
    }

    .mystickyelements-social-icon a {
        color: #FFF;
        text-decoration: none;
    }

    .mystickyelements-social-icon:hover {
        background: #5a4dbf;
    }

    .element-contact-form {
        position: absolute;
        display: none; /* Hidden by default */
        bottom: 110%; /* Initially hidden above the button */
        left: 0;
        right: 0;
        padding: 30px;
        background-color: #FFF;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        width: 300px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    /* On hover of "Contact Us" show the form */
    #mystickyelements-contact-form:hover .element-contact-form {
        display: block;
        bottom: 120%; /* Ensure the form opens above the button */
    }

    .element-contact-form input,
    .element-contact-form textarea {
        width: 100%;
        margin-bottom: 15px;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 8px;
        box-sizing: border-box;
        font-size: 14px;
    }

    .element-contact-form input[type="submit"] {
        background-color: #7761DF;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 8px;
        padding: 15px;
        width: 100%;
        font-size: 16px;
    }

    .element-contact-form input[type="submit"]:hover {
        background-color: #5a4dbf;
    }
}

/* For Mobile and Tablet - Position at the top of the screen */
@media only screen and (max-width: 1024px) {
    .mystickyelements-position-mobile-top {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .mystickyelements-social-icon {
        margin-bottom: 10px;
        width: 60px;
        height: 60px;
        font-size: 26px;
        border-radius: 50%;
        background-color: #7761DF;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mystickyelements-social-icon a {
        color: white;
    }

    .element-contact-form {
        position: absolute;
        display: none; /* Hidden by default */
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        background-color: #FFF;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        border-radius: 10px;
    }

    /* On hover of "Contact Us" show the form */
    #mystickyelements-contact-form:hover .element-contact-form {
        display: block;
        top: 70px; /* Position the form just below the top navbar */
    }

    /* Styling for mobile/tablet contact form */
    .element-contact-form input,
    .element-contact-form textarea {
        width: 100%;
        margin-bottom: 15px;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 14px;
    }

    .element-contact-form input[type="submit"] {
        background-color: #7761DF;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 8px;
        padding: 15px;
        width: 100%;
        font-size: 16px;
    }

    .element-contact-form input[type="submit"]:hover {
        background-color: #5a4dbf;
    }
}

/* Minimize Button */
.mystickyelements-minimize {
    font-size: 24px;
    cursor: pointer;
    background: #000000;
    padding: 12px;
    color: white;
    border-radius: 5px;
}

.mystickyelements-minimize:hover {
    background: #333;
}

/* Button hover effect */
.mystickyelements-social-icon:hover {
    background: #5a4dbf;
}

                /* Basic reset and body styles */
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
        
        body {
          font-family: Arial, sans-serif;
          background-color: #f7f7f7;
        }
        
        /* Contact Section for both mobile and desktop */
        .contact-section {
          display: flex;
          flex-direction: column;  /* Default to vertical layout */
          justify-content: flex-start;
          z-index: 10;
          position: fixed;
          /* background-color: no; Ensure a background color */
          padding: 10px;
        }
        
        /* Style for each button */
        button {
         padding: 5px 12px;
    font-size: 11px;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    background-color: #7761DF;
    color: white;
    transition: background-color 0.3s ease;
    display: flex
;
    /* align-items: center; */
    align-items: center;
    width: 57px;
    margin: 0px 0;
        }
        
        button:hover {
          background-color: #45a049;
        }
        
        button img.social-icon {
          width: 18px;
          height: 18px;
          margin-right: 8px;
        }
        
        /* Specific button colors */
        #whatsappButton {
          background-color: #25D366;
        }
        
        #instagramButton {
    background: linear-gradient(to bottom right, #f9b3d1, #9b4d96, #f9c92e);
}
        
        /* Media Queries for Responsive Layout */
        /* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background */
  z-index: 1000; /* Make sure modal is on top */
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.modal-content {
  /* background-color: #fff; */
  background-color: #fff;
    margin-top: 120px;
    margin-left: 84px;
    padding: 63px 66px 44px 54px;
    border-radius: 8px;
    width: 98%;
    max-width: 523px;
    position: relative;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-30px);
    opacity: 0;
    animation: slideIn 0.5s forwards;
}

/* Modal Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #e74c3c; /* Red color on hover */
}

/* Title Style */
h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0px;
  text-align: center;
  color: #333;
}

/* Form Input and Textarea Styling */
input, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #4CAF50; /* Green border on focus */
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5); /* Green glow effect */
  outline: none;
}

/* Submit Button Style */
.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #4CAF50;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button {
  
    padding: 9px 17px;
    font-size: 11px;
    cursor: pointer;
    border: none;
    border-radius: 9px;
    background-color: #7761DF;
    color: white;
    transition: background-color 0.3s ease;
    display: flex;
    /*align-items: center;*/
    align-items: center;
    width: 70px;
    margin: 0px 0;
}
.submit-btn:hover {
  background-color: #7761DF; /* Darker green on hover */
}

/* Modal Opening Animation */
@keyframes slideIn {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content {
            background-color: #fff;
        margin-top: 16px;
        margin-left: 20px;
        padding: 19px 9px 27px 7px;
        border-radius: 8px;
        width: 98%;
        max-width: 548px;
        position: relative;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
        transform: translateY(-30px);
        opacity: 0;
        animation: slideIn 0.5s forwards;
        width: 92%;
  }

  h2 {
    font-size: 20px;
  }
}
        
        /* For smaller screens (mobile and tablets), show horizontally at the top */
        @media (max-width: 768px) {
          .contact-section {
            top: 0; /* Stick to the top on mobile devices */
            left: 0; /* Align to the left */
            width: 100%; /* Make it full-width */
            flex-direction: row;  /* Change to horizontal layout on mobile */
            justify-content: center;  /* Center buttons horizontally */
            padding: 4px 0; /* Padding for better spacing */
          }
          button {
            padding: 11px 13.5vw;
    font-size: 10px;
    cursor: pointer;
    border: none;
    border-radius: 0px;
    background-color: #7761DF;
    color: white;
    transition: background-color 0.3s ease;
    display: flex
;
    align-items: center;
    width: 180px;
    margin: 5px 0;
}
        
          button {
            width: auto;  /* Buttons should adjust to content */
            margin: -3px 0px;  /* Space out buttons horizontally */
          }
        }
        
        /* For larger screens (laptops, desktops, etc.), show at the bottom-left */
        @media (min-width: 769px) {
            .contact-section {
        /* bottom: 73vh; */
        top: 100px;
        left: -15px;
        flex-direction: column;
    }
        }
        
        
        
        
        /*about hotel deatiles */
   
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
        }
        .thailand-header {
            /*background-color: #007bff;*/
            color: #fff;
            padding: 1rem 0;
            text-align: center;
        }
        .thailand-container {
            width: 90%;
            max-width: 1200px;
            margin: 2rem auto;
            background: #fff;
            padding: 1rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .thailand-hotel-section {
            margin-bottom: 2rem;
        }
        .thailand-hotel {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            gap: 1rem;
        }
        .thailand-hotel img {
            width: 100%;
            max-width: 300px;
            border-radius: 8px;
            object-fit: cover;
        }
        .thailand-hotel-details {
            flex: 1;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .thailand-daywise-itinerary {
            margin-top: 2rem;
        }
        .thailand-day {
            margin-bottom: 1.5rem;
            padding: 1rem;
            background-color: #f0f8ff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .thailand-day h3 {
            margin-top: 0;
        }
        .thailand-footer {
            text-align: center;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #777;
        }
        .thailand-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 4px;
        }
        .thailand-btn:hover {
            background-color: #0056b3;
        }
        .thailand-footer {
            text-align: center;
            margin-top: 6rem;
            font-size: 0.9rem;
            color: #777;
        }
        .thailand-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 4px;
        }
        .thailand-btn:hover {
            background-color: #0056b3;
        }
        .thailand-touch-btn {
            display: inline-block;
            padding: 10px 20px;
            margin-bottom:20px;
         
            background-color: #1EC6B6;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            margin-top: 1rem;
        }
        .thailand-touch-btn:hover {
            color:white;
            background-color: #e83e8c;
        }
        .thailand-hotel {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.hotel-image {
    width: 200px;
    height: auto;
    object-fit: cover;
}

.thailand-hotel-details {
    padding: 15px;
    font-family: Arial, sans-serif;
    color: #333;
}

.thailand-hotel-details h4 {
    margin: 10px 0;
}

.price {
    font-size: 1.2em;
    color: #e63946;
}

.country {
    font-size: 1em;
    font-weight: bold;
    color: #457b9d;
}

.stay-plan, .inclusions {
    font-size: 1.1em;
    margin-top: 15px;
}

.stay-list, .inclusion-list {
    list-style-type: disc;
    margin: 5px 0 0 20px;
    padding: 0;
    color: #1d3557;
}

.stay-list li, .inclusion-list li {
    margin-bottom: 5px;
    font-size: 0.95em;
}


