/* hero section with html image  */
.contract-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contract-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;     
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.contract-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 60, 0.65);
    top: 0;
    left: 0;
}

.contract-hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
    color: var(--theme-color-light);
    margin-top: 60px;
}

.contract-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--theme-color-light);
}

.contract-hero-content p {
    margin-top: 12px;
    font-size: 18px;
    opacity: 0.95;
    color: var(--theme-color-light);
}

/* intro section */

.contract-intro {
    padding: 80px 20px;
    text-align: center;
}

.contract-intro h2 {
    font-size: 34px;
    font-weight: 800;
}

.ci-text {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
}

/* stats section  */

.contract-stats {
    background: var(--theme-color-light);
    padding: 70px 20px;
    margin-top: -40px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: auto;
}

.stat-box {
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    border-bottom: 4px solidvar(--ssc-orange-color);
}

/* timeline */

.ssc-timeline-section {
    padding: 80px 0;
}

.ssc-timeline-title {
    text-align: center;
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 60px;
}

/* Timeline wrapper */
.ssc-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    position: relative;
    padding-bottom: 40px;
}

/* Horizontal line */
.ssc-timeline::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    height: 3px;
    background:var(--ssc-orange-color);
}

/* each item */
.ssc-t-item {
    position: relative;
    padding-top: 60px;
    text-align: left;
    margin-left: 100px;
}

/* Dots */
.ssc-t-item .dot {
    width: 14px;
    height: 14px;
    background: #083b6c;
    border-radius: 50%;
    position: absolute;
    top: 26px;
    left: 0;
}

