/* =======================
   GLOBAL RESET
======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body.menu-open {
  overflow: hidden; /* prevent background scroll */
  position: fixed;  /* lock body scroll */
  width: 100%;      /* prevent horizontal shift */
}

/* ===========================
   FIXED HEADER WRAPPER
=========================== */

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white; 
}
/* =======================
   TOP BAR
======================= */
.top-bar {
    background: #ffffff;
    padding: 10px 5%;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    font-size: 16px;
    color: #000;
    flex-wrap: wrap;
}




/* =======================
   NAVIGATION BAR
======================= */
.nav {
    position: absolute;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30%);
    bottom: -37px; /* HALF of navbar height */
     pointer-events: auto;
    display: flex;
    align-items: center;
    background: #0b3a5b;
    justify-content: center;
    height: 74px;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* =======================
   NAVBAR DROPDOWN
======================= */

/* Base styles */
.nav-item {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: inline-block;
  padding: 0 22px;
  line-height: 74px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease;
}

/* Down arrow */
.dropdown-toggle::after {
  content: " ▼";
  font-size: 10px;
  margin-left: 6px;
}

/* Hide menu by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 74px; /* just under navbar */
  left: 0;
  background: #0b3a5b;
  flex-direction: column;
  min-width: 180px;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Dropdown links */
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  transition: background 0.25s ease;
}

.dropdown-menu a:hover {
  background: #4d6fbf;
}

/* Show on hover (desktop) */
.nav-item:hover .dropdown-menu {
  display: flex;
}


/* NAV LINKS */
.nav a {
    color: #fff;
    text-decoration: none;
    padding: 0 22px;
    font-size: 16px;
    line-height: 74px;
    transition: transform 0.25s ease;
    position: relative;
}

/* Hover effect (desktop) */
.nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #4d6fbf;
    transform: translateY(100%);
    transition: transform 0.25s ease;
    z-index: -1;
}
.nav a:hover {
    transform: translateY(-4px);
}
.nav a:hover::before {
    transform: translateY(0);
}

/* ACTIVE LINK */
.nav a.active {
    transform: translateY(-4px);
}
.nav a.active::before {
    transform: translateY(0);
}

/* SIGN UP BUTTON */
.nav a.btn {
    background: #0d6efd;
    padding: 10px 20px;
    border-radius: 4px;
    line-height: normal;
    margin-left: 20px;
    color: #fff;
    font-weight: 600;
}

/* LOGO */
.logo-area img {
    height: 70px;
    display: block;
    align-items: center;
}
/* =======================
   HEADER
======================= */
.header {
    position: relative;
    z-index: 1000;
    width: 100%;
}

.header-inner {
    max-width: 1400px;
    margin: auto;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* NAV LINKS */
.nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;

    color: #ffffff;
    text-decoration: none;
    padding: 0 22px;
    font-size: 16px;
    line-height: 74px;
    
    overflow: hidden;
    transition: transform 0.25s ease;
}


/* Sliding background */
.nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #4d6fbf;

    transform: translateY(100%);
    transition: transform 0.25s ease;

    z-index: -2;
}


/* HOVER EFFECT */
.nav a:hover {
    transform: translateY(-4px);
}

.nav a:hover::before {
    transform: translateY(0);
}

/* ACTIVE */
.nav a.active {
    transform: translateY(-4px);
}

.nav a.active::before {
    transform: translateY(0);
}


/* =======================
   HAMBURGER (MOBILE)
======================= */
.hamburger {
 display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  pointer-events: auto;
  cursor: pointer;
  margin-left: auto;
  width: 44px;
  height: 44px;

  border: 2px solid #0b3a5b;
  border-radius: 6px;
  padding: 8px;

  transition: border 0.3s ease, background 0.3s ease;
}

.hamburger span {
    width: 26px;
    height: 3px;
  background-color: white; /* dark blue */
  transition: all 0.3s ease;
}

.hamburger.active span {
  border-color: transparent;
  background: transparent;
}
.hamburger:hover span {
  opacity: 0.85;
}
/* =======================
   HERO SECTION
======================= */
.hero {
    position: relative;
    min-height: 85vh;
    padding-top: 140px;
    background-image: url('./assests/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* PARALLAX */
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
     flex-direction: column;
    align-items: center;
    gap: clamp(60px, 8vw, 120px);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 35, 60, 0.7);
  z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 80vh;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
   font-size: clamp(26px, 4vw, 44px);
   margin-bottom: 30px;
}

.hero-content p {
    font-size: clamp(15px, 2vw, 18px);
    margin-bottom: 30px;
}

