:root{
  --bg:#0f1723;
  --header-height:72px;
  --surface:#07101a;
  --muted:#98a4ad;
  --text:#e6eef6;
  --accent:#4f46e5;
  --glass: rgba(255,255,255,0.03);
}

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

html,body{height:100%}
html { scroll-behavior: smooth; }
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
  background:linear-gradient(180deg,#06121a 0%, #081422 60%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

h1 {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-size: 700px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

h2 {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.container {
  /* max-width:1100px; */
  /* margin:0 auto; */
  padding:0 20px
}

.site-header {
  position:fixed;
  display: flex;
  flex-direction: row;
  justify-content: center;
  left:20px;
  right:20px;
  top: 0;
  padding-top: 0;
  z-index:100
}

.site-header .header-inner {
  background: rgba(255, 255, 255, 0.274);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter:blur(6px);
  padding:10px 16px;
  border-radius:18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255,255,255,0.5);
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top: 30px;
  margin-left: 3%;
  margin-right: 3%;
  width: 100%;
}

.K2.logo {
    width:32px;
    height:32px;
    border-radius:8px;
}

.brand{
    font-weight:700;
    color:#0b1220;
    text-decoration:none;
    font-size: 12px;
    border-radius:8px;
    display:inline-flex;
    align-items:center;
    gap:8px
}

.nav-toggle{display:none;
    background:none;
    border:0;
    color: white;
    font-size:20px;
    cursor:pointer
}

.site-nav{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    display:flex;
    gap:18px;
    align-items:center
}

.site-nav a{
    color: rgb(0, 0, 0);
    -webkit-text-stroke: #ffffff3a;
    -webkit-text-stroke-width: 0.3px;
    text-decoration:none;
    padding:8px 12px;
    border-radius:8px;
    font-weight:600
}

.site-nav a:hover {
    color:#0055ff;
    background:transparent;
}

/* .btn.schedule {
    background:#0b63c6;
    color:white;
    padding:8px 14px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 8px 24px rgba(11,99,198,0.18)
} */

.theme-toggle {
    background:none;
    border:0;
    color:#556169;
    cursor:pointer;
    font-size:18px;
}

.hero {
  min-height:100vh;
  display:flex;
  flex-direction: column;
  justify-content: center;
  /* align-items:center; */
  padding:100px 0 40px;
  position: sticky;
  z-index:1;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0,0,0,0.35)),
  url('/images/networking.webp') center/cover no-repeat;
}

.hero-grid {
    display:grid;
    grid-template-columns:1fr 420px;
    gap:40px;
    align-items:center;
    margin-bottom: 50px;
    margin-right: 0;
}

.hero-text h1 {
    font-size:2.2rem;
    margin:0 0 14px;
    color:var(--text);
    line-height:1.05;
}

.hero-text p {
    color: white;
    margin-bottom:20px
}

.hero-cta {
    display:flex;
    gap:12px
}

.btn{display:inline-block;padding:10px 16px;border-radius:10px;text-decoration:none;font-weight:600}

