/* --- Basic Reset & Setup --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #ffffff;

  /* ===============================================
    === CHANGE YOUR BACKGROUND IMAGE HERE ===
    ===============================================
    */
  background-color: #0d1128; /* Fallback solid color */
  /* Replace with your desired background, like the purple one in your screenshot */
  background-image: url("./assets/images/Backgroud IMG.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  /* =============================================== */

  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 40px 20px; /* Add some padding for the PC view */
}

/* --- Main Page Container (FOR PC VIEW) --- */
.container {
  width: 100%;
  max-width: 480px; /* Controls the width of the content box */
  text-align: center;

  /* --- Changes are here --- */
  background-color: transparent; /* Makes the container background see-through */
  box-shadow: none; /* Removes the shadow as it's no longer needed */
  /* --- End of changes --- */

  border-radius: 8px;
  overflow: hidden;
}

/* --- Header --- */
.header img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Main Content --- */
.main-content {
  padding: 25px 30px;
}

.main-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.main-content h1 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}
h4 {
  transition: all 0.3s ease;
}
h4:hover {
  color: yellow;
  border-radius: 50px;
}

.thura-zaw-slider-container {
  width: 318px;
  height: 642px;
  overflow: hidden;
  margin: 30px auto 0; /* Changed this line */
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.thura-zaw-slider-track {
  display: flex;
  width: calc(5 * 318px);
  transition: transform 0.5s ease-in-out;
}

.thura-zaw-slide {
  width: 318px;
  height: 642px;
  position: relative;
}

.thura-zaw-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* --- Action Buttons --- */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.btn i {
  font-size: 1.4rem;
}

/* Button Color Gradients */
.btn-facebook {
  background: linear-gradient(90deg, #3b5998, #4e69a2);
}
.btn-telegram {
  background: linear-gradient(90deg, #0088cc, #2ca5e0);
}
.btn-viber {
  background: linear-gradient(90deg, #6752b5, #836fff);
}
.btn-website {
  background: linear-gradient(90deg, #434343, #626262);
}

.btn-phone {
  background: linear-gradient(90deg, #c43a30, #e65c52);
}

/* --- Footer (New Style) --- */
.footer {
  position: relative;
  height: 90px; /* This should be the diameter of the logo circle */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px; /* Adds some space above the footer area */
}

/* Creates the two bars on the left and right of the logo */
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  height: 45px; /* The height of the horizontal bars */
  width: calc(50% - 55px); /* Calculates width to leave a gap in the middle */
  background-color: #0c0e24; /* A darker color from the theme */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1; /* Places the bars behind the logo */
}

/* Left bar styling */
.footer::before {
  left: 0;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

/* Right bar styling */
.footer::after {
  right: 0;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

/* The circular container for the logo */
.footer-logo-wrapper {
  position: relative;
  z-index: 2; /* Ensures the logo is on top of the bars */
  width: 90px;
  height: 90px;
  background-color: #1a1f3c; /* Matches the main container's background */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* This shadow gives the logo a subtle "pop" */
  box-shadow: 0 0 15px rgba(247, 227, 50, 0.6);
}

/* The actual logo image inside the circle */
.footer-logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures your logo fits perfectly */
  border-radius: 50%;
}
/* --- Mobile Responsiveness --- */
@media (max-width: 600px) {
  body {
    padding: 0; /* Remove body padding on mobile */
  }

  .container {
    max-width: 100%;
    min-height: 100vh;
    border-radius: 0; /* Full screen, so no rounded corners */
    box-shadow: none;
  }
}
