/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: auto;
  overflow-x: hidden;
}

body {
  font-family: Inter, system-ui, Arial, sans-serif;
  background: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER / NAVBAR
========================= */
.main-header {
  background: #081a2b;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 110px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #ff7a00;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: #0b1c2d;
  color: #ffffff;
  padding: 110px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  color: #cbd5e1;
  font-size: 17px;
  max-width: 560px;
}

.hero-actions {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 4px;
  margin-right: 14px;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: #f97316;
  color: #000;
}

.outline {
  border: 1px solid #f97316;
  color: #f97316;
}

.hero-box {
  background: #111827;
  padding: 30px;
  border-left: 4px solid #f97316;
}

.hero-box ul {
  list-style: none;
}

.hero-box li {
  margin-bottom: 12px;
}

/* =========================
   GALLERY
========================= */
.gallery-section {
  background: #0b1c2d;
  padding: 40px 0;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollGallery 25s linear infinite;
}

.gallery-track img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  border: 3px solid #f97316;
}

.gallery-section:hover .gallery-track {
  animation-play-state: paused;
}

@keyframes scrollGallery {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================
   SERVICES
========================= */
.services-section {
  padding: 90px 0;
  background:
    linear-gradient(rgba(10,37,64,0.85), rgba(10,37,64,0.85)),
    url("../assets/gallery/Security-Services.png") center/cover no-repeat;
}

.services-section h2 {
  text-align: center;
  color: #ffffff;
  font-size: 34px;
  margin-bottom: 50px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.service-box {
  background: #ffffff;
  padding: 35px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: 0.35s ease;
}

.service-box i {
  font-size: 42px;
  color: #ff7a00;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 18px;
  color: #0a2540;
}

.service-box:hover {
  transform: translateY(-10px) scale(1.03);
  background: #ff7a00;
}

.service-box:hover i,
.service-box:hover h3 {
  color: #ffffff;
}

/* =========================
   INDUSTRIES
========================= */
.industries-section {
  background: #ffffff;
  padding: 70px 0;
  overflow: hidden;
}

.industries-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #0a2540;
}

.industries-marquee {
  overflow: hidden;
}

.industries-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollIndustries 40s linear infinite;
}

.industry-box {
  min-width: 260px;
  padding: 22px 30px;
  background: #f5f7fa;
  border-radius: 50px;
  border-left: 5px solid #ff7a00;
  font-weight: 600;
}

@keyframes scrollIndustries {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================
   CLIENTS
========================= */
.clients-section {
  background: #f5f7fa;
  padding: 80px 0;
}

.clients-title {
  display: inline-block;
  margin: 0 auto 50px;
  padding: 12px 35px;
  border: 3px solid #ff7a00;
  font-size: 32px;
  font-weight: 700;
}

.clients-marquee {
  overflow: hidden;
}

.clients-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollClients 35s linear infinite;
}

.client-box {
  background: #ffffff;
  padding: 22px;
  border-radius: 12px;
  text-align: center;
}

.client-box img {
  max-width: 120px;
}

@keyframes scrollClients {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #081a2b;
  color: #cbd5e1;
  padding: 60px 20px 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-owner {
  text-align: center;
  margin-top: 40px;
}

.footer-owner img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #ff7a00;
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  margin-top: 20px;
}

/* =========================
   FLOAT BUTTONS
========================= */
.whatsapp-float,
.call-float {
  position: fixed;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
}

.whatsapp-float {
  left: 20px;
  background: #25D366;
}

.call-float {
  right: 20px;
  background: #e53935;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .hero {
    padding: 70px 0;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 30px;
  }

  .btn {
    display: block;
    margin: 12px auto;
    width: 80%;
  }

  .logo img {
    height: 90px;
  }
}

/* ================= ABOUT US PAGE ================= */

.about-section {
  padding: 80px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 34px;
  color: #0a2540;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #1f2937;
  margin-bottom: 15px;
}

.about-points {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.about-points li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #0a2540;
  padding-left: 26px;
  position: relative;
}

.about-points li::before {
  content: "✔";
  color: #ff7a00;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    margin-top: 30px;
  }

  .about-points li {
    text-align: left;
  }
}

/* ================= CONTACT PAGE ================= */

.contact-hero{
  background:#0b1c2d;
  color:#fff;
  padding:70px 0;
  text-align:center;
}

.contact-hero h1{
  font-size:34px;
  margin-bottom:10px;
}

.contact-hero p{
  color:#cbd5e1;
}

.contact-section{
  padding:70px 0;
  background:#f5f7fa;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* FORM */
.contact-form-box{
  background:#fff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-box h2{
  margin-bottom:20px;
  color:#0a2540;
}

.contact-form-box input,
.contact-form-box textarea{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:1px solid #d1d5db;
  border-radius:6px;
  font-size:14px;
}

.contact-form-box textarea{
  height:120px;
  resize:none;
}

.contact-form-box button{
  background:#ff7a00;
  color:#fff;
  border:none;
  padding:12px;
  width:100%;
  font-weight:600;
  border-radius:6px;
  cursor:pointer;
}

.contact-form-box button:hover{
  opacity:0.9;
}

/* INFO */
.contact-info-box{
  background:#0a2540;
  color:#fff;
  padding:40px;
  border-radius:12px;
}

.contact-info-box h3{
  margin-bottom:15px;
}

.contact-info-box p{
  margin-bottom:15px;
  color:#e5e7eb;
}

.contact-info-box iframe{
  width:100%;
  height:220px;
  border:0;
  border-radius:8px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}


body{
    margin:0;
    font-family:Arial;
    background:linear-gradient(135deg,#2b4eff,#1e1e1e);
}

.login-wrapper{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

.login-box{
    width:800px;
    height:420px;
    background:#fff;
    display:flex;
    border-radius:8px;
    overflow:hidden;
}

.left{
    width:50%;
    background:#eef2ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.left img{
    width:80%;
}

.right{
    width:50%;
    padding:40px;
}

.right h2{
    margin-bottom:25px;
    color:#2b4eff;
}

.right input{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:5px;
}

.right button{
    width:100%;
    padding:12px;
    background:#2b4eff;
    border:none;
    color:#fff;
    font-size:16px;
    border-radius:30px;
    cursor:pointer;
}
