
    html {
  scroll-behavior: smooth;
}

/* 
===============================
  COLOR & TYPOGRAPHY VARIABLES
===============================
*/
:root {
  /* Typography */
  --font-primary: 'Roboto';
  /* --font-primary: 'Akaya Kanadaka'; */

  /* 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 Styling */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: var(--font-primary);
        background-color: #001925;
        color: #eaf6ff;
        line-height: 1.7;
        font-size: 16px;
    }

/* ===============================
   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);
  }
}

    /* Container */
    .container {
        max-width: 960px;
        margin: 50px auto;
        background: linear-gradient(135deg, rgba(0,169,225,0.15), rgba(0,169,225,0.05));
        padding: 48px;
        border-radius: 16px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.3);
        transition: all 0.3s ease-in-out;
    }

    /* Headings */
    h1 {
        font-size: 2.8em;
        text-align: center;
        color: #ffffff;
        margin-bottom: 32px;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 1.6em;
        color: #00c2ff;
        margin: 48px 0 24px;
        border-left: 6px solid #00c2ff;
        padding-left: 12px;
    }

    /* Table Styling */
    table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 40px;
        border-radius: 12px;
        overflow: hidden;
    }

    th, td {
        padding: 18px 16px;
        text-align: left;
        vertical-align: top;
    }

    th {
        background-color: rgba(255, 255, 255, 0.95);
        color: #1b3c5d;
        font-size: 1.1em;
        font-weight: 600;
    }

    tr {
        background-color: rgba(255, 255, 255, 0.9);
        color: #1a2a4a;
        transition: background 0.2s ease;
    }

    tr:nth-child(even) {
        background-color: rgba(240, 248, 255, 0.9);
    }

    /* tr:hover {
        background-color: rgba(0, 169, 225, 0.1);
    } */

    td.question {
        font-weight: 600;
        color: #0f2c4d;
        width: 40%;
    }

    /* Contact Info */
    .contact {
        background-color: rgba(255, 255, 255, 0.95);
        color: #29457d;
        padding: 14px 22px;
        border-radius: 10px;
        display: inline-block;
        font-weight: 500;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: transform 0.2s ease;
    }

    .contact:hover {
        transform: scale(1.02);
    }

    /* Responsive Design */
    @media (max-width: 700px) {
  .container {
    padding: 20px;
  }
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  th, td {
    white-space: normal;
    padding: 8px 4px;
    font-size: 0.95em;
  }
}

 @media (max-width: 320px) {
  .container {
    padding: 20px;
  }
 }

    /* 
========================
  FOOTER SECTION
========================
*/
.teqtis-global-footer {
  background-color: #111;
  color: #aaa;
  padding: 40px 20px;
  /* font-family: 'Akaya Kanadaka'; */
}

.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: 260px;
}

.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 ease;
}

.footer-links ul li a:hover {
  color: #0ff;
}

.footer-office i {
  margin-right: 8px;
}

.footer-office a:hover {
  color: #0ff;
}

.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;
}