/* CTA */
.cta-box {
    background: rgba(90, 120, 200, 0.75);
    padding: 25px 45px;
    margin-bottom: 25px;
    font-size: 18px;
}

/* LOGIN BUTTON */
.login-btn_1{
    padding: 12px 50px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: gray;
    color: white;
    text-decoration:none;
}

/* =======================
   SCROLL TOP
======================= */
#scrollTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 14px;
    border: none;
    background: #000;
    color: #fff;
    display: none;
    cursor: pointer;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger span {
    color: gray;
    transition: 0.3s ease;
}

/* SERVICES BELOW HERO */
.services {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;

    width: 100%;
    max-width: 1200px;
}

/* CARD */
.service-card {  
    background: #0b3a5b;
    color: #fff;
    text-align: center;
    padding: 40px 25px;
    border-radius: 6px;
    margin-top: 20%;

    /* NO SHADOW BY DEFAULT */
    box-shadow: none;

    transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);

     /* WHITE GLOW SHADOW */
    box-shadow: 
    0 25px 50px rgba(0,0,0,0.45),
    0 0 15px rgba(255, 255, 255, 0.6),
    0 0 35px rgba(255, 255, 255, 0.35);
}

/* ICON */
.service-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #ffffff;
    color: #0b3a5b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

/* TITLE */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* TEXT BOX STYLE */
.service-card p {
    background: rgba(255,255,255,0.85);
    color: #000;
    padding: 20px;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(20px, 4vw, 50px);

    padding: clamp(30px, 5vw, 80px);
    width: 100%;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
   
    color: #fff;
}

/* Circle */
.circle {
    width: clamp(110px, 12vw, 150px);
    height: clamp(110px, 12vw, 150px);

    border-radius: 50%;
    border: 3px solid #4cd964;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;

    margin-bottom: 14px;
}

.circle.highlight {
    border-color: #ffffff;
}

/* Text */
.stat-card p {
    font-size: clamp(14px, 1.5vw, 18px);
    max-width: 240px;
    line-height: 1.4;
}

.helpdesk-section {
    width: 100%;
    background: linear-gradient(180deg, #0b3a5b, #05273c);
    color: #fff;
}

.helpdesk-intro {
    max-width: 1200px;
    margin: auto;
    padding: clamp(30px, 6vw, 70px);
    text-align: center;
    font-size: clamp(15px, 1.5vw, 18px);
    opacity: 0.85;
}

.helpdesk-steps h3 {
    margin-bottom: 30px;
    font-size: clamp(18px, 2vw, 22px);
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;

    background: rgba(255,255,255,0.15);
    padding: 18px 22px;
    border-radius: 4px;
    margin-bottom: 18px;
}

.step p {
    margin: 0;
    font-size: clamp(14px, 1.5vw, 16px);
    color: black;
}

.check {
    width: 26px;
    height: 26px;
    background: #4cd964;
    color: #000;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* HELP DESK SECTION */

.helpdesk-section {
    width: 100%;
    background: #0b3a5b;
    color: #fff;
    padding-bottom: clamp(40px, 6vw, 80px);
}

/* TOP DESCRIPTION TEXT */
.helpdesk-intro {
    max-width: 1100px;
    margin: auto;
    text-align: center;
    padding: clamp(30px, 5vw, 60px) 20px;
    font-size: clamp(16px, 1.8vw, 20px);
    opacity: 0.85;
}

/* CONTENT GRID */
.helpdesk-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(30px, 5vw, 80px);
    max-width: 1200px;
    margin: auto;
    align-items: center;
    padding: 0 20px;
}

/* STEPS SIDE */
.helpdesk-steps h3 {
    font-size: clamp(20px, 2.2vw, 26px);
    margin-bottom: 25px;
}

.step {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,0.12);
    padding: clamp(14px, 2vw, 20px);
    border-radius: 4px;
    margin-bottom: 18px;
}

.step p {
    margin: 0;
    font-size: clamp(15px, 1.5vw, 18px);
}

.check {
    width: clamp(26px, 3vw, 32px);
    height: clamp(26px, 3vw, 32px);
    background: #4cd964;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 1.8vw, 18px);
    border-radius: 50%;
}

/* IMAGE SIDE */
.helpdesk-image img {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    display: block;
    object-fit: contain;
}

/* =======================
   FEATURES SECTION
======================= */
.features-section {
    background: #0b3a5b;
    padding: clamp(50px, 7vw, 100px) 0;
}

.features-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(40px, 6vw, 100px);
}

