.common-padding {
    padding: 0 70px;
    max-width: 1500px;
}
.feature-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.divider-line {
    height: 5px;
    flex:1;
    background: #F3F0F6;
}
.press-title {
    font-weight: 700;
    font-size: 27px;
    color: #230756;
    /* white-space: nowrap; */
}
.section-icon {
  width: 26px;
}
/* View More button */
.view-more-btn {
    padding: 10px 22px;
    background: #230756;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    /* white-space: nowrap; */
}
@media (min-width: 992px) {
    .view-more-btn {
        white-space: nowrap;
    }
    .press-title {
         white-space: nowrap;
    }
}

/* Yellow slide overlay */
.view-more-btn::before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #edc729;
    transition: bottom 0.4s ease;
    z-index: 0;
}

.view-more-btn:hover::before {
    bottom: 0;
}

/* Text ABOVE overlay */
.view-more-btn span {
    position: relative;
    z-index: 1;
}

.view-more-btn:hover span {
    color: #fff;
}
/* Card wrapper */
.press-card {
    display: flex;                /* 🔥 KEY */
    flex-direction: column;
    height: 100%;                 /* 🔥 makes all cards equal */
    background: #fff;
    border-radius: 12px;
    border: 2px solid #f1f1f1;
    text-decoration: none;
    color: #230756;
    position: relative;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}


/* Image */
.press-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}


/* Body */
.press-card-body {
    padding: 20px;
    background-color: #F9F9F9;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    flex: 1;                      /* 🔥 fills remaining height */
    display: flex;
    flex-direction: column;
}


.press-card-body h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Footer */
.press-card-footer {
    margin-top: auto;             /* 🔥 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #7a7a7a;
}


.arrow {
    font-size: 18px;
    color:#230756;
}

/* ✅ HOVER EFFECT (exactly like screenshot) */
.press-card:hover {
    border: 2px solid rgb(89 82 82 / 27%);
    box-shadow: 0 0 25px rgb(89 82 82 / 27%);
}
.press-card:hover .press-card-body {
    background-color: #ffffff;
}

.feature-list li {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 14px;
}

.feature-list li strong {
  font-weight: 700;
}
.accordion-item:first-of-type {
   border-top-left-radius: 12px !important;
    border-top-right-radius:12px !important;
}
.accordion-item:last-of-type {
    border-bottom-right-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    background-color: white;
    border-bottom: 1px solid #ddd;
    position: relative;
}

/* Logo */
.logo img {
    height: 55px;
    cursor: pointer;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #1A1A1C;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #EDC729;
}

.nav-links .active {
    color: #230756;
    font-weight: 700;
}

/* Hamburger toggle button */
.toggle-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 20px;
    justify-content: space-between;
}

.toggle-btn span {
    display: block;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.toggle-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 7px;
}

.toggle-btn.active span:nth-child(2) {
    opacity: 0;
}

.toggle-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -10px;
}

/* Responsive */
@media (max-width: 991px) {
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 15px 0;
        border-bottom: 1px solid #ddd;
        display: none;
        /* hidden by default */
        z-index: 10;
    }

    .press-title {
        font-weight: 700;
        font-size: 27px;
        color: #230756;
        /* white-space: nowrap; */
    }
    .nav-links.active {
        display: flex;
    }

    .toggle-btn {
        display: flex;
    }
}

/* ------------------------------------------------------------------------------------------------ */
.resources-banner {
    position: relative;
    padding: 195px 0;
    margin-top:100px;
    overflow: hidden;
}
.banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* behind text */
}
/* Content must stay above image */
.resources-banner .container-fluid,
.resources-banner .row,
.resources-banner h1,
.resources-banner h2,
.resources-banner p {
  position: relative;
  z-index: 2;
}
.banner-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.banner-subtitle {
    font-size: 28.5px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #FFFFFF;
}

.banner-text {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
    color: #FFFFFF;
}

