  body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
  }
  
   .logo {
    width: 100px;
}

  /* ===== NAVBAR BASE ===== */
  .navbar {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }

  .navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
  }

  /* ===== LOGO ===== */
  .logo img {
    height: 55px;
  }

  /* ===== CENTER SECTION ===== */
  .navbar-center {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-line {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 6px;
  }

  .contact-line::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: orange;
  }

  .contact-line span {
    margin: 0 8px;
  }

  /* ===== MENU ===== */
  .menu {
    display: flex;
    gap: 25px;
    position: relative;
  }

  .menu a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
  }

  .menu a:hover {
    color: orange;
  }

  /* ===== DROPDOWN MENU ===== */
  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-width: 130px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .dropdown-menu a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    text-align: left;
  }

  .dropdown-menu a:hover {
    background-color: #f7f7f7;
    color: orange;
  }

  /* Hover for desktop */
  @media (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
      display: block;
    }
  }

  /* ===== RIGHT SECTION ===== */
  .navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .navbar-right i {
    font-size: 16px;
    color: #333;
    cursor: pointer;
  }

  .quote-btn {
    background-color: #ff7b00;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
  }

  .quote-btn:hover {
    background-color: #ff7b00;
  }

  /* ===== MOBILE ===== */
 @media (max-width: 767px) {
    .logo {
    width: 65px;      /* adjust as needed */
    height: auto;
  }
  .menu {
    display: flex;
    justify-content: center;
    align-items: center;   /* ✅ Ensures vertical alignment */
    gap: 9px;
    overflow-x: visible !important;
    padding: 4px 0;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 12px;
  }

  .menu a {
    font-size: 12px;
    white-space: nowrap;
    line-height: 1;        /* ✅ Compact alignment */
    padding: 2px 0;        /* ✅ Aligns all items evenly */
  }

  /* Fix dropdown alignment */
  .dropdown {
    position: relative;
    display: flex;
    align-items: center;   /* ✅ Vertically aligns caret with text */
  }

  .dropdown > a {
    display: flex;
    align-items: center;
    gap: 3px;              /* ✅ small space between “Gallery” and caret */
  }

  .dropdown i {
    margin-top: 1px;       /* ✅ fine-tune icon position */
    font-size: 11px;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 22px;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 60px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 9999;
    padding:5px 9px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .contact-line {
    text-align: center;        /* ✅ Center align text */
    display: block;
    line-height: 1.4;
    padding-bottom: 3px;
  }

  .contact-line span {
    display: inline-block;     /* ✅ Keeps both spans centered properly */
    margin: 2px 5px;
  }

  .navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
  }

  .quote-btn {
    background-color: #ff7b00;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    cursor: pointer;
  }

}

  /* Show/Hide desktop vs mobile center */
  .mobile-only { display: none; }
  .desktop-only { display: flex; }

  @media (max-width: 767px) {
    .desktop-only { display: none; }
    .mobile-only { display: flex; flex-direction: column; }
  }


  /* ✅ Tablet view: side-by-side & centered */
@media (min-width: 768px) and (max-width: 991px) {
  .contact-line {
    display: flex;
    justify-content: center; /* ✅ Centers the whole line */
    align-items: center;
    text-align: center;
    gap: 8px; /* ✅ space between Contact and Email */
    font-size: 14px;
    white-space: nowrap;
  }

  .contact-line span {
    display: inline-block;
    margin: 0;
  }

  .navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
  }

  .menu{
    gap: 14px;
  }
 
  .logo {
    width: 80px;
}

}







/* ===== SEARCH EXPAND ON HOVER ===== */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.search-container input {
  width: 0;
  opacity: 0;
  padding: 6px 10px;
  font-size: 14px;
  border: 2px solid orange;
  border-radius: 4px;
  outline: none;
  transition: all 0.3s ease;
  margin-right: 5px;
}

/* On hover or focus — expand input */
.search-container:hover input,
.search-container input:focus {
  width: 160px;
  opacity: 1;
}

/* Search icon style */
.search-container i {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-container:hover i {
  color: orange;
}

@media (max-width: 767px) {
  .search-container:hover input,
  .search-container input:focus {
    width: 120px;
  }
}






/* css for footer */
    footer {
  background-color: #1e1e1e;
  color: white;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Main Footer Layout */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  /* text-align: center; */
}

/* Columns */
.footer-column {
  flex: 1;
  min-width: 250px;
}

/* Headings */
.footer-column h3 {
  color: #ff7b00;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Text and Links */
.footer-column p,
.footer-column a {
  color: #dcdcdc;
  font-size: 0.95rem;
  line-height: 1.8;
  text-decoration: none;
}

.footer-column a:hover {
  color: #ff7b00;
}

/* Social Icons */
.footer-social a {
  display: block;
  margin-bottom: 8px;
  text-align: center;
}

/* Subscribe Input + Button */
.footer-subscribe {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.footer-subscribe input {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.footer-subscribe button {
  background-color: #ff7b00;
  border: none;
  padding: 9px 12px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  color: white;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom a {
  color: #ff7b00;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Compact Look */
@media (max-width: 1024px) {
  .footer-container {
    justify-content: space-evenly;
    text-align: center;
  }

  .footer-column {
    flex: 1 1 300px;
  }

  .footer-subscribe {
    justify-content: center;
  }

  .footer-social a {
    display: inline-block;
    margin: 5px 10px;
  }
}



/* 📱 Compact Two-Column Footer Layout for Mobile */
@media (max-width: 767px) {
  footer {
    padding: 10px 8px !important;
  }

  .footer-container {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr); /* ✅ Two columns on mobile */
    gap: 10px !important;
    text-align: center;
  }

  .footer-column {
    margin: 0 !important;
    padding: 5px 0 !important;
  }

  .footer-column h3 {
    font-size: 0.95rem !important;
    margin-bottom: 4px !important;
  }

  .footer-column p,
  .footer-column a,
  .footer-column li {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
    margin: 2px 0 !important;
  }

  /* Ensure the subscribe section is properly aligned */
  .footer-subscribe {
    display: flex;
    align-items: center;          /* ✅ vertically centers input & icon */
    justify-content: center;      /* ✅ centers them horizontally */
    gap: 6px;                     /* small space between input & button */
    flex-wrap: nowrap;
  }

  .footer-subscribe input {
    flex: 1;
    min-width: 0;                 /* prevents overflow */
    padding: 6px 8px !important;
    font-size: 0.8rem !important;
    border-radius: 4px;
    border: 1px solid #ccc;
  }

  .footer-subscribe button,
  .footer-subscribe .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px !important;
    background-color: #ff7b00;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
  }

  .footer-subscribe button:hover {
    background-color: #e69500;
  }

  /* Follow Us icons */
  .footer-social a {
    display: inline-block;
    margin: 2px 6px !important;
    font-size: 0.9rem !important;
  }

  /* Footer bottom bar */
  .footer-bottom {
    grid-column: 1 / -1; /* ✅ spans both columns */
    margin-top: 8px !important;
    padding-top: 8px !important;
    border-top: 1px solid #444;
    font-size: 0.75rem !important;
  }

  .footer-bottom p {
    margin: 0 !important;
    text-align: center;
  }

  
}



