/* ===================================================================
   RESET & BASE
   =================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  background: #ECECEC;
  line-height: 1.6;
}

/* UTILITIES */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===================================================================
   HERO BANNER
   =================================================================== */
.banner {
  position: relative;
  height: 320px; /* adjust as desired */
  background: url('images/uae-skyline.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner h1 {
  color: #fff;
  font-size: 3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* ===================================================================
   INTRO + SERVICES SECTION
   =================================================================== */
.content-section {
  background: #ECECEC;
}
.intro {
  padding: 60px 0 20px;
  text-align: center;
}
.intro h2 {
  font-size: 2.25rem;
  color: #2D3A4F;
  margin-bottom: 16px;
}
.intro p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* SERVICES CARDS */
.services-cards {
  padding: 20px 0 60px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.card {
  background: #fff;
  border: 1px solid #DDD;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.card img {
  width: 100%;
  height: auto;       /* adjust container to image */
  border-radius: 12px;
  margin-bottom: 12px;
}
.pill {
  display: inline-block;
  border: 1px solid #AAA;
  border-radius: 999px;
  padding: 4px 16px;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 12px;
}
.card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #2D3A4F;
}
.card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.4;
}
.card p:last-child {
  margin-bottom: 0;
}
.cimg {
    width: 100%;
  height: 50px;   /* adjust container to image */
  border-radius: 12px;
  margin-bottom: 12px;
}

.custom-footer {
  background: linear-gradient(to bottom, #4b667a, #1e2d3b);
  color: #fff;
  padding: 50px 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 40%;
}

.footer-logo {
  width: 60px;
}

.footer-name {
  font-size: 18px;
  margin: 8px 0 0;
  font-weight: bold;
}

.footer-name span {
  font-weight: normal;
  font-size: 14px;
  display: block;
}

.footer-tagline {
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
}

.footer-right {
  display: flex;
  gap: 80px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-column a {
  display: block;
  text-decoration: none;
  color: #e6e6e6;
  margin: 6px 0;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #00d084;
}

.footer-line {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 30px 0 20px;
}

.footer-bottom {
  text-align: center;
}

.footer-icons a {
  margin: 0 8px;
  display: inline-block;
}

.footer-icons img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.footer-icons img:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  .footer-right {
    flex-direction: column;
    gap: 20px;
  }
  .footer-left {
    max-width: 100%;
  }
}



/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 768px) {
  .banner {
    height: 220px;
  }
  .banner h1 {
    font-size: 2rem;
  }
  .intro h2 {
    font-size: 1.75rem;
  }
  .cards {
    gap: 24px;
  }
}
/* TOP SUPPORT BAR */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.logo-title {
  display: flex;
  align-items: center;
}
.logo {
  height: 48px;
}
.site-title {
  margin-left: 12px;
}
.site-title h1 {
  margin: 0;
  font-size: 20px;
  color: #2a2a2a;
}
.site-title p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #009345;
}
.support {
  display: flex;
  gap: 40px;
}
.support-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.support-item i {
  font-size: 20px;
  color: #009345;
}
.support-item .label {
  font-weight: bold;
  font-size: 14px;
}
.support-item .info {
  font-size: 14px;
  color: #555;
}

/* MAIN NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #0c0f12;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.logo {
  height: 40px;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar nav a:not(:last-child) {
  border-right: 1px solid #ccc;
  padding-right: 30px;
}

.contact-btn {
  background-color: #00d084;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Active nav link underline */
.navbar nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #00d084;
}

/* Hover effect */
.navbar nav a:hover {
  color: #00d084;
  transform: scale(1.1);
}

.navbar nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #00d084;
  transition: all 0.3s ease;
}
/* Contact Us button on right */
.contact-btn {
  margin-left: auto;   /* push to right edge */
  background: #009345;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}
.contact-btn:hover {
  background: #007a2e;
}
  /* Smooth scroll */
html {
  scroll-behavior: smooth;
}
