
    body {
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
    }

    :root {
      --navy: #0b1c2d;
      --orange: #f57c00;
    }

    /* Navbar */
    .navbar {
      background: var(--navy);
      transition: 0.3s;
    }
    .navbar.scrolled {
      box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    }
    .navbar-brand, .nav-link {
      color: #fff !important;
      font-weight: 500;
    }
    .nav-link:hover {
      color: var(--orange) !important;
    }

    /* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;   /* full screen height */
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 50px;
 
  aspect-ratio: 16 / 9;
  height: auto;

}

/* IMAGE FIX */
.hero-img {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: contain;   /* 👈 FULL IMAGE visible */
  background: black;     /* fills side gaps nicely */
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 45, 0.7);
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Existing styles */
.hero h1 span {
  color: var(--orange);
}

.hero h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--orange);
  margin: 15px auto 0;
  animation: slideLine 2s infinite alternate;
}

@keyframes slideLine {
  from { width: 40px; }
  to { width: 100px; }
}

    section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-title h2 {
      color: var(--navy);
      font-weight: 700;
    }
    .section-title span {
      color: var(--orange);
    }

    /* Cards */
    .info-card {
      border: none;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .info-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
      border-left: 5px solid var(--orange);
    }

    /* Tables */
    table th {
      background: var(--navy);
      color: white;
    }
    table tbody tr {
      transition: 0.3s;
    }
    table tbody tr:hover {
      background-color: #fff3e0;
      transform: scale(1.01);
    }

    /* Counters */
    .counter {
      font-size: 40px;
      font-weight: 700;
      color: var(--orange);
    }

    /* Gallery */
    .gallery div {
      position: relative;
      overflow: hidden;
    }
    .gallery img {
      width: 100%;
      border-radius: 10px;
      transition: transform 0.4s;
    }
    .gallery div:hover img {
      transform: scale(1.1);
    }
    .gallery div::after {
      content: attr(data-label);
      position: absolute;
      bottom: -100%;
      background: rgba(11,28,45,0.85);
      color: white;
      width: 100%;
      text-align: center;
      padding: 10px;
      transition: 0.4s;
    }
    .gallery div:hover::after {
      bottom: 0;
    }

    /* Footer */
    footer {
      background: var(--navy);
      color: white;
      padding: 40px 0;
    }

    .list-group-item {
  background: transparent;
  border: none;
  padding-left: 0;
}

/* ABOUT SECTION ENHANCEMENT */
#about {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  position: relative;
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(245,124,0,0.08), transparent 40%),
              radial-gradient(circle at 90% 20%, rgba(11,28,45,0.08), transparent 40%);
  pointer-events: none;
}

.feature-card {
  position: relative;
  border-left: 6px solid var(--orange);
  background: white;
}

.feature-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: var(--orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

.about-divider {
  width: 80px;
  height: 4px;
  background: var(--orange);
  margin: 15px 0;
}

.highlight-box {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.highlight-box:hover {
  transform: translateY(-6px);
}

.brand-card {
  position: relative;
  overflow: hidden;
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(245,124,0,0.12));
  opacity: 0;
  transition: 0.4s;
}

.brand-card:hover::after {
  opacity: 1;
}

.industry-tile {
  background: white;
  border-radius: 30px;
  padding: 14px 10px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.industry-tile:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-6px) scale(1.03);
}

.sub-section-title {
  position: relative;
  font-weight: 700;
  color: var(--navy);
  padding-left: 18px;
  margin-bottom: 30px;
}

.sub-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 100%;
  background: var(--orange);
  border-radius: 5px;
}

.sub-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--orange);
  animation: slideAccent 2s infinite alternate;
}

@keyframes slideAccent {
  from { width: 40px; }
  to { width: 80px; }
}


/* Navbar Logo */
.navbar-logo {
  height: 42px;           /* Desktop size */
  width: auto;
  transition: 0.3s ease;
}

/* Smaller logo on scroll */
.navbar.scrolled .navbar-logo {
  height: 36px;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .navbar-logo {
    height: 34px;
  }
}


/* PREMIUM NAVBAR STYLING */
.navbar {
  background: linear-gradient(90deg, var(--navy), #0f2a44);
  padding: 14px 0;
  transition: all 0.4s ease;
  z-index: 999;
}

/* Scroll effect */
.navbar.scrolled {
  background: rgba(11,28,45,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  padding: 8px 0;
}

/* Logo animation */
.navbar-logo {
  height: 42px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 10px rgba(245,124,0,0.7));
}

/* Nav links */
.navbar-nav .nav-link {
  position: relative;
  color: #ffffff !important;
  font-weight: 500;
  margin-left: 18px;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

/* Animated underline */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: var(--orange);
  transition: width 0.35s ease;
  border-radius: 3px;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: var(--orange) !important;
}

/* Mobile menu */
.navbar-collapse {
  background: transparent;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--navy);
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    margin: 12px 0;
  }
}

