@font-face {
  font-family: poppins;
  src: url(./assets/fonts/poppins/Poppins-Light.ttf);
}


body {
  margin: 0;
  font-family: poppins !important;
  font-weight: 400;
}

/* Top Bar */
.top-bar {
  background-color: #2c353b;
  color: #fff;
  padding: 13px 136px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.top-bar a {
  color: #7fb1d1;
  text-decoration: none;
  font-weight: bold;
}

.top-bar .social-icons i {
  margin-left: 15px;
  color: #c2c2c2;
  cursor: pointer;
}

/* Main Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 40px;
  margin-right: 10px;
}

.logo span {
  font-size: 20px;
  font-weight: bold;
  color: #2c353b;
}

.navbar {
  background-color: #fff;
  color: #000;
  padding: 128px !important;
}

.navbar-nav .nav-link {
  font-weight: 600;
  margin-right: 20px;
}

.navbar-brand img {
  height: 40px;
  /* Adjust logo size */
}

.search-icon {
  font-size: 20px;
  cursor: pointer;
}

.banner-head {
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
}

.banner {
  position: relative;
  background: url('./assets/img/banner-1.jpg') center/cover no-repeat;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner h1 {
  color: white;
  font-size: 48px;
  font-weight: bold;
  position: absolute;
  top: 40px;
}

.services {
  position: absolute;
  bottom: -100px;
  /* pull the cards halfway below the banner */
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
  padding: 0 20px;
}

@media (max-width: 1050px) {
  .services {
    position: absolute;
    bottom: -100px;
    /* pull the cards halfway below the banner */
    display: flex;
    justify-content: center;
    gap: 5px;
    width: 100%;
    flex-wrap: wrap;
    padding: 0 20px;
  }
}

.card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 230px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.card a {
  color: black;
  text-decoration: underline;
  font-size: 14px;
}

/* Optional: use emojis or insert SVGs/icons for demonstration */
.access-control .card-icon::before {
  content: "🏠";
}

.security .card-icon::before {
  content: "🔒";
}

.it-services .card-icon::before {
  content: "🖥️";
}

.doorbell .card-icon::before {
  content: "📷";
}

/* Responsive adjustments */
@media(max-width: 1000px) {
  .services {
    bottom: -150px;
  }
}

.about {
  margin-top: 200px;
}

.manage-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.manage-section h2 {
  color: #000;
  font-size: 36px;
  margin-bottom: 40px;
}

.card-custom {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  margin-bottom: 30px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.card-custom:hover {
  transform: scale(1.02);
}

.card-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  width: 100%;
  text-align: left;
  color: #fff;
}

.card-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.card-content p {
  font-size: 14px;
  margin: 0;
}


/* ----------- */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  /* full screen height */
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-custom-main {
  padding-top: 20px;
}

.btn-custom {
  font-weight: 700;
  padding: 15px 40px;
  border: 2px solid #43a548;
  border-radius: 50px;
  color: #43a548;
  text-transform: uppercase;
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-custom:hover {
  background: #f5690d;
  color: #fff;
  border: 2px solid #f5690d;
  text-decoration: none;
}

/* ------------------ */

.about {
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-img {
  padding: 50px;
}

.about-section {
  padding: 80px 0;
}

.about-image {
  border-radius: 25px;
  overflow: hidden;
}

.about-card {
  background: #f5f5f5;
  border-radius: 25px;
  padding: 40px;
}

.stats .stat-item h3 {
  color: #6ba2b8;
  font-weight: 700;
  margin-bottom: 5px;
}

/* --------------- */

.testimonial-card {
  background: #f5f5f5;
  border-radius: 25px;
  padding: 25px;
  height: 100%;
}

.testimonial-date {
  color: #adb5bd;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-top: 1px solid #cfd4da;
  padding-top: 10px;
  margin-top: 15px;
  display: block;
}

/* --------------- */

.work-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.view-more-btn {
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 600;
}

/* ------------ */

.feature-title {
  font-weight: 600;
  margin-top: 20px;
}

.feature-desc {
  color: #555;
}

.rounded-img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

/* ----------- */

.accordion-button {
  border-radius: 30px !important;
  background-color: #e9ecef;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #dee2e6;
}

.form-control {
  border-radius: 20px;
}

.form-container {
  background-color: #f1f1f1;
  border-radius: 30px;
  padding: 2rem;
}

.send-btn {
  border-radius: 20px;
  background-color: #7c8d99;
  color: white;
  border: none;
  padding: 0.5rem 2rem;
}

.send-btn:hover {
  background-color: #6b7b87;
}

.contact-image {
  border-radius: 30px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ------------- */

.footer-section {
  background-color: #1b242d;
  color: #d9d9d9;
  padding: 4rem 0;
}

.footer-section h2,
.footer-section h5 {
  color: #ffffff;
}

.footer-section a {
  color: #d9d9d9;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.cta-button {
  border-radius: 20px;
  background-color: #7c8d99;
  color: white;
  border: none;
  padding: 0.6rem 2rem;
}

.cta-button:hover {
  background-color: #6b7b87;
}

.footer-logo {
  max-width: 150px;
}

.social-icons a {
  font-size: 1.4rem;
  margin-right: 1rem;
  color: #d9d9d9;
}

.social-icons a:hover {
  color: #ffffff;
}

/* -------- */

.map-view{
  padding: 0px !important;
  margin: 0px !important;
}


/* ----------------------------about us page --------- */

.about-product-redi{
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}


.abb-stats-section {
  background-color: #f5f9fc;
  text-align: center;
  padding: 60px 20px;
  font-family: sans-serif;
}
.abb-stats-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}
.abb-stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.abb-stat-box {
  background: #fff;
  border-radius: 20px;
  width: 240px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.abb-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #7a8b9d;
  margin-bottom: 10px;
}
.abb-stat-label {
  font-size: 16px;
  color: #444;
}


/* -------------- */

.abb-about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.abb-about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.abb-about-left {
  flex: 1 1 50%;
}

.abb-about-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
}

.abb-about-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.abb-about-icon {
  font-size: 32px;
  color: #444;
  margin-right: 20px;
  flex-shrink: 0;
}

.abb-about-text {
  flex: 1;
}

.abb-about-subtitle {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px;
}

.abb-about-description {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.abb-about-credit {
  font-size: 12px;
  color: #777;
  margin-top: 20px;
}

.abb-about-credit a {
  color: #000;
  text-decoration: underline;
}

.abb-about-right {
  flex: 1 1 40%;
  text-align: center;
}

.abb-about-image {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .abb-about-container {
    flex-direction: column;
    text-align: center;
  }
  .abb-about-left, .abb-about-right {
    flex: 1 1 100%;
  }
  .abb-about-item {
    justify-content: center;
  }
}


.abb-services-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.abb-services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.abb-services-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.abb-services-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.abb-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.abb-service-card {
  background-color: #fff;
  border-radius: 25px;
  width: 220px;
  padding: 30px 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.abb-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.abb-service-icon {
  font-size: 48px;
  margin-bottom: 15px;
  color: #4a6fa5;
}

.abb-service-label {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

@media (max-width: 768px) {
  .abb-services-grid {
    flex-direction: column;
    align-items: center;
  }
}

.abb-offices-section {
  background-color: #e9ecef;
  padding: 60px 20px;
  text-align: center;
}

.abb-offices-container {
  max-width: 1100px;
  margin: 0 auto;
}

.abb-offices-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
}

.abb-offices-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.abb-office-card {
  background-color: transparent;
  width: 300px;
  text-align: center;
}

.abb-office-city {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.abb-office-email {
  display: inline-block;
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  margin-bottom: 10px;
}

.abb-office-address {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.abb-office-button {
  display: inline-block;
  background-color: #a1b8c9;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s;
}

.abb-office-button:hover {
  background-color: #819bb0;
}

@media (max-width: 768px) {
  .abb-offices-grid {
    flex-direction: column;
    align-items: center;
  }
}


.pro-img{
  padding: 20px;
}

.product-col:hover .pro-img img{
  padding: 20px;
  transition: 1s;
}

.product-head{
  margin-top: 50px;
  margin-bottom: 50px;
}

.product-col{
  padding: 20px;
  background-color: #FFF;
  box-shadow: 2px 3px 10px #000;
  border-radius: 20PX;
  margin-top: 20px;
}