:root{
  --brand:#1E70FF;
  --brand-dark:#0c4fd1;
  --brand-darker:#093b9d;
  --text:#172033;
  --muted:#667085;
  --light:#f5f8ff;
  --section-blue:#f4f8ff;
  --section-grey:#f5f6f8;
  --border:#e7ecf5;
  --shadow:0 10px 24px rgba(11, 36, 77, 0.08);
  --shadow-hover:0 16px 32px rgba(11, 36, 77, 0.10);
  --radius:18px;
}

html{
  scroll-behaviour:smooth;
}

body{
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:#ffffff;
  min-height:100vh;
}

img{
  max-width:100%;
  height:auto;
}

.logo-white{
  filter:brightness(0) invert(1);
}

.section-padding{
  padding:90px 0;
}

.section-heading{
  max-width:760px;
  margin:0 auto 20px;
}

.section-heading h1,
.section-heading h2{
  font-size:2.2rem;
  font-weight:700;
  margin-bottom:12px;
}

.section-heading p{
  color:var(--muted);
  margin-bottom:0;
  font-size:1.05rem;
}

.section-tag{
  display:inline-block;
  font-size:0.85rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--brand);
  background:rgba(30, 112, 255, 0.08);
  padding:8px 14px;
  border-radius:999px;
}

.custom-navbar{
  background:var(--brand);
  box-shadow:0 8px 30px rgba(0, 0, 0, 0.08);
  padding:14px 0;
}

.navbar-logo{
  height:42px;
  width:auto;
  display:block;
}

