 :root {
   --primary: #e21b22;
   --secondary: #287742;
   --accent: #f97316;
   --light: #f8fafc;
   --dark: #1e293b;
   --text: #334155;
 }

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body {

   line-height: 1.6;
   overflow-x: hidden;

 }

 body p {
   font-size: 17px;
 }

 /* Custom Navigation */
 .navbar {
   padding:0px !important;
   background-color: white !important;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .navbar-brand {
   font-weight: 700;
   color: var(--primary) !important;
   font-size: 1.8rem;
   display: flex;
   align-items: center;
 }

 .navbar-brand i {
   margin-right: 10px;
   color: var(--accent);
 }

 /* Mobile Navigation */
 .mobile-menu-btn {
   display: none;
   background: transparent;
   border: none;
   font-size: 2.5 rem !important;
   color: var(--primary);
   z-index: 1001;
 }

 .mobile-nav {
   position: fixed;
   top: 28px;
   left: -300px;
   width: 280px;
   height: 100vh;
   background: white;
   box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
   z-index: 1000;
   transition: all 0.4s ease;
   padding-top: 70px;
   overflow-y: auto;
 }

 .mobile-nav.active {
   left: 0;
 }

 .mobile-nav ul {
   list-style: none;
   padding: 0;
 }

 .mobile-nav ul li {
   border-bottom: 1px solid #eee;
 }

 .mobile-nav ul li a {
   display: block;
   padding: 15px 20px;
   text-decoration: none;
   color: var(--dark);
   font-weight: 500;
   transition: all 0.3s;
 }
 .gap-nav{
   gap: 40px;
 }
    .navbar-nav .nav-link {
  position: relative;
  padding-bottom: 5px;
  color: black;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #ff3c3c; /* or your primary brand color */
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #ff3c3c; /* Match your brand's main color */
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  width: 100%;
}

/* Optional: style active link differently */
.navbar-nav .nav-link.active {
  color: #ff3c3c;
  font-weight: 600;
}

.mobile-nav a {
  position: relative;
  display: block;
  padding: 10px 0;
  color: black;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #ff3c3c;
  padding-left: 10px; /* subtle slide-in effect */
}

.mobile-nav a::before {
  content: '➤';
  color: #ff3c3c;
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: opacity 0.3s, left 0.3s;
}

.mobile-nav a:hover::before {
  left: 0;
  opacity: 1;
}

 .mobile-nav ul li a:hover {
   background: #f8f9fa;
   color: var(--primary);
   padding-left: 25px;
 }

 .mobile-nav ul li a i {
   margin-right: 10px;
   width: 20px;
   text-align: center;
 }

 .navbar .nav-link {
   font-size: 18px;
   font-weight: 500;
 }

 .mobile-nav .btn {
   margin: 20px;
   width: calc(100% - 40px);
 }

 /* Overlay for mobile menu */
 .overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   z-index: 999;
   opacity: 0;
   visibility: hidden;
   transition: all 0.4s;
 }

 .overlay.active {
   opacity: 1;
   visibility: visible;
 }

 .qte-btn {
   background-color: var(--primary) !important;
   color: #fff !important;
   border: none !important;
   padding: 0.6rem 1.5rem !important;
   font-weight: 500 !important;
   font-size: 1rem !important;
   border-radius: 6px !important;
   transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
 }

 .qte-btn:hover {
   background-color: var(--secondary) !important;
   transform: translateY(-2px) !important;
   box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1) !important;
   transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
 }


 .hero {
   position: relative;
   background: url('../images/slider/slider1.png') center/cover no-repeat;
   padding: 7rem 0;
   color: white;
   z-index: 1;
   overflow: hidden;
 }

 .hero::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   z-index: -1;
 }


 .hero h1 {
   font-size: 3.5rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 }

 .hero p {
   font-size: 1.3rem;
   margin-bottom: 2rem;
   max-width: 600px;
 }

 .section {
   padding: 5rem 0;
 }

 .section-title {
   position: relative;
   margin-bottom: 3rem;
   text-align: center;
 }

 .section-title h2 {
   font-weight: 700;
   color: var(--primary);
   margin-bottom: 1rem;
 }

 .section-title::after {
   content: '';
   position: absolute;
   width: 80px;
   height: 4px;
   background: var(--accent);
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   border-radius: 2px;
 }

 .card {
   border: none;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
   height: 100%;
 }

 .card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .card-icon {
   width: 70px;
   height: 70px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 1.5rem;
   color: var(--primary);
   font-size: 1.8rem;
 }

 .stats {
   background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
   color: white;
   padding: 4rem 0;
 }

 .stat-number {
   font-size: 3rem;
   font-weight: 700;
   margin-bottom: 0.5rem;
 }

 .portfolio-item {
   position: relative;
   overflow: hidden;
   border-radius: 10px;
   margin-bottom: 1.5rem;
   height: 300px;
 }

 .portfolio-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: all 0.5s ease;
 }

 .portfolio-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(37, 99, 235, 0.8);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   color: white;
   opacity: 0;
   transition: all 0.4s ease;
   padding: 2rem;
   text-align: center;
 }

 .portfolio-item:hover .portfolio-overlay {
   opacity: 1;
 }

 .portfolio-item:hover .portfolio-img {
   transform: scale(1.1);
 }

 .testimonial-card {
   padding: 2rem;
   border-radius: 10px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   margin: 1rem;
   position: relative;
   background: white;
 }

 .testimonial-card::before {
   content: '"';
   position: absolute;
   top: 20px;
   left: 20px;
   font-size: 5rem;
   color: rgba(37, 99, 235, 0.1);
   font-family: Georgia, serif;
   line-height: 1;
 }

 .client-img {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   object-fit: cover;
   margin-right: 1rem;
 }

