body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

.light-heading {
  font-weight: 100;
}


.light-heading span{
  font-weight: 700;
  font-size: 70px;
  color: #b89f67;
}

.light-para {
  font-weight: 100;
}
/* Navbar Styling */
.navbar {
  background-color: #000;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
}

.navbar .nav-link,
.navbar-brand {
  color: #fff;
  font-weight: 300;
}

.navbar .nav-link:hover,
.navbar .dropdown-item:hover {
  color: #d2b37f;
}

/* ✅ Dropdown Menu Styling */
.navbar .dropdown-menu {
  background: #111; /* Slightly lighter for visibility */
  border: none;
  border-radius: 0;
  color: #fff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0;
}

.navbar .dropdown-item {
  color: #f5f5f5;
  padding: 10px 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar .dropdown-item:hover {
  background-color: #d2b37f;
  color: #000;
}

/* Dropdown Hover (Desktop Only) */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
}

/* Logo Image Styling */
.logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

/* Book Appointment Button Styling */
.book-btn {
  background-color: #d2b37f;
  color: #fff;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background-color: #fff3d4;
  color: #000;
}

/* ========== MOBILE MENU SIDEBAR ========== */
.custom-toggler {
  border: none;
  outline: none;
  box-shadow: none;
  filter: brightness(100);
}

.custom-toggler .navbar-toggler-icon {
  filter: invert(100%);
}

/* Sidebar sliding menu */
.custom-nav-menu {
  transition: transform 0.35s ease-in-out;
}

@media (max-width: 991.98px) {
  .custom-nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%; /* Take full width to prevent overflow */
    max-width: 280px; /* Sidebar width limit */
    background: #000;
    padding: 2rem 1.2rem;
    overflow-y: auto;
    z-index: 1050;
    transform: translateX(100%);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.4);
  }

  .custom-nav-menu.show {
    transform: translateX(0);
  }

  .custom-nav-menu .navbar-nav {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  /* Disable hover dropdown on mobile */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  /* ✅ Mobile Dropdown Menu */
  .dropdown-menu {
    display: none !important;
    position: static !important;
    float: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    background: #111;
    box-shadow: none;
    width: 100%;
  }

  .dropdown-menu .dropdown-item {
    color: #ccc;
    word-wrap: break-word;
    white-space: normal;
  }

  .dropdown-menu.show {
    display: block !important;
  }

  /* Arrow style for mobile */
  .dropdown-toggle::after {
    float: right;
    margin-top: 6px;
  }

  /* Disable page scrolling when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

/* home */

/* --- Shalom Banner Section --- */
.shalom-banner {
  background: url('./img/fresh/home/banner.png') center center/cover no-repeat;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: #fff;
}

/* .banner-content {
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
} */

.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.banner-content h1 span {
  font-weight: 500;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .banner-content {
    padding: 1.5rem;
  }

  .banner-content h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 1.4rem;
  }
}


/*  */

/* Wrapper */
.shalom-banner .social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  z-index: 5;
}

/* Icon container */
.shalom-banner .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #ffffff;
  text-decoration: none !important;
  transition: transform 0.22s ease, color 0.22s ease;
  border-radius: 50%;
  cursor: pointer;
}

/* Actual icon */
.shalom-banner .social-icons a i {
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.22s ease, color 0.22s ease;
  transform-origin: center;
}

/* Hover for desktop */
.shalom-banner .social-icons a:hover,
.shalom-banner .social-icons a:focus {
  color: #ffc107;
  transform: scale(1.12);
}

.shalom-banner .social-icons a:hover i,
.shalom-banner .social-icons a:focus i {
  transform: scale(1.25);
}


/* -------------------------------------------
   🔥 RESPONSIVENESS
-------------------------------------------- */

