html {
  scroll-behavior: smooth;
}

/* 
===================================
  COLOR & TYPOGRAPHY VARIABLES (MATCH main.css)
===================================
*/
:root {
  /* Typography */
  --font-primary: 'Roboto';

  /* Core Backgrounds */
  --color-bg: #141921;
  /* Deep slate base */
  --color-surface: #1d2733;
  /* Elevated section contrast */
  --color-card: #232f3f;
  /* Card or overlay background */

  /* Accents */
  --accent-primary: #2fc0fa;
  /* Electric blue highlight */
  --accent-secondary: #87d3ff;
  /* Soft aqua accent */
  --accent-muted: #4ca9dd;
  /* Gentle blue tone */

  /* Text */
  --text-main: #f0f6fa;
  /* Light main text */
  --text-muted: #c2d1e0;
  /* Subtle labels */
  --text-dark: #9bb3c9;
  /* Mid-toned body copy */

  /* Shadows */
  --shadow-light: 0 6px 18px rgba(255, 255, 255, 1);
  --shadow-soft: 0 4px 10px rgba(0, 0, 0, 0.2);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-deep: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* =========================
   GLOBAL RESET & BASE BODY
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: var(--text-main);
}

/* ===============================
   NAVIGATION
================================== */
nav {
  width: 95%;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  /* padding: 8px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: var(--color-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transition: background-color 0.3s ease;
  /* background: linear-gradient(to right, rgba(0, 169, 225, 0.24), hsla(0, 0%, 100%, 0.0)); */
  /* Animation: fade in from bottom */
  /* animation: fadeInUp 0.7s cubic-bezier(.23,.99,.75,.91) 0.1s both; */
}

.nav-left img {
  height: 70px;
   /* margin-top: 2px; */
  /* border-top-left-radius: 35px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 35px; */
  /* padding: 3px; */ 
  background: linear-gradient(to right, rgb(255, 255, 255), hsla(0, 0%, 100%, 0.0));
  /* backdrop-filter: blur(20px); */
  background-color: rgba(0, 255, 255, 0);
  transition: background-color 0.9s ease, box-shadow 0.3s;
}

/* .nav-left img:hover {
  animation: logoGlow 1s;
} */

.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--accent-secondary);
  transition: transform 0.3s ease;
}

.menu-icon:hover {
  transform: rotate(90deg);
}

#menu-toggle {
  display: none;
}

/* Nav links layout */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-main);
  font-size: 18px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-links a i {
  margin-right: 8px;
  color: var(--accent-secondary);
  transition: filter 0.2s;
}

.nav-links a:hover {
  background-color: var(--color-surface);
  color: var(--color-white);
  transform: scale(1.04);
}

.nav-links a::after {
  /* Animated underline on hover */
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
  animation: underlineGrow 0.3s forwards;
}

.nav-dropdown {
  position: relative;
}

#services-toggle {
  display: none;
}

.dropdown-label {
  position: relative;
  text-decoration: none;
  color: var(--text-main);
  font-size: 18px;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.dropdown-label i {
  margin-right: 8px;
  color: var(--accent-secondary);
  transition: filter 0.2s;
}

.dropdown-label:hover {
  background-color: var(--color-surface);
  color: var(--color-white);
  transform: scale(1.04);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-60%);
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  z-index: 999;
  min-width: 800px;
}

/* Show dropdown on hover (desktop) */
@media screen and (min-width: 431px) {
  .nav-dropdown:hover .dropdown-content {
    display: grid;
  }
}

/* Dropdown links */
.dropdown-column h5 {
  color: var(--accent-secondary);
  font-size: 1rem;
  margin-bottom: 10px;
}