/* Toggler */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* GALLERY GRID */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  display: none; /* hidden initially */
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover zoom */
.gallery-item:hover img {
  transform: scale(1.12);
}

/* Overlay label */
.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(transparent, rgba(11,28,45,0.9));
  color: #fff;
  font-weight: 500;
  text-align: center;
  transition: 0.4s;
}

.gallery-item:hover::after {
  bottom: 0;
}


/* CUSTOMER LOGOS */
.client-logo {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.4s ease;
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.08);
}


/* Mobile */
@media (max-width: 768px) {
  .client-logo {
    max-height: 55px;
  }
}


/* CONTACT IMAGE */
.contact-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-image {
  width: 100%;
  transition: transform 0.6s ease;
}

.contact-image-wrapper:hover .contact-image {
  transform: scale(1.08);
}

/* Overlay */
.contact-image-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  color: #fff;
}

.contact-image-overlay h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

/* Contact Form */
.contact-form {
  border-radius: 14px;
}

.contact-form .form-control {
  border-radius: 10px;
}

.contact-form button {
  font-weight: 600;
}


/* CHATBOT */
#chatbot {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

/* Toggle Button */
#chatbot-toggle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  animation: pulse 2s infinite;
}

/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,152,0,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(255,152,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,152,0,0); }
}

/* Chat Window */
#chatbot-window {
  width: 320px;
  height: 420px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  position: absolute;
  bottom: 80px;
  right: 0;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

/* Header */
.chatbot-header {
  background: #0a2540;
  color: #fff;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* Body */
.chatbot-body {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: #f7f7f7;
}

.bot-msg, .user-msg {
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: 14px;
  max-width: 85%;
  font-size: 14px;
}

.bot-msg {
  background: #e3f2fd;
  align-self: flex-start;
}

.user-msg {
  background: #ff9800;
  color: #fff;
  align-self: flex-end;
  margin-left: auto;
}

/* Footer */
.chatbot-footer {
  display: flex;
  border-top: 1px solid #ddd;
}

#chatbot-input {
  flex: 1;
  border: none;
  padding: 10px;
  outline: none;
}

#chatbot-send {
  background: #ff9800;
  border: none;
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
}


/* FOOTER */
.footer-section {
  background: #f3ebe6;
  padding: 60px 0 0;
  color: #444;
}

.footer-logo {
  max-width: 180px;
}

.footer-section h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff6b00;
  padding-left: 5px;
}

.footer-btn {
  background: #ff6b00;
  color: white;
  border-radius: 25px;
  padding: 8px 18px;
  margin-top: 10px;
}

.footer-btn:hover {
  background: #e65c00;
}

.footer-bottom {
  background: #222;
  color: #fff;
  padding: 15px;
  margin-top: 40px;
  font-size: 14px;
}

/* QUALITY SECTION */
.quality-section {
  padding: 80px 0;
  background: #fff;
}

.quality-section img {
  transition: 0.4s;
}

.quality-section img:hover {
  transform: scale(1.05);
}

/* spacing improvement */
.quality-section h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.quality-section p {
  color: #555;
  line-height: 1.7;
}


/* INDUSTRIES SECTION */
.industries-section {
  padding: 80px 0;
  background: #f8f8f8;
}

/* CARD */
.industry-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
}

.industry-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

/* DARK OVERLAY */
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* CONTENT */
.industry-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.industry-content h5 {
  margin-top: 10px;
  font-weight: 600;
}