/* Tablet */
@media (max-width: 992px) {
  .shalom-banner .social-icons a {
    width: 45px;
    height: 45px;
  }
  .shalom-banner .social-icons a i {
    font-size: 1.7rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .shalom-banner .social-icons {
    gap: 0.7rem;
  }
  .shalom-banner .social-icons a {
    width: 40px;
    height: 40px;
  }
  .shalom-banner .social-icons a i {
    font-size: 1.5rem;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .shalom-banner .social-icons {
    gap: 0.5rem;
  }
  .shalom-banner .social-icons a {
    width: 34px;
    height: 34px;
  }
  .shalom-banner .social-icons a i {
    font-size: 1.3rem;
  }
}

/*  */

.home-shalom-points .btn {
  padding: 10px 20px;
  font-size: 16px;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .home-shalom-points {
    flex-direction: column !important;
    width: 100%;
  }

  .home-shalom-points .btn {
    width: 100%;
    text-align: center;
  }
}

/*  */

.home-points {
  background-color: #000;
}

.text-icon {
  color: #d2b37f; /* Highlight color for icons */
}

/* Larger icons for desktop view */
.point-box i {
  font-size: 3.5rem; /* increased from 2.2rem */
}

.point-box {
  transition: transform 0.3s ease, color 0.3s ease;
}

.point-box:hover {
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .point-box i {
    font-size: 3rem; /* slightly smaller for tablets */
  }
}

@media (max-width: 767px) {
  .home-points {
    text-align: center;
    padding: 40px 15px;
  }

  .point-box i {
    font-size: 2.8rem; /* increased for better visibility on mobile */
  }

  .point-box p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/*  */

   
   

    /* Floating Buttons */
    .call-button, .whatsapp-button {
      position: fixed;
      right: 20px;
      border: none;
      border-radius: 8px;
      z-index: 999;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      font-weight: bold;
    }
  
    .call-button {
      bottom: 100px;
      background-color: #000;
      color: #fff;
      padding: 10px 15px;
    }
  
    .call-button i {
      font-size: 18px;
    }
  
    .whatsapp-button {
      bottom: 30px;
      background-color: #25d366;
      color: #fff;
      font-size: 24px;
      padding: 10px 14px;
      justify-content: center;
    }
  
    /*  */
/* Section Base */
.service-home-card {
  background-color: #000;
}

/* Card Styling */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #d2b37f;
  background-color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 330px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

/* Hover effect */
.service-card:hover img {
  transform: scale(1.05);
}

/* Adjust height for large screens */
@media (max-width: 1200px) {
  .service-card {
    height: 300px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .service-card {
    height: 260px;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .service-card {
    height: auto;
  }

  .service-card img {
    height: auto;
    object-fit: contain;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .service-card {
    height: auto;
  }

  .service-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/*  */
#shalom-founder .text-warning {
  color: #d2b37f !important;
}

#shalom-founder .border {
  border-color: #d2b37f !important;
}


/*  */
#shalom-services .border-warning {
  border-color: #d2b37f !important;
}
#shalom-services .text-warning {
  color: #d2b37f !important;
}
/*  */

.slider-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.image-slider {
  display: flex;
  animation: scrollSlider 20s linear infinite;
}

.slider-img {
  min-width: 100%;
  height: 400px;
  object-fit: cover;
  border-right: 3px solid #000;
}

@keyframes scrollSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(-300%); } /* 4 images total */
}

/* Responsive */
@media (max-width: 768px) {
  .slider-img {
    height: 250px;
  }
}

/*  about page */
/* ===== Breadcrumb Section ===== */
.breadcrumb-option {
  position: relative;
  height: 300px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Optional overlay for better text visibility */
.breadcrumb-option::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* soft dark overlay */
}

.breadcrumb-option .container {
  position: relative;
  z-index: 1;
}

/* Heading & Text */
.breadcrumb-option h1 {
  font-size: 2.2rem;
  font-weight: 600;
}

.breadcrumb-option p {
  font-size: 1rem;
}

/* ===== Responsive Design ===== */

/* Medium screens (tablets) */
@media (max-width: 992px) {
  .breadcrumb-option {
    height: 250px;
    background-position: center top; /* better focus on image top part */
  }

  .breadcrumb-option h1 {
    font-size: 2rem;
  }
}

/* Small tablets / large mobiles */
@media (max-width: 768px) {
  .breadcrumb-option {
    height: 200px;
    background-size: cover;
  }

  .breadcrumb-option h1 {
    font-size: 1.6rem;
  }

  .breadcrumb-option p {
    font-size: 0.9rem;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .breadcrumb-option {
    height: 160px;
    background-position: center;
  }

  .breadcrumb-option h1 {
    font-size: 1.4rem;
  }

  .breadcrumb-option p {
    font-size: 0.85rem;
  }
}
/*  */

.about-intro-section {
  font-family: 'Poppins', sans-serif;
}

.about-intro-section h2 {
  font-size: 2rem;
}

.about-intro-section p {
  font-size: 1rem;
  color: #ddd;
}

.about-img-box {
  border: 2px solid #b89f67; /* gold-like border similar to Le Denté */
  display: inline-block;
  border-radius: 10px;
}

.about-img-box img {
  border-radius: 10px;
}

.about-intro-section .fw-bold {
  font-size: 2.5rem;
}

.values-section {
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.values-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* overlay for better contrast */
}

.values-section .container {
  position: relative;
  z-index: 1;
}

.values-section h2 {
  font-size: 2rem;
}

.values-section p {
  font-size: 1rem;
  color: #ddd;
}

.values-img-box {
  border-radius: 10px;
  overflow: hidden;
  max-width: 300px;
}

@media (max-width: 768px) {
  .values-section h2 {
    font-size: 1.6rem;
  }
  .values-section h4 {
    font-size: 1rem;
  }
  .values-img-box {
    max-width: 100%;
  }
}
/* ===== Base Styles ===== */
.info-section {
  background-color: #000;
  color: #fff;
  padding: 60px 0;
}

.info-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* allows stacking on smaller screens */
}

/* ===== Text Section ===== */
.info-text {
  flex: 1;
  min-width: 300px;
}

.point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.point-number {
  flex: 0 0 80px;
  height: 80px;
  background: #1a1a1a;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #d2b37f;
}

.light-heading {
  font-size: 1.8rem;
  font-weight: 600;
}

.light-para {
  font-size: 1rem;
  /* color: #d2b37f; */
  margin: 0;
}

/* ===== Image Section ===== */
.info-image {
  flex: 1;
  min-width: 300px;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* ===== Responsive Design ===== */

/* Medium screens (Tablets) */
@media (max-width: 992px) {
  .info-section .container {
    flex-direction: column-reverse; /* Image below text */
    text-align: center;
  }

  .info-image {
    margin-top: 30px;
  }

  .point {
    justify-content: center;
    text-align: left;
  }

  .point-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-right: 15px;
  }

  .light-heading {
    font-size: 1.6rem;
  }
}

/* Small tablets and large mobiles */
@media (max-width: 768px) {
  .info-section {
    padding: 40px 0;
  }

  .info-section .container {
    gap: 20px;
  }

  .point {
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
  }

  .light-heading {
    font-size: 1.4rem;
  }

  .light-para {
    font-size: 0.95rem;
  }
}

/* Mobile screens */
@media (max-width: 576px) {
  .info-section {
    padding: 30px 15px;
  }

  .point {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .point-number {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .light-heading {
    font-size: 1.2rem;
  }

  .light-para {
    font-size: 0.9rem;
  }

  .info-image img {
    border-radius: 8px;
  }
}

/*  */
.facility-section {
  background: #000;
  padding: 60px 0;
  color: white;
  text-align: center;
}

.facility-title h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 30px;
}

.facility-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-track {
  display: flex;
  flex-wrap: nowrap;
  /* The trick: let total width be big enough */
  width: calc(320px * 24 + 15px * 24); /* 12 cards × 2 (duplicated) */
  animation: scroll-left 60s linear infinite;
}

.facility-card {
  position: relative;
  flex: 0 0 auto;
  width: 320px;
  max-width: 90%;
  height: 450px;
  margin-right: 15px;
  border-radius: 12px;
  overflow: hidden;
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

/* Overlay layer */
.facility-card::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  border-radius: 12px;
  z-index: 1;
}

/* Info content */
.facility-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
  color: #fff;
  text-align: left;
  z-index: 2;
}

.facility-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #b89f67;
}