/* Year title */
.ssc-t-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Text */
.ssc-t-item p {
    max-width: 250px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .ssc-timeline {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    /* .ssc-timeline::before {
        display: none;
    } */

    .ssc-t-item {
        padding-top: 0;
        text-align: left;
    }

    .ssc-t-item .dot {
        left: -5px;
    }
}

/* faq */

.contract-faq {
    background: var(--theme-color-light);
    padding: 80px 20px;
}

.contract-faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-box {
    max-width: 800px;
    margin: 15px auto;
}

.faq-question {
    width: 100%;
    padding: 18px;
    font-size: 19px;
    text-align: left;
    background: var(--ssc-color1);
    color: var(--theme-color-light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.faq-answer {
    background: var(--ssc-form);
    padding: 15px;
    margin-top: 5px;
    border-radius: 8px;
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Rotate when open */
.faq-box.active .faq-arrow {
    transform: rotate(180deg);
}


/* Responsive */
@media (max-width: 900px) {
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    /* .contract-hero {
        height: 300px;
    } */
}
/* for SSC section */

.ssc-contract-sec {
    width: 100%;
    padding: 90px 0;
    background: #f8f5f2;
}

.contract-wrapper {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Glass Card Style */
.contract-box {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 40px 35px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    position: relative;
    border: 1px solid rgba(255,255,255,0.4);
}

.contract-box.large {
    transform: scale(1.08);
    background: rgba(255,255,255,0.8);
}

/* Hover Animation */
.contract-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* Icon Style */
.box-icon {
    width: 70px;
    height: 70px;
    background: #0535600f;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.box-icon i {
    font-size: 40px;
    /* color: #053560; */
}

/* Headings */
.contract-box h3 {
    font-size: 22px;
    font-weight: 700;
    /* color: #053560; */
    margin-bottom: 15px;
}

/* List */
.contract-box ul {
    padding-left: 18px;
}

.contract-box ul li a{
    margin-bottom: 6px;
    font-size: 18px;
    color: var(--text-color);
}

/* View More Button */
.btn-more {
    display: inline-block;
    margin-top: 22px;
    padding: 10px 22px;
    background:var(--ssc-orange-color);
    color: var(--theme-color-light);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-more:hover {
    background:var(--ssc-orange-color);
  color: var(--theme-color-light);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contract-wrapper {
        grid-template-columns: 1fr;
    }

    .contract-box.large {
        transform: scale(1);
    }
}

/* access capability statments */

/* SECTION BACKGROUND */
.capability-section {
    padding: 70px 0;
    background: radial-gradient(circle at 50% 80%, rgba(190, 81, 3, 0.35), transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(190, 81, 3, 0.40), transparent 55%),
                #002040 ;
    color: var(--theme-color-light);
    position: relative;
}

/* INNER CONTAINER */
.capability-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* LEFT TEXT */
.capability-left h2 {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    /* color: #e2dddd; */
}

.capability-left p {
    font-size: 20px;
    opacity: 0.85;
    /* color: #eee3e3; */
}

/* RIGHT SIDE – BOXES */
.capability-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 45%;
}

/* EACH BOX */
.cap-box {
    width: 100%;
    padding: 22px 25px;
    border-radius: 14px;
    /* background: rgba(255, 255, 255, 0.05); */
    background: rgba(0, 32, 64, 0.45);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--theme-color-light);
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
    backdrop-filter: blur(3px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
}

/* ICON */
.cap-box i {
    font-size: 28px;
    opacity: 0.9;
}

/* ANIMATED ORANGE SWEEP EFFECT */
.cap-box::before {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 140%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(190, 81, 3, 0) 0%,
        rgba(190, 81, 3, 0.55) 50%,
        rgba(190, 81, 3, 0) 100%
    );
    transform: skewX(-20deg);
    animation: sweep 6s linear infinite;
    opacity: 0;
}

/* DELAY EACH BOX SO THE ORANGE MOVES 1→2→3 */
.capability-right .cap-box:nth-child(1)::before { animation-delay: 0s; }
.capability-right .cap-box:nth-child(2)::before { animation-delay: 1.2s; }
.capability-right .cap-box:nth-child(3)::before { animation-delay: 2.4s; }

@keyframes sweep {
    0%   { left: -150%; opacity: 0; }
    20%  { opacity: 1; }
    50%  { left: 20%; opacity: 1; }
    80%  { opacity: 1; }
    100% { left: 150%; opacity: 0; }
}

/* RESPONSIVE FIX */
@media (max-width: 900px) {
    .capability-container {
        flex-direction: column;
        text-align: center;
    }
    .capability-right {
        width: 100%;
    }
    .cap-box {
        font-size: 18px;
    }
}

/* html body div.page-wrapper section.capability-section div.capability-container div.capability-left{
    margin-left: 251px;
}

html body div.page-wrapper section.capability-section div.capability-container div.capability-right{
    margin-right: 251px;
} */

/* new sections  */
/* how to buy  */

.how-to-buy {
padding: 80px 20px;
background: #f8f5f2;
}

.how-to-buy h2 {
text-align: center;
margin-bottom: 3rem;

}


.steps {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
position: relative;
}


.step {
background: var(--card-bg);
border-radius: 14px;
padding: 3.6rem 1.75rem 2rem;
text-align: center;
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
position: relative;
margin-top: 28px;
}



.step-number {
width: 44px;
height: 44px;
border-radius: 50%;
background: #243b5a;
color: var(--theme-color-light);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.05rem;
position: absolute;
top: -36px;
left: 50%;
transform: translateX(-50%);
z-index: 2;
}



.step h3 {
font-size: 18px;
margin-bottom: 0.5rem;
}



.step p {
line-height: 1.5;
}


.connector {
position: absolute;
top: 10px;
  left: 10%;
  right: 10%;
height: 2px;
background: linear-gradient(90deg, #d6b15e, #f1d58a, #d6b15e);
z-index: 0;
}

/* RESPONSIVE */


@media (max-width: 1024px) {
.steps {
grid-template-columns: repeat(2, 1fr);
}
.connector{
    display: none;
}
}


@media (max-width: 600px) {
.steps {
grid-template-columns: 1fr;
}


.how-to-buy {
padding: 3rem 1rem;
}


.how-to-buy h2 {
font-size: 1.6rem;
}
}

/* for contract vehicle  */

.approved-contracts {
padding: 80px 20px;
background: var(--theme-color-light)fff;
}


.approved-contracts h2 {
text-align: center;
margin-bottom: 2.5rem;

}


.contract-cards {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}


.contract-card {
background: var(--theme-color-light)fff;
border-radius: 14px;
padding: 2rem 2.2rem;
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}


.card-header {
display: flex;
gap: 0.75rem;
margin-bottom: 1.25rem;
}


.card-icon {
width: 36px;
height: 36px;
object-fit: contain;
}


.contract-card h3 {
font-size: 1rem;
color: var(--ssc-color1);
}


.contract-card ul {
list-style: none;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0.75rem 1.5rem;
}


.contract-card li {
font-size: 20px;
position: relative;
padding-left: 1.2rem;
}


.contract-card li::before {
content: "✔";
position: absolute;
left: 0;
color: var(--ssc-right);
font-size: 17px;
}


/* for border  */

.contract-card .card-header {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #c4c9cfb2;
}

.contract-card ul {
  position: relative;
}

/* vertical center divider */
.contract-card ul::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: var(--ssc-border);
  transform: translateX(-0.5px);
}

@media (max-width: 768px) {
  .contract-cards {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .contract-card {
    max-width: 90%;
  }
}

/* capability and contract  */

.capability-cert-section {

background: var(--theme-color-light)fff;
padding: 80px 20px;
}

.capability-cert-wrapper {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.column-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--ssc-color1);
   min-height: 56px;    
  display: flex;
  align-items: flex-end;
}

.column-title span {
    font-size: 15px;
  font-weight: 400;
}

.capability-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-card {
  background: var(--theme-color-light)fff;
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.mini-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mini-left img {
  width: 36px;
  height: 36px;
}

.mini-card span {
  font-size: 20px;
}

.arrow {
  font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .capability-cert-wrapper {
    grid-template-columns: 1fr;
  }
}


/* for pdf  */

.mini-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  
}

.mini-card-link:hover .mini-card {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  transition: all 0.2s ease;
}


/* for banner  */

/* white transparent strip */
.contract-hero-actions-wrap {
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.85);
  padding: 1rem 1.25rem;
  border-radius: 10px;

width: 135%;
  max-width: 900px;
  margin-left: -100px;
}

/* force single row */
.contract-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap; /* IMPORTANT */
}

/* button base */
.hero-action {
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

/* colors */
.hero-action.primary {
  background: var(--ssc-color1);
  color: var(--theme-color-light)fff;
}

.hero-action.secondary {
  background: var(--theme-color-light)fff;
  color: var(--ssc-color1);
}

.hero-action.accent {
  background: var(--ssc-line);
  color: var(--ssc-color1);
}

/* hover */
.hero-action:hover {
  transform: translateY(-2px);
  transition: all 0.2s ease;
}


@media (max-width: 576px) {
  .contract-hero-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-action {
    flex: 0 1 auto;     /* 🔥 key fix */
    min-width: 240px;  /* controls wrapping behavior */
    text-align: center;
  }

  .contract-hero-actions-wrap {
    width: 100%;
    margin-left: 0;
  }
  .contract-hero {
    height: 600px;
  }
}

@media screen and (min-width: 577px) and (max-width: 767px) {
    .contract-hero-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-action {
    flex: 0 1 auto;     /* 🔥 key fix */
    min-width: 240px;  /* controls wrapping behavior */
    text-align: center;
    font-size: 14px;
  }

  .contract-hero-actions-wrap {
    width: 104%;
    margin-left: -10px;
  }
  .contract-hero {
    height: 700px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-action {
        padding: 9px 5px;
        font-size: 15px;
    }
      .contract-hero-actions-wrap {
    width: 100%;
    margin-left: 0;
  }
}

/* replace text to image  */

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  margin-bottom: 10px;
}

.icon-list img {
  max-width: 140px; /* adjust as needed */
  height: auto;
  display: block;
}


@media (max-width: 992px) {
  .icon-list {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .icon-list img {
    max-width: 120px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .icon-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .icon-list img {
    max-width: 70px;
  }
}

/*not apply inside responsive */

@media (min-width: 803px) and (max-width: 991px) {
    .mini-card span {
        font-size: 15px;
    }
}