* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #000;
    color: #fff;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
}

.top-right a {
    background: #fff;
    color: #000;
    padding: 6px;
    border-radius: 50%;
    margin-left: 6px;
    transition: 0.3s;
}

.top-right a:hover {
    background: red;
    color: #fff;
}

/* ===== HEADER ===== */
header {
    background: #eee;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

/* ===== NAV ===== */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    position: relative;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover {
    color: red;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 22px;
    z-index: 2000;
    left: 0;
    background: #fff;
    min-width: 160px;
    padding: 14px 0px;
    display: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu li {
    padding: 6px 16px;
}

/* Button */
.enquiry-btn a {
    background: red;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.enquiry-btn a:hover {
    background: #000;
}

/* Mobile */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-btn {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

    nav {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #fff;
        transition: 0.3s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .menu-toggle {
        display: block;
    }

    .enquiry-btn {
        display: none;
    }

    .mobile-btn {
        display: block;
        margin-top: 10px;
    }

    .enquiry-mobile {
        background: red;
        color: #fff !important;
        padding: 10px 20px;
        border-radius: 5px;
    }

    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    .top-right {
        margin-top: 8px;
    }
}

/* gallery */
/* ===== GALLERY SECTION ===== */

.gallery-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.gallery-title {
  font-size: 32px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 600;
}

/* ===== GRID LAYOUT ===== */

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 15px;
}

/* ===== GALLERY ITEM ===== */

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  height: 250px;            /* ✅ sab images same size */
}

/* ===== IMAGE STYLE ===== */

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* ✅ crop & fit perfect */
  display: block;
  transition: transform .4s ease, filter .4s ease;
}

/* ===== HOVER EFFECT ===== */

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(80%);
}

/* ===== POPUP LIGHTBOX ===== */

.image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadeIn .4s ease;
  z-index: 999;
}

.popup-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  animation: zoomIn .4s ease;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ===== ANIMATIONS ===== */

@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}

@keyframes zoomIn {
  from {transform: scale(.7);}
  to {transform: scale(1);}
}

/* ===== MOBILE RESPONSIVE ===== */

@media(max-width:600px){

  .gallery-title{
    font-size:24px;
  }

  .gallery-item{
    height:180px;   /* mobile par perfect size */
  }

}

/* Responsive */
@media(max-width:600px){
  .gallery-title{
    font-size:24px;
  }
}



/* footer */

    .footer {
  background: black;
  color: #fff;
  padding-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #00d4ff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00d4ff;
  padding-left: 6px;
}

.logo {
  width: 100px;
  margin-bottom: 15px;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.socials a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  font-size: 14px;
}

/* Floating Buttons */



/* Responsive */

@media (max-width: 600px) {
  .footer {
    text-align: center;
  }

  .socials {
    margin-top: 10px;
  }
}


