*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ========== BREADCRUMB HERO ========== */
.breadcrumb-hero {
  background: url('img/1211.webp') no-repeat center center/cover;
  color: white;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.breadcrumb-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.breadcrumb-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.breadcrumb-nav {
  font-size: 1rem;
  color: #ddd;
}

.breadcrumb-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav span {
  color: #ddd;
}

/* Responsive: smaller devices */
@media (max-width: 768px) {
  .breadcrumb-hero h1 {
    font-size: 2.2rem;
  }

  .breadcrumb-nav {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .breadcrumb-hero h1 {
    font-size: 1.6rem;
  }

  .breadcrumb-nav {
    font-size: 0.8rem;
  }
}


/* ========== GALLERY SECTION ========== */
.gallery-section {
    background: #000;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.gallery-section .gallery-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #2c3e50;
  font-weight: bold;
}

/* Responsive Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* ====================
   MEDIA QUERIES
   ==================== */

/* Tablets */
@media (max-width: 768px) {
  .gallery-section {
    padding: 40px 15px;
  }

  .gallery-section .gallery-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

/* Phones */
@media (max-width: 480px) {
  .gallery-section {
    padding: 30px 10px;
  }

  .gallery-section .gallery-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .gallery-grid {
    gap: 15px;
  }

  .gallery-item {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
  }
}





/* footer ka lia ========================================================= */


/* Footer Base */
.main-footer {
  /* background-color: #1e2a2f; */
  /* background-color: #000080; */
  background-color: #1888b7;
  /* background-color: #b58244; */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  /* color: white; */
}

.footer-box {
  flex: 1 1 220px;
}
.footer-box img{
  height: 60px;
  width: 20 0px;
}

.footer-box h3,
.footer-box h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-box p,
.footer-box ul,
.footer-box li {
  font-size: 0.95em;
  margin: 5px 0;
  color: #f4f4f4;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  color: #f4f4f4;
}

.footer-box a:hover {
  color: black;
}

/* Subscription Form */
.footer-box input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
}

.footer-box button {
  background-color: #4fc3f7;
  color: #000;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-box button:hover {
  background-color: #29b6f6;
}

#subscribeMessage {
  margin-top: 10px;
  font-size: 0.9em;
  color: #8bc34a;
}

/* Bottom Footer */
.bottom-footer {
  text-align: center;
  border-top: 1px solid burlywood;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.85em;
  /* color: black; */
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-box {
    width: 100%;
  }
}





/* header about ka lia =============================== */

/* Top Header */
/* Top Header */
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  background-color: #1888b7;
  color: #fff;
  padding: 0.8rem;
  font-size: 15px;
  font-weight: 700;
}

/* Flex container */
.top-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  /* flex-wrap: wrap; */
}

/* Contact text aligned left */
.contact-text {
  margin: 0;
  flex: 1;
  text-align: left;
  white-space: nowrap;
}

/* Buttons aligned right */
.auth-buttons {
  /* background: red; */
  width: auto;
  display: flex;
  gap: 10px;
}

.auth-buttons .btn {
  padding: 6px 8px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
  color: white;
  background-color: green;
  transition: background-color 0.3s ease;
}

.auth-buttons .btn:hover {
  background-color: greenyellow;
  color: #000;
}

/* Responsive fix for small screens */
@media (max-width: 600px) {
  .top-header-container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .auth-buttons{
    /* background: #000; */
    flex-direction: column;
    height: 50%;
  }
  .auth-buttons .btn{
    padding: 2px 2px;
    font-size: 5px;
  }

  .contact-text {
    text-align: center;
    font-size: x-small;
  }
}

  .contact-text {
    text-align: center;
    font-size: 5px;
  }




/* Top Header */
/* background: #ffb85c ; */
/* .top-header {
  background-color:#1888b7;
  color: #fff;
  padding: 10px 0;
  font-size: 15px;
  font-weight:700;
  text-align: center;
} */

/* Main Header */
/* .main-header {
  background: #fff;
  /* border-bottom: 1px solid #eee; */
  /* background-color: #491f85; */
} */

/* .main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
} */

/* .logo img{
  width: 160px;
  height: 100px;
  /* margin-top: -10px;
  margin-bottom: -20px; */
} */

/* .nav-menu {
  display: flex;
  gap: 20px;
} */

/* .nav-menu a {
  text-decoration: none;
  color: #1888b7;
} */

/* .hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
} */

/* =========================================mera wala haaa ======================================*/
.main-header {
  background: #fff;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  flex-wrap: wrap;
}

.logo img {
  width: 160px;
  height: 100px;
}

/* Nav styles */
.nav-menu {
  display: flex;
  gap: 40px;
  font-weight: 800;

}

.nav-menu a {
  text-decoration: none;
  color: #1888b7;
}

/* Hamburger menu default (desktop) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* DROPDOWN (Desktop) */
.dropdown {
  position: relative;
}
.Service_drop_menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: yellow;
  z-index: 999;
}
.dropdown:hover .Service_drop_menu {
  display: block;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    padding: 10px 0;
  }

  .nav-menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .dropdown:hover .Service_drop_menu {
    display: none; /* disable hover dropdown for mobile */
  }

  .dropdown .dropdown-toggle::after {
    content: " ▼";
  }

  .dropdown .dropdown-toggle.active + .Service_drop_menu {
    display: block;
    position: relative;
    background: yellow;
  }
}


/* Container to position dropdown */
.dropdown {
  position: relative;
}

/* Hide dropdown initially */
.Service_drop_menu {
  display: none;
  position: absolute;
  top: 100%; /* directly below the link */
  left: 0;
  background-color: white;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  padding: 10px 0;
  min-width: 200px;
}

/* Show dropdown on hover */
.dropdown:hover .Service_drop_menu {
  display: block;
}

.Service_drop_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.Service_drop_menu li a {
  display: block;
  padding: 10px 16px;
  color: #1888b7;
  text-decoration: none;
}

.Service_drop_menu li a:hover {
  background-color: #f1f1f1;
  color: #2c3e50;
}




/* .navbar li.dropdown{
  position: relative;
 /* display: inline-block; */
} */

/* .dropdown-menu{
  display: none;
  position: absolute;
  top: 500%;
  left: 0;
  color: #1888b7;
  background-color: yellow;
  padding: 10px 0;
  list-style: none;
  min-width: 200px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  flex-direction: column;
} */
/* .dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: #1888b7;
} */

/* .dropdown-menu li a:hover {
  background-color: yellow;
  color: #2c3e50;
} */

/*.dropdown-menu li a:hover {
  background-color: #f1f1f1;
  color:#2c3e50;
}*/
/* Hamburger Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1888b7;
}

/* Default nav style (desktop) */
.navbar ul 
{
  color:#1888b7;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
/* Responsive header */




/* socialmedia sidebar............... */
.social-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: white;
  background-color: #333;
  border-radius: 0 5px 5px 0;
  text-decoration: none;
  font-size: 20px;
  transition: background 0.3s;
}

.social-btn:hover {
  opacity: 0.8;
}

.social-btn.whatsapp {
  background-color: #25D366;
}

.social-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-btn.facebook {
  background-color: #1877f2;
}

.social-btn.twitter {
  background-color: #1da1f2;
}