.dropdown-column a {
  display: block;
  color: #ccc;
  font-size: 0.95rem;
  margin: 6px 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dropdown-column a:hover {
  color: var(--accent-secondary);
}

.sticky-icon {
  position: fixed;
  top: 90vh;
  right: -0vh;
  background-color: white;
  color: var(--color-bg);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 22px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  z-index: 1100;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-icon:hover {
  background-color: var(--color-bg);
  color: white;
}

/* ===== STICKY WHATSAPP ICON ===== */
.Whatsapp_sticky-icon {
  position: fixed;
  top: 90vh;
  left: 20px;
  background-color: #25D366;
  color: white;
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 30px;
  box-shadow: 0 0 10px rgba(0, 169, 225, 0.2);
  cursor: pointer;
  z-index: 1100;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: glowPulse 2.5s ease-in-out infinite;
}

.Whatsapp_sticky-icon {
  border: 2px solid rgba(0, 169, 225, 0.3);
}


/* Hover effect: slight lift */
.Whatsapp_sticky-icon:hover {
  background-color: var(--color-bg);
  color: white;
  transform: scale(1.05);
}

/* ===== Glow Pulse Animation ===== */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 6px rgba(0, 169, 225, 0.2);
  }

  50% {
    box-shadow: 0 0 12px rgba(0, 169, 225, 0.8);
  }

  100% {
    box-shadow: 0 0 6px rgba(0, 169, 225, 0.2);
  }
}


/* @media screen and (max-width: 600px) {
  .sticky-icon {
    top: 20px;
    right: 20px;
    font-size: 20px;
    padding: 6px 10px;
  }
} */

/* ===============================
   RESPONSIVE NAVIGATION
================================== */
@media screen and (max-width: 800px) {
  
  .nav-left{
  height: 35px;
}

  .nav-left img {
    height: 35px;
    /* border-radius: 10px; */
    /* padding: 3px; */
    background: rgba(255, 255, 255, 0.8);
    /* backdrop-filter: blur(20px); */
    transition: background-color 0.9s ease;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }

  .nav-links a,
  .dropdown-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: clamp(14px, 2vw, 16px);
    padding: 8px 12px;
    white-space: nowrap;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  .nav-links a i,
  .dropdown-label i {
    display: none;
  }

  .dropdown-content {
    transform: translateX(-65%);
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    min-width: 650px;
  }
}

@media screen and (max-width: 430px) {
  nav {
    width: 95%;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-nav);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: background-color 0.3s ease;
  }

  .menu-icon {
    display: block;
    font-size: 28px;
    color: var(--accent-secondary);
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .menu-icon:hover {
    transform: rotate(90deg);
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(99vh - 80px);
    display: flex;
    justify-content: start;
    flex-direction: unset;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 24px;
    background: var(--color-surface);
    border-radius: 0 0 20px 20px;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
    transition: right 0.4s ease-in-out;
    z-index: 999;
    overflow-y: auto;
    
  }

  .dropdown-content {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 18px 0;
    color: white;
    transform: translateX(-0%);
    position: unset;
    min-width: 60px;
  }

  #menu-toggle:checked~.nav-links {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
    color: var(--text-main);
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    background-color: transparent;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
  }

  .nav-links a i {
    margin-right: 10px;
    color: var(--accent-secondary);
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-label {
    display: block;
    font-size: 18px;
    color: var(--text-main);
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .dropdown-label:hover {
    background-color: rgba(255, 255, 255, 0.08);
  }

  .dropdown-content {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 25px 0;
    color: white;
    /* transform: translateX(-6%); */
    margin-top: 10px;
  }

  #services-toggle:checked~.dropdown-label+.dropdown-content {
    display: flex;
  }

  .dropdown-column {
    width: 100%;
  }

  .dropdown-column h5 {
    font-size: 1rem;
    color: var(--accent-primary);
    margin: 12px 0 6px;
  }

  .dropdown-column a {
    font-size: 16px;
    color: var(--text-subtle);
    padding: 6px 0;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
  }

  .dropdown-column a:hover {
    color: var(--accent-secondary);
  }
}

/* =========================
   HERO SECTION (GLASSY/OVERLAY)
========================= */
.contact-hero {
  height: 50vh;
  background: url('./contact\ img.jpg') center/cover no-repeat, var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: var(--text-main);
}

.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(20, 25, 33, 0.7), rgba(7, 34, 44, 0.5));
  /* background: rgba(3, 46, 63, 0.8); ← adjust this value to control opacity; */
  z-index: 1;
}

.contact-hero h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(2rem, 5vw, 3rem);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  color: var(--text-main);
  letter-spacing: 2px;
  font-weight: 600;
}