.navbar .nav-link{
  color:rgba(255,255,255,0.88);
  font-weight:500;
  margin-left:10px;
  transition:0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active{
  color:#ffffff;
}

.btn-nav{
  font-weight:600;
  border-radius:999px;
  padding:10px 16px;
  color:var(--brand);
}

.hero-section{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  padding:70px 0;
  background:
    linear-gradient(
      110deg,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.88) 42%,
      rgba(255,255,255,0.70) 62%,
      rgba(255,255,255,0.35) 100%
    ),
    url("img/hero.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  border-bottom:1px solid #e8eef8;
}

.hero-badge{
  display:inline-block;
  background:#eef3ff;
  color:var(--brand);
  padding:9px 14px;
  border-radius:999px;
  font-size:0.9rem;
  font-weight:600;
}

.hero-title{
  font-size:3.1rem;
  line-height:1.08;
  font-weight:800;
  margin-bottom:18px;
  max-width:700px;
  color:var(--brand);
}

.hero-text{
  font-size:1.08rem;
  color:#1f2937;
  max-width:720px;
  margin-bottom:0;
}

.hero-btn{
  border-radius:999px;
  padding:14px 24px;
  font-weight:600;
}

.hero-btn-outline-dark{
  border-color:var(--brand);
  color:var(--brand);
  background:rgba(255,255,255,0.45);
}

.hero-btn-outline-dark:hover{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
}

.hero-points{
  max-width:760px;
}

.hero-point{
  display:flex;
  align-items:center;
  gap:12px;
  background:#f4f7ff;
  border:1px solid #e3e9ff;
  padding:14px 16px;
  border-radius:14px;
  color:#333;
}

.hero-point i{
  color:var(--brand);
  font-size:1.15rem;
}

.hero-panel{
  background:linear-gradient(135deg,#1E70FF,#0c4fd1);
  color:#fff;
  border-radius:24px;
  padding:32px;
  box-shadow:0 20px 60px rgba(0,0,0,0.18);
}

.hero-logo{
  height:72px;
  width:auto;
}

.hero-panel h3{
  font-size:1.4rem;
  font-weight:700;
}

.hero-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:14px;
  color:rgba(255,255,255,0.94);
}

.hero-list li:last-child{
  margin-bottom:0;
}

.hero-list i{
  color:#ffffff;
  margin-top:2px;
}

.partners-section{
  padding:34px 0 26px;
  background:var(--section-grey);
  border-top:1px solid #e6ebf3;
  border-bottom:1px solid #e6ebf3;
  overflow:hidden;
}

.partners-wrap{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:28px;
  align-items:center;
}

.partners-title h2{
  margin:0;
  font-size:1.15rem;
  line-height:1;
  color:#718096;
  font-weight:800;
  white-space:nowrap;
}

.partners-slider{
  overflow:hidden;
  position:relative;
  mask-image:linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image:linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.partners-track{
  display:flex;
  align-items:center;
  gap:80px;
  width:max-content;
  animation:scrollPartners 34s linear infinite;
}

.partner-logo{
  min-width:180px;
  height:90px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.partner-logo img{
  max-height:46px;
  max-width:150px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:grayscale(100%) opacity(0.7);
  transition:filter 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.partner-logo:hover img{
  filter:grayscale(0%) opacity(1);
  transform:translateY(-2px);
}

@keyframes scrollPartners{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

.services-section{
  background:var(--section-blue);
  border-top:1px solid #e8eef8;
  border-bottom:1px solid #e8eef8;
}

.service-card{
  border:none;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
  overflow:hidden;
  position:relative;
  background:#ffffff;
  min-height:100%;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
}

.service-card-default{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.90) 0%,
      rgba(255,255,255,0.94) 45%,
      rgba(255,255,255,0.98) 100%
    ),
    url("img/hero.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.service-card-cyber{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.86) 0%,
      rgba(255,255,255,0.92) 46%,
      rgba(255,255,255,0.98) 100%
    ),
    url("img/services/cyber.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.service-card-m365{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.86) 0%,
      rgba(255,255,255,0.92) 46%,
      rgba(255,255,255,0.98) 100%
    ),
    url("img/services/m365.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.service-card-cloud{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.86) 0%,
      rgba(255,255,255,0.92) 46%,
      rgba(255,255,255,0.98) 100%
    ),
    url("img/services/cloud.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.service-card-wifi{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.86) 0%,
      rgba(255,255,255,0.92) 46%,
      rgba(255,255,255,0.98) 100%
    ),
    url("img/services/wifi.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.service-card-cctv{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.86) 0%,
      rgba(255,255,255,0.92) 46%,
      rgba(255,255,255,0.98) 100%
    ),
    url("img/services/cctv.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.service-card-signage{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.86) 0%,
      rgba(255,255,255,0.92) 46%,
      rgba(255,255,255,0.98) 100%
    ),
    url("img/services/signage.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.service-card-dental{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.86) 0%,
      rgba(255,255,255,0.92) 46%,
      rgba(255,255,255,0.98) 100%
    ),
    url("img/services/dental.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.service-card-backup{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.86) 0%,
      rgba(255,255,255,0.92) 46%,
      rgba(255,255,255,0.98) 100%
    ),
    url("img/services/backup.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.service-card-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(30,112,255,0.03), rgba(255,255,255,0.02));
  pointer-events:none;
}

.service-card .card-body{
  padding:30px;
  position:relative;
  z-index:1;
}

.service-card h5{
  font-size:1.2rem;
  font-weight:700;
  margin-bottom:14px;
}

.service-card p{
  color:var(--muted);
  margin-bottom:0;
}

.service-icon{
  width:56px;
  height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:rgba(255, 255, 255, 0.72);
  color:var(--brand);
  font-size:1.45rem;
  margin-bottom:20px;
  backdrop-filter:blur(4px);
}

.solutions-section{
  background:#ffffff;
  border-top:1px solid #edf1f7;
  border-bottom:1px solid #edf1f7;
}

.solution-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px 24px;
  box-shadow:0 8px 22px rgba(11, 36, 77, 0.05);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 28px rgba(11, 36, 77, 0.08);
}

.solution-card i{
  font-size:2rem;
  color:var(--brand);
  margin-bottom:18px;
  display:inline-block;
}

.solution-card h5{
  font-weight:700;
  margin-bottom:12px;
}

.solution-card p{
  color:var(--muted);
  margin-bottom:0;
}

.about-section{
  background:var(--section-grey);
  border-top:1px solid #e6ebf3;
  border-bottom:1px solid #e6ebf3;
}

.about-text{
  font-size:1.08rem;
  line-height:1.8;
}

.contact-section{
  background:linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-top:1px solid #e8eef8;
}

.contact-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:0 10px 24px rgba(11, 36, 77, 0.08);
  padding:32px;
  height:100%;
}

.contact-card h4{
  font-weight:700;
}

.contact-item{
  display:flex;
  gap:16px;
  margin-bottom:24px;
}

.contact-item:last-child{
  margin-bottom:0;
}

.contact-item i{
  width:48px;
  height:48px;
  min-width:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(30, 112, 255, 0.08);
  color:var(--brand);
  border-radius:14px;
  font-size:1.2rem;
}

.contact-item span{
  display:block;
  font-size:0.9rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:4px;
}

.contact-item a{
  color:var(--brand);
  text-decoration:none;
  font-weight:600;
  word-break:break-word;
}

.contact-item p{
  color:var(--muted);
}

.zoho-form-title{
  padding-bottom:6px;
}

.zoho-form-title p{
  color:var(--muted);
}

.required-mark{
  color:#dc2626;
}

.zoho-field-note{
  font-size:0.95rem;
  font-weight:600;
  color:var(--text);
  margin-top:-4px;
}

.field-help{
  font-size:0.85rem;
  color:var(--muted);
  margin-top:8px;
  padding-left:2px;
}

.form-label{
  font-weight:600;
  margin-bottom:8px;
}

.form-control,
.form-select{
  border:1px solid #d8e1ef;
  border-radius:14px;
  padding:14px 16px;
  box-shadow:none;
  background:#fff;
}

.form-select{
  padding-right:40px;
}

.form-control:focus,
.form-select:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 0.2rem rgba(30, 112, 255, 0.15);
}

textarea.form-control{
  min-height:140px;
  resize:vertical;
}

.btn-primary-custom{
  background:var(--brand);
  border:none;
  color:#fff;
  font-weight:600;
  border-radius:999px;
  padding:13px 22px;
}

.btn-primary-custom:hover{
  background:var(--brand-dark);
  color:#fff;
}

.contact-email-link{
  color:var(--brand);
  font-weight:600;
}

.footer{
  background:#0d1220;
  color:#fff;
  margin-top:0;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}

.footer-links a{
  color:rgba(255,255,255,0.8);
  text-decoration:none;
  transition:0.2s ease;
}

.footer-links a:hover{
  color:#fff;
}

.footer-links .bi-linkedin{
  font-size:1.2rem;
}

.legal-page{
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

.legal-content{
  flex:1 0 auto;
}

@media (max-width: 991.98px){
  .hero-section{
    min-height:auto;
    padding:60px 0;
    background-position:center right;
  }

  .hero-title{
    font-size:2.4rem;
  }

  .navbar .nav-link{
    margin-left:0;
    padding:10px 0;
  }

  .partners-wrap{
    grid-template-columns:1fr;
    gap:18px;
  }

  .partners-title h2{
    font-size:1.05rem;
  }

  .partners-track{
    gap:56px;
  }
}

@media (max-width: 767.98px){
  .section-padding{
    padding:70px 0;
  }

  .section-heading h1,
  .section-heading h2{
    font-size:1.8rem;
  }

  .hero-title{
    font-size:2rem;
  }

  .hero-text{
    font-size:1rem;
  }

  .hero-panel,
  .contact-card{
    padding:24px;
  }

  .navbar-logo{
    height:36px;
  }

  .partner-logo{
    min-width:140px;
    height:72px;
  }

  .partner-logo img{
    max-height:34px;
    max-width:120px;
  }

  .partners-track{
    gap:42px;
  }
}