* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Reset default margins */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
}

/* Header Div with Background Image */
.header {
    background: url('images/background_final.jpg') no-repeat center center/cover;
    padding: 50px 20px;
}

/* Header Content Styling */
.header-content {
    text-align: center;
    padding-bottom: 40px;
    color: #fff;
}

.header-content h1 {
    font-size: 3rem;
    margin: 0;
}

.location {
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.content-box {
    max-width: 1100px;
    margin: 30px auto 0 auto;
    padding: 20px;
}

.description {
    font-size: 1.2rem;
    line-height: 1.9;
}

.footer-text {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Gallery Section */
.gallery-section {
    padding: 50px 20px;
    text-align: center;
    color: #fff;
}

.gallery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Flexbox Image Gallery */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery-container img {
    width: 250px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

/* Footer Section */
footer {
    background-color: #d9d9d9; /* Light neutral background */
    padding: 30px 0;
    color: #333;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-details h3 {
    margin-bottom: 10px;
    color: #222;
}

.footer-details p {
    margin: 8px 0;
    color: #555;
}


.map-box {
    border:1px solid;
    border-radius: 10px;
    overflow: hidden;
    height: 4 rem;
} 

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container, .gallery-container,.sosial-media {
        flex-direction: column;
        align-items: center;
    }

    .footer-details {
        margin-top: 20px;
        text-align: center;
    }

    .gallery-container img {
        width: 90%;
    }
}

/* Social Media Icons */
.social-media {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-media img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-media img:hover {
    transform: scale(1.1);
}
/* 
.accordion_holder {
  margin-left: 25%;
  margin-right: 25%;
  margin-top: 10px;
  margin-bottom: 10px;
} */



/* <!-- Boys and Girls PG Details Section --> */
.pg-details-section {
    padding: 40px 20px;
    background-color: #e9ddc9;
    text-align: center;
}

.pg-details-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.pg_details_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.details_container h3{
    text-align: center;
}

.details_container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    text-align: left;
    flex: 1 1 300px;
}

.pg-column h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0056b3;
}

.pg-column ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}

.pg-column ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}


/* Location button */
/* From Uiverse.io by alexmaracinaru */ 
.location_cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.location_cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #b1dae7;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.location_cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #234567;
}

.location_cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #234567;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.location_cta:hover:before {
  width: 100%;
  background: #8ecadd;
}

.location_cta:hover svg {
  transform: translateX(0);
}

.location_cta:active {
  transform: scale(0.95);
}
