/*Main File Css start*/
   
/*Main File Css End*/

.feature-section {
    background: linear-gradient(90deg, #0032a0 0%, #0066cc 83%, #0032a0 100%);
    padding: 50px 20px 60px;
    width: 100%;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards; /* Fade-in animation for the entire section */
}

.feature-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-box {
    padding: 15px;
    /* border: 1px solid #000; */
    border-radius: 5px;
    opacity: 0;
    transform: translateY(30px); /* Start with a slight offset */
    animation: fadeUp 0.6s ease-out forwards; /* Fade-in and slide up effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background: #ffffff;
}

/* Animation to make each feature box fade and slide up */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon hover effect */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Create hover shadow effect */
}

.feature-box .feature-icon {
    font-size: 42px;
    color: #0056d6;
    margin-bottom: 20px;
    line-height: 1;
    transition: color 0.3s ease;
}

.feature-box:hover .feature-icon {
    color: #eb7917; /* Change icon color on hover */
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 500;
    color: #002b5c;
    margin-bottom: 15px;
    font-family: roboto;
}

/* .feature-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin: 0 auto;
    font-family: roboto;
} */

/* Tablet */
@media (max-width: 1024px) {
    .feature-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .feature-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .feature-box h3 {
        font-size: 24px;
    }

    .feature-box p {
        font-size: 18px;
    }
}

/* Animation for fade-in effect when elements come into view */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.industry-section {
    background: #ffffff;
    padding: 50px 20px 60px;
    width: 100%;
}

.industry-container {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns */
    gap: 40px;
}

.industry-box {
    text-align: center;
    background: #ffffff;
    padding: 15px 15px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.industry-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.industry-box img {
    width: 150px;
    height: 96px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 25px;
}

.industry-box h3 {
    font-size: 22px;
    font-weight: 500;
    color: #0747aa;
    margin-bottom: 17px;
    font-family: 'Roboto';
}

/* .industry-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #0e0e0e;
    margin: 0;
    font-family: 'Roboto';
} */

/* Large Tablet */
@media (max-width: 1400px) {
    .industry-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet */
@media (max-width: 1100px) {
    .industry-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .industry-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .industry-box h3 {
        font-size: 20px;
        min-height: auto;
    }

    .industry-box p {
        font-size: 15px;
    }

    .industry-box img {
        height: 180px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .industry-container {
        grid-template-columns: 1fr;
    }
}

.services-section {
    background: linear-gradient(90deg, #aab0bc 0%, #aab0bc 83%, #aab0bc 100%);
    padding: 50px 20px 60px;
    width: 100%;
}

.services-container {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.service-box {
    background: linear-gradient(180deg, #5da8ff 0%, #003399 100%);
    border-radius: 16px;
    padding: 22px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}

.service-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    margin-bottom: 22px;
}

.service-box h3 {
    font-size: 22px;
    font-weight: 600;
    font-family: 'Roboto';
    color: #ffffff;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

/* Large Tablet */
@media (max-width: 1400px) {
    .services-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 1100px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-box img {
        height: 420px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .service-box img {
        height: auto;
    }

    .service-box h3 {
        font-size: 24px;
    }
}

/* Unique Class Styling */

/* Section Styling */
.qc-focus-section {
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

/* Container Styling */
.qc-container {
  max-width: 1500px;
  margin: 0 auto;
}
/* Description Styles */
.qc-description {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Two Column Layout */
.qc-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
  gap: 30px;
  margin-bottom: 40px;
}

/* Focus Point Container Styling */
.qc-focus-point {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Focus Point Hover Effect */
.qc-focus-point:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  border-bottom: 3px solid #ea7600;
}

/* Focus Point Heading */
.qc-focus-heading {
  font-size: 25px;
  font-weight: bold;
  color: #0032a0;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

/* Focus Point Heading Hover Effect */
.qc-focus-heading:hover {
  color: #0f47a1;
}

/* Focus Point Description */
.qc-focus-description {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .qc-focus-grid {
    grid-template-columns: 1fr; /* Stack to single column on mobile */
  }

  .qc-heading {
    font-size: 28px;
  }

  .qc-description {
    font-size: 16px;
  }

  .qc-focus-point {
    padding: 20px;
  }

  .qc-focus-heading {
    font-size: 22px;
  }

  .qc-focus-description {
    font-size: 14px;
  }
}

.cta-section {
    background: #0032a0;
    padding: 90px 20px;
    width: 100%;
    text-align: center;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 30px;
    font-weight: 600;
    font-family: roboto;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-container p {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 45px;
    font-family: roboto;
    line-height: 1.4;
}



/* Tablet */
@media (max-width: 1024px) {
    .cta-container h2 {
        font-size: 40px;
    }

    .cta-container h3 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cta-section {
        padding: 70px 20px;
    }

    .cta-container h2 {
        font-size: 30px;
    }

    .cta-container h3 {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .cta-button {
        font-size: 20px;
        padding: 15px 32px;
    }
}

/*contact Form Start*/
.contact-section {
    background: #ffffff;
    padding: 50px 20px;
    width: 100%;
    border-top: 2px solid #0032a0;
}

.contact-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side */
.contact-content {
    padding-right: 30px;
}

.contact-subtitle {
    display: inline-block;
    color: #003399;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.contact-content h2 {
    font-size: 27px;
    font-family:roboto;
    color: #ea7600;
    margin-bottom: 5px;
    line-height: 1.3;
    font-weight: 700;
}

.contact-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 35px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box h4 {
    font-size: 24px;
    color: #002b5c;
    margin-bottom: 8px;
}

.info-box p {
    font-size: 18px;
    margin: 0;
    color: #6b7280;
}

/* Form Side */
.contact-form-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 18px;
    color: #374151;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1d7cff;
}

.contact-form textarea {
    min-height: 162px;
    resize: vertical;
    margin-bottom: 25px;
}

.contact-form button {
    display: inline-block;
    background: #f28c00;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #d97706;
    transform: translateY(-3px);
}

/* Tablet */
@media (max-width: 1100px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-content {
        padding-right: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-content h2 {
        font-size: 36px;
    }

    .contact-content p {
        font-size: 18px;
    }

    .contact-form-box {
        padding: 30px;
    }
}
/*Contact Form End*/

/*4 cloumn home page start*/
.infographic-section {
    background: linear-gradient(90deg, #0032a0 0%, #0066cc 83%, #0032a0 100%);
    padding: 30px 20px 60px;
    width: 100%;
}

.infographic-header {
    text-align: center;
    margin-bottom: 70px;
}

.infographic-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #0032a0;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.infographic-header p {
    font-size: 16px;
    color: #000;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.infographic-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

.info-icon {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.info-content {
    flex: 1;
    padding: 25px 30px;
    border-radius: 20px;
    background: #ffffff;
    border: 2px solid;
    position: relative;
}

/* .info-content::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 120px;
    border-bottom: 3px dotted currentColor;
} */

.info-content h3 {
    font-size: 22px;
    color: #0032a0;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Roboto';
}

.info-content h3 span {
    font-weight: 700;
}

.info-content p {
    font-size: 17px;
    color: #60697f;
    line-height: 1.8;
}

/* Blue */
.blue .info-icon,
.blue .info-content {
    border-color: #0032a0;
    color: #60697f;
}

/* Teal */
.teal .info-icon,
.teal .info-content {
    border-color: #0032a0;
    color: #60697f;
}

/* Light Green */
.green-light .info-icon,
.green-light .info-content {
    border-color: #ea7600;
    color: #60697f;
}

/* Dark Green */
.green-dark .info-icon,
.green-dark .info-content {
    border-color: #ea7600;
    color: #60697f;
}

/* Tablet */
@media (max-width: 1024px) {
    .infographic-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-content::after {
        display: none;
    }

    .infographic-header h2 {
        font-size: 34px;
    }

    .info-content h3 {
        font-size: 26px;
    }

    .info-content p {
        font-size: 15px;
    }
}

/*4 cloumn home page end*/

/*Cabilitites start*/
.casting-capabilities-section {
    padding: 40px 20px 80px;
    /* background: #f7f7f7; */
}

.casting-container {
    max-width: 1320px;
    margin: auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 42px;
    color: #111;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-heading p {
    font-size: 18px;
    color: #666;
}

.casting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.casting-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
}

.casting-card:hover {
    transform: translateY(-8px);
}

.card-top {
    height: 90px;
    position: relative;
}

.blue { background: #5b78b8; }
.royal { background: #4b84e2; }
.sky { background: #57a7df; }
.cyan { background: #5fc4d2; }

.icon-circle {
    width: 75px;
    height: 75px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    border: 5px solid #eaf1f7;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.card-content {
    padding: 55px 20px 25px;
}

.card-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0032a0;
    font-family: 'Roboto';
}

.card-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.card-placeholder {
    background: #efefef;
    padding: 18px;
    font-weight: bold;
    font-size: 20px;
    color: #222;
}

.card-details {
    padding: 25px 20px 35px;
}

.card-details p {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

@media(max-width: 1200px) {
    .casting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .casting-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 32px;
    }
}
/* Fix UL List Alignment */
.card-content ul {
    list-style: decimal;
    padding-left: 25px;
    margin: 20px 0 0;
    text-align: left;
}

.card-content ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 8px;
}

/* Optional for better spacing */
.card-content {
    padding: 55px 25px 25px;
    text-align: left;
}

.card-content h3 {
    text-align: center;
    margin-bottom: 20px;
}
p.mattext {
    font-size: 24px;
    font-family: 'Roboto';
    font-weight: 600;
    color: #0032a0;
}
/*Cababilities end*/

/* Neha Style Code start here */

.custom-points-list {
    list-style-type: none;
    padding-left: 0;
    margin: 28px 0px 0px;
}

.custom-points-list li {
    position: relative;
    padding-left: 35px; /* Adjusted for the larger circle icon */
    margin-bottom: 15px;
    font-size: 16px;
}

.custom-points-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 18px; /* Slightly bigger for the circle */
    color: #eb7917; /* Primary color */
}

.custom-points-list li strong {
    color: #60697b; /* Text color */
    font-weight: 600; /* Bold text */
}

.custom-points-list li:hover {
    color: #0032a0; /* Hover effect with your secondary color */
}

.custom-points-list li:hover i {
    color: #0032a0; /* Hover effect for the circle arrow icon */
}

.industry-about-us{
    padding: 10px 0px 30px !important;
}
.Manufacturing-about-us{
    padding: 40px 0px 50px !important;
}
.industries-we-serve{
    padding: 40px 0px 10px !important;
    max-width: 1450px !important;
}
.swiper-container{
    margin-bottom: 90px !important;
}


/* =========================
   FOOTER COUNTRY ACCORDION
========================= */

.innowerx-footer-country-section{
    background: #0032a0;
    padding: 34px 0px;
    position: relative;
    overflow: hidden;
}

.innowerx-footer-country-wrapper{
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.innowerx-country-column{
    width: 197px;
}

.innowerx-country-title{
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 22px;
    font-family: sans-serif;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.innowerx-country-title img{
    width: 26px;
    height: auto;
    display: block;
    border-radius: 2px;
}

.innowerx-accordion-item{
    border: 1px solid rgba(255,255,255,0.45);
    margin-bottom: -1px;
    background: transparent;
}

.innowerx-accordion-header{
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 9px 4px;
    text-align: left;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.3s ease;
}

.innowerx-accordion-header:hover{
    background: rgba(255,255,255,0.06);
}

.innowerx-accordion-header::before{
    content: "+";
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.innowerx-accordion-item.active .innowerx-accordion-header::before{
    content: "−";
}

.innowerx-accordion-content{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: transparent;
}

/* .innowerx-accordion-item.active .innowerx-accordion-content{
    max-height: 1201px;
} */

.innowerx-accordion-content p{
    color: #ffffff;
    font-size: 13px;
    line-height: 1.5;
    padding: 0 8px 8px;
    margin: 0;
    font-family: sans-serif;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 991px){

    .innowerx-footer-country-section{
        padding: 20px 0px;
    }

    .innowerx-country-column{
        width: 100%;
    }

    .innowerx-country-title{
        font-size: 12px;
    }

    .innowerx-accordion-header{
        font-size: 14px;
        padding: 18px;
    }
}

.country-wise-contact-content h2 {
    font-size: 58px;
    font-family:roboto;
    color: #ea7600;
    margin-bottom: 5px;
    line-height: 1.3;
    font-weight: 700;
}
.country-wise-contact-content p{
    padding-top: 38px;
}
.country-wise-contact-form-box{
    background: #ffffff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.country-wise-contact-form-box .contact-form textarea {
    min-height: 81px;
    resize: vertical;
    margin-bottom: 25px;
}

/* Neha Style Code end here */

/*Siddhesh Country Tab css start*/
 :root {
--bg: #0032a0;
    --surface: #0032a0;
    --border: #252b35;
    --accent: #e8a020;
    --accent2: #c06010;
    --text: #c8cdd6;
    --text-dim: #606876;
    --white: #f0f2f5;
    --tab-active: #1e2530;
  }


  /* -- SECTION -- */
  .ps-section {
    padding: 64px 24px 80px;
    max-width: 1440px;
    margin: 0 auto;
  }

  .ps-heading {
    text-align: center;
    margin-bottom: 48px;
  }
  .ps-heading h2 {
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }
  .ps-heading h2::before,
  .ps-heading h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent));
  }
  .ps-heading h2::after {
    background: linear-gradient(90deg, var(--accent), transparent);
  }

  /* -- REGION TABS -- */
  .ps-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
  }

  .ps-tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    padding: 12px 22px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    position: relative;
    white-space: nowrap;
  }
  .ps-tab-btn:hover { color: var(--white); }
  .ps-tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: rgba(232,160,32,0.06);
    font-family: 'Roboto';
  }

  /* -- TAB PANELS -- */
  .ps-panel { display: none; }
  .ps-panel.active { display: block; }

  /* -- ACCORDION GRID -- */
  .ps-accordion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: #0032a0;
    border: none;
    margin-top: 0;
  }

  /* -- ACCORDION ITEM -- */
  .ps-acc-item {
    background: var(--card);
    transition: background 0.2s;
    border: 1px solid #fff;
  }
  .ps-acc-item.open { background: var(--tab-active); }

  .ps-acc-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    font-family: 'Roboto';
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: capitalize;
    color: var(--white);
    transition: color 0.2s;
  }
  .ps-acc-btn:hover { color: #ea7600; }
  .ps-acc-item.open .ps-acc-btn { color: #ea7600; 
    background: #0032a0;
}

  .ps-acc-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
  }
  .ps-acc-item.open .ps-acc-icon {
    background: #ea7600;
    border-color: #ea7600;
  }
  .ps-acc-icon svg {
    width: 10px;
    height: 10px;
    fill: var(--text-dim);
    transition: fill 0.2s, transform 0.3s;
  }
  .ps-acc-item.open .ps-acc-icon svg {
    fill: #fff;
    transform: rotate(45deg);
  }

  /* service icon pill */
  .ps-service-icon {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(232,160,32,0.1);
  }
  .ps-service-icon svg { width: 14px; height: 14px; fill: var(--accent); }

  /* -- ACCORDION BODY -- */
  .ps-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .ps-acc-body-inner {
    padding: 0 20px 20px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    background: #0032a0;
  }
  .ps-acc-body p {
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text);
    letter-spacing: 0.01em;
  }
  .ps-acc-body p:empty::before { content: 'Content coming soon.'; color: var(--text-dim); font-style: italic; }

  /* -- EMPTY STATE -- */
  .ps-empty {
    color: var(--text-dim);
    font-size: 12px;
    font-style: italic;
  }

  /* -- SCROLLBAR -- */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

  @media (max-width: 600px) {
    .ps-tabs { gap: 4px; }
    .ps-tab-btn { padding: 10px 14px; font-size: 11px; }
    .ps-accordion-grid { grid-template-columns: 1fr; }
  }
  .ps-item {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--blue-cell);
  position: relative;
  /* Remove any min-height here */
}

.ps-acc-body,
.ps-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.ps-accordion-grid,
.ps-grid {
  align-items: start; /* THIS is the fix � stops cells stretching to match tallest */
}
.ps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  align-items: start; /* ? ADD THIS */
}
/*Siddhesh Country Tab Css End*/


.card.plain.accordion-item {
    margin-bottom: 0px !important;
}
/* ---------- Homepage testimonials: arrows outside cards ---------- */
.testimonials-slider {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
}
.testimonials-slider .swiper-controls .swiper-navigation .swiper-button.swiper-button-prev {
    left: 0;
}
.testimonials-slider .swiper-controls .swiper-navigation .swiper-button.swiper-button-next {
    right: 0;
}
@media (max-width: 767px) {
    .testimonials-slider {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}