.contact-section {
  background-color: #f9fafc;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: black;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
}

.divider {
  width: 80px;
  height: 3px;
  margin: 15px auto;
}

.contact-info-card {
  background: white;
  border-top: 3px solid var(--primary);
}

.contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item h5 {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 5px;
}

.contact-item p, .contact-item a {
  color: #666;
  margin-bottom: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.map-container {
  height: 400px;
  background: #eee;
}

.contact-form-card {
  background: white;
  border-top: 3px solid var(--primary);
}

.input-icon {
  left: 20px;
  color: var(--primary);
  font-size: 1.1rem;
}

.form-control {
  padding: 10px 15px 10px 45px;
  border-radius: 6px;
  border: 1px solid #ddd;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
}

.button-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary);
  padding: 10px 25px;
  color: white  !important;
}


 footer {
   background: var(--dark);
   color: white;
   padding: 4rem 0 2rem;
 }

 .social-icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.1);
   color: rgb(17, 133, 228);
   margin-right: 0.5rem;
   transition: all 0.3s ease;
   text-decoration: none;
 }

 .social-icon:hover {
   background: var(--primary);
   transform: translateY(-5px);
 }

 .copyright {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 1.5rem;
   margin-top: 3rem;
   text-align: center;
   color: #94a3b8;
 }

 /* Responsive Adjustments */
 @media (max-width: 992px) {
   .hero h1 {
     font-size: 2.8rem;
   }

   .desktop-nav {
     display: none;
   }

   .mobile-menu-btn {
     display: block;
   }
 }

 @media (max-width: 768px) {
   .hero {
     padding: 5rem 0;
   }

   .hero h1 {
     font-size: 2.3rem;
   }

   .section {
     padding: 4rem 0;
   }
 }

 @media (max-width: 576px) {
   .navbar-brand {
     font-size: 1.5rem;
   }

   .hero h1 {
     font-size: 2rem;
   }

   .hero p {
     font-size: 1.1rem;
   }
 }


 .section-heading {
   font-size: 2rem;
   font-weight: bold;
   color: var(--primary);
   text-align: center;
 }

 .sub-heading {
   color: var(--secondary);
   font-size: 1.25rem;
   font-weight: 600;
 }

 .list-style-custom {
   padding-left: 1.2rem;
   list-style: none;
 }

 .list-style-custom li {
   position: relative;
   margin-bottom: 0.75rem;
   padding-left: 1.5rem;
 }

 .list-style-custom li::before {
   content: "✔";
   color: var(--primary);
   position: absolute;
   left: 0;
   font-weight: bold;
 }

 .site-breadcrumb {
  background: linear-gradient(135deg, #dc2626, #ef4444); /* red gradient */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}


 .site-breadcrumb::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.4);
   /* dark overlay */
   z-index: 0;
 }

 .site-breadcrumb .container {
   position: relative;
   z-index: 1;
 }

 .breadcrumb-title {
   font-size: 36px;
   font-weight: bold;
   color: #fff;
   margin-bottom: 10px;
 }

 .breadcrumb-menu {
   list-style: none;
   padding: 0;
   margin: 0;
   color: #fff;
 }

 .breadcrumb-menu li {
   display: inline-block;
   font-size: 16px;
   color: #fff;
 }

 .breadcrumb-menu li::after {
   content: ">";
   margin: 0 8px;
   color: #fff;
 }

 .breadcrumb-menu li:last-child::after {
   content: "";
 }

 .breadcrumb-menu a {
   color: #fff;
   text-decoration: none;
 }

 .breadcrumb-menu a:hover {
   text-decoration: underline;
 }

 .our-services {
   background-color: #f9fafb;
 }

 .section-title {
   font-size: 36px;
   font-weight: bold;
   color: #2563eb;
 }

 .section-subtitle {
   font-size: 18px;
   color: #555;
 }

 .service-card {
   background: #ffffff;
   border-radius: 12px;
   overflow: hidden;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .service-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .service-img {
   width: 100%;
   height: 200px;
   object-fit: cover;
 }

 .service-content {
   padding: 20px;
   text-align: center;
 }

 .service-title {
   font-size: 20px;
   font-weight: 600;
   color: #287742;
   margin-bottom: 10px;
 }

 .section-header {
   max-width: 800px;
   margin-left: auto;
   margin-right: auto;
 }

 .section-subtitle {
   display: block;
   color: var(--secondary);
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   font-size: 0.875rem;
   margin-bottom: 0.5rem;
 }

 .section-title {
   color: #12263f;
   font-weight: 700;
   margin-bottom: 1rem;
   font-size: 2rem;
 }

 .section-description {
   color: #6e84a3;
   font-size: 1.1rem;
   line-height: 1.6;
 }

 .service-card {
   background: #fff;
   border-radius: 8px;
   overflow: hidden;
   transition: all 0.3s ease;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
   height: 100%;
   display: flex;
   flex-direction: column;
 }

 .service-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(44, 123, 229, 0.15);
 }

 .service-img {
   height: 200px;
   overflow: hidden;
 }

 .service-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
 }

 .service-card:hover .service-img img {
   transform: scale(1.05);
 }

 .service-content {
   padding: 25px;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
 }

 .service-icon {
   width: 50px;
   height: 50px;
   background: linear-gradient(135deg, #2c7be5 0%, #1a4d8c 100%);
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.25rem;
   margin-bottom: 1rem;
 }

 .service-card h3 {
   color: #12263f;
   font-weight: 700;
   font-size: 1.25rem;
   margin-bottom: 0.75rem;
 }

 .service-card p {
   color: #6e84a3;
   margin-bottom: 1rem;
   line-height: 1.5;
   flex-grow: 1;
 }

 .service-features {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .service-features li {
   position: relative;
   padding-left: 25px;
   margin-bottom: 0.5rem;
   color: #12263f;
   font-size: 1rem;
   line-height: 1.5;
 }

 .service-features li i {
   position: absolute;
   left: 0;
   top: 5px;
   color: #00d97e;
   font-size: 0.8rem;
 }

 @media (max-width: 767.98px) {
   .section-title {
     font-size: 1.75rem;
   }

   .service-img {
     height: 180px;
   }
 }

 .custom-form {
   transition: all 0.3s ease;
   border: 1px solid #e0e0e0;
 }

 .custom-form .form-control {
   border-radius: 10px;
   padding: 12px 15px;
   font-size: 15px;
   border: 1px solid #ced4da;
 }

 .custom-form .form-label {
   font-weight: 500;
   font-size: 14px;
 }

 /* Icon Boxes */
 .icon-box {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }

 /* Team Cards */
 .team-card img {
   border: 3px solid var(--primary-blue);
   transition: all 0.3s ease;
 }

 .team-card:hover img {
   transform: scale(1.05);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 /* Counter Boxes */
 .counter-box {
   padding: 20px;
   position: relative;
 }

 .counter-box h3 {
   font-weight: 700;
 }

 /* Text Colors */
 .text-primary-blue {
   color: var(--primary-blue);
 }

 .text-primary-green {
   color: var(--primary-green);
 }


 
 /* Responsive Adjustments */
 @media (max-width: 768px) {
   .hero-section {
     padding: 60px 0;
   }

   .display-4 {
     font-size: 2.5rem;
   }
 }


  .table-hover tbody tr:hover {
  background-color: #f8f9fa;
}


/*  */


 .jay-working-process .jay-process-box {
       background-color: #fff;
       border-radius: 16px;
       transition: all 0.3s ease;
       box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
       border: none;
     }

     .jay-working-process .jay-process-box:hover {
       transform: translateY(-5px);
       box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
     }

     .jay-process-step {
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 10px;
     }

     .jay-process-step .step-badge {
       background-color: var(--primary);
       color: #fff;
       font-size: 14px;
       font-weight: bold;
       padding: 6px 10px;
       border-radius: 6px;
     }

     .jay-process-step .step-icon {
       /* background-color: var(--bs-danger); */
       display: flex;
       align-items: center;
       justify-content: center;
     }

     .line-clamp {
       .clamp-text {
         display: -webkit-box;
         -webkit-box-orient: vertical;
         /* Limit to 3 lines */
         overflow: hidden;
       }
     }


/* Service Card modified */
.pmmx-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.pmmx-service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
}

.pmmx-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pmmx-service-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.pmmx-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pmmx-service-card:hover .pmmx-service-img {
  transform: scale(1.05);
}

.pmmx-service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pmmx-service-body {
  padding: 25px;
}

.pmmx-service-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: black;
}

.pmmx-service-desc {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.pmmx-service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pmmx-service-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.pmmx-service-link:hover {
  color: black;
}

.pmmx-service-link:hover i {
  transform: translateX(3px);
}


  .input-gradient {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        transition: all 0.3s ease;
    }
    
    .input-gradient::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .input-gradient:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.4);
        color: white;
        box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
    }
    
    .form-group.with-icon {
        position: relative;
    }
    
    .form-group.with-icon i {
        position: absolute;
        top: 50%;
        left: 15px; 
        transform: translateY(-50%);
        color: rgb(255, 114, 114);
        z-index: 2;
    }
    
    .form-group.with-icon input,
    .form-group.with-icon textarea {
        padding-left: 40px;
        border-radius: 8px;
    }
    
    .form-group.with-icon textarea {
        padding-top: 12px;
    }
    
    .btn-outline-light:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    .btn-light {
        background-color: white;
        color: var(--primary);
    }
    
    .btn-light:hover {
        background-color: rgba(255, 255, 255, 0.9);
    }

  
      @media only screen and (max-width:520px){
        .mobile-footer {
  position: fixed;
  bottom: 15px;
  left: 0;
  width: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

      }
    