.facility-info p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
  color: #f0f0f0;
}

/* Hover Effects */
.facility-card:hover img {
  transform: scale(1.1);
}

.facility-card:hover::before {
  opacity: 1;
}

.facility-card:hover .facility-info {
  transform: translateY(-10px);
  opacity: 1;
}

/* Continuous scroll */
/* Animation for infinite scroll */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* shift by half since items are duplicated */
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .facility-card {
    width: 260px;
    height: 380px;
  }
}

@media (max-width: 480px) {
  .facility-card {
    width: 220px;
    height: 320px;
  }
}
/*  */

/* Banner */
.shalom-services-banner {
  position: relative;
}

/* Service Cards */
.shalom-service-item {
  background: #111;
  border: 1px solid #2b2b2b;
  transition: all 0.3s ease;
}

.shalom-service-item:hover {
  transform: translateY(-5px);
  border-color: #d2b37f;
  box-shadow: 0 0 15px rgba(210, 179, 127, 0.3);
}


/* web app development page */

.scrolling-gallery {
  overflow: hidden;
  position: relative;
}

.scrolling-wrapper {
  white-space: nowrap;
  overflow: hidden;
}

.scrolling-track {
  display: inline-flex;
  gap: 0px;
}

.scrolling-track img {
  height: 400px;
  width: auto;
  border-radius: 8px;
}

