﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-blue: #024b86;
  --secondary-blue: #0fa2dc;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --footer-bg: #034b86;
  --transition: all 0.3s ease;
  --whatsapp-green: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- HEADER --- */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 30px 0;
  color: #fff;
  /* For text over images */
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  /* Placeholder dimensions/styles for logo */
  width: auto;
}

/* For pages where header is white or on light bg */
.header-light-mode {
  position: relative;
  background-color: #fff;
  color: var(--primary-blue);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 25px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links>li {
  position: relative;
  padding: 10px 0;
}

.nav-links a:hover {
  color: var(--secondary-blue);
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  background-color: #fff;
  min-width: 280px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  z-index: 1000;
  border-top: 3px solid var(--secondary-blue);
}

.nav-links li:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark) !important;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: #f5f9ff;
  color: var(--secondary-blue) !important;
  padding-left: 25px;
}

.has-dropdown>a::after {
  content: '\f107';
  /* FontAwesome down arrow */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 7px;
  font-size: 12px;
}

/* Fix dropdown anchor color on dark header like home page */
header:not(.header-light-mode) .nav-links>li>a {
  color: #fff;
}

header:not(.header-light-mode) .dropdown-menu a {
  color: var(--text-dark) !important;
}

header:not(.header-light-mode) .dropdown-menu a:hover {
  color: var(--secondary-blue) !important;
}

.lang-selector {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  margin-right: 20px;
}

.search-icon {
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}

.search-icon:hover {
  color: var(--secondary-blue);
}

/* Hero Section Base */
.hero {
  height: 600px;
  /* Adjust based on page */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- FOOTER --- */
footer {
  background-color: var(--primary-blue);
  color: #fff;
  padding-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-column ul a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-address {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-email {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-top: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-links a {
  font-size: 24px;
  color: #fff;
}

.whatsapp-btn {
  width: 50px;
  height: 50px;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Floating Whatsapp (Global) */
.floating-wa {
  position: fixed;
  bottom: 30px;
  left: 30px;
  /* As per design it is on the left in the footer area, or maybe floating across all pages */
  z-index: 1000;
}

/* Base Utility Classes */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 32px;
  color: var(--primary-blue);
  font-weight: 500;
  margin-bottom: 40px;
}
/* Responsive Styles */
@media (max-width: 1024px) {
  .nav-links { gap: 15px; font-size: 13px; }
  .container { padding: 0 20px; }
  .footer-top { flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block !important; margin-left: auto; color: var(--primary-blue); margin-right: 15px; }
  header:not(.header-light-mode) .menu-toggle { color: #fff; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); gap: 15px; }
  nav.active .nav-links { display: flex; }
  .nav-links > li { width: 100%; padding: 5px 0; }
  .nav-links a { color: var(--primary-blue) !important; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 15px; display: none; border-left: 2px solid var(--primary-blue); margin-top: 10px; }
  .has-dropdown:active .dropdown-menu, .has-dropdown:focus-within .dropdown-menu { display: block; }
  .search-icon { display: none; }
  .hero-title { font-size: 40px; }
  .page-banner h1 { font-size: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
  .footer-bottom-info { margin-bottom: 10px; }
}
.ref-logo-box {
    flex: 0 0 calc(25% - 23px); /* 4 items visible with 30px gap approx */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    height: 100px;
}
.ref-logo-box img { width: auto; max-width: 100%; height: 70px; object-fit: contain; }
@media (max-width: 768px) {
    .ref-logo-box { flex: 0 0 calc(50% - 15px); }
}
@media (max-width: 480px) {
    .ref-logo-box { flex: 0 0 100%; }
}




