body {
  background: #fff;
  font-family: "", sans-serif;;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: #6c757d; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

h1, h2, h3, h4, h5 {
  color: #000;
  font-family: "Open Sans", sans-serif; }

.btn, .form-control {
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.btn.btn-primary {
  color: #fff;
  border-width: 2px; 
  border-color: #ea1f25;
  background: #ea1f25;
}
  .btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus {
    border-color: #f56c71;
    background: #f56c71; }

.btn.btn-sm {
  font-size: 12px; }

.btn.btn-outline-primary {
  border-width: 1px;
  color: #a84b4e; 
  border-color: #ea1f25;
}
  .btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus, .btn.btn-outline-primary:active {
    color: #fff; 
    background: #ea1f25;
  }

.btn.btn-outline-white {
  border-width: 2px;
  border-color: #fff;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .2em; }
  .btn.btn-outline-white:hover, .btn.btn-outline-white:focus {
    background: #fff;
    color: #000; }


     

    /* Chatbot with WhatsApp Fallback*/


    .chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Positions the container on the right */
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligns children (icon and window) to the right */
    z-index: 1000;
}

.chat-icon-container {
    cursor: pointer;
}

/* Ensure the chat window stays visible when opened */
.chat-window[style*="display: flex"] {
    display: flex !important;
}

    .chat-container {
      position: fixed;
      bottom: 80px;
      left: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
    }
    
    .chat-icon-container {
      cursor: pointer;
      margin-bottom: 10px;
    }
    
    .chat-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #ea1f25; /* Red for icon */
      color: white;
      font-size: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
    }
    
    .chat-icon:hover {
      background-color: #c9181f; /* Darker red on hover */
    }
    
    .chat-window {
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      width: 320px;
      max-height: 500px;
      overflow-y: auto;
      display: none;
      flex-direction: column;
      padding: 10px;
      border: 1px solid #ddd;
      animation: slideIn 0.3s ease-out;

      display: none; /* Hidden by default, as in your JS logic */
      position: absolute;
      bottom: 80px; /* Adjust to position above the chat icon */
      right: 0; /* Aligns the chat window to the right edge */
      width: 300px; /* Adjust width as needed */
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      flex-direction: column;
    }
    
    @keyframes slideIn {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1;
       }
    }
    
    .chat-header {
      padding: 10px;
      background-color: #ea1f25; /* Red header */
      color: white;
      border-bottom: 1px solid #ddd;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .chat-header .close-btn {
      cursor: pointer;
      font-size: 1.2em;
      color: white;
    }
    
    .chat-header .close-btn:hover {
      color: #ff4444; /* Lighter red for close button hover */
    }
    
    .chat-messages {
      flex-grow: 1;
      padding: 15px;
      overflow-y: auto;
    }
    
    .message {
      margin-bottom: 15px;
      display: flex;
      flex-direction: column;
      animation: fadeIn 0.3s ease-in;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    .sender {
      font-size: 0.9em;
      color: #555;
      margin-bottom: 5px;
    }
    
    .user .message-content {
      background-color: #ffebee; /* Light red background for user messages */
      border-radius: 10px;
      padding: 12px;
      margin-left: auto;
      margin-right: 0;
      max-width: 75%;
      text-align: right;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .bot .message-content {
      background-color: #fff3f3; /* Very light red for bot messages */
      border-radius: 10px;
      padding: 12px;
      margin-left: 0;
      margin-right: auto;
      max-width: 75%;
      text-align: left;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .bot.typing .message-content::after {
      content: "Typing...";
      color: #888;
      font-style: italic;
      animation: blink 1s infinite;
    }
    
    @keyframes blink {
      50% { opacity: 0; }
    }
    
    .message-options {
      display: flex;
      flex-direction: column;
      margin-top: 10px;
      gap: 5px;
    }
    
    .option-button {
      padding: 10px 15px;
      background-color: #f56c71; /* Red buttons */
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      width: 100%;
      text-align: left;
    }
    
    .option-button:hover {
      background-color: #c9181f; /* Darker red on hover */
    }
    
    .whatsapp-fallback {
      margin-top: 10px;
      padding: 10px;
      background-color: #fff;
      border-top: 1px solid #ddd;
      text-align: center;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      font-size: 0.9em;
    }
    
    .whatsapp-link {
      display: inline-flex;
      align-items: center;
      color: #25d366; /* Red for WhatsApp link */
      text-decoration: none;
      font-weight: bold;
    }
    
    .whatsapp-icon-small {
      width: 20px;
      height: 20px;
      margin-right: 5px;
    }
    
    .input-area {
      display: flex;
      margin-top: 10px;
      gap: 5px;
    }
    
    .input-area input {
      flex: 1;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1em;
    }
    
    .input-area button {
      padding: 10px 15px;
      background-color: #ff2600; /* Red send button */
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: flex;
      align-items: center;
    }
    
    .input-area button:hover {
      background-color: #ea1f25; /* Darker red on hover */
    }
    
    .input-area button::after {
      content: "✈";
      font-size: 1.2em;
      margin-left: 5px;
    }
    
    @media (max-width: 600px) {
      .chat-window {
        width: 90%;
        left: 5%;
      }
    }
    /* End Chatbot with WhatsApp Fallback*/

    

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2800;
  background: white;
  height: 60px; /* Reduced from 80px */
}

header .navbar {
  padding-top: 0.2rem; /* Reduced from 0.3rem */
  padding-bottom: 0.2rem;
  background: white !important;
}

header .navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-300%); /* Kept as original */
}

header .navbar-brand img {
  max-height: 80px; /* Reduced from 100px */
  width: 140px; /* Reduced from 180px */
  display: block;
}

header .navbar .nav-link {
  padding: 0.8rem 0.6rem !important; /* Reduced from 1rem 0.8rem */
}

@media (max-width: 1199.98px) {
  header .navbar {
    background: white !important;
    padding-top: 0.3rem; /* Reduced from 0.4rem */
  }

  header .navbar-brand {
    position: relative;
    left: auto;
    transform: none;
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  header .navbar .nav-link {
    padding: 0.4rem 0rem !important; /* Reduced from 0.6rem 0rem */
  }
}
/* Prevent content overlap */
main, .site-content {
  padding-top: 90px; /* Adjust based on header height (70px logo + padding) */
}

@media (max-width: 1199.98px) {
  main, .site-content {
    padding-top: 80px; /* Slightly less for mobile */
  }
}

/* CTA Overlap */
.cta-overlap {
  margin-bottom: -4em;
  position: relative;
  z-index: 100; /* Below header (z-index: 2000) */
}

.cta-overlap .text {
  background: #ea1f25;
  padding: 3em 2em;
  -webkit-box-shadow: 0 1px 30px -4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 30px -4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
  .cta-overlap .text {
    padding: 30px 15px;
    display: block !important;
    text-align: center;
  }
}

.cta-overlap .text h2 {
  margin-bottom: 0;
  color: #fff;
}

@media (max-width: 991.98px) {
  .cta-overlap .text h2 {
    margin-bottom: 20px;
    font-size: 26px;
  }
}

/* Custom Icon */
.custom-icon {
  font-size: 70px;
  color: #007bff;
}
  /* Consultation Card HTML */
  .consultation-card {
    position: absolute;
    top: 120px; /* adjust top position */
    right: 30px; /* position card to the right side */
    width: 320px; /* fixed width */
    background-color: #ffffff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    z-index: 999; /* make sure it stays on top */
  }

  .consultation-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }

  .consultation-card h4 i {
    margin-right: 10px;
    color: #ea1f25;
  }

  .consultation-card input,
  .consultation-card textarea {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
  }

  .consultation-card .btn {
    background-color:  #ea1f25;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    border-radius: 5px;
    font-weight: 600;
  }

  .consultation-card .note {
    font-size: 12px;
    color: gray;
    margin-top: 10px;
  }

  /* Responsive for smaller screens */
  @media (max-width: 768px) {
    .consultation-card {
      position: relative;
      top: auto;
      right: auto;
      margin: 20px auto;
    }
  }

  /*Recent Projects */

  .project-carousel {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    align-items: center;
    position: relative;
  }
  
  .project-carousel-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .project-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    text-align: center;
    width: 250px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
  }
  
  .project-images {
    display: flex;
    margin-bottom: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 60%;
  }
  
  .project-images img {
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 0.5rem;
    scroll-snap-align: start;
  }
  
  .project-images img:last-child {
    margin-right: 0;
  }
  
  .project-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .project-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
  }
  
  .carousel-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    align-items: center;
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.2s ease;
  }
  
  .carousel-arrow:hover {
    background-color: #aaa;
  }
  
  .carousel-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }
  
  #prev-project {
    left: 0;
  }
  
  #next-project {
    right: 0;
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 95%;
    max-height: 95vh;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
  }
  
  .modal-header h2 {
    margin: 0;
    font-size: 2.5rem;
    color: #333;
  }
  
  .close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
    border: none;
    background-color: transparent;
  }
  
  .close-button:hover,
  .close-button:focus {
    color: #333;
    text-decoration: none;
  }
  
  .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    overflow-y: auto;
    max-height: 70vh;
  }
  
  .modal-body img {
    width: 80%;
    max-height: 50vh;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  
  
  .modal-footer {
    text-align: center;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .modal-project-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .modal-project-location {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
  }
  
  .modal-description {
    font-size: 1rem;
    color: #444;
    text-align: justify;
    margin-top: 1rem;
    line-height: 1.7;
    padding: 0 5rem;
  }
  
  
  @media (max-width: 768px) {
    .project-images img {
      flex: 0 0 100%;
      width: 100%;
    }
  
    .project-images {
      flex-wrap: nowrap;
    }
  
    .project-card {
      width: 90%;
      height: auto;
    }
  
    .carousel-nav {
      margin-top: 1rem;
    }
  
    .carousel-arrow {
      position: static;
      transform: translateY(0);
    }
    .modal-body {
      grid-template-columns: 1fr;
      max-height: 80vh;
    }
    .modal-content{
      margin: 2% auto;
    }
  
    .modal-header h2{
      font-size: 2rem;
    }
    .modal-project-title{
      font-size: 1.5rem;
    }
    .modal-description{
      padding: 0 1rem;
    }
  }
  
  @media (min-width: 768px) {
    .project-carousel {
      scroll-snap-type: none;
      overflow-x: auto;
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
    }
  
    .project-carousel-item {
      flex: 0 0 33.33%;
      width: 33.33%;
      padding-left: 1rem;
      padding-right: 1rem;
      scroll-snap-align: none;
    }
  
    .project-images {
      overflow-x: auto;
      display: flex;
    }
  
    .project-images img {
      flex: 0 0 100%;
      width: 100%;
      height: 200px;
    }
  
    .project-card {
      margin: 0 0.5rem;
      width: 300px;
      height: 400px;
    }
  
    .carousel-nav {
      display: flex;
      width: 100%;
      justify-content: space-between;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }
  
    .carousel-nav .carousel-arrow {
      position: static;
      transform: translateY(0);
    }
  
  
    #prev-project {
      left: -70px;
    }
  
    #next-project {
      right: -70px;
    }
  }
  
  @media (min-width: 1200px) {
    .project-carousel-item {
      flex: 0 0 33.33%;
      width: 33.33%;
    }
  }
   /*End Recent Projects */

    /* quotation-btn */

    /* Default styling for other nav items (Projects, Floor Plans, About, Contact) */