.scroll-left {
  animation: scrollLeft 20s linear infinite;
}


@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.services-list .service-item span:first-child {
  font-weight: bold;
  margin-right: 20px;
  color: #d2b37f; /* Gold highlight */
  min-width: 30px;
}
.services-list .service-item {
  font-size: 1.1rem;
  color: #ccc;
}


/* domain page */


.inv-section {
        background-color: #000;
        color: white;
        padding: 50px 20px;
        font-family: Arial, sans-serif;
    }
    .inv-section__title {
      font-weight: 100;
      font-size: 35px;  
      text-align: center;
        margin-bottom: 40px;
    }
    .inv-section__cards {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }   
    .inv-section__card {
        background: linear-gradient(to right, #1a1a1a, #2e2e2e);
        padding: 20px;
        width: 400px;
        border-radius: 5px;
        text-align: left;
    }
    .inv-section__card-title {
        font-size: 2rem;
        font-weight: 100;
        margin-bottom: 15px;
        color: #d2b37f;
    }
    .inv-section__card-text {
        font-size: 1rem;
        line-height: 1.5;
        color: #ccc;
        font-weight: 100;
    }
    @media (max-width: 768px) {
        .inv-section__cards {
            flex-direction: column;
            align-items: center;
        }
    }
    /* Unique namespace: inv-benefits */
    .inv-benefits {
        background-color: #000;
        color: #fff;
        padding: 60px 20px;
        font-family: 'Arial', sans-serif;
    }

    .inv-benefits__title {
        font-size: 35px;
        font-weight: 100;
        margin-bottom: 40px;
        text-align: center;
    }

    .inv-benefits__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .inv-benefits__card {
        background-color: #111;
        padding: 60px 20px;
        border-radius: 4px;
    }

    .inv-benefits__card-title {
        font-size: 2.3rem;
        font-weight: 100;
        margin-bottom: 15px;
        /* text-align: center; */
    }

    .inv-benefits__card-text {
        font-size: 1rem;
        color: #ccc;
        line-height: 1.6;
        font-weight: 100;
    }

    @media (max-width: 768px) {
        .inv-benefits__title {
            text-align: center;
            font-size: 2rem;
        }
    }

    /* cloud page */

    .two-images-section {
        background-color: #000; /* Black background like screenshot */
        padding: 20px;
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .two-images-section img {
        width: 100%;
        max-width: 550px;
        border-radius: 12px; /* Rounded corners like screenshot */
        display: block;
    }

    @media (max-width: 768px) {
        .two-images-section {
            flex-direction: column;
            align-items: center;
        }
    }

/* company page */

 /* career page */
 .inquiry-form-section {
  background-color: #0d0d0d;
  color: #fff;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inquiry-container {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.inquiry-container h2 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-group input,
.form-group select {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid #666;
  padding: 0.75rem;
  color: #666;
  font-size: 1rem;
  appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'10'%20height%3D'6'%20viewBox%3D'0%200%2010%206'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M0%200l5%206%205-6'%20fill%3D'%23ccc'%20/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 10px 6px;
}

.email-field[type="file"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #666;
  padding: 0.75rem;
  color: #fff;
  font-size: 1rem;
}

.consent-text {
  font-size: 0.8rem;
  color: #aaa;
}

.consent-text a {
  color: #ccc;
  text-decoration: underline;
}

.submit-btn {
  background: transparent;
  border: 1px solid #666;
  padding: 0.75rem 2rem;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #fff;
  color: #000;
}

.alt-link {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #777;
  text-decoration: underline;
}

.form-group select option {
  background-color: #000;
  color: #fff;
}

/* contact page */

.inquiry-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #666;
  padding: 0.75rem;
  color: #fff;
  font-size: 1rem;
  resize: vertical;
}


/* goal */
.about-shalom {
  background: #000; /* Black background */
  padding: 80px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #f5f5f5;
}

.about-shalom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

/* Left Section (About Text) */
.about-text {
  flex: 1 1 45%;
}

.about-text h2 {
  font-size: 2.2rem;
  color: #d2b37f;
  margin: 25px 0 15px;
  font-weight: 100;
}

.about-text .vision,
.about-text .mission {
  font-size: 1.05rem;
  margin-bottom: 25px;
  line-height: 1.7;
  color: #ddd;
}



.about-text .points {
  list-style: none;
  padding-left: 0;
}

.about-text .points li {
  position: relative;
  margin-bottom: 12px;
  font-size: 0.98rem;
  line-height: 1.6;
  padding-left: 25px;
  color: #ccc;
}

.about-text .points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d2b37f;
  font-size: 0.9rem;
}

/* Timeline Section */
.timeline {
  flex: 1 1 50%;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #d2b37f, #444);
}

.milestone {
  margin-bottom: 50px;
  position: relative;
  padding-left: 40px;
}

.milestone .circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  position: absolute;
  left: -2px;
  top: 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  border: 3px solid #fff;
}