.btn.primary {
    background:linear-gradient(90deg,var(--accent),#06b6d4);
    color:white;
    box-shadow:0 8px 30px rgba(79,70,229,0.18);
    transition: all 0.3s ease;
}

.btn.primary:hover{
    background: white;
    color: #0a92aa;
    transform: scale(1.05);
}

.btn.ghost{
    background:transparent;
    backdrop-filter: blur(4px);
    border:1px solid rgba(255, 255, 255, 0.26);
    color:var(--text);
    transition: all 0.3s ease;
}

.btn.ghost:hover{
    transform: translateX(5px);
    /* transform: scale(1.1); */
}

.hero-media .device-mock {
    height:300px;
    border-radius:16px;
    background:linear-gradient(180deg,#ffffffb4,#ffffffb4), url(/images/CCTV.jpg) center/cover no-repeat;
    backdrop-filter: blur(10px);
    box-shadow:0 20px 60px rgba(2,6,23,0.7);
    border:1px solid rgb(255, 255, 255)
}

.about-grid {
    width: 100%;
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap:0;
    margin-left: 0;
    margin-right: 0;
}

.about-text-container {
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content:end;
    margin: 0;
}

.about-media-container {
    padding: 40px 20px;
}

.about-text {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 100%;
    margin-top: 100px;
}

.about-heading {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #0078ff;
}

.about-text p {
    color: rgb(66, 66, 66);
    margin-bottom: 30px;
    max-width: 800px;
    font-weight: 100;
}

.about-media {
    width: 100%;
}

.about-logo {
    max-width:100%;
    height:auto;
    border-radius:16px;
}


.logo {
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:16px;
    z-index: 1000;
}

.CEO-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background:linear-gradient(180deg,rgba(0, 0, 255, 0) 0%, rgb(0, 0, 255) 100%);
}

.CEO-div {
  width: 300px;
  max-width: 1200px;
  padding: 40px 20px;
}

.CEO-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.section {
    padding:50px 0;
}

.section.about {
    padding:50px 0;
    background-color: white;
}


.section-title-div {
    padding-left: 10px;
    padding-bottom: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 50px;
    margin-right: 50px;
    border-bottom: #06121a54 1px solid;
}

.section-title {
    color: black;
    font-size:1.25rem;
    margin-bottom:0;
    font-weight:150;
}

.section-title-div.services {
    border-bottom: #75767754 1px solid;
}

.section-title.services {
    color: rgb(162, 167, 167);
}

.about-heading {
    font-size: 2rem;
    color: #433dad;
    font-weight: 700;
}

.about-text h2 {
    font-size: 1.5rem;
    margin: 0 0 20px;
    color: #0b1220;
    font-weight: 100;
}

.service-heading {
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 1px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    /* gap: 12px; */
}

.service-heading h1 {
    font-size: 2rem;
    margin: 0 0 10px;
    color: #a19cf1;
    font-weight: 700;
}


.networking-section {
  padding: 20px 10%;
  font-family: Arial, sans-serif;
}

.networking-container {
  display: flex;
  gap: 40px;
}

/* LEFT SIDE */
.networking-left {
  flex: 1;
}

.networking-left h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #687f99;
}

.networking-left h3 {
  margin-top: 20px;
  font-size: 22px;
}

.top-image {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 20px;
}

.site-work-content {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.site-work-content img {
  width: 40%;
  border-radius: 12px;
}

.site-text {
  line-height: 1.6;
  max-width: 800px;
  font-weight: 100;
}

.site-text p strong {
    margin-bottom: 10px;
}

ul {
    list-style-type:decimal;
}

li {
    font-size: 18.5px;
    margin-bottom: 10px;
}

.overlay li {
    font-size: 15px;
    margin-bottom: 10px;
}

/* RIGHT SIDE */
.networking-right {
  flex: 1;
  position: relative;
}

.networking-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 20px;
  width: 100%;
}

.overlay h3 {
  margin-bottom: 10px;
}

.CCTV-Installations {
  margin-bottom: 5%;
}

.CCTV-video-div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  padding-left: 20px;
  padding-right: 20px;
}

.CCTV-image {
  width: 190px;
  height: auto;
  max-width: 30%;
  object-fit: cover;
  border-radius: 16px;
}

.CCTV-video {
  width: 65%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.business-benefits {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
}

.benefits-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.benefits-div ul{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-two {
  padding: 60px 5%;
  font-family: Arial, sans-serif;
}

.container {
  /* max-width: 1200px; */
  /* margin: auto; */
  margin-top: 50px;
  padding-left: 7%;
  padding-right: 7%;
}

.page-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

/* TOP ROW */
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.site-work-text {
  width: 45%;
}

.site-work-text h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.site-work-text p {
  line-height: 1.7;
}

.cctv-kit img {
  width: 400px;
}


/* MIDDLE ROW */
.middle-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.dome-camera img {
  width: 350px;
}

.safety-section {
  width: 50%;
}

.safety-section h2 {
  margin-bottom: 15px;
}

.safety-section ol {
  line-height: 1.7;
}

/* BOTTOM */
.additional-benefits {
  margin-top: 40px;
}

.additional-benefits h2 {
  margin-bottom: 15px;
}

.additional-benefits ol {
  line-height: 1.7;
}


.portfolio-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.left-button, .right-button {
    background: #ffffff34;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 28px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: background 0.3s ease;
}

.left-button:hover, .right-button:hover {
    background: #ffffff66;
}

.portfolio-section {
  padding: 60px 5%;
  background: #e2e1e1;
  color: rgb(66, 66, 66);
  font-family: Arial, sans-serif;
}

.portfolio-section p {
    line-height: 1.7;
    max-width: 800px;
    font-weight: 100;
    margin-bottom: 40px;
    color: rgb(201, 194, 194);
}

.portfolio-stack-div {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 450px;
}

.portfolio-title {
  margin-bottom: 30px;
  font-size: 22px;
  letter-spacing: 1px;
}

.portfolio-wrapper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.portfolio-track {
    border-radius: 25px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  display: flex;
}

.portfolio-item {
  min-width: 100%;
  display: flex;
  gap: 30px;
  scroll-snap-align: start;
}

/* LEFT IMAGE */
.portfolio-image {
  position: relative;
  width: 60%;
  height: 400px;
}

.portfolio-image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.image-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgb(0, 0, 0));
    color: white;
  position: absolute;
  width: 100%;
  padding: 20px;
  bottom: 0px;
  font-size: 28px;
  font-weight: bold;
}