/* =========================
   CONTACT SECTION & FORM
========================= */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 5%;
  margin: auto;
}

.contact-form {
  flex: 1 1 500px;
  background: rgba(0, 169, 225, 0.1); 
  /* semi-translucent card */
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-main);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border: none;
  border-radius: 10px;
  background: rgba(0, 169, 225, 0.1);
  color: var(--text-main);
  font-size: 16px;
  box-shadow: var(--shadow-soft);
  transition: background 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-dark);
  opacity: 0.8;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background: var(--accent-primary);
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
}

/* =========================
   MAP CONTAINER (MATCH CARD)
========================= */
.map-container {
  flex: 1 1 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: rgba(35, 47, 63, 0.97);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  filter: grayscale(30%) contrast(1.1) brightness(0.97);
}

/* =========================
   RESPONSIVE LAYOUT
========================= */
@media screen and (max-width: 950px) {
  .contact-section {
    flex-direction: column;
    gap: 28px;
    padding: 40px 10px;
  }

  .contact-form,
  .map-container {
    flex: 1 1 100%;
  }

  .contact-form h2 {
    font-size: 22px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 15px;
  }

  .contact-form button {
    font-size: 15px;
  }
}

@media screen and (max-width: 600px) {
  .contact-hero {
    height: 28vh;
    padding: 16px 0;
  }

  .contact-hero h1 {
    font-size: 1.5rem;
  }

  .contact-section {
    padding: 18px 2vw;
    gap: 16px;
  }

  .contact-form,
  .map-container {
    border-radius: 8px;
    padding: 12px;
  }
}

/* =========================
   FOOTER SECTION (MATCH main.css)
========================= */
.teqtis-global-footer {
  background: #111;
  color: #aaa;
  padding: 40px 20px;
  font-family: var(--font-primary);
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin: 0 auto;
}

.footer-columns>div {
  flex: 1 1 260px;
  min-width: 220px;
}

.footer-columns h3,
.footer-columns h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer-columns p,
.footer-columns a {
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 6px 0;
  text-decoration: none;
  color: #aaa;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 0px 24px;
}

.footer-links ul li a {
  display: block;
  padding: 2px 0;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--accent-primary);
}

.footer-office i {
  margin-right: 8px;
}

.footer-office a:hover {
  color: var(--accent-primary);
}

.footer-copyright {
  text-align: center;
  padding: 20px 0;
  font-size: .7rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 40px;
}

/* =========================
   ANIMATION KEYFRAMES
========================= */
@keyframes logoGlow {

  0%,
  100% {
    box-shadow: 0 0 0px #2fc0fa22;
  }

  50% {
    box-shadow: 0 0 16px #2fc0fa99;
  }
}

@keyframes underlineGrow {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}









.contact-form select {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border: none;
  border-radius: 10px;
  background: rgba(0, 169, 225, 0.1);
  color: var(--text-main);
  font-size: 16px;
  box-shadow: var(--shadow-soft);
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: background 0.3s;
  outline: none;
  cursor: pointer;
  position: relative;
}

.contact-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4.5 7.5L9 12L13.5 7.5' stroke='%2300A9E1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 22px 22px;
}

.contact-form select:focus,
.contact-form select:hover {
  background: rgba(0, 169, 225, 0.15);
}

.contact-form select:invalid,
.contact-form select option[disabled] {
  color: var(--text-dark);
  opacity: 0.8;
}

/* Style for options */
.contact-form select option {
  color: var(--text-main);
  background: var(--accent-muted);
  font-size: 16px;
}

/* Option hover/focus (limited browser support) */
.contact-form select option:checked,
.contact-form select option:focus {
  background: rgba(0, 169, 225, 0.16);
  color: var(--accent-primary, var(--text-main));
}

/* Responsive adjustments */
@media screen and (max-width: 950px) {
  .contact-form select {
    font-size: 15px;
    padding: 12px;
    background-position: right 10px center;
    background-size: 18px 18px;
  }
  .contact-form select option {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .contact-form select {
    font-size: 14px;
    padding: 10px;
    border-radius: 8px;
    background-position: right 8px center;
    background-size: 15px 15px;
  }
  .contact-form select option {
    font-size: 14px;
  }
}