:root {
  --primary: #002366;
  --text-light: #ffffff;
  --text-dark: #333333;
  --hover-bg: #003399;
  --accent: #ffcc00;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #002366, #ffffff);
  color: var(--text-light);
}

/* Header Styles */
header {
  background-color: var(--primary);
  padding: 0px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: transparent;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.menu-toggle:hover {
  transform: scale(0.9);
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: var(--text-light);
  margin: 4px 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.menu-toggle:hover span {
  background-color: var(--white);
}

/* Desktop nav */
nav {
  display: flex;
  justify-content: space-around;
  flex: 1;
  background-color: var(--primary);
  padding: 6px 24px;
}

nav a {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

nav a:hover {
  background-color: transparent;
  color: var(--white);
}

/* Nav link underline effect */
.nav-link {
  position: relative;
  padding: 6px 10px;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-link.active::after {
  width: 5%;
}

.nav-link:hover::after {
  width: 40%;
}

/* Mobile styles */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 35px; /* smaller padding on mobile */
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    align-items: center;
  }

  nav {
    overflow: hidden;                 
    max-height: 0;                     
    opacity: 0;                         
    flex-direction: column;
    background: var(--primary);
    position: absolute;
    top: 35px;              
    right: 20px;            /* align with hamburger */
    width: 150px;           /* fixed width for small box */
    border-radius: 6px;    
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 0;                        
    transition: max-height 0.6s ease, opacity 0.6s ease, padding 0.6s ease;
  }

  nav.active {
    max-height: 500px;                 
    opacity: 1;
    padding: 10px;          
  }

  .nav-link::after {
    display: none; 
  }
}

/* Separate media query for layout responsiveness */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
  }

  .faq,
  .enquiry {
    width: 100%;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .hero-video {
    height: 60vh; /* Reduce height for mobile */
  }
}

@media (max-width: 768px) {
  .hero-video {
    height: auto;
  }

  .video-wrapper video {
    object-fit: contain;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
}

/* Hero Section Styles */
.hero {
  background-color: var(--white); /* 👈 This makes the hero section white */
  color: var(--primary);          /* 👈 Ensures text stays deep blue */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  max-width: 600px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: var(--accent);
  color: #888888;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }
}

.about {
  background-color: var(--white);
  color: var(--primary);
  padding: 80px 40px;         /* Adds breathing room on both sides */
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.about p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #333333;
  line-height: 1.8;
  text-align: center;
  max-width: none;            /* Ensures no width restriction */
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  margin-bottom: 30px;
  max-width: none;            /* Same as above for consistency */
}

.about li {
  margin-bottom: 10px;
}

/* Projects Section Styles */
.projects {
  background-color: var(--white);
  color: var(--primary);
  padding: 40px 20px;
  text-align: center;
}

.projects h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 40px;
}

.project-card {
  background-color: #f1f1f1;
  color: #333333;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,1);
  z-index: 1;
}

.project-card h3 {
  margin-top: 0;
  color: var(--primary);
  text-align: center;
}

.project-card p {
  font-size: 16px;
  margin-bottom: 10px;
}

.project-card a {
  display: inline-block;
  color: var(--primary);
  font-weight: bold;
}

.project-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 10px;
  border-radius: 6px;
}


