body {
    background-color: #0d0d0d;
}


/* CSS to ensure the animation is perfectly linear (constant speed) */
.swiper-wrapper {
 transition-timing-function: linear !important;
}

/* Styling for the logos */
.brand-logo {
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.3s ease;
  height: 32px; /* Fixed height for all logos */
  width: auto;  /* Width adjusts to maintain aspect ratio */
  object-fit: contain;
}

.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* --- YAHAN NAYA CODE ADD KIYA GAYA HAI --- */

/* Slider container ke liye relative positioning */
.brand-slider {
  position: relative;
}

/* Baayein taraf (left side) ka shadow */
.brand-slider::before,
.brand-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px; /* Shadow ki chaudai (width) */
  z-index: 2;
  pointer-events: none; /* Mouse hover ko kaam karne deta hai */
}

.brand-slider::before {
  left: 0;
  background: linear-gradient(to right, #0d0d0d, rgba(255, 255, 255, 0));
}

.brand-slider::after {
  right: 0;
  background: linear-gradient(to left, #0d0d0d, rgba(255, 255, 255, 0));
}


a[data-text]::after {
content: attr(data-text); /* 'data-text' attribute se text leta hai */
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
color: #ff520e; /* Hover state ka color */

/* Text ko vertically aur horizontally center karta hai */
display: flex;
justify-content: center;
align-items: center;

/* Shuru mein yeh neeche chupa rehta hai */
transform: translateY(100%);
transition: transform 0.5s ease-in-out;
}

/* Jab parent 'a' tag par hover ho, to '::after' element apni jagah par aa jata hai */
a[data-text]:hover::after {
transform: translateY(0);
}

.accordion-item {
    border: none;
}
.accordion-icon {
    stroke: #ff520e;
}


.swiper-container-wrapper {
  position: relative;
}

.swiper-container-wrapper::before,
.swiper-container-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 10;
  pointer-events: none;
}

.swiper-container-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0d0d0d, rgba(255, 255, 255, 0));
}

.swiper-container-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0d0d0d, rgba(255, 255, 255, 0));
}


/* Base state: bars are scaled to 0 height at the bottom */
.chart-bar {
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 1s ease-out; /* Animation duration */
}

/* Class to apply when the animation should run */
.chart-bar.animate {
    transform: scaleY(1);
}

/* Value labels - initially hidden or scaled to 0, then appear */
.chart-bar-value {
    opacity: 0;
    transform: translateY(10px); /* Slightly move down */
    transition: opacity 0.5s ease-out 0.8s, transform 0.5s ease-out 0.8s; /* Delay to appear after bar */
}

.chart-bar.animate + .chart-bar-value { /* Selects the value span immediately after an animated bar */
    opacity: 1;
    transform: translateY(0);
}



#detail-page {
    color: #d6d6d6;
}

#detail-page h1,
#detail-page h2,
#detail-page h3,
#detail-page h4,
#detail-page h5,
#detail-page h6 {
    color: #ff520e; 
    font-size: 22px;
    padding-bottom: 12px;
    font-weight: 500;
}

#detail-page p {
    color: #d6d6d6;
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.6;
}

#detail-page ul,
#detail-page ol {
    color: #d6d6d6;
    margin-left: 20px; /* Indent lists */
    margin-bottom: 1em;
}

#detail-page li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

/* Optional: Styling for links within the content */
#detail-page a {
    color: #ff520e; /* Example link color */
    text-decoration: underline;
}

#detail-page a:hover {
    color: #ff520e; /* Example link hover color */
}

/* Optional: Styling for strong/bold text */
#detail-page strong {
    color: white; /* Make strong text stand out */
}

/* Optional: Responsive adjustments */
@media (max-width: 672px) {
    #detail-page .max-w-3xl {
        padding-left: 15px;
        padding-right: 15px;
    }
}






/* Contact Form 7 Styling (Dark Theme with Orange Accent) */

