* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: #dbdbdb;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
}

/* Nav */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links li {
  position: relative;
}

.nav-links li.dropdown {
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.nav-links a svg {
  display: block;
  flex-shrink: 0;
}

.nav-links a:hover {
  color: #860303;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  min-width: 180px;
  display: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  border-radius: 5px;
}

.dropdown-menu li {
  padding: 10px 15px;
}

.dropdown-menu li a {
  color: #000000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown.active .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

/* Apply Button */
.apply-btn {
  background: #000000;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 5px;
}

.apply-btn:hover{
  background: #14075c;
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup Box */
.popup-box {
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 25px;
  border-radius: 8px;
  position: relative;
}

.popup-box h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Form */
.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup-box input,
.popup-box select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Submit Button */
.popup-box button {
  background: #000000;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
}

.popup-box button:hover {
  background: #595a5a;
}

/*whatsapp popup*/
/* WHATSAPP FLOATING */
.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}

/* BUTTON */
.whatsapp-btn {
  width: 68px;
  height: 68px;
  background: #4ce45c;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.whatsapp-btn img,
.whatsapp-btn svg {
  width: 38px;
  height: 38px;
  display: block;
  flex-shrink: 0;
}

/* POPUP */
.whatsapp-popup {
  position: absolute;
  right: 75px;
  bottom: 0;
  width: 260px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.whatsapp-popup h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.whatsapp-popup p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.whatsapp-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* CHAT BUTTON */
.whatsapp-chat-btn {
  display: block;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

/* HOVER EFFECT */
.whatsapp-widget:hover .whatsapp-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*headerinu under*/
.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/*GALLEY SECTION*/
.gallery{
display:grid;
grid-template-columns:repeat(4,1fr);
grid-auto-rows: 200PX;
gap:10px;
padding:20px;
}

.item{
cursor:pointer;
overflow:hidden;
}

.item img, .item-video{
width:100%;
height:100%;
object-fit:cover;
transition:0.4s;
}

.item:hover img, .item:hover video{
transform:scale(1.1);
}

/* Lightbox */

#lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
align-items:center;
justify-content:center;
z-index:999;
}

.lightbox-content img, .lightbox-content video {
max-width:90%;
max-height:80vh;
}

.close{
position:absolute;
top:20px;
right:30px;
font-size:30px;
color:white;
background:none;
border:none;
cursor:pointer;
}

.prev,
.next{
position:absolute;
top:50%;
font-size:40px;
color:white;
background:none;
border:none;
cursor:pointer;
}

.prev{
left:20px;
}

.next{
right:20px;
}


/*FOOTER*/
.footer {
  background: #f5f5f5;
  padding-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box img {
  width: 100px;
  margin-bottom: 25px;
}

.footer-col h3,.footer-col-add h4 {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 20PX;
}

.footer-col h2{
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 18px;
  margin-left: 35px;
}

.footer-col h3{
  margin-left: 50px;
}

.footer-col p {
  font-size: 18px;
  line-height: 1.4;
  color: #333;
  text-align: justify;
}

.footer-col-add .office-address {
  font-size: 18px;
  line-height: 1.25;
  color: #333;
  text-align: justify;
  margin-top: 8px;
  margin-bottom: 8px;
}

.footer-col-add p {
  font-size: 18px;
  line-height: 1.35;
  color: #333;
  text-align: justify;
  margin-top: 8px;
  margin-bottom: 8px;
}

.footer-col-add p:last-of-type {
  white-space: nowrap;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: 0.3s;
  margin-left: 70px;
}

.footer-col ul li a:hover {
  color: #007bff;
}

.map iframe {
  border-radius: 10px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px;
  text-align: center;
  background: linear-gradient(135deg, #122033 0%, #1c3249 100%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.menu-toggle {
  cursor: pointer;
  display: none;
}

.line {
  stroke: #333;
  stroke-width: 2;
  transition: 0.3s;
}

/* active state */
.menu-toggle.active .top {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.active .middle {
  opacity: 0;
}
.menu-toggle.active .bottom {
  transform: translateY(-6px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 767px) {
  .container {
    padding: 12px 16px;
    position: relative;
  }

  .logo img {
    height: 48px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #dbdbdb;
    padding: 0 16px 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding-top: 10px;
  }

  .nav-links li,
  .nav-links a {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    margin-top: 8px;
    box-shadow: none;
    background: #f4f4f4;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .apply-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  .popup-box {
    width: calc(100% - 24px);
    padding: 20px;
  }

  .hero-image img {
    height: 220px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
    padding: 16px;
  }

  .lightbox-content img,
  .lightbox-content video {
    max-width: 92%;
    max-height: 70vh;
  }

  .close {
    top: 12px;
    right: 18px;
    font-size: 28px;
  }

  .prev,
  .next {
    font-size: 30px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-btn {
    width: 60px;
    height: 60px;
  }

  .whatsapp-btn svg {
    width: 34px;
    height: 34px;
  }

  .whatsapp-popup {
    right: 0;
    bottom: 68px;
    width: 220px;
  }

  .footer-container {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .logo-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col h2,
  .footer-col h3,
  .footer-col ul li a {
    margin-left: 0;
    text-align: left;
  }

  .map iframe {
    width: 100%;
    height: 240px;
  }
}

/* Compact Footer Override */
.footer { padding-top: 22px; }
.footer-container { gap: 18px; }
.logo-box img { width: 76px; margin-bottom: 6px; }
.footer-col h3, .footer-col-add h4 { margin-bottom: 10px; font-size: 15px; }
.footer-col p, .footer-col-add p, .footer-col-add p1, .footer-col ul li a { font-size: 13px; line-height: 1.45; }
.footer-col ul li { margin-bottom: 4px; }
.footer-bottom { margin-top: 16px; padding: 8px; font-size: 14px; background: linear-gradient(135deg, #122033 0%, #1c3249 100%); color: rgba(255, 255, 255, 0.82); }
@media (max-width: 767px) {
  .footer-col p, .footer-col-add p, .footer-col ul li a { font-size: 13px; }
}

/* Premium Motion Enhancements */
body {
  background-image:
    radial-gradient(circle at 14% 18%, rgba(245, 191, 84, 0.08), transparent 18%),
    radial-gradient(circle at 86% 10%, rgba(87, 138, 255, 0.08), transparent 22%);
  background-attachment: fixed;
}

.header {
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-links a,
.apply-btn,
.footer-col ul li a,
.btn,
button {
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.nav-links a:hover,
.footer-col ul li a:hover {
  transform: translateY(-1px);
}

.apply-btn:hover,
.btn:hover,
.popup-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.hero-image img,
:is(a, div, article, section)[class*="card"],
:is(div, section)[class*="box"] {
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.hero-image img {
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.14);
}

.hero-image:hover img {
  transform: translateY(-6px) scale(1.01);
}

:is(a, div, article, section)[class*="card"]:hover,
:is(div, section)[class*="box"]:not(.popup-box):hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.whatsapp-btn {
  animation: premiumFloat 3.6s ease-in-out infinite;
  box-shadow: 0 16px 34px rgba(25, 117, 70, 0.28);
}

.popup-box,
.footer {
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

@keyframes premiumFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-btn {
    animation: none;
  }

  .hero-image img,
  :is(a, div, article, section)[class*="card"],
  :is(div, section)[class*="box"],
  .nav-links a,
  .apply-btn,
  .btn,
  button {
    transition: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 100%;
    padding: 14px 24px;
    gap: 16px;
  }

  .nav {
    flex: 1;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-image img {
    height: 300px;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }

  .footer-container {
    width: calc(100% - 48px);
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-col h2,
  .footer-col h3,
  .footer-col ul li a {
    margin-left: 0;
  }

  .map iframe {
    width: 100%;
    height: 260px;
  }
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .container {
    max-width: 96%;
    padding: 15px 24px;
  }

  .nav-links {
    gap: 18px;
  }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-container {
    width: 94%;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }

  .footer-container {
    max-width: 1280px;
    width: 100%;
  }
}

/* Footer Layout Refresh */
.footer { padding: 26px 0 0; background: linear-gradient(180deg, #f1e7d9 0%, #eadfce 100%); }
.footer-container { max-width: 1180px; width: calc(100% - 48px); grid-template-columns: 1.45fr 0.8fr 1fr 1.15fr; gap: 34px; }
.logo-box { align-items: flex-start; gap: 0; }
.logo-box img { width: 92px; margin-bottom: 8px; }
.footer-col h3, .footer-col-add h4 { margin: 0 0 12px; font-size: 17px; color: #122033; }
.footer-col h3, .footer-col ul li a { margin-left: 0; }
.footer-col p, .footer-col-add p, .footer-col-add p1 { font-size: 14px; line-height: 1.65; text-align: left; }
.footer-col ul li { margin-bottom: 5px; }
.footer-col ul li a { font-size: 14px; line-height: 1.6; }
.map iframe { width: 100%; height: 225px; border: 0; border-radius: 18px; box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10); }
.footer-bottom { margin-top: 18px; padding: 8px; background: linear-gradient(135deg, #122033 0%, #1c3249 100%); color: rgba(255, 255, 255, 0.82); }
@media (max-width: 1023px) { .footer-container { grid-template-columns: 1fr 1fr; width: calc(100% - 36px); gap: 24px; } }
@media (max-width: 767px) { .footer { padding-top: 22px; } .footer-container { grid-template-columns: 1fr; width: calc(100% - 28px); gap: 18px; } .map iframe { height: 210px; } }




