  :root {
    --primary-color: #d32f2f;
    --primary-dark: #b71c1c;
    --secondary-color: #1a1a1a;
    --accent-color: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --gradient: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    --shadow-light: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.15);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* Header Styles */
  .main-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
  }

  .main-header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }

  .navbar-brand h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
  }

  .navbar-brand:hover h4 {
    color: var(--primary-dark);
  }

  /* Navigation Styles */
  .navbar-nav {
    align-items: center;
  }

  .navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    margin: 0 8px;
    padding: 8px 12px !important;
    color: var(--text-dark);
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
  }

  .navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(211, 47, 47, 0.08);
  }

  .navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(211, 47, 47, 0.1);
    font-weight: 600;
  }

  /* Dropdown Styles */
  .dropdown-menu {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin-top: 5px;
    background: white;
  }

  .dropdown-item {
    padding: 8px 16px;
    font-weight: 400;
    color: var(--text-dark);
    transition: all 0.2s ease;
    border-radius: 0;
    font-size: 0.9rem;
  }

  .dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary-color);
  }

  /* Enquiry Button */
  .btn-enquiry {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: none;
  }

  .btn-enquiry:hover {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
  }

  .btn-enquiry i {
    margin-right: 6px;
    font-size: 0.8rem;
  }

  /* Mobile Menu Toggle */
  .navbar-toggler {
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
  }

  .modal-content {
    background: white;
    margin: 8% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
    overflow: hidden;
  }

  .modal-header {
    background: var(--primary-color);
    color: white;
    padding: 20px 25px;
    position: relative;
  }

  .modal-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    margin: 0;
  }

  .close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }

  .close:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .modal-body {
    padding: 25px;
  }

  .modal form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .modal input,
  .modal textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
  }

  .modal input:focus,
  .modal textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.1);
  }

  .modal textarea {
    resize: vertical;
    min-height: 100px;
  }

  .modal button[type="submit"] {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
  }

  .modal button[type="submit"]:hover {
    background: var(--primary-dark);
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-50px) scale(0.95);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  /* Responsive Design */
  @media (max-width: 991.98px) {
    .navbar-collapse {
      background: white;
      margin-top: 10px;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border: 1px solid #e9ecef;
    }

    .navbar-nav .nav-link {
      margin: 3px 0;
      text-align: left;
    }

    .btn-enquiry {
      margin-top: 10px;
      width: auto;
      align-self: flex-start;
    }

    .modal-content {
      margin: 15% auto;
      width: 95%;
    }

    .modal-header,
    .modal-body {
      padding: 20px;
    }
  }

  @media (max-width: 576px) {
    .navbar-brand h4 {
      font-size: 1.3rem;
    }

    .modal-header h2 {
      font-size: 1.2rem;
    }
  }



  .footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
  }

  .footer-link:hover {
    color: #d32f2f;
  }





  
  

  
  

  




  .highlight {
    color: #d32f2f;
    /* red */
  }

  .experience-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    margin: 50px;
    background: white;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-weight: 600;
  }

  .experience-box .years {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 5px;
    margin-right: 20px;
  }

  .experience-arrow {
    background-color: #d32f2f;
    color: white;
    padding: 30px 20px;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-btn {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 2px;
    margin-top: 30px;
  }

  .image-wrapper {
    position: relative;
  }

  .image-wrapper img {
    width: 100%;
    height: auto;
  }



  .section-title {
    text-align: center;
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-weight: 700;
  }

  .section-title span {
    color: var(--primary-color);
    /* Golden accent */
  }

  .section-title .line {
    width: 40px;
    height: 3px;
    background-color: var(--primary-dark);
    margin: 10px auto 0;
  }

  .product-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
  }

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .product-caption {
    color: black;
    text-align: center;
    font-weight: 600;
    padding: 12px;
    font-size: 1.1rem;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .product-wrapper {
    padding: 15px;
  }



  .feature-card {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: 1px solid #333;
  }

  .feature-card:hover {
    background-color: var(--primary-color);
    /* Tan color */
    color: wheat;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  }

  .feature-card .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 15px;
    color: var(--primary-color);
    transition: color 0.3s;
  }

  .feature-card:hover .feature-title {
    color: #fff;
  }

  .feature-description {
    font-size: 0.95rem;
    margin-top: 10px;
  }

  .feature-icon {
    font-size: 2.5rem;
    color: #000;
    transition: color 0.3s;
  }

  .feature-card:hover .feature-icon {
    color: #000;
  }

  .carousel-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s;
  }

  .carousel-card:hover {
    transform: translateY(-5px);
  }

  .card-caption {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
  }

  .card-caption h5 {
    font-weight: 600;
    color: #c0873f;
  }

  .card-caption p {
    font-size: 0.9rem;
    color: #000;
  }

  .card-caption .arrow {
    font-size: 1.5rem;
    display: inline-block;
    margin-top: 10px;
    color: #000;
    transition: transform 0.2s;
  }

  .card-caption .arrow:hover {
    transform: translateY(3px);
  }

  .carousel-indicators [data-bs-target] {
    background-color: #c0873f;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
  }

  .section-white {
    padding: 40px 0;
  }

  .custom-carousel-btn {
    width: 32px;
    height: 32px;
    background-color: #000;
    border-radius: 50%;
    top: 50%;
    padding: 5px;
    transform: translateY(-50%);
    opacity: 0.8;
  }

  .custom-carousel-btn:hover {
    opacity: 1;
  }

  .small-icon {
    width: 16px;
    height: 16px;
    background-size: 100% 100%;
  }






  .slide-content {
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    color: #fff;
    border-left: 4px solid #c48f4c;
  }

  .slide-title {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
  }

  .slide-text {
    font-size: 1.2rem;
    margin: 15px 0;
  }





  #heroCarousel .carousel-item {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
  }

  #heroCarousel .slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    max-width: 500px;
  }

  #heroCarousel .slide-title {
    font-size: 3rem;
    font-weight: bold;
  }

  #heroCarousel .slide-text {
    font-size: 1.2rem;
    margin: 15px 0;
  }

  #heroCarousel .slide-btn {
    border-color: #fff;
    color: #fff;
  }

  #heroCarousel .slide-btn:hover {
    background-color: #fff;
    color: #000;
  }


  .breadcrumb {
    display: flex;

    align-items: center;
    /* Align items vertically */
    gap: 8px;
    font-size: 14px;
    color: #fff;
    /* Assuming white text on red background */
    padding: 8px 0;
  }

  .breadcrumb a {
    text-decoration: none;
    color: #fff;
  }

  .breadcrumb span {
    color: #fdd;
    /* lighter color for separator */
  }

  .contact-section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
  }

  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }

  .contact-box {
    flex: 1 1 30%;
    background: #f5f5f5;
    padding: 20px;
    border: 1px solid #d32f2f;
    border-radius: 8px;
    text-align: center;
  }

  .contact-box .icon {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .contact-box h3 {
    color: #111;
  }

  .contact-box a {
    color: #000;
    text-decoration: none;
  }

  .social-icons a {
    font-size: 24px;
    margin: 0 5px;
  }

  .form-section {
    margin-top: 40px;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
  }

  .form-section h3 {
    text-align: center;
    margin-bottom: 20px;
  }

  .form-section h3 span {
    color: var(--primary-color);
  }

  .contact-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .contact-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .captcha-box {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .contact-form button {
    grid-column: 1 / -1;
    padding: 12px;
    background: var(--primary-color);
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
  }

  .contact-form button:hover {
    background: #fff;
    border: var(--primary-color) 1px solid;
    color: var(--primary-color);
    transition: all 0.3s ease;
  }

  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  }


  .about-section {
    padding: 60px 0;
    margin: 10px;
  }



  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }

  .about-img {
    height: 100%;
    max-height: 100%;
  }

  @media (max-width: 768px) {
    .about-img img {
      height: auto;
      margin-top: 30px;
    }
  }

  .fact-section {
    padding: 80px 0 40px;
    position: relative;
    color: #fff;
  }

  .fact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }

  .fact-section .container {
    position: relative;
    z-index: 2;
  }

  .fact-box {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .fact-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .fact-box i {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .fact-box h6 {
    font-weight: 500;
    margin-bottom: 0;
  }

  .fact-box .bi-chevron-down {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
  }

  .quote-text {
    text-align: center;
    margin-top: 30px;
    font-size: 1rem;
    color: #f1f1f1;
  }

  .quote-text span {
    color: #ffab40;
    font-weight: bold;
  }

  /* Infrastructure & Approach */
  .infra-approach {
    background-color: #ffffff;
    padding: 60px 0;
  }

  .card-custom {
    background-color: #2a2a2a;
    border: none;
    padding: 30px;
    height: 100%;
    border-radius: 8px;
    color: #ddd;
  }

  .card-custom:hover {
    background-color: #3a3a3a;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }




  .card-custom h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
  }


  .card-custom i {
    font-size: 2rem;
    margin-top: 20px;
    color: #fff;
  }

  @media (max-width: 768px) {
    .fact-box {
      margin-bottom: 20px;
    }
  }




  .faq-section h2 {
    font-weight: bold;
    font-size: 2.5rem;
  }

  .faq-section p {
    color: #ccc;
  }

  .accordion-button {
    background-color: #2a2a2a;
    color: #fff;
    font-weight: 600;
    border: none;
    box-shadow: none;
    padding: 1rem 1.25rem;
  }

  .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
  }

  .accordion-body {
    background-color: #2a2a2a;
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
    padding: 1rem 1.25rem;
  }

  .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
  }

  .accordion-button::after {
    color: white;
  }

  .section-divider {
    width: 60px;
    height: 4px;
    background-color: #d32f2f;
    margin: 0 auto 20px;
  }

  .btn-outline-warning {
    color: #fff;
    border-color: var(--primary-color);
    background-color: transparent;
  }

  .btn-outline-warning:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }


  .testimonial-section {
    background-color: #ffffff;
    color: #1a1a1a;
  }



  .highlight-line {
    width: 40px;
    border: 2px solid #d6a350;
    margin-bottom: 20px;
  }



  .testimonial-card {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
    position: relative;
  }

  .testimonial-text {
    font-size: 15px;
    color: #cfcfcf;
    position: relative;
    padding-right: 30px;
  }

  .testimonial-text::after {
    content: "”";
    font-size: 60px;
    position: absolute;
    right: 10px;
    top: -10px;
    color: #5a5a5a;
  }

  .avatar {
    background-color: #fff;
    color: #000;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .client-name {
    color: #d6a350;
    font-weight: bold;
  }

  .page-hero-section {
    background-image: url('https://hips.hearstapps.com/hmg-prod/images/hbx050123napiers-005-preview-642dcd73da1ca.jpg?crop=1.00xw:0.751xh;0,0.185xh&resize=1200:*');
    /* Use correct relative path */
    background-size: cover;
    background-position: center;
    height: 150px;
    /* Reduced height */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .page-hero-section .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark transparent overlay */
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }

  .page-title {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 0;
  }

  .modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
  }

  /* Modal content box */
  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
  }

  /* Close (X) button */
  .modal-content .close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
  }

  /* Form input styles */
  .modal-content input,
  .modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-top: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  /* Submit button */
  .modal-content button {
    margin-top: 15px;
    background-color: #e36464;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
  }

  .fixed-card-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    display: block;
  }

  .tabs {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 15px;
}

.tab-btn {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: #ddd;
  margin: 0 5px;
  font-size: 16px;
  transition: 0.3s;
}

.tab-btn.active {
  background: var(--primary-color);
  color: white;
}

.tab-content {
  display: none;
  transition: opacity 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

/* Video Gallery Styling */
.video-gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 10px;
  justify-content: center;
  gap: 10px;
}

.video-gallery video {
  width: 300px;
  height: auto;
  border-radius: 5px;
}


.img-gallery {

  width: 80%;
  display: grid;
  margin: 50px auto 50px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
}

.img-gallery img {

  max-width: 100%;
  max-height: 100%;
  width: 300px;
  height: 300px;
  transition: 0.3s;
  /* grid-column-start: auto;
  grid-column-end: auto; */
  cursor: pointer;

}


.img-gallery img:hover {

  transform: scale(0.8);
  box-shadow: 0 32px 75px rgba(68, 77, 136, 0.2);
}


.full-img {

  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 100;
  align-items: center;
  justify-content: center;


}


.full-img img {

  width: 90%;
  max-width: 500px;


}



.full-img span {

  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 40px;
  color: white;
  cursor: pointer;
  max-width: 500px;


}