/* Form wrapper spacing */
.wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Input fields (email) */
.wpcf7 input[type="email"] {
  width: 100%;                          
  padding: 0.75rem 1rem;       
  border-radius: 0.5rem;               
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05); 
  color: #ffffff;                       
  font-size: 0.875rem;                 
  line-height: 1.25rem;
  transition: all 0.3s ease;            
  outline: none;
}

/* Placeholder color */
.wpcf7 input[type="email"]::placeholder {
  color: #9ca3af;
}

/* Focus state */
.wpcf7 input[type="email"]:focus {
  border-color: #ff520e;       
}


/* Checkbox */
.wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.9rem;
}

.wpcf7-list-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #ff520e; /* Modern browsers */
}

/* Submit Button */
.wpcf7 input[type="submit"] {
  width: 100%;
  background: #ff520e;
  color: #fff;
  font-weight: 500;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
  background: rgb(224, 72, 12);
}

.wpcf7 form .wpcf7-response-output {
  margin: 0px;
  border: none;
  padding: 0px;
  color: white;
}















/* Modal (Lightbox) Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    padding-top: 60px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    position: relative; /* Needed for prev/next buttons positioning */
}

/* Add Animation */
.modal-content, #modalImage {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001; /* Ensure close button is above everything */
}

.close-button:hover,
.close-button:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Previous & Next buttons */
.prev-button, .next-button {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 1001; /* Ensure buttons are above the image */
}

/* Position the "next button" to the right */
.next-button {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background with a little bit see-through */
.prev-button:hover, .next-button:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Make sure the image is responsive */
#modalImage {
    max-width: 100%;
    max-height: 80vh; /* Adjust as needed */
    display: block; /* Remove extra space below image */
    margin: auto; /* Center image */
}











/* ===========================
   Get In Touch Form Styles
   =========================== */

.get-in-touch-form {
  width: 100%;
  margin-top: 2.5rem; /* mt-10 */
}

.get-in-touch-form br {
  display: none; /* Remove default line breaks */
}

.get-in-touch-form h2 {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 500;
  margin-bottom: 1.5rem; /* mb-6 */
  color: #fff;
  line-height: 1.2;
}

/* ===========================
   Field Spacing (applies to all fields)
   =========================== */
.get-in-touch-form p {
  margin-bottom: 1rem; /* gap between each field */
}

.get-in-touch-form p:last-of-type {
  margin-bottom: 0; /* remove bottom space from last field */
}

/* ===========================
   Input, Select, Textarea Styles
   =========================== */
.get-in-touch-form input[type="text"],
.get-in-touch-form input[type="email"],
.get-in-touch-form input[type="tel"],
.get-in-touch-form input[type="url"],
.get-in-touch-form select,
.get-in-touch-form textarea {
  width: 100%;
  padding: 0.75rem 1rem; /* py-3 px-4 */
  border-radius: 0.5rem; /* rounded-lg */
  background-color: rgba(255, 255, 255, 0.1); /* bg-white/10 */
  border: 1px solid rgba(255, 255, 255, 0.05); /* border-white/5 */
  color: #fff;
  font-size: 1rem; /* text-base */
  outline: none;
  transition: all 0.3s ease;
}

.get-in-touch-form input::placeholder,
.get-in-touch-form textarea::placeholder {
  color: #9ca3af; /* placeholder-gray-400 */
}

/* ===========================
   Select Styling
   =========================== */
.get-in-touch-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

.get-in-touch-form input:focus,
.get-in-touch-form select:focus,
.get-in-touch-form textarea:focus {
  border-color: #ff520e;
  box-shadow: 0 0 0 2px rgba(255, 82, 14, 0.25);
}

/* ===========================
   Submit Button
   =========================== */