.nav-item .linkred span {
  color: #000; /* Default text color for other links */
  padding: 10px 15px; /* Default padding */
}

   .quotation-btn {
    background-color: #ea1f25; /* bright red background */
    color: white; /* white text */
    border: none; /* remove the border if needed */
    border-radius: 4px; /* optional: smooth corners */
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .quotation-btn:hover {
    background-color: #c9181f; /* darker red on hover */
    color: white; /* keep white text on hover */
  }
  
   /* End quotation-btn */

   /*Inline Styles for Services Section */
   
     .service-card {
       position: relative;
       border-radius: 8px;
       overflow: hidden;
       box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
       background: #fff;
       perspective: 1000px;
       transition: transform 0.3s ease, box-shadow 0.3s ease;
     }
 
     .service-card:hover {
       transform: translateY(-5px);
       box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
     }
 
     .service-card-inner {
       position: relative;
       padding: 2rem;
       background: #f8f9fa;
       display: flex;
       justify-content: center;
       align-items: center;
       height: 120px;
     }
 
     .service-card-inner .icon {
       font-size: 3rem;
       color: #e57373;
       transition: transform 0.3s ease;
     }
 
     .service-card:hover .icon {
       transform: scale(1.1);
     }
 
     .holographic-layer {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(
         45deg,
         rgba(229, 115, 115, 0.2),
         rgba(255, 255, 255, 0.3),
         rgba(229, 115, 115, 0.2)
       );
       background-size: 200% 200%;
       opacity: 0.5;
       pointer-events: none;
       transition: background-position 0.1s ease, opacity 0.3s ease;
     }
 
     .service-card:hover .holographic-layer {
       opacity: 0.7;
     }
 
     .service-details {
       padding: 1.5rem;
       background: #fff;
     }
 
     .service-details h3 {
       font-size: 1.5rem;
       font-weight: 700;
       margin-bottom: 0.75rem;
       transition: color 0.3s ease;
     }
 
     .service-card:hover h3 {
       color: #e57373;
     }
 
     .service-details p {
       font-size: 0.9rem;
       color: #555;
       margin-bottom: 1rem;
     }
 
     .read-more-btn {
       border-color: #e57373;
       color: #e57373;
       transition: all 0.3s ease;
     }
 
     .read-more-btn:hover {
       background-color: #e57373;
       color: #fff;
       animation: pulse 1s infinite;
     }
 
     @keyframes pulse {
       0% { transform: scale(1); }
       50% { transform: scale(1.05); }
       100% { transform: scale(1); }
     }
 
     .holographic-btn {
       position: relative;
       background: #fff;
       color: #e57373;
       border: 2px solid transparent;
       border-image: linear-gradient(45deg, rgba(229, 115, 115, 0.5), rgba(255, 255, 255, 0.5), rgba(229, 115, 115, 0.5)) 1;
       transition: all 0.3s ease;
       overflow: hidden;
     }
 
     .holographic-btn:hover {
       background: #e57373;
       color: #fff;
       border-image: none;
       box-shadow: 0 4px 12px rgba(229, 115, 115, 0.3);
     }
 
     .holographic-btn::after {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(
         90deg,
         transparent,
         rgba(255, 255, 255, 0.2),
         transparent
       );
       transition: left 0.5s ease;
     }
 
     .holographic-btn:hover::after {
       left: 100%;
     }
 
     /* Responsive Design */
     @media (max-width: 576px) {
       .service-card-inner {
         height: 100px;
       }
       .service-card-inner .icon {
         font-size: 2.5rem;
       }
       .service-details h3 {
         font-size: 1.3rem;
       }
     }
     
     /*End section button effect  */


/*pricing-packages */

  /* Shared styles for all cards */
  .pricing-card {
    position: relative;
    width: 100%;
    max-width: 300px;
    min-height: 450px;
    margin: 30px auto;
    padding: 60px 25px 25px;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;

    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    transition: transform 0.3s ease;
}


        .pricing-card:hover {
            transform: translateY(-5px);
        }
        .pricing-card h2 {
            position: absolute;
            top: -14px; /* Fine-tuned to ensure titles cut the 4px border at the same level */
            left: 50%;
            transform: translateX(-50%);
            margin: 30;
            font-size: 24px;
            padding: 0 10px;
            line-height: 1;
            background-color: #fff;
        }
        .pricing-card .price {
            font-size: 36px;
            font-weight: bold;
            margin: 15px 0;
            color: #000;
        }
        .pricing-card .price span {
            font-size: 16px;
            font-weight: normal;
            display: block;
        }
        .pricing-card .choose-btn {
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 16px;
            cursor: pointer;
            margin: 15px 0;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .pricing-card .choose-btn:hover {
            transform: scale(1.05);
        }
        .pricing-card .description {
            font-size: 15px;
            color: #666;
            margin: 15px 0;
            line-height: 1.5;
        }
        .pricing-card .options {
            font-size: 15px;
            font-weight: bold;
            text-transform: uppercase;
            margin: 25px 0 10px;
        }
        .pricing-card .options-box {
            background-color: #e0e0e0;
            padding: 12px;
            border-radius: 5px;
            font-size: 15px;
            color: #666;
            line-height: 1.5;
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        /* Specific styles for Basic card */
        .basic-card {
            border: 4px solid #000080;
        }
        .basic-card h2 {
            color: #000080;
        }
        .basic-card .choose-btn {
            background-color: #000080;
            color:  #fff;
        }
        .basic-card .choose-btn:hover {
            background-color: #f24b4b;
        }

        /* Specific styles for Silver card */
        .silver-card {
            border: 4px solid #4e006e;
        }
        .silver-card h2 {
            color: #4e006e;
        }
        .silver-card .choose-btn {
            background-color: #000080;
            color: #fff;
        }
        .silver-card .choose-btn:hover {
            background-color: #ea5454;
        }

        /* Specific styles for Gold card */
        .gold-card {
            border: 4px solid #ea1f25;
        }
        .gold-card h2 {
            color: #ea1f25;
        }
        .gold-card .choose-btn {
            background-color: #000080;
            color: #fff;
        }
        .gold-card .choose-btn:hover {
            background-color:  #ea5454;
        }



/* Contact Page/Consulting */

body {
  font-family: Arial, sans-serif;
  background-color: #f4f7f6;
}
.section {
  padding: 6px 0;
}
.heading {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}
.form-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}
.form-group {
  margin-bottom: 20px;
}
.form-control {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
}

.toggle-switch {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.toggle-switch input {
  display: none;
}
.toggle-switch label {
  position: relative;
  width: 50px;
  height: 25px;
  background-color: #ccc;
  border-radius: 25px;
  margin-left: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.toggle-switch label::after {
  content: '';
  position: absolute;
  width: 21px;
  height: 21px;
  background-color: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
}
.toggle-switch input:checked + label {
  background-color: #28a745;
}
.toggle-switch input:checked + label::after {
  transform: translateX(25px);
}
.btn-consult {
  background-color: #ea1f25;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1.1rem;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
}

.terms-text {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
  text-align: center;
}

.contact-info p {
  color: #666;
}


     /* End Contact page/Consulting*/

   
     /*Inline Styles for Services Section*/

   .service-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
    perspective: 1000px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  .service-card-inner {
    position: relative;
    padding: 2rem;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
  }
  .service-card-inner .icon {
    font-size: 3rem;
    color: #e57373;
    transition: transform 0.3s ease;
  }
  .service-card:hover .icon {
    transform: scale(1.1);
  }
  .holographic-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      45deg,
      rgba(229, 115, 115, 0.2),
      rgba(255, 255, 255, 0.3),
      rgba(229, 115, 115, 0.2)
    );
    background-size: 200% 200%;
    opacity: 0.5;
    pointer-events: none;
    transition: background-position 0.1s ease, opacity 0.3s ease;
  }
  .service-card:hover .holographic-layer {
    opacity: 0.7;
  }
  .service-details {
    padding: 1.5rem;
    background: #fff;
  }
  .service-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
  }
  .service-card:hover h3 {
    color: #e57373;
  }
  .service-details p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
  }
  .read-more-btn {
    border-color: #e57373;
    color: #e57373;
    transition: all 0.3s ease;
  }
  .read-more-btn:hover {
    background-color: #e57373;
    color: #fff;
    animation: pulse 1s infinite;
  }
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  .holographic-btn {
    position: relative;
    background: #fff;
    color: #e57373;
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, rgba(229, 115, 115, 0.5), rgba(255, 255, 255, 0.5), rgba(229, 115, 115, 0.5)) 1;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  .holographic-btn:hover {
    background: #e57373;
    color: #fff;
    border-image: none;
    box-shadow: 0 4px 12px rgba(229, 115, 115, 0.3);
  }
  .holographic-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s ease;
  }
  .holographic-btn:hover::after {
    left: 100%;
  }
  /* Responsive Design */
  @media (max-width: 576px) {
    .service-card-inner {
      height: 100px;
    }
    .service-card-inner .icon {
      font-size: 2.5rem;
    }
    .service-details h3 {
      font-size: 1.3rem;
    }
  }

  /*End Inline Styles for Services Section*/