/* IMAGE */
.features-image img {
    width: 100%;
    max-width: 520px;
    display: block;
    object-fit: contain;
}

/* FEATURES LIST */
.features-list h2 {
    color: #ffffff;
    font-size: clamp(22px, 2.5vw, 32px);
    margin-bottom: 30px;
}

/* FEATURE ITEM */
.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;

    background: rgba(255,255,255,0.15);
    padding: clamp(16px, 2vw, 22px);
    border-radius: 4px;

    margin-bottom: 20px;
}

/* CHECK ICON */
.feature-item .check {
    width: 28px;
    height: 28px;
    background: #4cd964;
    color: #000;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

/* TEXT */
.feature-item p {
    margin: 0;
    color: #ffffff;
    font-size: clamp(15px, 1.5vw, 18px);
}

/* =========================
   ABOUT HERO SECTION
========================= */
.about-hero {
    background: linear-gradient(90deg, #8d8d8d 0%, #c2c2c2 100%);
    padding: clamp(50px, 6vw, 100px) 0;
    overflow: hidden;
}

.about-wrapper {
    max-width: 1600px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    position: relative;
}

/* IMAGE */
.about-image img {
    width: 100%;
    max-width: 700px;
    object-fit: contain;
    display: block;
}

/* CONTENT PANEL */
.about-content {
    background: #07385c;
    color: #ffffff;
    padding: clamp(40px, 5vw, 80px);
    max-width: 720px;
    margin-left: -80px; /* overlap effect */
    z-index: 2;
}

.about-content p {
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.8;
    text-align: center;
}

/* ===== Wrapper ===== */
.services-wrapper {
  padding: 80px 20px;
  background: #f5f5f5;
}

.services-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

/* ===== Card ===== */
.services-card {
  max-width: 1300px;
  margin: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 40px 30px 60px;
}

/* ===== Tabs ===== */
.services-tabs {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab {
  flex: 1 1 auto;
  min-width: 220px;
  padding: 14px 24px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: #555;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;

  /* IMPORTANT */
  position: relative;
  z-index: 2;
}

.tab:hover {
  background: #eef3f7;
}

.tab.active {
  background: #07385c;
  color: #fff;
}

/* ===== Content ===== */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.content-header {
  background: #07385c;
  color: white;
  text-align: center;
  padding: 35px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* ===== List ===== */
.tab-content ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: auto;
}

.tab-content li {
  text-align: center;
  font-size: 18px;
  padding: 12px 0;
}

.services-cta {
  background: #083252;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px 40px;
  margin-top: 60px;

  box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
}

/* Text */
.services-cta p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  max-width: 70%;
}

/* Button */
.cta-btn {
  color: #fff;
  text-decoration: none;

  border: 2px solid #ffffff;
  padding: 14px 26px;

  font-size: 16px;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* Hover */
.cta-btn:hover {
  background: #ffffff;
  color: #083252;
}

.recruit-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 520px;
  width: 100%;
}

/* LEFT IMAGE */
.recruit-image {
  background: url("./assests/pexels_field_engineer.jpg") center/cover no-repeat;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;        /* VERY IMPORTANT */
  background-position: center;   /* VERY IMPORTANT */
}

/* RIGHT PANEL */
.recruit-content {
  background: #083252;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* INNER BOX */
.content-box {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 40px;
  max-width: 520px;
  text-align: center;
}

/* TEXT */
.content-box p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* BUTTON */
.join-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #fff;
  color: #083252;
  background: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.join-btn:hover {
  background: transparent;
  color: #fff;
}
.partners-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.partners-slider {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 20s linear infinite;
}

.logo img {
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

/* Infinite scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.techresq-footer {
  background: #062f4f;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* ===== CTA ===== */
.footer-cta {
  position: relative;
  background-image: url("./assests/keyboard.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: clamp(40px, 6vw, 80px) 20px;
  min-height: clamp(220px, 35vw, 320px);

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* Content */
.cta-inner {
  position: relative;
  max-width: 900px;
  text-align: center;
  color: #fff;
}

/* Text */
.cta-inner p {
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.5;
  margin-bottom: clamp(16px, 3vw, 28px);
}

/* Button */
.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #000;
  padding: clamp(10px, 1.8vw, 14px)
           clamp(22px, 4vw, 36px);

  border-radius: 4px;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 16px);
  text-decoration: none;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ===== MAIN FOOTER ===== */
/* FOOTER BASE */
.footer {
  background: #062f4f;
  color: #fff;
}

/* MAIN FOOTER */
.footer-main {
  padding: 70px 20px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

/* LEFT */
.footer-about img {
  max-width: 300px;
  margin-bottom: 25px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 420px;
}

/* RIGHT */
.footer-links h4 {
  font-size: 40px;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-underline-position: below;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.bold {
  font-weight: 600px;
}
.footer-legal {
  background: #062f4f;
  padding: 30px 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.legal-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

/* LEFT */
.legal-left img {
  max-width: 160px;
}

/* CENTER */
.legal-center {
  text-align: center;
  font-size: 13px;
}

.legal-center p {
  margin-bottom: 8px;
}

.legal-center a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.legal-center a:hover {
  text-decoration: underline;
}

/* RIGHT */
.legal-right {
  text-align: right;
}

.legal-right span {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
}

.legal-right img {
  max-width: 160px;
}




/* =======================
   RESPONSIVE
======================= */

/* TABLETS */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .cta-box {
        padding: 20px 40px;
    }

  
    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-image img {
        margin: 0 auto 30px;
        max-width: 420px;
    }

    .feature-item {
        justify-content: center;
    }
    .about-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        margin-left: -40px;
    }
    .slider-track {
        gap: 50px;
    }
    .logo img {
        max-width: 600px;
    }
}

/* MOBILE */
/* =======================
   MOBILE OPTIMIZED CSS
======================= */
@media (max-width: 900px) {
    /* ===== TOP BAR ===== */
    .top-bar {
        justify-content: center;
        gap: 15px;
        text-align: center;
        flex-wrap: wrap;
        font-size: 14px;
    }

    /* ===== HAMBURGER ===== */
    .hamburger {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        border: 2px solid #0b3a5b;
        border-radius: 6px;
        padding: 8px;
        z-index: 10001;
        background: transparent;
    }

    .hamburger span {
        width: 26px;
        height: 3px;
        background: #fff;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Make navbar full-screen but keep desktop styles */
    .nav {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100vh !important;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding-top: 90px;
        padding-bottom: 40px;
        background: #0b3a5b;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 0;
        box-shadow: none;
        z-index: 10000;
    }

    /* Show when hamburger active */
    .nav.show {
        transform: translateX(0);
    }

    .nav a {
        line-height: normal;   /* stack nicely */
        font-size: 18px;
        padding: 16px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    .dropdown-menu {
    position: relative;
    top: 0;
    background: transparent;
    box-shadow: none;
    padding-left: 20px;
  }

  .dropdown-menu a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

    .nav a.btn {
        margin-top: 20px;
        width: auto;
    }

    /* Lock body scroll when menu open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* ===== HERO ===== */
    .hero {
        min-height: auto;
        gap: 40px;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 24px;
    }
    .hero-content p,
    .cta-box {
        font-size: 14px;
        padding: 12px 20px;
    }

    /* ===== SERVICES ===== */
    .services {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    .service-card {
        padding: 25px 15px;
        margin-top: 10px;
    }
    .service-card .icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    .service-card h3 {
        font-size: 18px;
    }
    .service-card p {
        font-size: 14px;
        padding: 15px;
    }

    /* ===== TABS ===== */
    .services-tabs {
        flex-direction: column;
        align-items: center;
    }
    .tab {
        width: 100%;
        max-width: 380px;
        text-align: center;
        margin-bottom: 10px;
    }
    .services-cta {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    .services-cta p {
        max-width: 100%;
    }
    .cta-btn {
        width: 100%;
        max-width: 260px;
    }

    /* ===== HELP DESK ===== */
    .helpdesk-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .helpdesk-image img {
        max-width: 320px;
        margin: 20px auto;
    }

    /* ===== ABOUT ===== */
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-image img {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .about-content {
        margin: auto;
        max-width: 90%;
        padding: 20px;
    }

    /* ===== RECRUIT ===== */
    .recruit-section {
        grid-template-columns: 1fr;
    }
    .recruit-image {
        min-height: 220px;
    }
    .recruit-content {
        padding: 20px;
    }
    .content-box {
        padding: 20px;
    }
    .content-box p {
        font-size: 14px;
    }
    .join-btn {
        width: 100%;
        max-width: 220px;
    }

    /* ===== PARTNERS SLIDER ===== */
    .slider-track {
        gap: 20px;
    }
    .logo img {
        max-width: 90px;
    }

    /* ===== FOOTER ===== */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .legal-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    .footer-about p {
        margin: auto;
    }
    .legal-right {
        text-align: center;
    }
}

/* SMALL PHONES */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }
    .nav {
    justify-content: flex-start;
    padding-top: 90px;
    padding-bottom: 40px;
    }

    .login-btn {
        width: 100%;
        max-width: 280px;
    }
    .helpdesk-intro {
        font-size: clamp(14px, 2vw, 18px);
    }
    .feature-item {
        flex-direction: row;
        text-align: left;
    }

    .features-image img {
        max-width: 300px;
    }
    .about-content {
        padding: 30px 20px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .about-image img {
        max-width: 100%;
    }
    .content-header {
    font-size: 18px;
    padding: 20px;
  }

  .tab-content li {
    font-size: 16px;
  }
  .slider-track {
        gap: 20px;
  }
   .logo img {
        max-width: 90px;
  }
  .links-grid {
    grid-template-columns: 1fr;
  }
  
}


/* ====================================================================================================================
   ABOUT SECTION
===================================================================================================================== */
.about-section {
  padding-top: 140px;
  background: #f2f2f2;
  padding: clamp(50px, 8vw, 120px) 20px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: clamp(30px, 5vw, 80px);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* LOGO */
.about-logo {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
}

.about-logo img {
  max-width: clamp(200px, 40vw, 420px);
  width: 100%;
  height: auto;
}

/* TEXT */
.about-text {
  text-align: center;
}

.about-text p {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.8;
  color: #000;
  max-width: 900px;
  margin: 0 auto 25px;
}

/* =======================
   MOBILE OPTIMIZATION
======================= */
@media (max-width: 600px) {
  .about-text {
    text-align: left;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ===============================================================
   END USER SUPPORT
================================================================= */
.end-user-support {
  width: 100%;
  background: #ffffff;
  padding-top: 120px;
}

/* HERO IMAGE */
.eus-hero {
  height: clamp(200px, 35vw, 400px);
  background: url("./assests/End_user.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Dark overlay for readability */
.eus-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.eus-hero h1 {
  position: relative;
  color: #fff;
  font-size: clamp(24px, 4vw, 42px);
  letter-spacing: 2px;
  text-align: center;
  z-index: 1;
}

/* CONTENT */
.eus-content {
  max-width: 1100px;
  margin: auto;
  padding: clamp(40px, 6vw, 100px) 20px;
}

/* LIST */
.eus-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eus-list li {
  font-size: clamp(15px, 1.6vw, 18px);
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #e5e5e5;
}

/* Arrow icon */
.eus-list li::before {
  content: "›";
  font-size: 26px;
  color: #0b3a5b;
  font-weight: bold;
}

/* =======================
   MOBILE TWEAKS
======================= */
@media (max-width: 600px) {
  .eus-list li {
    padding: 12px 0;
  }
}
/* =======================
   CTA BAR
======================= */
.cta-bar {
  width: 100%;
  background: #0b3a5b;
  padding: clamp(30px, 5vw, 60px) 20px;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* TEXT */
.cta-container p {
  color: #ffffff;
  font-size: clamp(14px, 1.6vw, 18px);
  margin: 0;
}

/* BUTTON */
.cta-btn {
  color: #3f3f3f;
  text-decoration: none;
  border: 2px solid #ffffff;
  padding: 12px 24px;
  font-size: clamp(14px, 1.4vw, 16px);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #ffffff;
  color: #0b3a5b;
}

/* =======================
   MOBILE & TABLET
======================= */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}


/* ==============================================================
   SERVICE SECTION
================================================================ */
.service-section {
  width: 100%;
  padding-top: 100px;
}

/* HERO IMAGE */
.service-hero {
  min-height: clamp(200px, 35vw, 360px);
  background: 
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("./assests/infrastructure.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.service-hero h1 {
  color: #ffffff;
  font-size: clamp(22px, 4vw, 42px);
  text-align: center;
  letter-spacing: 1px;
}

/* CONTENT */
.service-content {
  max-width: 1200px;
  margin: auto;
  padding: clamp(30px, 6vw, 80px) 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-size: clamp(14px, 1.8vw, 18px);
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #e5e5e5;
}

/* ARROW */
.service-list li::before {
  content: "›";
  font-size: 26px;
  color: #0b3a5b;
}

/* ==========================
   CTA BAR
========================== */
.cta-bar {
  background: #0b3a5b;
  padding: clamp(30px, 5vw, 60px) 20px;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-container p {
  color: #ffffff;
  font-size: clamp(14px, 1.6vw, 18px);
  margin: 0;
}

.cta-btn {
  color: #363434;
  text-decoration: none;
  border: 2px solid #ffffff;
  padding: 12px 26px;
  font-size: clamp(14px, 1.4vw, 16px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn:hover {
  background: #ffffff;
  color: #0b3a5b;
}

/* ==========================
   MOBILE & TABLET
========================== */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}


/* ===============================================================
   SECURITY SYSTEMS
================================================================= */
.security-systems {
  width: 100%;
  background: #ffffff;
}

/* HERO IMAGE */
.security-hero {
  height:  240px;
  background: url("./assests/cctv.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  margin-top: 100px;
  justify-content: center;
  position: relative;
}

/* Dark overlay */
.security-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.security-hero h1 {
  position: relative;
  color: #fff;
  font-size: clamp(24px, 4vw, 42px);
  letter-spacing: 2px;
  text-align: center;
  z-index: 1;
}

/* CONTENT */
.security-content {
  max-width: 1100px;
  margin: auto;
  padding: clamp(40px, 6vw, 100px) 20px;
}

/* LIST */
.security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-list li {
  font-size: clamp(15px, 1.6vw, 18px);
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #e5e5e5;
}

/* Arrow icon */
.security-list li::before {
  content: "›";
  font-size: 26px;
  color: #0b3a5b;
  font-weight: bold;
}

/* MOBILE */
@media (max-width: 600px) {
  .security-list li {
    padding: 12px 0;
  }
}



/* =============================================================
   SERVICE SECTION BASE
================================================================= */
.service-section {
  width: 100%;
  background: #f5f5f5;
}

/* ===========================
   HERO IMAGE
=========================== */
.service-hero {
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Background image */
.hardware-hero {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("./assests/software_and_hardware.jpg") center / cover no-repeat;
}

/* Hero title */
.service-hero h1 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: clamp(18px, 4vw, 36px);
  padding: 0 15px;
}

/* ===========================
   CONTENT AREA
=========================== */
.service-body {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px 60px;
}

/* ===========================
   LIST STYLING
=========================== */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 22px;
  font-size: clamp(14px, 2vw, 18px);
  color: #111;
  line-height: 1.5;
}

/* Arrow icon */
.service-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  font-weight: bold;
  color: #0b3a5b;
}

/* ===========================
   RESPONSIVE TWEAKS
=========================== */
@media (max-width: 768px) {
  .service-body {
    padding: 30px 15px 50px;
  }

  .service-list li {
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .service-hero {
    min-height: 180px;
  }

  .service-list li::before {
    font-size: 20px;
  }
}



/* ===========================
   CTA BAR
=========================== */
.cta-bar {
  background: #063458;
  padding: 30px 20px;
}

.cta-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-container p {
  color: #fff;
  margin: 0;
  font-size: clamp(14px, 2vw, 18px);
}

.cta-btn {
  padding: 12px 28px;
  border: 2px solid #fff;
  color: #373636;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #063458;
}

/* ===========================
   RESPONSIVE BEHAVIOUR
=========================== */
@media (max-width: 992px) {
  .cta-container {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .services ul {
    padding: 40px 15px 60px;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 180px;
  }

  .services li::before {
    font-size: 20px;
  }
}


/* =============================================================
   CONTACT SECTION
============================================================== */
.contact-section {
  width: 100%;
  background: #e5e5e5;
  padding-top: 140px;
}

/* ==============================================================
   CONTAINER
=============================================================== */
.contact-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

/* ============================================================
   LEFT SIDE
=============================================================== */
.contact-info {
  background: #e0e0e0;
  padding: 60px 40px;
}

.contact-info h2 {
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: clamp(18px, 3vw, 26px);
  color: #111;
}

/* Contact item */
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-item .icon {
  background: #063458;
  color: #fff;
  font-size: 20px;
  padding: 18px;
  min-width: 60px;
  text-align: center;
}

.contact-item span:last-child {
  padding: 0 20px;
  font-size: clamp(14px, 2vw, 18px);
  color: #111;
}

/* ===========================
   RIGHT SIDE IMAGE
=========================== */
.contact-image {
  background:
    url("./assests/contactus.jpg") center / cover no-repeat;
}

/* ==========================================================
   RESPONSIVE
=============================================================== */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-image {
    min-height: 260px;
  }
}

@media (max-width: 600px) {
  .contact-info {
    padding: 40px 20px;
  }

  .contact-item {
    flex-direction: row;
  }

  .contact-item .icon {
    min-width: 50px;
    padding: 14px;
  }
}


/* =============================================================
   FAQ HERO
=============================================================== */
.faq-hero {
  margin-top: 130px;
  width: 100%;
  min-height: 260px;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("./assests/Questions.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.faq-hero h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(20px, 4vw, 36px);
}

/* ===========================
   FAQ SECTION
=========================== */
.faq-section {
  background: #f5f5f5;
  padding: 140px 20px;
}

.faq-container {
  max-width: 1000px;
  margin: auto;
}

/* ===========================
   FAQ ITEM
=========================== */
.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #063458;
}

.faq-question:hover {
  background: #f0f0f0;
}

/* Icon */
.faq-question .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: clamp(14px, 2vw, 16px);
  color: #333;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px 20px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 600px) {
  .faq-section {
    padding: 40px 15px;
  }
}


/* ============================================================
   Login Wrapper
==============================================================*/
.login-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 160px;
  margin-bottom: 70px;
}

/* ============================================================
   Login Card
==============================================================*/
.login-card {
  width: 100%;
  max-width: 1200px;
  background: #e6e6e6;
  padding: 30px;
}

/* ============================================================
   Title
==============================================================*/
.login-card h1 {
  text-align: center;
  margin-bottom: 30px;
}

/* ============================================================
   Form
==============================================================*/
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

/* Inputs */
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 16px;
}

/* Login dropdown + email input (match other fields) */
.login-card input[type="email"],
.login-card select {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 16px;
  background: #ffffff;
}

.login-card select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px; /* room for arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230a355a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
}

.login-card select:focus {
  box-shadow: 0 0 0 3px rgba(10, 53, 90, 0.25);
}

/* ============================================================
   Password Field
==============================================================*/
.password-box {
  position: relative;
}

.toggle-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: #0a355a;
  border: none;
  color: white;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}

/* ============================================================
   CAPTCHA
==============================================================*/
.captcha-box {
  margin: 25px 0;
}

.fake-captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  max-width: 420px;
  margin: 0 auto;

  background: #f8f8f8;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.fake-captcha,
.fake-captcha * {
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.captcha-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fake-captcha span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
}

.fake-captcha input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
}

/* ============================================================
   Login Button
==============================================================*/
.login-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #0a355a;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.login-btn:hover {
  opacity: 0.9;
}

/* ============================================================
   Forgot Password
==============================================================*/
.forgot {
  display: block;
  text-align: center;
  margin-top: 18px;
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

/* ============================================================
   📱 Mobile & Tablet Fixes (CENTER EVERYTHING)
==============================================================*/
@media (max-width: 768px) {

  /* Center card vertically if needed */
  .login-wrapper {
    align-items: center;
  }

  /* Full-width card */
  .login-card {
    max-width: 100%;
    padding: 20px;
  }

  /* Center form content */
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Limit element width */
  .form-group,
  .password-box,
  .captcha-box,
  .login-btn {
    width: 100%;
    max-width: 360px;
  }

  /* Center captcha box */
  .captcha-box {
    display: flex;
    justify-content: center;
  }

  /* Title size */
  .login-card h1 {
    font-size: 24px;
  }
}

/* ============================================================
   📱 Small Phones
==============================================================*/
@media (max-width: 480px) {
  .login-card {
    padding: 16px;
  }
}



/* =====================================================
   Wrapper sign-up page 
===================================================== */
.signup-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 200px 20px 70px; /* 👈 increased top padding */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background-color: rgb(240, 240, 240);
}

/* =====================================================
   Steps Section
===================================================== */
.steps-section h2 {
  color: #0a355a;
  margin-bottom: 30px;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background-color: white;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0a355a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.step-number.active {
  background: #3aa76d;
}

.step p {
  margin: 0;
  font-size: 16px;
}

/* =====================================================
   Signup Buttons
===================================================== */
.signup-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signup-label {
  font-weight: bold;
  margin-bottom: 20px;
}

.signup-btn {
  background: #0a355a;
  color: white;
  padding: 20px;
  margin-bottom: 25px;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.signup-btn span {
  font-size: 26px;
}

.signup-btn:hover {
  opacity: 0.9;
}

/* =====================================================
   📱 Tablet
===================================================== */
@media (max-width: 900px) {
  .signup-wrapper {
    grid-template-columns: 1fr;
  }

  .signup-section {
    align-items: center;
  }

  .signup-btn {
    width: 100%;
    max-width: 400px;
  }
}

/* =====================================================
   📱 Mobile
===================================================== */
@media (max-width: 480px) {
  .step {
    gap: 12px;
  }

  .step-number {
    width: 40px;
    height: 40px;
  }

  .signup-btn {
    font-size: 16px;
    padding: 16px;
  }
}


/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal container */
.modal-container {
  background: #fff;
  width: 95%;
  max-width: 1100px;
  height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 10px;
  overflow: hidden;
}

/* LEFT */
.modal-steps {
  padding: 40px;
}

.modal-steps h2 {
  color: #0a355a;
  margin-bottom: 40px;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0a355a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-number.active {
  background: #3aa76d;
}

/* RIGHT */
.modal-form {
  background: #ebedef;
  padding: 40px;
  overflow-y: auto;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  border: none;
  background: white;
  font-size: 26px;
  cursor: pointer;
  border-radius: 6px;
}

.modal-form h3 {
  text-align: center;
  margin-bottom: 30px;
}

.modal-form form {
  max-width: 460px;
  margin: auto;
}

label {
  display: block;
  margin: 18px 0 6px;
}

input {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
}

/* Password */
.password-box {
  position: relative;
}

.password-box span {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

/* Terms */
.terms {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  font-size: 14px;
}

/* Button */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #0a355a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

/* =====================
   📱 Mobile
===================== */
@media (max-width: 900px) {
  .modal-container {
    grid-template-columns: 1fr;
    height: 100vh;
    border-radius: 0;
  }

  .modal-steps {
    display: none;
  }
}


/* ================= MODAL OVERLAY ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

/* ================= MODAL CARD ================= */
.modal-card {
  background: #e6e6e6;
  width: 100%;
  max-width: 900px;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
}

/* Title */
.modal-card h1 {
  text-align: center;
  margin-bottom: 30px;
}

/* ================= FORM ================= */
.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 16px;
}

/* Button */
.login-btn_2 {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #0a355a;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.login-btn:hover {
  opacity: 0.9;
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .modal-card {
    padding: 20px;
  }

  .modal-card h1 {
    font-size: 22px;
  }
}


/* ===============================
   TECHRESQ DASHBOARD (SCOPED)
================================ */

.tr-dashboard {
  background: #f5f7fb;
  min-height: 100vh;
  display: flex;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: #1f2937;
}

/* SIDEBAR */
.tr-dashboard .sidebar {
  width: 260px;
  min-width: 260px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  padding: 30px 20px;
}

.tr-dashboard .logo {
  color: #0b5ed7;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 45px;
}

/* NAV */
.tr-dashboard nav a {
  display: block;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 10px;
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}

.tr-dashboard nav a:hover {
  background: #eef3ff;
  color: #0b5ed7;
}

.tr-dashboard nav a.active {
  background: #0b5ed7;
  color: #ffffff;
}

/* MAIN AREA */
.tr-dashboard .main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers content on wide screens */
}

/* TOPBAR */
.tr-dashboard .topbar {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tr-dashboard .profile {
  width: 38px;
  height: 38px;
  background: #0b5ed7;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* CONTENT CONTAINER */
.tr-dashboard .content {
  width: 100%;
  max-width: 1400px; /* desktop balance */
  padding: 40px 35px;
}

.tr-dashboard .content h1 {
  font-size: 28px;
  margin-bottom: 35px;
}

/* STATS GRID */
.tr-dashboard .stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.tr-dashboard .card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.tr-dashboard .card:hover {
  transform: translateY(-5px);
}

.tr-dashboard .card h3 {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.tr-dashboard .card p {
  font-size: 36px;
  font-weight: 700;
  color: #0b5ed7;
}

.tr-dashboard .content-box-overview {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  margin-top: 30px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.tr-dashboard .content-box-overview h2 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1f2937;
}

.tr-dashboard .content-box-overview p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

.tr-dashboard nav a.logout-link {
  color: #dc2626;
  margin-top: 8px;
}

.tr-dashboard nav a.logout-link:hover {
  background: #fef2f2;
  color: #b91c1c;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* LARGE DESKTOPS */
@media (min-width: 1600px) {
  .tr-dashboard .content {
    max-width: 1600px;
  }
}

/* LAPTOPS */
@media (max-width: 1200px) {
  .tr-dashboard .content {
    padding: 35px 25px;
  }
}

/* TABLETS */
@media (max-width: 992px) {
  .tr-dashboard .sidebar {
    width: 220px;
    min-width: 220px;
  }

  .tr-dashboard .stats {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .tr-dashboard {
    flex-direction: column;
  }

  .tr-dashboard .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .tr-dashboard nav {
    display: flex;
    gap: 12px;
    overflow-x: auto;
  }

  .tr-dashboard nav a {
    white-space: nowrap;
  }

  .tr-dashboard .content {
    padding: 25px 20px;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  .tr-dashboard .card p {
    font-size: 28px;
  }

  .tr-dashboard .content h1 {
    font-size: 22px;
  }
}
.submit-btn {
  position: relative;
  z-index: 9999;
}