/* Footer Styles */
.footer {
  background-color: var(--white);
  color: var(--primary);
  padding: 40px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-info {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-size: 40px;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer-logo img {
  max-width: 90%;       /* ✅ Prevent overflow */
  height: auto;          /* ✅ Maintain aspect ratio */
  display: block;
}

.footer-info p {
  margin: 8px 0;
  font-size: 16px;
}

.footer-info a {
  color: var(--primary);
  text-decoration: none;
}

.footer-info i {
  font-size: 25px !important;
  color: var(--primary, #007bff);
  margin-right: 10px;
  vertical-align: middle;
  min-width: 20px;
  display: inline-block;
}

.footer-map {
  flex: 1;
  min-width: 250px;
}

/* Wrapper for FAQ + Enquiry */
.info-section {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  padding: 80px 20px;
  justify-content: space-between;
  align-items: flex-start;
}

/* FAQ Section Styles */
.faq {
  flex: 1 1 50%;
  color: var(--primary);
  padding: 40px 20px;
  box-sizing: border-box;
}

.faq h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  padding: 12px 20px;
  width: 100%;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  background-color: #f0f8ff;
  color: #333333;
  border-radius: 4px;
  margin-top: 5px;
}

.faq-answer.active {
  opacity: 1;
  padding: 10px 20px;
}

/* Enquiry Form Styles */
.enquiry {
  flex: 1 1 50%;
  color: var(--primary);
  padding: 40px 20px;
  box-sizing: border-box;
}

.enquiry h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.enquiry-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.enquiry-form input,
.enquiry-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.enquiry-form button {
  background-color: var(--accent);
  color: var(--primary);
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.enquiry-form button:hover {
  background-color: #e6b800;
}

.clients-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.clients-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #003366;
}

.clients-slider {
  background-color: #f9f9f9;
  padding: 20px 0;
}

.client-logo {
  padding: 10px;
  text-align: center;
}

.client-logo img {
  max-height: 100px;
  max-width: 120%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-logo img:hover {
  transform: scale(1.05);
}

.slick-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.slick-slide img {
  max-width: 100%;
  height: auto;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent !important;  /* ✅ No background */
  border: none !important;
  width: auto;
  height: auto;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

/* Positioning */
.slick-prev { left: 10px; }
.slick-next { right: 10px; }

/* Arrow icon styling */
.slick-prev:before,
.slick-next:before {
  font-size: 24px;
  color: var(--primary) !important;     /* Force blue */
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  transform: scale(1.2);
  transition: transform 0.2s ease;
}
:root {
  --primary: #002366;
  --text-light: #ffffff;
  --text-dark: #333333;
  --hover-bg: #003399;
  --accent: #ffcc00;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #002366, #ffffff);
  color: var(--text-light);
}

/* ===== HEADER ===== */
header {
  background-color: var(--primary);
  padding: 0px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: transparent;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.menu-toggle:hover { transform: scale(0.9); }

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: var(--text-light);
  margin: 4px 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.menu-toggle:hover span { background-color: var(--white); }

/* Desktop nav */
nav {
  display: flex;
  justify-content: space-around;
  flex: 1;
  background-color: var(--primary);
  padding: 6px 24px;
}

nav a {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

nav a:hover { background-color: transparent; color: var(--white); }

/* Nav link underline effect */
.nav-link {
  position: relative;
  padding: 6px 10px;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-link.active::after { width: 5%; }
.nav-link:hover::after { width: 40%; }

/* ===== MOBILE HEADER ===== */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 35px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    align-items: center;
  }

  nav {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    flex-direction: column;
    background: var(--primary);
    position: absolute;
    top: 35px;
    right: 20px;
    width: 150px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 0;
    transition: max-height 0.6s ease, opacity 0.6s ease, padding 0.6s ease;
  }

  nav.active {
    max-height: 500px;
    opacity: 1;
    padding: 10px;
  }

  .nav-link::after { display: none; }
}

/* ===== TOP BAR ===== */
.header-uper {
  background-color: #ffffff;
  color: var(--primary);
  padding: 5px 10px;
  border-bottom: 1px solid #ccc;
}

.logo-img { max-height: 135px; }
@media (max-width: 768px) { .logo-img { max-height: 140px; } }

.top-contact {
display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* ===== MOBILE TOP BAR LAYOUT ===== */
@media (max-width: 768px) {
  .header-uper .container-fluid .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .top-logo {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-bottom: 5px;
  }

  .top-contact {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-bottom: 5px;
  }
  .top-contact .contact-item {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin-bottom: 4px;
  }

  .top-contact .phone,
  .top-contact .whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .top-contact .contact-item .svg-mail-icon { 
    height: 20px; 
    width: 20px; 
    flex-shrink: 0;
  }

  .top-contact .contact-item .fa-whatsapp {
    font-size: 20px;
    flex-shrink: 0;
  }

  .top-contact .flex-shrink-0 {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5px;
  }

  .top-contact .contact-item .text-box {
    display: contents;    
    font-size: 14px;
    line-height: 1.4;
  }
  
  .top-contact .contact-item .text-box a,
  .top-contact .contact-item .text-box span {
    display: inline;
    vertical-align: middle;  
}

  .top-contact .contact-item .label {
    display: none;
  }

}

/* ===== ICONS & CONTACT ITEMS ===== */
.svg-mail-icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  vertical-align: middle;
}

.fa-whatsapp {
  font-size: 40px;
  line-height: 1;
  color: #25D366;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 16px;
}

.icon-box {
  font-size: 28px;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.text-box {
  display: flex;
  flex-direction: column;
  color: #333333;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.text-box .label {
  font-weight: bold;
  color: #333333;
  margin-bottom: 2px;
}

.text-box a {
  color: #333333;
  text-decoration: none;
}

/* ===== BUTTON ===== */
.btn-style-one {
  background-color: var(--accent) !important;
  color: #333333 !important;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  text-decoration: none !important;
  display: inline-block;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-style-one:hover {
  transform: scale(1.1);
  color: #333333 !important;
  text-decoration: none !important;
}

/* ===== HERO ===== */
.hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--white);
  color: var(--primary);
}

.hero-text h1 { font-size: 3rem; margin-bottom: 20px; }
.hero-text p { font-size: 1.2rem; margin-bottom: 30px; }

/* ===== ABOUT ===== */
.about {
  background-color: var(--white);
  color: var(--primary);
  padding: 80px 40px;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.about p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #333333;
  line-height: 1.8;
  text-align: center;
}

/* ===== PROJECTS ===== */
.projects {
  background-color: var(--white);
  color: var(--primary);
  padding: 40px 20px;
  text-align: center;
}

.projects h2 { font-size: 36px; margin-bottom: 40px; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 40px;
}

.project-card {
  background-color: #f1f1f1;
  color: #333333;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,1);
  z-index: 1;
}

.project-card h3 {
  margin-top: 0;
  color: var(--primary);
  text-align: center;
}

.project-card p {
  font-size: 16px;
  margin-bottom: 10px;
}

.project-card a {
  display: inline-block;
  color: var(--primary);
  font-weight: bold;
}

.project-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 10px;
  border-radius: 6px;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--white);
  color: var(--primary);
  padding: 40px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-info {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-size: 40px;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer-logo img {
  max-width: 90%;
  height: auto;
  display: block;
}

.footer-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-info a {
  color: var(--primary);
  text-decoration: none;
}

.footer-info i {
  font-size: 25px !important;
  color: var(--primary, #007bff);
  margin-right: 10px;
  vertical-align: middle;
  min-width: 20px;
  display: inline-block;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

/* ===== FAQ & ENQUIRY ===== */
.info-section {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  padding: 80px 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.faq {
  flex: 1 1 50%;
  color: var(--primary);
  padding: 40px 20px;
  box-sizing: border-box;
}

.faq h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
}

.faq-item { margin-bottom: 20px; }

.faq-question {
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  padding: 12px 20px;
  width: 100%;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  background-color: #f0f8ff;
  color: #333333;
  border-radius: 4px;
  margin-top: 5px;
}

.faq-answer.active {
  opacity: 1;
  padding: 10px 20px;
}

.enquiry {
  flex: 1 1 50%;
  color: var(--primary);
  padding: 40px 20px;
  box-sizing: border-box;
}

.enquiry h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.enquiry-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
  background-color: #fff;
  appearance: none;
}

.enquiry-form button {
  background-color: var(--accent);
  color: var(--primary);
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.enquiry-form button:hover { background-color: #e6b800; }

/* ===== CLIENTS ===== */
.clients-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.clients-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #003366;
}

.clients-slider {
  background-color: #f9f9f9;
  padding: 20px 0;
}

.client-logo {
  padding: 10px;
  text-align: center;
}

.client-logo img {
  max-height: 100px;
  max-width: 120%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-logo img:hover { transform: scale(1.05); }

.slick-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.slick-slide img {
  max-width: 100%;
  height: auto;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent !important;
  border: none !important;
  width: auto;
  height: auto;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.slick-prev { left: 10px; }
.slick-next { right: 10px; }

.slick-prev:before,
.slick-next:before {
  font-size: 24px;
  color: var(--primary) !important;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  transform: scale(1.2);
  transition: transform 0.2s ease;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.slide-in-up {
  animation: slideInUp 0.8s ease-out forwards;
}

/* ===== MISC ===== */
.opening-hours {
  background-color: #ffffff;
  color: #888888;
  text-align: center;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}

html { scroll-behavior: smooth; }

.site-copyright {
  text-align: center;
  padding: 12px 0;
  background-color: var(--white);
  color: var(--text-dark);
  font-size: 14px;
  margin: 0;
}

.site-copyright p {
  margin: 4px 0;
}

@media (max-width: 768px) {
  .opening-hours {
    font-size: 12px;   
    line-height: 1.3; 
  }
}

/* FAQ Arrow Styling */
.faq-question .faq-arrow::after {
  content: "\f107"; 
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900;
  font-size: 16px;
  margin-left: 8px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-question.expanded .faq-arrow::after {
  transform: rotate(180deg);
}

/* Contact Hero Banner */
.contact-hero {
  position: relative;
  width: 100%;
  height: 35vh;
  background: url('images/test.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-overlay h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-hero {
    height: 30vh;
  }
  .contact-hero-overlay h1 {
    font-size: 2rem;
  }
}

/* Select Styling */
select option[disabled][hidden] {
  color: #666666;
}

select:invalid {
  color: #666666;
}

select option {
  color: #000;
}

/* Phone Group */
.phone-group {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.phone-group input:first-child {
  width: 80px;
}

.phone-group input:last-child {
  flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-details,
  .contact-form-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

body {
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-card h4 {
  margin-bottom: 15px;
  color: #007bff;
}

.contact-card a {
  color: #007bff;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-form h4 {
  margin-bottom: 20px;
  color: #007bff;
}

.contact-form button {
  background: #007bff;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 10px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #0056b3;
}

.contact-section {
  padding: 60px 0;
  color: var(--primary);
  background: #f8f9fa;
}

.contact-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #555;
}

.card-style {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-details h3,
.contact-form-wrapper h3 {
  text-align: center;
  margin-bottom: 20px;
 color: var(--primary);
}

.contact-details p i {
  margin-right: 8px;
  color: #007bff;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-details {
  color: var(--text-dark); /* force dark text */
}

.contact-details a {
  color: var(--primary);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-details i {
  color: var(--primary);
  margin-right: 8px;
}

.contact-details p {
  display: flex;
  align-items: flex-start; 
  gap: 8px;               
}

.contact-details p i {
  flex-shrink: 0;          
  margin-top: 3px; 
  font-size: 28px;  
  min-width: 28px; 
  color: var(--primary);        
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  flex: 0 0 36px;       /* fixed width column for icon */
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.contact-icon i {
  font-size: 28px;      /* make icons larger */
  color: var(--primary);
  line-height: 1;
}

.contact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-content h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.contact-content p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-content a {
  color: var(--primary);
  text-decoration: none;
}

.contact-content a:hover {
  text-decoration: underline;
}

.contact-item .fa-whatsapp {
  color: #25D366; /* brand green */
}

.contact-details h3,
.contact-card h4,
.contact-form h4 {
  text-align: center;
  width: 100%;
}

.contact-details i,
.contact-item .contact-icon i {
  font-size: 32px;   
  min-width: 32px;   
  line-height: 1;
}

.contact-heading {
  text-align: center;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.sendmessage {
  font-size: 16px;
  border-radius: 6px;
  background-color: var(--accent) !important;
  color: #333333 !important;
  border: none;
  font-weight: bold;
  text-decoration: none !important;
  display: inline-block;
  transition: transform 0.3s ease, background 0.3s ease;
  display: block;
  margin: 0 auto;
  width: 60%;
}

.sendmessage:hover {
  transform: scale(1.1);
  color: #333333 !important;
  text-decoration: none !important;
}

.about-company {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-company .container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-company .about-heading {
  text-align: center;
  color: var(--primary); /* your dark blue */
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-company h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

.about-company p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1rem;
}

.about-company ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.about-company ul li {
  margin-bottom: 8px;
  color: #333;
  line-height: 1.6;
}

.about-slider img {
  border-radius: 6px;
  width: 100%;
  height: auto;
}

/* ===== STORY / COMPANY PROFILE SECTION ===== */
.story {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: var(--text-dark);
}

.story h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin: 30px 0 15px;
  text-align: left;
}

.story p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.story table {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.story table td {
  padding: 12px 16px;
  vertical-align: top;
  font-size: 15px;
  color: var(--text-dark);
}

.story table tr td:first-child {
  font-weight: 600;
  color: var(--primary);
  width: 40%;
}

/* ===== CONTENT LIST (with icons) ===== */
.content-list {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.content-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.content-list i {
  color: var(--primary);
  margin-right: 8px;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .story {
    padding: 40px 15px;
  }

  .story h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .story table td {
    font-size: 14px;
    padding: 10px;
  }

  .story p {
    text-align: justify;
  }
}