/* Owl Carousel */
.owl-carousel .owl-item {
  opacity: .4; }
  .owl-carousel .owl-item.active {
    opacity: 1; }

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -10px; }
    .owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-prev:focus, .owl-carousel .owl-nav .owl-prev:active,
    .owl-carousel .owl-nav .owl-next:hover,
    .owl-carousel .owl-nav .owl-next:focus,
    .owl-carousel .owl-nav .owl-next:active {
      outline: none; }
    .owl-carousel .owl-nav .owl-prev span:before,
    .owl-carousel .owl-nav .owl-next span:before {
      font-size: 40px; }
  .owl-carousel .owl-nav .owl-prev {
    left: 30px !important; }
  .owl-carousel .owl-nav .owl-next {
    right: 30px !important; }

.owl-carousel .owl-dots {
  text-align: center; }
  .owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    background: #e6e6e6; }
    .owl-carousel .owl-dots .owl-dot.active {
      background: #ea1f25; }

.owl-carousel.home-slider {
  z-index: 1;
  position: relative; }
  .owl-carousel.home-slider .owl-nav {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
    .owl-carousel.home-slider .owl-nav button {
      color: #fff; }
  .owl-carousel.home-slider:focus .owl-nav, .owl-carousel.home-slider:hover .owl-nav {
    opacity: 1;
    visibility: visible; }
  .owl-carousel.home-slider .slider-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: calc(100vh - 117px);
    min-height: 700px; }
    .owl-carousel.home-slider .slider-item .slider-text {
      color: #fff;
      height: calc(100vh - 117px);
      min-height: 700px; }
      .owl-carousel.home-slider .slider-item .slider-text h1 {
        font-size: 3rem;
        color: lightcoral;
        line-height: 1.2;
        font-weight: 800 !important;
        text-transform: uppercase; }
        @media (max-width: 991.98px) {
          .owl-carousel.home-slider .slider-item .slider-text h1 {
            font-size: 40px; } }
      .owl-carousel.home-slider .slider-item .slider-text p {
        font-size: 20px;
        line-height: 1.5;
        font-weight: 300;
        color: white; }
  .owl-carousel.home-slider.inner-page .slider-item {
    height: calc(50vh - 117px);
    min-height: 500px; }
    .owl-carousel.home-slider.inner-page .slider-item .slider-text {
      color: #fff;
      height: calc(50vh - 117px);
      min-height: 500px; }
  .owl-carousel.home-slider .owl-dots {
    position: absolute;
    bottom: 150px;
    width: 100%; }
    .owl-carousel.home-slider .owl-dots .owl-dot {
      width: 18px;
      height: 18px;
      margin: 5px;
      border-radius: 50%;
      background: #e6e6e6;
      background: none;
      outline: none !important;
      position: relative;
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease; }
      .owl-carousel.home-slider .owl-dots .owl-dot span {
        position: absolute;
        width: 20px;
        height: 3px;
        background: rgba(255, 255, 255, 0.5);
        left: 50%;
        top: 50%;
        display: block; }
      .owl-carousel.home-slider .owl-dots .owl-dot.active span {
        background: white; }

.owl-carousel.major-caousel .owl-stage-outer {
  padding-top: 30px;
  padding-bottom: 30px; }

.owl-carousel.major-caousel .owl-nav .owl-prev, .owl-carousel.major-caousel .owl-nav .owl-next {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #495057; }
  .owl-carousel.major-caousel .owl-nav .owl-prev:hover, .owl-carousel.major-caousel .owl-nav .owl-prev:focus, .owl-carousel.major-caousel .owl-nav .owl-next:hover, .owl-carousel.major-caousel .owl-nav .owl-next:focus {
    color: #6c757d;
    outline: none; }
  .owl-carousel.major-caousel .owl-nav .owl-prev.disabled, .owl-carousel.major-caousel .owl-nav .owl-next.disabled {
    color: #dee2e6; }

.owl-carousel.major-caousel .owl-nav .owl-prev {
  left: -60px !important; }

.owl-carousel.major-caousel .owl-nav .owl-next {
  right: -60px !important; }

.owl-carousel.major-caousel .owl-dots {
  bottom: -30px !important;
  position: relative; }

.owl-custom-nav {
  float: right;
  position: relative;
  z-index: 10; }
  .owl-custom-nav .owl-custom-prev,
  .owl-custom-nav .owl-custom-next {
    padding: 10px;
    font-size: 30px;
    background: #ccc;
    line-height: 0;
    width: 60px;
    text-align: center;
    display: inline-block; }

.section {
  padding: 7em 0; }

.cta-link {
  background: #ea1f25;
  padding: 3.5em 0 3em 0;
  display: block;
  text-align: center; }
  .cta-link:focus, .cta-link:active {
    outline: none; }
  .cta-link span {
    line-height: 1.2; }
  .cta-link .sub-heading {
    color: #fff;
    display: block;
    font-size: 20px; }
  .cta-link .heading {
    font-size: 50px;
    color: #001933; }
    @media (max-width: 991.98px) {
      .cta-link .heading {
        font-size: 30px; } }
  .cta-link:hover {
    background: #ea1f25; }

.cover_1 {
  background-size: cover;
  background-position: center center;
  padding: 7em 0; }
  .cover_1 .sub-heading {
    color: rgba(255, 255, 255, 0.7);
    font-size: 22px; }
  .cover_1 .heading {
    font-size: 50px;
    color: white;
    font-weight: 300; }

.heading {
  color: #000; }
  .heading.border-bottom {
    position: relative;
    padding-bottom: 30px;
    border-bottom: none !important; }
    .heading.border-bottom:before {
      bottom: 0;
      position: absolute;
      content: "";
      width: 50px;
      height: 2px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      background: #ea1f25; }
    .heading.border-bottom.text-left:before {
      left: 0;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0); }

.text-black {
  color: #000 !important; }

.stretch-section .video {
  display: block;
  position: relative;
  -webkit-box-shadow: 4px 4px 70px -20px rgba(0, 0, 0, 0.5);
  box-shadow: 4px 4px 70px -20px rgba(0, 0, 0, 0.5); }

.media-feature {
  padding: 30px;
  -webkit-transition: .2s all ease-out;
  -o-transition: .2s all ease-out;
  transition: .2s all ease-out;
  background: #fff;
  z-index: 1;
  position: relative;
  border-bottom: 10px solid transparent;
  border-radius: 4px;
  font-size: 15px; }
  .media-feature .icon {
    font-size: 60px;
    color: #ea1f25; }
  .media-feature h3 {
    font-size: 16px;
    text-transform: uppercase; }
  .media-feature:hover, .media-feature:focus {
    -webkit-box-shadow: 0 2px 20px -3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px -3px rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    z-index: 2;
    border-bottom: 10px solid #ea1f25; }

.media-custom {
  background: #fff;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  margin-bottom: 30px; }
  .media-custom .meta-post {
    color: #ced4da;
    font-size: 13px;
    text-transform: uppercase; }
  .media-custom .meta-chat {
    color: #ced4da; }
    .media-custom .meta-chat:hover {
      color: #6c757d; }
  .media-custom:focus, .media-custom:hover {
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2); }
  .media-custom .media-body {
    padding: 30px; }
    .media-custom .media-body h3 {
      font-size: 20px; }
    .media-custom .media-body p:last-child {
      margin-bottom: 0; }

.media-testimonial img {
  width: 100px;
  border-radius: 50%; }

.media-testimonial blockquote p {
  font-size: 20px;
  color: #000;
  font-style: italic; }

.list-unstyled.check li {
  position: relative;
  padding-left: 30px;
  line-height: 1.3;
  margin-bottom: 10px; }
  .list-unstyled.check li:before {
    color: #17a2b8;
    left: 0;
    font-family: "Ionicons";
    content: "\f122";
    position: absolute; }

#modalAppointment .modal-content {
  border-radius: 0;
  border: none; }

#modalAppointment .modal-body, #modalAppointment .modal-footer {
  padding: 40px; }
  .site-footer {
    padding: 5em 0; /* Adjusted top padding */
    background: #222222; /* Dark background color */
    font-size: 13px;
    color: #f2f2f2; /* Default text color */
}

.site-footer p:last-child {
    margin-bottom: 0;
}

.site-footer a {
    color: #ffffff; /* White link color */
}

.site-footer a:hover {
    color: #cccccc; /* Lighter hover color */
}

.site-footer h2.footer-heading {
    font-size: 15px;
    margin-bottom: 20px;
    color: #ffffff; /* White heading color */
    font-weight: bold; /* Make headings bold */
}

.site-footer .list-unstyled li {
    line-height: 1.8; /* Increased line height for better readability */
    margin-bottom: 10px; /* Adjusted margin */
}

.site-footer .list-unstyled a {
    color: #cccccc; /* Lighter link color in lists */
}

.site-footer .list-unstyled a:hover {
    color: #ffffff; /* White hover color for list links */
}

.site-footer hr {
    width: 100%;
    border-top: 1px solid #444444; /* Darker border */
    margin: 2em 0; /* Add some margin above and below the hr */
}

.footer-social a {
  line-height: 1; /* Adjust line height for icons */
  border-radius: 50%;
  margin: 0 8px 8px 0; /* Adjusted margin for spacing */
  border: 1px solid #555555; /* Darker border for social icons */
  width: 30px;
  height: 30px;
  text-align: center;
  display: inline-flex; /* Use flex to center icon */
  align-items: center;
  justify-content: center;
  color: #cccccc; /* Light color for icons */
  font-size: 14px; /* Adjust icon size */
  text-decoration: none; /* Remove default underline */
}

.footer-social a:hover {
  background: #ea1f25; /* Orange hover background */
  border-color: #ea1f25;
  color: #fff;
}

/* Ensure icons inherit styles */
.footer-social a i {
  line-height: 1; /* Match parent line-height */
}

.link-thumbnail {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.link-thumbnail img {
    position: relative;
    -webkit-transition: .8s all ease;
    -o-transition: .8s all ease;
    transition: .8s all ease;
    -webkit-transform: scale(1); /* Start with normal scale */
    -ms-transform: scale(1);
    transform: scale(1);
}

.link-thumbnail .icon {
    position: absolute;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    z-index: 4;
    top: 50%;
    font-size: 30px;
    color: #fff;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    margin-top: 0; /* Reset margin */
}

.link-thumbnail h3 {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 20px; /* Adjust bottom position */
    left: 0;
    color: #fff;
    font-size: 18px;
    -webkit-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
    z-index: 10;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.link-thumbnail:before {
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
}

.link-thumbnail:hover h3 {
    opacity: 1;
    visibility: visible;
    bottom: 0px;
}

.link-thumbnail:hover img {
    -webkit-transform: scale(1.1); /* Slight zoom on hover */
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.link-thumbnail:hover .icon {
    opacity: 1;
    visibility: visible;
    margin-top: 0px;
}

.link-thumbnail:hover:before {
    opacity: 1;
    visibility: visible;
}

.border-t {
    border-top: 1px solid #444444; /* Darker border */
}

.copyright {
    font-size: 14px;
    color: #cccccc; /* Light copyright text color */
    margin-top: 2em; /* Add some top margin */
}

.copyright a {
    color: #ff5722; /* Orange link color for copyright */
}

.copyright a:hover {
    color: #d84315; /* Darker orange on hover */
}

.element-animate {
    opacity: 0;
    visibility: hidden;
}

#loader {
    position: fixed;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s ease-out, visibility 0s linear .2s;
    -o-transition: opacity .2s ease-out, visibility 0s linear .2s;
    transition: opacity .2s ease-out, visibility 0s linear .2s;
    z-index: 1000;
}

#loader.fullscreen {
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background-color: #fff;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#loader.show {
    -webkit-transition: opacity .4s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .4s ease-out, visibility 0s linear 0s;
    transition: opacity .4s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .circular {
    -webkit-animation: loader-rotate 2s linear infinite;
    animation: loader-rotate 2s linear infinite;
    position: absolute;
    left: calc(50% - 24px);
    top: calc(50% - 24px);
    display: block;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

#loader .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: loader-dash 1.5s ease-in-out infinite;
    animation: loader-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

@-webkit-keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}

@keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}


/* Inline Styles for About Section */

  .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  .image-container img {
    display: block;
    width: 100%;
    height: auto;
  }
  .shine-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      45deg,
      rgba(229, 115, 115, 0.2),
      rgba(255, 255, 255, 0.3),
      rgba(229, 115, 115, 0.2)
    );
    background-size: 200% 200%;
    opacity: 0.5;
    pointer-events: none;
    transition: background-position 0.1s ease, opacity 0.3s ease;
  }
  .image-container:hover .shine-layer {
    opacity: 0.7;
    animation: glint 1.5s ease;
  }
  @keyframes glint {
    0% { background-position: -100% 0; }
    50% { background-position: 200% 0; }
    100% { background-position: 200% 0; }
  }
  .text-container {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, rgba(229, 115, 115, 0.5), rgba(255, 255, 255, 0.5), rgba(229, 115, 115, 0.5)) 1;
    transition: transform 0.3s ease;
  }
  .text-container:hover {
    transform: translateY(-5px);
  }
  .text-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    transition: color 0.3s ease;
  }
  .text-container:hover h2 {
    color: #ea1f25;
  }
  .text-container p {
    font-size: 0.9rem;
    color: #555;
  }
  .holographic-btn {
    position: relative;
    background: #fff;
    color: #e57373;       
   border: 2px solid transparent;
    border-image: linear-gradient(45deg, rgba(229, 115, 115, 0.5), rgba(255, 255, 255, 0.5), rgba(229, 115, 115, 0.5)) 1;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  .holographic-btn:hover {
    background: #e57373;
    color: #fff;
    border-image: none;
    box-shadow: 0 4px 12px rgba(229, 115, 115, 0.3);
    animation: pulse 1s infinite;
  }
  .holographic-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s ease;
  }
  .holographic-btn:hover::after {
    left: 100%;
  }
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  .member-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
  }
  .member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: #e57373;
  }
  .member-avatar {
    position: relative;
    padding: 2rem;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    background-image: linear-gradient(45deg, #e0e0e0 25%, transparent 25%), 
                      linear-gradient(-45deg, #e0e0e0 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #e0e0e0 75%), 
                      linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  }
  .avatar-initials {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: #e57373;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }
  .member-card:hover .avatar-initials {
    transform: scale(1.1);
  }
  .holographic-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid transparent;
    border-radius: 50%;
    border-image: linear-gradient(45deg, rgba(229, 115, 115, 0.5), rgba(255, 255, 255, 0.5), rgba(229, 115, 115, 0.5)) 1;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.5s ease;
  }
  .member-card:hover .holographic-ring {
    opacity: 1;
    animation: rotateRing 2s linear infinite;
  }
  @keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  .member-details {
    padding: 1.5rem;
    background: #fff;
  }
  .member-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
  }
  .member-card:hover h3 {
    color: #e57373;
  }
  .member-details .role {
    font-size: 0.9rem;
    color: #e57373;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  .member-details p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0;
  }
  /* Responsive Design */
  @media (max-width: 576px) {
    .text-container h2 {
      font-size: 1.5rem;
    }
    .member-avatar {
      height: 120px;
    }
    .avatar-initials {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
    }
    .holographic-ring {
      width: 80px;
      height: 80px;
    }
    .member-details h3 {
      font-size: 1.3rem;
    }
  }


  /* End Inline Styles for About Section */


/*Footer Details Section*/


.site-footer-details {
  background-color: #333; /* Darker background for this section */
  padding-top: 3em;
  padding-bottom: 3em;
}

.footer-details-heading {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

.footer-details-list li {
  margin-bottom: 8px;
}

.footer-details-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition for hover effect */
}

.footer-details-link:hover {
  color: #fff;
  text-decoration: underline;
}

/*Our Services*/

.below-footer-section {
  background-color: #2e343a; /* Changed to pure black */
  padding-top: 3em;
  padding-bottom: 3em;
}

.section-heading {
  font-weight: bold;
  color: #fff; /* Changed to white */
}

.section-text {
  line-height: 1.7;
  color: #fff; /* Changed to white */
}

.service-list {
  list-style: disc;
  padding-left: 20px;
  color: #fff; /* Changed to white */
}

.service-list li {
  margin-bottom: 10px;
}

.sub-list {
  list-style: circle;
  padding-left: 40px;
  color: #fff; /* Changed to white */
}

.sub-list li {
  margin-bottom: 10px;
}

hr {
  border: none;
  height: 1px;
  background-color: #ccc; /* Light gray or white looks nice on dark */
  opacity: 0.5;           /* Optional: makes it subtle */
}


/* B2B Construction Service */
.b2b-locations-section {
  background-color: #333;
  padding-top: 3rem;
  padding-bottom: 3rem;
  color: #fff;
}

.section-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.sub-heading {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.section-text {
  line-height: 1.7;
  color: #fff;
}

.location-list {
  list-style: none;
  padding-left: 0;
}

.location-item {
  margin-bottom: 0.5rem;
  color: #fff;
}




/* new styles */

.linkred {
   color:black !important;
}

.linkred :hover {
  color:#ea1f25 !important;
}

.linkred .d-inline-block {
  border: 1px solid #ea1f25 !important;
}

.atagred {
  color:#ea1f25 !important;
}