.get-in-touch-form input[type="submit"],
.get-in-touch-form button[type="submit"] {
  width: 100%;
  background-color: #ff520e;
  color: #fff;
  font-weight: 500;
  padding: 0.75rem 1.5rem; /* py-3 px-6 */
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.get-in-touch-form input[type="submit"]:hover,
.get-in-touch-form button[type="submit"]:hover {
  background-color: rgb(224, 72, 12);
}

/* Adjust select option colors */
.get-in-touch-form select option {
  background-color: #0d0d0d;
  color: #fff;
}

/* ===========================
   Responsive Tweaks
   =========================== */
@media (max-width: 640px) {
  .get-in-touch-form h2 {
    font-size: 1.5rem;
  }

  .get-in-touch-form input,
  .get-in-touch-form select {
    font-size: 0.875rem; /* text-sm */
  }
  .newsletter-flex-wrapper .newsletter-attached {
    flex-direction: column;
    align-items: stretch;
  }
}





/* Newsletter Block Custom CSS */
.newsletter-flex-wrapper .wpcf7-form {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.newsletter-flex-wrapper .newsletter-attached {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-flex-wrapper .email-newsletter {
    flex: 1;
}

.newsletter-flex-wrapper .email-newsletter input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.newsletter-flex-wrapper .subscribe-newsletter {
    position: relative;
}

.newsletter-flex-wrapper .subscribe-newsletter input[type="submit"] {
    padding: 10px 32px;
    border-radius: 8px;
    white-space: nowrap;
}

/* Loader ko button ke andar center mein rakhna */
.newsletter-flex-wrapper .wpcf7-spinner {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    opacity: 0.8;
}

/* Hover effect for the entire section */
.newsletter-hover-wrapper:hover .newsletter-glow {
    opacity: 0.25;
}

















/* Process Section */
.process-heading {
    justify-content: center;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: white;
    padding-bottom: 98px;
}
.process-content {
    color: var(--gray-400);
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
}
.process-count {
    color: var(--congo-pink);
    font-size: 16px;
    font-weight: 500;
}

.process-title {
    font-size: 32px;
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 16px;
    color: white;
    line-height: 1.4;
}

.process-text {
    font-size: 18px;
    max-width: 500px;
    color: #9CA3AF;
}

.process-icon {
    display: flex;
    align-items: center;
    flex-direction: column;
}
/* .wrap {
    padding: 24px 0;
    background: #111010;
    width: 16px;
    position: relative;
    z-index: 1;
    transform: translateY(-12px);
} */
.process-dot {
    width: 16px;
    height: 16px;
    background-color: #FFFFFF14;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate (0% ,-50%);
    z-index: 2;
    transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;

}

.process-icon.active .process-dot {
    background-color: white;
}

.vertical-slide {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #FFFFFF14;
    z-index: 1;
}

.slider-track {
    position: absolute;
    width: 2px;
    height: 0%; /* Initially hidden */
    background: #ff520e; /* This should be visible */
    top: 0;
    left: 0;
    transition: height 0.3s ease-out;
}

/* Add padding-bottom to all .contant except the last one */
.process-row:not(:last-child) .contant {
    padding-bottom: 200px;
}


/* Content animation */
.contant {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.contant.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .process-title {
        font-size: 28px;
    }
    .process-text {
        font-size: 16px;
    }
    .process-row {
        flex-direction: column;
        align-items: center;
    }
    .vertical-slide, .process-dot {
        display: none;
    }
    .process-icon {
        flex-direction: row;
    }
    .wrap {
        width: 12px;
        padding: 18px 0;
    }
}

@media (max-width: 768px) {
    .process-title {
        font-size: 24px;
    }
    .process-text {
        font-size: 18px;
        text-align: center;
    }
    .contant {
        text-align: center;
        max-width: 100%;
    }
    .process-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .vertical-slide {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-title {
        font-size: 20px;
    }
    .process-text {
        font-size: 18px;
    }
    .process-count {
        font-size: 14px;
    }
    .contant {
        padding-bottom: 20px;
    }
    .process-row {
        flex-direction: column;
        align-items: center;
    }
    .process-row:not(:last-child) .contant {
        padding-bottom: 68px;
    }
    .process-heading {
        font-size: 28px;
        padding-bottom: 48px;
    }
}