/* RIGHT CONTENT */
.portfolio-content {
  width: 40%;
  background: #1a1a1a;
  padding: 30px;
}

.portfolio-content h3 {
  color: #00aaff;
  margin-bottom: 15px;
}

.portfolio-content h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.tech-group span {
  display: inline-block;
  border: 1px solid #555;
  padding: 6px 12px;
  margin: 5px 5px 0 0;
  border-radius: 5px;
  font-size: 14px;
}

/* RESPONSIVE PORTFOLIO */
@media (max-width: 1000px) {
  .portfolio-stack-div {
    min-height: auto;
  }
  
  .portfolio-buttons {
    position: static;
    transform: none;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    padding: 0;
  }
  
  .portfolio-item {
    flex-direction: column;
    gap: 20px;
  }
  
  .portfolio-image {
    width: 100%;
    height: 300px;
  }
  
  .portfolio-content {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .left-button, .right-button {
    background: rgba(0, 0, 0, 0.192);
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .portfolio-image {
    height: 250px;
  }
  
  .portfolio-content {
    padding: 20px;
  }
  
  .portfolio-content h3 {
    font-size: 18px;
  }
}




.gps-section {
  background: linear-gradient(to bottom, #0b1220, #0f1b2d);
  color: white;
  /* padding: 80px 5%; */
  font-family: Arial, sans-serif;
}

/* HERO */
.gps-hero {
  background: url(/images/moving-car-with-GPS-Tracker.webp) center/cover no-repeat;
  padding: 100px 5% 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.gps-text {
  width: 50%;
}

.gps-text h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gps-text p {
  font-size: 18px;
  color: #b0c4de;
  margin-bottom: 30px;
  max-width: 500px;
}

.gps-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #007bff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0056cc;
}

.btn-outline {
  border: 2px solid #007bff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  color: #007bff;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #007bff;
  color: white;
}

/* IMAGE */
.gps-image img {
  width: 420px;
  transform: rotate(-5deg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* FEATURE CARDS */
/* .gps-features {
  padding: 60px 5%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  flex: 1;
  transition: 0.3s;
}

.feature-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}

.feature-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  color: #aab8d6;
  font-size: 14px;
} */


#gps-features {
  padding: 20px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.GPS-title {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #a19cf1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: white;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 500;
}

/* Gradient Backgrounds */

.blue { background: linear-gradient(135deg,#2bbcff,#1e88e5); color:white; }
.green { background: linear-gradient(135deg,#66bb6a,#43a047); color:white; }
.yellow { background: linear-gradient(135deg,#ffd54f,#fbc02d); color:white; }
.orange { background: linear-gradient(135deg,#ffa726,#fb8c00); color:white; }
.teal { background: linear-gradient(135deg,#26c6da,#00acc1); color:white; }
.red { background: linear-gradient(135deg,#ef5350,#e53935); color:white; }
.purple { background: linear-gradient(135deg,#ab47bc,#8e24aa); color:white; }
.blue2 { background: linear-gradient(135deg,#42a5f5,#1e88e5); color:white; }
.red2 { background: linear-gradient(135deg,#ff7043,#f4511e); color:white; }


.gps-text h1 {
  -webkit-text-stroke: #222121;
  -webkit-text-stroke-width: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.603);
  -webkit-text-shadow: 2px 2px 4px rgba(0,0,0,0.603);
}

.gps-text p {
  color: #96989c;
  line-height: 1.6;
  font-weight: 100;
  font-size: 18px;
  -webkit-text-stroke: rgba(0, 0, 0, 0.603);
  text-shadow: rgba(0, 0, 0, 0.589);
  -webkit-text-shadow: rgba(0, 0, 0, 0.699);
}

.GPS-info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.GPS-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5%;
  padding-top: 20px;
  padding-bottom: 2%;
  padding-left: 6%;
  padding-right: 6%;
  border-top: 1px solid rgba(255, 255, 255, 0.384);
}

.GPS-image-div {
  width: 90%;
  border-radius: 16px;
  overflow: hidden;
  padding-left: 6%;
  padding-right: 6%;
}

.GPS-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.GPS-info-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}

.GPS-info-div h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.GPS-info-div p {
  color: #c4cfe6;
  line-height: 1.6;
  font-weight: 100;
  font-size: 20px;
  -webkit-text-stroke: rgba(0, 0, 0, 0.603);
  text-shadow: rgba(0, 0, 0, 0.589);
  -webkit-text-shadow: rgba(0, 0, 0, 0.589);
}

.GPS-info-div ul {
  padding-left: 20px;
}

.GPS-info-div ul li {
  margin-bottom: 12px;
}

.GPS-info-div ul li p {
  margin: 0;
  font-size: 16px;
}

.section-title-div.other-services {
  border-bottom: 1px solid rgba(255, 255, 255, 0.432);
}

.section-title.other-services {
  color: white;
}

.cards-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px
}

.card {
  background:linear-gradient(180deg,rgba(255,255,255,0.02),transparent);
  backdrop-filter: blur(10px);
  padding:18px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.03);
  transition:transform .25s ease,box-shadow .25s ease
}

.card:hover {
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(2,6,23,0.6)
}

.card-media {
  height:110px;
  background:linear-gradient(90deg,#0ea5a3,#4f46e5);
  border-radius:8px;
  margin-bottom:12px
}

.card-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:8px
}

.card h3 {
  margin:0 0 6px
}
.card p {
  color:var(--muted);
  font-size:0.95rem;
  margin:0
}

.section.contact {
  border-top: rgba(255, 255, 255, 0.13) 1px solid;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
  padding:40px 0;
}

.section-title.get-in-touch {
  color: var(--text);
  font-size: 50px;
  margin-bottom: 30px;
}

.contact-info, .contact-form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255,255,255,0.5);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.contact-info p {
  margin: 0 0 12px;
  color: var(--text);
}

.contact-info p a {
  color: var(--accent);
  text-decoration: none;
}

.contact-info p a:hover {
  text-decoration: underline;
}

.contact-form {
  display:flex;
  flex-direction:column;
  gap:14px;
}

.field-group {
  display:flex;
  flex-direction:column;
}

.field-group label {
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  padding:12px;
  border-radius:8px;
  color:var(--text);
  width:100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline:none;
  border-color: var(--accent);
  box-shadow:0 0 0 3px rgba(79,70,229,0.2);
}

.contact-form textarea {
  min-height:120px;
  resize:vertical;
}

.form-status {
  font-size:0.95rem;
  color: var(--muted);
  margin-top:8px;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns:1fr;
  }
}

.contact-form textarea {
  min-height:120px;
  resize:vertical
}

.site-footer {
  padding:28px 0;
  border-top:1px solid rgba(255,255,255,0.03);
  margin-top:40px
}

.footer-inner {
  display:flex;
  justify-content:center
}



@media (max-width: 1000px) {
  .GPS-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-left: 4%;
    padding-right: 4%;
  }
  
  .GPS-info-div h2 {
    font-size: 1.3rem;
  }
  
  .GPS-info-div p {
    font-size: 16px;
  }
  
  .GPS-info-div ul li p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .GPS-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .GPS-info-div h2 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .GPS-info-div p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .GPS-info-div ul li p {
    font-size: 13px;
  }
  
  .GPS-image-div {
    border-radius: 12px;
  }
}



/*footer*/
footer {
  background: black;
  color: white;
  padding: 30px;
  text-align: center;
}

.footer-newsletter {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.377); /* Lighter separator */
}

.newsletter-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px;
}

.newsletter-left {
  flex-shrink: 0;
}

.newsletter-logo {
    max-width: 150px; /* Adjust size as needed */
    height: auto;
}

.newsletter-center {
  flex-grow: 1;
  text-align: center;
  color: var(--color-white);
}

.newsletter-center p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.social-icons-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-button1 {
  background-color: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255,255,255,0.5);
  color: #0a6cf1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
  margin: 0 5px;
}

.social-button1:hover {
  background-color: #0a6cf1;
  color: white;
}

.social-button2 {
  background-color: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255,255,255,0.5);
  color: green;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
  margin: 0 5px;
}

.social-button2:hover {
  background-color: green;
  color: #ffffff;
}

.social-button3 {
  background-color: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255,255,255,0.5);
  color: yellow;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
  margin: 0 5px;
}

.social-button3:hover {
  background-color: rgba(255, 255, 0, 0.822);
  color: #ffffff;
}

.social-button4 {
  background-color: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255,255,255,0.5);
  color: rgb(241, 31, 171);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
  margin: 0 5px;
}

.social-button4:hover {
  background: #f09433; 
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: #ffffff;
}

.newsletter-right {
    flex-shrink: 0;
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.newsletter-btn {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.newsletter-btn:hover {
    background-color: rgba(0, 0, 0, 0.4);
    border-color: var(--color-white);
}

.acknowledgement {
  margin-top: 30px;
  font-size: 0.9rem;
}

.developer {
  color: #f1e28b;
  text-decoration: none;
}

.footer-bottom {
  padding-top: 30px;
}






/* Responsive */
@media (max-width:1000px) {
    .cards-grid {
        grid-template-columns:repeat(2,1fr)
    }
    .hero-grid {
        grid-template-columns:1fr
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text-container {
        padding: 0 20px;
    }
    
    .about-text {
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 40px;
    }
    
    .about-heading {
        font-size: 1.8rem;
    }
    
    .about-text h2 {
        font-size: 1.2rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    .contact-grid {
        grid-template-columns:1fr
    }
    .site-nav {
        position: absolute;
        margin-top: 5px;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(211, 210, 210, 0.945);
        border: 1px solid rgb(255, 254, 254);
        backdrop-filter:blur(15px);
        border-radius: 18px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255,255,255,0.5);
        flex-direction: column;
        gap: 0;
        transform: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
        z-index: 59;
    }
    .site-nav.open {
        max-height: 500px;
        opacity: 1;
        pointer-events: auto;
    }
    .site-nav a {
        color: rgb(27, 26, 26);
        padding: 12px 16px;
        width: 100%;
        text-align: center;
        border-radius: 0;
        border-bottom: 1px solid rgb(177, 175, 175);
    }
    .site-nav a .aContact {
        border-bottom: 0 rgba(211, 210, 210, 0.945);
    }
    .site-nav a:hover {
        background: rgb(69, 138, 184);
    }
    .nav-toggle {
        display:block
    }
    .site-header {
        position:fixed;
        padding:12px 6px;
    }
}

@media (max-width:560px) {

  .hero-text {
    align-items: center;
    text-align: center;
  }


    .cards-grid{grid-template-columns:1fr}
    .hero-text h1{font-size:1.6rem}
    
    .about-grid {
        gap: 20px;
    }
    
    .about-text {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 20px;
    }
    
    .about-heading {
        font-size: 1.4rem;
    }
    
    .about-text h2 {
        font-size: 1rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .about-media-container {
        padding: 20px 10px;
    }
}

/* fly‑in animations (alias: reveal) */
.fly-in, .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.fly-in.active, .reveal.active {
  opacity: 1;
  transform: none;
}


@media (max-width: 768px) {
  .networking-container {
    flex-direction: column;
  }

  .site-work-content {
    flex-direction: column;
  }

  .site-work-content img {
    width: 100%;
  }
}

/* Responsive adjustments for CCTV section */
@media (max-width: 1000px) {
  .CCTV-image { width: 150px; max-width: 28%; }
  .CCTV-video { width: 70%; }
  .cctv-kit img { width: 300px; }
}

@media (max-width: 700px) {
  .CCTV-video-div { flex-direction: column; gap: 12px; }
  .CCTV-image { width: 140px; max-width: 40%; }
  .CCTV-video { width: 100%; max-width: 100%; }
}

@media (max-width: 480px) {
  .CCTV-image { width: 110px; }
  .CCTV-video { width: 100%; }
  .CCTV-video-div { padding: 0 8px; }
}


@media (max-width: 768px) {
  .top-row,
  .middle-row {
    flex-direction: column;
    gap: 30px;
  }

  .site-work-text,
  .safety-section {
    width: 100%;
  }

  .cctv-kit img,
  .dome-camera img {
    width: 100%;
  }
}


@media (max-width: 900px) {
  .gps-hero {
    flex-direction: column;
    text-align: center;
  }

  .gps-text {
    width: 100%;
  }

  .gps-image img {
    margin-top: 40px;
    width: 300px;
  }

  .gps-features {
    flex-direction: column;
  }
}



@media (max-width: 900px) {
  .portfolio-item {
    flex-direction: column;
  }

  .portfolio-image,
  .portfolio-content {
    width: 100%;
  }

  .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-logo {
        margin-bottom: 20px;
    }

    .newsletter-center {
        margin-bottom: 20px;
    }

    .newsletter-right {
        width: 100%;
        justify-content: center;
    }

    .footer-newsletter {
        padding: 20px 0;
    }
}

