.light-icon {
    width: 22px;
    height:auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .resources-banner {
        position:relative;
        margin-top:100px;
        padding: 100px 0;
        background-size:cover;
        background-position:top center;
    }

    .banner-title {
        font-size: 2.2rem;
    }
   
    .press-title {
        font-weight: 700;
        font-size: 16px;
        color: #230756;
    }
    .banner-subtitle {
        font-size: 1.2rem;
    }

    .services-banner {
        min-height: 70vh;
        padding: 60px 0;
    }
     .title-line.left::after,
  .title-line.right::before {
    content: "";
    position: absolute;
    width: 30px !important;
    height: 30px !important;
  }
  .faq-question {
    padding: 17px 8px 17px 8px !important;
 
  }
  .view-more-btn {
    padding: 10px 10px;
}
}

/* .excess-padding {
    padding: 0 70px;
} */

.help-wrapper {
    background-color: #ffffff;
}

/* Main box */
.help-box {
    background-color: #F3F0F6;
    border-radius: 12px;
    padding: 25px 20px 20px;
}

/* Logo badge */
.logo-badge {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    width: 160px;
    height: 75px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


.logo-badge img {
    max-width: 90px;
}

/* Input */
.help-input {
    width: 62%;
    font-size: 12px;
    font-weight:500;
    padding: 13px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.content-text {
    color: #230756;
    font-weight: 700;
    font-size: 15px;
    margin-top: 25px;
    margin-bottom: 15px;

}

.content-sub-text {
    color: #1A1A1C;
    font-weight: 500;
    font-size: 12px;
}
.faq-title {
    font-weight: 700;
    color: #230756;
    font-size: 24.5px;
}

.faq-subtitle {
    max-width: 650px;
    margin: 0 auto;
    font-weight: 500;
    color: #1A1A1C;
    font-size: 15.9px;
}

/* Contact card */
.contact-card {
    background: url(../images/faq_bg.webp);
    color: #FFFFFF;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    overflow: hidden;
    padding: 40px 30px 30px 30px;
    height: 100%;
    border-radius: 12px;
}

.contact-card h5 {
    font-weight: 700;
}

.contact-card p {
    font-size: 12.8px;
    font-weight: 500;
    opacity: 0.9;
}

.contact-item {
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-item i {
    font-size: 25px;
}

.social-icons-rs i {
    font-size: 1.1rem;
    margin-right: 12px;
    cursor: pointer;
}

/* Accordion styling */

/* Remove default Bootstrap arrow */
.accordion-button::after {
    display: none;
}

/* Remove Bootstrap background & glow */
.accordion-button,
.accordion-button:not(.collapsed),
.accordion-button:focus {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.accordion-item {
  border: none !important;
  background: transparent !important;
}
/* Accordion container */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* FAQ item (whole cell) */
.faq-item {
  background: #f6f6f6 !important;
  border-radius: 12px;
  overflow: hidden;

  /* Custom border */
  border: 1px solid #E3DCF1 !important;
  border-left: 7px solid #EFEFEF !important;

 
}

.faq-item:hover {
  border-color: #edc729 !important;
  border-left-color: #edc729 !important;
}
/* Question */
.faq-question {
    padding: 17px ;
    font-size: 16px !important;
    font-weight: 500;
    color: #6F6F6F !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center !important;
    cursor: pointer;
}

/* Plus / Minus Icon */
.faq-question .icon {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1.5px solid #6F6F6F;;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.15s ease;
}

.faq-question .icon::before,
.faq-question .icon::after {
    content: "";
    position: absolute;
    background: #6F6F6F;;
    transition: background 0.15s ease;
}

/* Horizontal line */
.faq-question .icon::before {
    width: 7px;
    height: 1px;
}

/* Vertical line */
.faq-question .icon::after {
    width: 1px;
    height: 7px;
}

/* Answer */
.faq-answer-inner {
    padding: 0 16px 18px;
    font-size: 15px;
    color: #8a8a8a;
}

/* OPEN + OPENING + CLOSING STATE */
.faq-item:has(.accordion-collapse.show),
.faq-item:has(.accordion-collapse.collapsing) {
  background: #ffffff !important;
  border-color: #230756 !important;
  border-left-color: #230756 !important;
  box-shadow: 0 2px 8px rgba(146, 115, 201, 0.3);
}

/* Active question text */
.faq-item:has(.accordion-collapse.show) .faq-question,
.faq-item:has(.accordion-collapse.collapsing) .faq-question {
    color: #230756 !important;
    font-weight: 500;
}

/* Minus icon */
.faq-item:has(.accordion-collapse.show) .icon,
.faq-item:has(.accordion-collapse.collapsing) .icon {
    border-color: #230756;
}

.faq-item:has(.accordion-collapse.show) .icon::before,
.faq-item:has(.accordion-collapse.collapsing) .icon::before {
    background: #230756;
}

/* Hide vertical line to form minus */
.faq-item:has(.accordion-collapse.show) .icon::after,
.faq-item:has(.accordion-collapse.collapsing) .icon::after {
    display: none;
}

/* Faster accordion animation */
.accordion-collapse,
.collapsing {
    transition: height 0.1s ease !important;
}

/* Responsive tweaks */
@media (max-width: 425px) {
    .common-padding {
        padding: 0 20px !important;
    }

    .help-box {
        padding: 30px 15px 30px;
    }

    .resources-banner {
        padding: 50px 0 !important;
        margin-top:100px;
    }

    .logo-badge img {
        max-width: 50px;
    }

   
    .faq-subtitle {
        font-size: 13.5px !important;

    }
    .faq-title {
        
        font-size: 18px !important;
    }

    
}
@media (max-width:425px){
    .faq{
        padding-bottom:240px !important;
    }
     .faq-title {
        
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .common-padding {
        padding: 0 40px;
    }
}

@media (max-width: 991px) {
    .excess-padding {
        padding: 0;
    }
}







@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 30px;
        padding: 30px 15px 15px 15px;
    }

    .faq{
        padding-bottom:160px !important;
    }
    .faq-title {
        
        font-size: 18px;
    }
}


.title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.title-line {
    flex: 1;
    height: 5px;
    background: #F3F0F6;
    border-radius: 50px;
    position: relative;
}

.title-line.left::after,
.title-line.right::before {
    content: "";
    position: absolute;
    width:40px;
    height: 40px;
    background: #F3F0F6;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.title-line.left::after {
    right: -12px;
}

.title-line.right::before {
    left: -12px;
}

.contact-subtitle {
    font-size: 17px;
    font-weight: 500;
}

.call-us {
    font-weight: 700 !important;
    font-size: 13px !important;
    margin-bottom: 5px;
}

.mail-us {
    font-weight: 700 !important;
    font-size: 13px !important;
    margin-bottom: 5px;
}

.contact-card span {
    padding-left: 30px;
    font-size: 11px;

}
 .faq{
        padding-bottom:140px
    }

@media (min-width:1440px){
    .banner-title{
        font-size:48px !important;
    }

    .banner-subtitle {
        font-size: 28.5px;
    }

    .banner-text {
        font-size: 17px !important;
        line-height:1.9;
    }
    .content-text {
        font-size: 19px;
    }
    .content-sub-text {
        font-weight: 500;
        font-size: 14px;
    }

    .content-text {
        color: #230756;
        font-weight: 700;
        font-size: 20px;
        margin-top: 40px;   
    }
    .faq-title {
        font-size: 26.5px;
    }
    
    .title-wrap {
        gap: 40px;
    }

    .faq-subtitle {
        font-size: 17.5px;
    }

    .contact-card h5 {
        font-weight: 700;
        line-height: 1.5;
        font-size: 23px;
}
    .contact-card p {
        font-size: 15px;
        line-height: 1.7;
    }
    .mail-us {
    font-weight: 600 !important;
    font-size: 17px !important;
    }   
    .call-us {
        font-weight: 600 !important;
        font-size: 17px !important;
    }
    .contact-card span {
        font-size: 14px;
    }

    .contact-card span {
    padding-left: 48px;
    font-size: 14px;
    }
    .faq{
        padding-bottom:140px
    }
    .faq-question {
    padding: 17px !important;
    font-size: 16px!important;
    }
    .faq-answer-inner {
    font-size: 16px;
    padding: 0 140px 17px 16px;
    }
}