/* ICON */
.icon-circle {
  width: 60px;
  height: 60px;
  background: white;
  color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* HOVER EFFECT */
.industry-card:hover img {
  transform: scale(1.1);
}

.industry-card:hover {
  transform: translateY(-8px);
}

/* HEADER STYLING (MATCH IMAGE UI) */

.industries-header {
  max-width: 750px;
  margin: auto;
}

/* SMALL TOP TEXT */
.small-title {
  color: #ff6b00;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* MAIN TITLE */
.main-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
}

/* ORANGE LINE */
.title-underline {
  width: 60px;
  height: 3px;
  background: #ff6b00;
  margin: 15px auto;
  border-radius: 2px;
}

/* DESCRIPTION */
.subtitle {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

/* GROUP SECTION */
.group-section {
  padding: 80px 0;
  background: #fff;
}

/* CARD */
.company-card {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.4s;
  height: 100%;
  border: 1px solid #eee;
}

/* ICON */
.company-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: #fff;
  color: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* TEXT */
.company-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.company-card p {
  color: #666;
  font-size: 14px;
}

/* HOVER EFFECT */
.company-card:hover {
  transform: translateY(-10px);
  background: #ff6b00;
  color: #fff;
}

.company-card:hover p {
  color: #fff;
}

.company-card:hover .company-icon {
  background: #fff;
  color: #ff6b00;
}

/* =========================================
   ABOUT SECTION MOBILE FIX
========================================= */

@media (max-width: 768px) {

  .about-section {
    padding: 50px 0;
    text-align: center;
  }

 /* ONLY MAIN ABOUT ROW GAP */
.about-section > .container > .row {
  row-gap: 30px;
}

  /* TITLE */
  .small-title {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .main-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .title-underline {
    margin: 12px auto 20px;
  }

  /* TEXT */
  .about-text {
    font-size: 15px;
    line-height: 1.8;
    padding: 0 5px;
  }

  /* IMAGE */
  .about-image-wrapper {
    margin-top: 10px;
  }

  .about-image-wrapper img {
    border-radius: 14px;
  }

  /* STATS SECTION */
  .about-section .col-6 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .about-card {
    padding: 18px 12px;
    border-radius: 14px;
    height: 100%;
  }

  .about-card h4 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .about-card p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .about-icon {
    font-size: 26px;
    margin-bottom: 8px;
  }
}

/* EXTRA SMALL DEVICES */

@media (max-width: 480px) {

  .main-title {
    font-size: 24px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-card {
    padding: 15px 10px;
  }

  .about-card h4 {
    font-size: 18px;
  }

  .about-card p {
    font-size: 12px;
  }

  .about-icon {
    font-size: 22px;
  }
}

/* FIX ABOUT STATS MOBILE LAYOUT */

.stats-row {
  margin-left: 0;
  margin-right: 0;
}

.stats-col {
  padding-left: 6px;
  padding-right: 6px;
}

@media (max-width: 480px) {

  .stats-col {
    width: 50%;
  }

  .about-card {
    padding: 14px 8px;
  }

  .about-card h4 {
    font-size: 16px;
  }

  .about-card p {
    font-size: 11px;
    line-height: 1.4;
  }

  .about-icon {
    font-size: 20px;
  }
}


/* FIX STATS CARDS */

.stats-row {
  margin-left: -6px;
  margin-right: -6px;
}

.stats-col {
  padding-left: 6px;
  padding-right: 6px;
}

@media (max-width: 480px) {

  .stats-col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .about-card {
    padding: 14px 8px;
  }

  .about-card h4 {
    font-size: 15px;
  }

  .about-card p {
    font-size: 10px;
    line-height: 1.3;
  }
}



















/* ======================================
   MOBILE ONLY FIXES
   (Desktop remains untouched)
====================================== */

@media (max-width: 768px) {

  /* Prevent horizontal scroll */
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  * {
    box-sizing: border-box;
    max-width: 100%;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* HERO SECTION */
  .hero {
    min-height: 75vh;
    margin-top: 60px;
    padding: 20px;
  }

  .hero-img {
    object-fit: cover;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
    padding: 0 10px;
  }

  /* TITLES */
  .main-title {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  /* FIX TABLE OVERFLOW */
  .table-responsive {
    overflow-x: auto;
  }

  table {
    min-width: 600px;
  }

  /* GALLERY */
  .gallery-item img {
    height: 200px;
  }

  /* INDUSTRY CARDS */
  .industry-card img {
    height: 220px;
  }

  /* FOOTER */
  .footer-section {
    text-align: center;
  }

  .footer-logo {
    margin: auto;
  }

  /* CHATBOT */
/* CHATBOT MOBILE FIX */
/* CHATBOT MOBILE FIX */

@media (max-width: 768px){

  #chatbot{

    right: 15px;
    bottom: 15px;

  }

  #chatbot-window{

    position: fixed;

    width: calc(100vw - 30px);
    height: 70vh;

    right: 15px;
    left: auto;

    bottom: 85px;

    max-width: none;

    border-radius: 18px;

  }

  .chatbot-body{
    overflow-y: auto;
  }

}



  /* REMOVE EXTRA RIGHT SPACE */
  .container,
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }
}

/* EXTRA SMALL DEVICES */

@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 26px;
  }

  .main-title {
    font-size: 22px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .gallery-item img {
    height: 180px;
  }
}

/* QUALITY SECTION MOBILE SPACING */

@media (max-width: 768px) {

  .quality-section .row .col-md-6:first-child {
    margin-bottom: 20px;
  }

  .quality-section img {
    width: 100%;
  }

  .quality-section h4 {
    margin-top: 5px;
  }
}

.contact-btn {
  background: #ff6b00;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #e65c00;
  color: white;
  transform: translateY(-2px);
}



.grades-table {
  background: #fff;
  border: 2px solid #222;
}

.grades-table th,
.grades-table td {
  border: 1px solid #222;
  padding: 18px 14px;
  vertical-align: middle;
  font-size: 18px;
  color: #444;
}

.grades-table thead th {
  background: #f8f8f8;
  font-weight: 700;
}

.grades-table .main-head {
  font-size: 30px;
  font-weight: 700;
}

.grades-table td strong,
.grades-table th {
  font-weight: 700;
}

@media (max-width: 991px) {

  .grades-table th,
  .grades-table td {
    font-size: 15px;
    padding: 14px 10px;
    white-space: nowrap;
  }

  .grades-table .main-head {
    font-size: 20px;
  }
}

@media (max-width: 576px) {

  .grades-table th,
  .grades-table td {
    font-size: 13px;
    padding: 12px 8px;
  }

  .grades-table .main-head {
    font-size: 16px;
  }
}



.ductile-table {
  background: #fff;
  border: 2px solid #222;
}

.ductile-table th,
.ductile-table td {
  border: 1px solid #222;
  padding: 12px 10px;   /* SMALLER */
  vertical-align: middle;
  font-size: 15px;      /* SMALLER */
  color: #444;
}

.ductile-table thead th {
  background: #f8f8f8;
  font-weight: 700;
}

.ductile-table .main-head {
  font-size: 20px;      /* SMALLER */
  font-weight: 700;
}

.ductile-table td strong,
.ductile-table th {
  font-weight: 700;
}

@media (max-width: 991px) {

  .ductile-table th,
  .ductile-table td {
    font-size: 13px;
    padding: 10px 8px;
    white-space: nowrap;
  }

  .ductile-table .main-head {
    font-size: 16px;
  }
}

@media (max-width: 576px) {

  .ductile-table th,
  .ductile-table td {
    font-size: 12px;
    padding: 8px 6px;
  }

  .ductile-table .main-head {
    font-size: 14px;
  }
}

.contact-details-card{
  background: #fff;
  border-radius: 14px;
}

.contact-details-card h4{
  font-size: 24px;
  font-weight: 700;
  color: #222;
}

.contact-detail-item{
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.contact-detail-item a{
  color: #ff7a00;
  text-decoration: none;
  transition: 0.3s;
}

.contact-detail-item a:hover{
  color: #e56700;
}

@media (max-width: 768px){

  .contact-details-card{
    margin-bottom: 20px;
  }

  .contact-details-card h4{
    font-size: 20px;
  }

  .contact-detail-item{
    font-size: 14px;
  }
}


.contact-mini-details{
  font-size: 16px;
  line-height: 1.6;
}

.contact-mini-details h5{
  font-size: 22px;
  color: #222;
}

.contact-mini-details a{
  color: #ff7a00;
  text-decoration: none;
}

.contact-mini-details a:hover{
  color: #e56700;
}

.mini-detail{
  color: #555;
}

.contact-image{
  max-height: 320px;
  object-fit: cover;
}

@media(max-width:768px){

  .contact-image{
    max-height: 250px;
    margin-bottom: 15px;
  }

  .contact-mini-details{
    font-size: 13px;
  }

  .contact-mini-details h5{
    font-size: 18px;
  }
}

/* NAVBAR DROPDOWN */
.dropdown-menu{
  border-radius: 12px;
  border: none;
  padding: 10px 0;
}

.dropdown-item{
  padding: 10px 18px;
  font-weight: 500;
}

.dropdown-item:hover{
  background: #fff3e0;
  color: #ff6b00;
}

/* GALLERY SWITCH */
.gallery-switch{
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.gallery-tab{
  border: none;
  background: #f3f3f3;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.gallery-tab.active{
  background: #ff6b00;
  color: white;
}

.gallery-tab:hover{
  background: #ff6b00;
  color: white;
}

/* OPEN DROPDOWN ON HOVER */

@media (min-width: 992px){

  .navbar .dropdown:hover .dropdown-menu{
    display: block;
    margin-top: 0;
  }

}


/* REMOVE SMALL DOT / DEFAULT DROPDOWN ARROW */

.navbar .dropdown-toggle::before{
  display: none !important;
}

.navbar .dropdown-toggle::after{
  border: none !important;
  content: "";
}