.circle.green { background: #2ecc71; }
.circle.purple { background: #9b59b6; }
.circle.blue { background: #3498db; }
.circle.red { background: #e74c3c; }

.milestone .year {
  font-size: 1.3rem;
  font-weight: bold;
  color:#d2b37f;
  margin-bottom: 10px;
  display: block;
}

.milestone .content {
  background: #111;
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.milestone .content ul {
  margin: 0;
  padding-left: 18px;
}

.milestone .content ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #ccc;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .about-shalom .container {
    flex-direction: column;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline::before {
    left: 10px;
  }

  .milestone {
    padding-left: 40px;
  }

  .milestone .circle {
    left: -2px;
  }
}



/*  */

  /* Section Wrapper */
.value-prop-section {
  background: #000; /* Full container black */
  color: #fff; 
  max-width: 900px;
  margin: 0px auto;
  border: 1px solid #333;
  box-shadow: 0 4px 15px rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}

/* Header Bar */
.value-prop-header {
  background:#b89f67; 
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

.value-prop-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

/* Rows */
.value-prop-row {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  border-bottom: 1px solid #333;
}

.value-prop-icon {
  flex: 0 0 60px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  margin-right: 20px;
}

/* Icon colors */
.icon-purple { background: #673ab7; }
.icon-orange { background: #ff9800; }
.icon-green { background: #4caf50; }
.icon-red { background: #d32f2f; }
.icon-blue { background: #2196f3; }

.value-prop-content {
  flex: 1;
}

.value-prop-content ul {
  margin: 0;
  padding-left: 20px;
}

.value-prop-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #ddd; /* softer white for readability */
}

.value-prop-content strong {
  color: #fff;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .value-prop-row {
    flex-direction: column;
    text-align: left;
  }

  .value-prop-icon {
    margin-bottom: 15px;
  }
}

/*  */

.strategic-partners-section {
  background: #000;
}

.text-gold {
  color: #cfa062;
  font-weight: 700;
}

.strategic-partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.partner-logo-box {
  background: #1c1c1c;
  border-radius: 10px;
  padding: 20px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo-box img {
  display: block;
  max-width: 150px;
  height: 80px;
  object-fit: contain;
  filter: none; /* Make sure logo is always visible */
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect (optional subtle glow or scale) */
.partner-logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(207, 160, 98, 0.5);
}


/*  */

.clients-section {
  background-color: #000; /* Black background */
}

.client-logo {
  background:#d7d6d5;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px; /* Set fixed box height */
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.client-logo img {
  max-height: 100px; /* Uniform logo size */
  max-width: 100%;
  object-fit: contain; /* Keeps aspect ratio */
}

/*  */


/*  */

/* ===== FOOTER STYLING ===== */
footer {
  background: linear-gradient(to right, #000000, #1c1c1c);
  color: #fff;
  font-family: "Poppins", sans-serif;
}

footer .light-para {
  color: #d2b37f !important;
  font-size: 14px;
}

/* Footer Links */
footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

footer ul li a:hover {
  color: #d2b37f;
}

/* Button */
footer .btn-outline-light {
  border-color: #d2b37f;
  color: #d2b37f;
  font-size: 14px;
  transition: all 0.3s ease;
}

footer .btn-outline-light:hover {
  background-color: #d2b37f;
  color: #000;
  border-color: #d2b37f;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and smaller laptops */
@media (max-width: 992px) {
  footer ul li {
    display: inline-block;
    margin: 5px 10px;
  }

  footer .btn-outline-light {
    margin-top: 10px;
  }
}

/* Small tablets (max-width: 768px) */
@media (max-width: 768px) {
  footer .row {
    text-align: center;
  }

  footer .col-md-3,
  footer .col-md-9 {
    text-align: center;
  }

  footer img {
    height: 35px;
  }

  footer ul {
    margin-top: 10px;
  }

  footer ul li {
    display: block;
    margin: 5px 0;
  }

  footer .btn-outline-light {
    margin-top: 15px;
  }
}

/* Mobile screens (max-width: 576px) */
@media (max-width: 576px) {
  footer {
    padding: 20px 0;
  }

  footer img {
    height: 30px;
  }

  footer p {
    font-size: 13px;
  }

  footer ul li a {
    font-size: 13px;
  }

  footer .btn-outline-light {
    font-size: 13px;
    padding: 6px 14px;
  }
}


/*  */

/* Unique class for all service banners */
.service-banner-responsive {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* On mobile: hide background image, apply gradient */
@media (max-width: 768px) {
  .service-banner-responsive {
    background: linear-gradient(135deg, #1a1a1a, #3b136b);
    height: auto; /* Allow content to adjust */
    padding: 60px 0;
  }
}

/* Optional: improve text spacing on small screens */
@media (max-width: 576px) {
  .service-banner-responsive h1 {
    font-size: 1.9rem;
  }

  .service-banner-responsive p {
    font-size: 1rem;
  }
}



/* common */

/* Universal Banner Styling */
.service-responsive-banner {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
}

/* CONTENT STYLING */
.service-responsive-banner .text-content {
  z-index: 2;
}

/* Mobile: Remove background image, add clean background color */
@media (max-width: 768px) {
  .service-responsive-banner {
    background-image: none !important;
    background: linear-gradient(135deg, #060606, #060606, #9b4bff) !important;
    padding: 60px 0;
  }
}


/* services - web */

.web-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.web-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* Dark overlay */
}

.web-banner .container {
  position: relative;
  z-index: 2;
}
.web-banner .badge-item {
  background: linear-gradient(90deg, #A26BFF, #C6A3FF);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  color: #000;
  box-shadow: 0 0 15px rgba(178, 108, 255, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .web-banner {
    height: auto;
    padding: 60px 0;
    text-align: center;
  }
  .web-banner h1 {
    font-size: 2.2rem;
  }
  .web-banner p {
    font-size: 1.1rem;
  }
  .badge-item {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


/* service - domain */

#web-hosting {
  background: linear-gradient(135deg, #003b7a 0%, #007bff 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

#web-hosting .title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

#web-hosting .title span {
  color: #b3e0ff;
}

#web-hosting .description {
  font-size: 1.05rem;
  margin: 20px 0;
  color: #e2e2e2;
  line-height: 1.7;
}

#web-hosting .subtitle {
  font-weight: 600;
  font-size: 1.25rem;
  color: #b3e0ff;
  margin-bottom: 15px;
}

#web-hosting .offer-list {
  list-style: none;
  padding: 0;
}

#web-hosting .offer-list li {
  font-size: 1rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

#web-hosting .offer-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-size: 1.3rem;
}

#web-hosting .btn-group .info-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #b3e0ff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  margin-right: 10px;
  transition: all 0.3s ease;
}

#web-hosting .btn-group .info-btn:hover {
  background: #b3e0ff;
  color: #003b7a;
}

.model-img {
  max-width: 95%;
  transition: transform 0.4s ease;
}

.model-img:hover {
  transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  #web-hosting .title {
    text-align: center;
    font-size: 2.3rem;
  }
  #web-hosting .description, #web-hosting .subtitle {
    text-align: center;
  }
  #web-hosting .btn-group {
    justify-content: center;
    display: flex;
  }
  .model-img {
    margin-top: 25px;
  }
}


/* cloud */



.cloud-banner .main-title {
  font-size: 5rem;
  font-weight: 800;
  /* color: #00a9e0; */
  margin-bottom: 5px;
}

.cloud-banner .main-title span {
  color: #3d8bfd;
}

.cloud-banner .sub-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 5px;
}

.cloud-banner .desc {
  font-size: 1rem;
  margin-top: 5px;
  max-width: 480px;
}

/* Responsive */
@media (max-width: 991px) {
  .cloud-banner {
    height: auto;
    padding: 70px 0;
    text-align: center;
  }
  .cloud-banner .main-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .cloud-banner .main-title {
    font-size: 1.9rem;
  }
  .cloud-banner .sub-title {
    font-size: 1rem;
  }
}

/* services - cyber */

.cybersecurity-banner {
  background: url('./img/services/banner/cybersecurity-banner.png') center center/cover no-repeat;
  height: 90vh;
  display: flex;
  color: #a8faff;
  position: relative;
}

.cybersecurity-banner .logo {
  width: 180px;
}

.cybersecurity-banner .main-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #53e8f6;
}

.cybersecurity-banner .sub-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 10px;
  color: #8fefff;
}

.cybersecurity-banner .email {
  margin-top: 25px;
  font-size: 1.1rem;
  color: #9bddff;
  letter-spacing: 1px;
}

.cyber-img {
  max-width: 420px;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #5bfcff;
  margin-bottom: 15px;
  text-transform: uppercase;
}


/* ✅ Responsive Layout */
@media (max-width: 991px) {
  .cybersecurity-banner {
    height: auto;
    padding: 70px 0;
    text-align: center;
  }
  .cybersecurity-banner .main-title {
    font-size: 2.4rem;
  }
  .cyber-img {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .cybersecurity-banner .main-title {
    font-size: 1.9rem;
  }
  .cybersecurity-banner .sub-title {
    font-size: 1.1rem;
  }
  .cyber-img {
    max-width: 240px;
  }
}


/* services - digital */

.digital-banner {
  background: url("./img/services/banner/digital-banner.png") center center/cover no-repeat;
  height: 90vh;
  color: #004b57;
  position: relative;
}

.text-content {
  padding-top: 60px;
}

.small-title {
  font-size: 32px;
  color: #d64221;
  font-weight: 700;
}

.main-title {
  font-size: 70px;
  font-weight: 800;
  color: #006b78;
  line-height: 1.1;
}

.services-box {
  margin-top: 25px;
}

.services-title {
  font-size: 22px;
  font-weight: 700;
  color: #d64221;
}

.services-title span {
  color: #006b78;
}

.digital-banner .services-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.digital-banner .services-list li {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* ✅ Responsive */
@media (max-width: 991px) {
  .digital-banner {
    height: auto;
    padding: 80px 0;
    background-position: right;
  }

  .main-title {
    font-size: 50px;
  }

  .small-title {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .main-title {
    font-size: 38px;
  }

  .small-title {
    font-size: 22px;
  }

  .digital-banner .services-list li {
    font-size: 16px;
  }
}


/* service-backup */

/* ✅ BACKUP BANNER WITH BACKGROUND IMAGE */
/* .backup-banner {
  background: url('./img/fresh/services/disaster-banner.png') center/cover no-repeat;
  height: 90vh;
  color: #0a2a5d;
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
} */

/* TEXT STYLING */

/* MAIN TITLE */
.sub-title {
  font-size: 5rem;
  font-weight: 800;
  color: #00a9e0;
  margin-bottom: 10px;
}

.sub-title span {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
  color: #04a191;
}

/* DESCRIPTION */
.description {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
  color: #fff;
  max-width: 480px;
}

/* FEATURES BLOCK */
.features {
  display: flex;
  gap: 30px;
  margin-top: 25px;
}

.feature-item {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
}

/* ICONS */
.feature-item i {
  font-size: 55px;
  color: #0072ff;
  margin-bottom: 10px;
}

.feature-item p {
 color: #fff;
}

/* ✅ RESPONSIVE BREAKPOINTS */

/* 🔹 Large Tablets and Small Laptops */
@media (max-width: 1024px) {
  .sub-title {
    font-size: 4rem;
  }
  .sub-title span {
    font-size: 48px;
  }
  .description {
    font-size: 17px;
  }
}

/* 🔹 Tablets */
@media (max-width: 768px) {
  .sub-title {
    font-size: 3.2rem;
    text-align: center;
  }

  .sub-title span {
    font-size: 42px;
  }

  .description {
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
  }

  .features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .feature-item i {
    font-size: 50px;
  }
}

/* 🔹 Mobile Phones */
@media (max-width: 576px) {
  .sub-title {
    font-size: 2.4rem;
  }

  .sub-title span {
    font-size: 34px;
  }

  .description {
    font-size: 15px;
  }

  .feature-item i {
    font-size: 45px;
  }

  .feature-item {
    font-size: 14px;
  }
}


/* service - custom */

/* ===============================
   CUSTOM SOFTWARE BANNER
================================ */
.custom-dev-banner {
  background: url('./img/services/banner/custom-banner.png') center/cover no-repeat;
  height: 90vh;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* TEXT AREA */
.banner-title {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.1;
}

.line {
  width: 180px;
  height: 18px;
  margin-top: 18px;
  background: linear-gradient(90deg, #ffcc32, #ffffff);
  border-radius: 4px;
}

/* BOT IMAGE IF USED */
.banner-bot-img {
  max-width: 90%;
  animation: float 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .custom-dev-banner {
    height: auto;
    padding: 80px 0;
    text-align: center;
  }
  .banner-title {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 42px;
  }
  .line {
    width: 140px;
    height: 14px;
    margin: 12px auto 0;
  }
  .banner-bot-img {
    display: none; /* hidden on small screens if background bot already exists */
  }
}


/* services - seo */

.proseo-banner {
  background: url('./img/services/banner/seo-banner.png') center/cover no-repeat;
  height: 90vh;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  position: relative;
  display: flex;
  align-items: center;
}

/* TEXT STYLES */
.proseo-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
}

.proseo-title span {
  color: #65b4ff;
  font-weight: 700;
}

.proseo-tagline {
  font-size: 22px;
  font-weight: 300;
  margin: 25px 0;
  max-width: 420px;
}

.proseo-contact p {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.9;
}

/* ✅ RESPONSIVE */
@media (max-width: 1024px) {
  .proseo-banner {
    height: auto;
    padding: 80px 0;
    text-align: center;
  }
  .proseo-title {
    font-size: 54px;
  }
  .proseo-tagline {
    margin: 20px auto;
  }
}

@media (max-width: 768px) {
  .proseo-title {
    font-size: 42px;
  }
  .proseo-tagline {
    font-size: 18px;
  }
  .proseo-contact p {
    font-size: 16px;
  }
}

/*  */



/* FAQ Dark Theme */
.faq-section {
  background: #000; /* Black background */
  color: #fff; /* White text */
}

/* FAQ Title */
.faq-title {
  color: #d2b37f;
  font-size: 32px;
  font-weight: 600;
}

/* Accordion Container */
.accordion-item {
  background-color: #111;
  border: 1px solid #333;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

/* Accordion Header Buttons */
.accordion-button {
  background-color: #111;
  color: #fff;
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  background-color: #000;
  color: #d2b37f;
  border-bottom: 1px solid #333;
}

/* Remove default blue focus ring */
.accordion-button:focus {
  box-shadow: none;
  border-color: #d2b37f;
}

/* Accordion Body */
.accordion-body {
  background-color: #0e0e0e;
  color: #ddd;
  padding: 1rem 1.25rem;
}

/* Gold border on active item */
.accordion-button:not(.collapsed)::after {
  filter: invert(73%) sepia(21%) saturate(550%) hue-rotate(5deg) brightness(95%) contrast(87%);
}


/*  */

  .shalom-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #d2b37f;
    margin-top: 10px;
    transition: 0.3s ease-in-out;
    text-decoration: none;
  }

  .shalom-explore-btn i {
    transition: transform 0.3s ease-in-out;
  }

  .shalom-explore-btn:hover i {
    transform: translateX(4px);
  }

  .shalom-explore-btn:hover {
    color: #f1c98e;
  }

  /*  */

  .industries-banner {
    position: relative;
  }
  
  .industry-card {
    background: #111;
    border: 1px solid #222;
    transition: 0.3s ease;
  }
  
  .industry-card:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
  }
  
  .industry-explore-btn {
    color: #d2b37f;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .industry-explore-btn:hover {
    color: #fff;
    padding-left: 5px;
  }
  