* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', 'Signika', sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: #000000;
}

.site-header {
  background: #fff;
  position: relative;
  z-index: 10;
  padding: 0px 0px;
}

/* getintouchpage.css */
.hero {
  position: relative;
  background: url("../images/plain-white1.jpg") no-repeat center center/cover;
  min-height: 100vh;
  border-radius: 20px;
  overflow: hidden;
  margin: 7px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  color: #fff;

  display: flex;
  align-items: flex-start;     /* push content from top */
  justify-content: center;     /* center horizontally */
  padding: 120px 60px 60px;    /* top padding pushes content down */
  box-sizing: border-box;
}


.navbar {
  background: transparent;
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 35px;
  flex-wrap: nowrap;
}

.logo img {
  max-height: 100px;
  height: auto;
  width: auto;
  margin-right: 15px;
  margin-left: -25px;
}

/* Navigation links */
.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  margin-bottom: 50px;
  margin-left: 25px;
}

.main-nav ul li {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
  color: #000000;
}

.main-nav ul li::before {
  content: "•";
  color: #0096ff;
  margin-right: 12px;
  font-size: 12px;
}

.main-nav ul li:first-child::before {
  content: "•";
  margin-right: 12px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar ul li a.active {
  font-weight: bold;
  color: #0096ff;
}

.navbar ul li a:hover {
  color: #0096ff;
}

/* Right section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -30px 20px 10px 150px;
}

/* Call us */
.call-us {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #000000;
  gap: 10px;
}

.call-us img {
  width: 30px;
  height: 30px;
  
}

/* Search container */
.search-container {
  position: relative;
  display: inline-block;
  margin: 0 10px -5px 10px;
}

.search-icon {
  width: 40px;
  height: 40px;
  background: #0096ff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* Search box hidden initially */
.search-box {
  position: absolute;
  top: 60px;                     /* vertical gap below icon */
  left: 50%;                     /* center align with icon */
  transform: translateX(-50%);
  background: #fff;
  padding: 20px;
  border: 1px solid #0096ff;     /* blue border */
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 150, 255, 0.25); /* bluish shadow */
  z-index: 1000;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* Arrow pointing to icon */
.search-box::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #fff;
}

.search-box::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 12px solid #0096ff; /* blue border for arrow */
  z-index: -1;
}

/* Active search box (expand with animation) */
.search-box.active {
  max-height: 200px;
  opacity: 1;
  overflow: visible; /* allow arrow to show */
}

/* Form inside search box */
.search-box form {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Input field */
.search-box input {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid #0096ff;   /* blue input border */
  border-radius: 4px;
  font-size: 14px;
}

/* Search button */
.search-box button {
  padding: 6px 14px;
  background: #0096ff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.search-box button:hover {
  background: #007bff;
}

/* White pill-shaped background container */
.get-in-touch-wrapper {
  position: absolute;
  top: 10px;   /* inside the cut */
  right: 25px;
  z-index: 3;  /* above the white cut */
}

.get-in-touch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0382fa;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.get-in-touch img {
  margin-left: 8px;
  font-size: 14px;
  filter: brightness(0) invert(1);
}

.get-in-touch:hover {
  background: #272727;
}

.privacy-wrapper {
    max-width: 900px;
    margin: 10px auto;
    padding: 100px;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #000000;
}

.privacy-wrapper h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #222;
    text-align: center;
}

.privacy-wrapper .updated-date {
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

.privacy-wrapper h2 {
    font-size: 20px;
    margin-top: 25px;
    color: #444;
}

.privacy-wrapper p,
.privacy-wrapper ul {
    margin-bottom: 15px;
}

.privacy-wrapper ul {
    padding-left: 20px;
}

.privacy-wrapper a {
    color: #0066cc;
    text-decoration: none;
}

.privacy-wrapper a:hover {
    text-decoration: underline;
}
