@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
.body{
  font-family: "Inter", sans-serif;
 
}
p {
    margin-top: 0;
    margin-bottom: 0rem;
    font-family: "Inter", sans-serif;
}
b, strong {
    font-weight: 500;
}
a {
    text-decoration: none;
}
/* navbar  */
img.karnatakaLogo {
    margin-right: 24px;
}
.header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-container {
    display: flex;
    height: 85px;
    padding: 0px 80px;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}   
.logo-container {
    display: flex;
    align-items: center;
    gap: 24px;
}
.logo-container img {
    height: 50px;
    width: auto;
}
.nav-links {
    display: flex;
    height: 20px;
    align-items: center;
    gap: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
}
.nav-link {
    text-decoration: none;
    color: #2d2d2d;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    white-space: nowrap;
}
a.nav-link:hover {
    color: #C83744;
    font-weight: 300;
}
a.nav-link.active {
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    white-space: nowrap;
    color: #C83744;
    font-weight: 400;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-icon {
    transition: transform 0.2s ease;
    fill: currentColor;
}

.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 15px;
    padding: 20px 5px;
    z-index: 1000;
    top: 100%;
    left: -45px;
    margin-top: 8px;
}
.dropdown.active .dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 16px;
    text-decoration: none;
    color: #2d2d2d;
    transition: background-color 0.2s ease;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.dropdown-item:hover {
    background-color: #E4A4AA;
    color: #000000;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 300;
}
a.dropdown-item:hover:after{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(images/open_in_new_.png);
    transform: var(--bs-accordion-btn-icon-transform);
    background-size: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive adjustments */
@media (max-width: 900px) {
    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        margin-top: 5px;
        display: none;
        padding-top: 0px;
        padding-bottom: 5px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-item {
        padding: 8px 10px;
    }
}
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 40px;
    }
    .nav-links {
        gap: 15px;
    }
}

@media (max-width: 900px) {
    .nav-container {
        height: auto;
        padding: 20px 40px;
        flex-direction: column;
        align-items: flex-start;
    }
    .logo-container {
        margin-bottom: 20px;
    }
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 15px;
    }
    .nav-links.active {
        display: flex;
        padding: 10px 8px;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        top: 30px;
    }
    .nav-links {
        display: none;
    }
    .nav-links.active {
        display: flex;
    }
    .dropdown-item {
        padding: 8px 0;
        text-wrap: auto;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 15px 20px 0px 15px;
    }
    img.karnatakaLogo {
        margin-right: 20px;
    }
    .logo-container {
        
        gap: 10px;
        align-items: flex-start;
    }
    .menu-toggle {
        right: 20px;
        top: 20px;
        scale: 1.5;
    }
    .dropdown-item:hover {
        background-color: #E4A4AA;
        color: #000000;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 300;
    }
    a.dropdown-item:hover:after{
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url(images/open_in_new_.png);
        transform: var(--bs-accordion-btn-icon-transform);
        background-size: cover;
    }
}
/* Floting button for contact us  */
.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease; /* Smooth transition for width change */
}

.btn-floating.phone {
    bottom: 60px;
    right: 0px;
    border-radius: 50px 0px 0px 50px;
    background-color: #163A6D;
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 15px;
    width: 150px;
}

.btn-floating.phone:hover {
    background-color: #163A6D;
    border-radius: 30px 0px 0px 30px;
    width: 150px;
    right: 0;
}
.btn-floating.phone.about {
    bottom: 45px;
    right: 0px;
    border-radius: 50px 0px 0px 50px;
    background-color: #163A6D;
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 15px;
    width: 150px;
}

.btn-floating.phone.about:hover {
    background-color: #163A6D;
    border-radius: 30px 0px 0px 30px;
    width: 150px;
    right: 0;
}

.btn-floating img.callImg {
    width: 30px;
    transition: transform 0.6s ease; /* Smooth slide for the icon */
    transform: translateX(0px); /* Initially hidden to the left */
}

.btn-floating span {
    font-size: 16px;
    margin-left: 10px;
    transition: transform 0.6s ease, opacity 0.6s ease; /* Smooth slide for the text */
    transform: translateX(0px); /* Initially hidden to the left */
    opacity: 1; /* Initially invisible */
    white-space: normal; /* Allow text to wrap */
    line-height: 20px;
}

.btn-floating.phone:hover img.callImg {
    transform: translateX(0); /* Slide in icon */
}

.btn-floating.phone:hover span {
    transform: translateX(0); /* Slide in text */
    opacity: 1; /* Make text visible */
}
.btn-floating.phone.about:hover img.callImg {
    transform: translateX(0); /* Slide in icon */
}

.btn-floating.phone.about:hover span {
    transform: translateX(0); /* Slide in text */
    opacity: 1; /* Make text visible */
}

@media (max-width: 1000px) {
    .btn-floating.phone.about {
        bottom: 45px;
        right: 0px;
        border-radius: 50px 0px 0px 50px;
        background-color: #163A6D;
        transition: all 0.5s ease-in-out;
        display: flex;
        justify-content: start;
        align-items: center;
        padding-left: 14px;
        width: 50px;
    }
    .btn-floating.phone{
        bottom: 45px;
        right: 0px;
        border-radius: 50px 0px 0px 50px;
        background-color: #163A6D;
        transition: all 0.5s ease-in-out;
        display: flex;
        justify-content: start;
        align-items: center;
        padding-left: 14px;
        width: 50px;
    }
    .btn-floating span {
        font-size: 16px;
        margin-left: 10px;
        transition: transform 0.6s ease, opacity 0.6s ease;
        transform: translateX(0px);
        opacity: 0;
        white-space: normal;
        line-height: 20px;
    }
}
/* end of navbar */
/* Vedio Section */
main.mainHero {
    height: 81.5vh;
}
.video-container {
    position: relative;
    width: 100%;
    height: 81.5vh;
    overflow: hidden;
}
video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}
@media (max-aspect-ratio: 16/9) {
    video {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 767px) {
    .video-container {
        height: 65vh;
    }
    main.mainHero {
        height: 65vh;
    }
}
/* END Vedio Section */
/* Scrolling text */
.scrolling-container {
    display: flex;
    width: 100%;
    height: 51px;
    padding: 14px 0px 20px 298px;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
    background: #234C86;
    color: #FFFFFF;
}

.scrolling-text {
    white-space: nowrap;
    animation: scroll 30s linear infinite; /* Adjust time for speed */
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 1440px) {
    .scrolling-container {
        width: 100%;
        padding-left: 20%;
    }
}
/* END Scrolling text */
/* Section 2 css */
.trade-prospects {
    background: linear-gradient(98.81deg, #803F56 0.42%, #B43949 24.32%, #CE4540 49.71%, #DC6338 75.6%, #ECB044 100%);
    padding: 100px 20px;
    padding-bottom: 180px;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trade-prospects-cards {
    background-color: #F7E2E4;
    padding: 0px 20px;
}

.container {
    max-width: 1128px;
    margin: 0 auto;
}

.trade-prospects-content {
    text-align: center;
}

.section-title-h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 67.2px;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    padding: 0rem 6.2rem;
}

.section-caption {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 28.8px;
    color: #FFFFFF;
    margin-bottom: 40px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 0rem 3.8rem;
}

.card-container {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    transform: translate(0px, -110px);
}

.card {
    width: calc(25% - 18px);
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #C83744;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 64px;
    height: 64px;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    margin-bottom: 0px;
    color: #2d2d2d;
    padding: 0px 22px;
}

.card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    padding: 0rem 0.4rem;
}
.slick-slide img {
    display: inline-block;
    width: 70px;
    height: 70px;
}

@media (max-width: 1024px) {
    .section-title-h2 {
        font-size: 48px;
        line-height: 58px;
        padding: 0rem 3rem;
    }

    .section-caption {
        font-size: 20px;
        line-height: 24px;
        padding: 0rem 2rem;
    }
}

@media (max-width: 768px) {
    .trade-prospects {
        padding: 60px 20px 140px;
    }

    .section-title-h2 {
        font-size: 36px;
        line-height: 43px;
        padding: 0rem 1rem;
    }

    .section-caption {
        font-size: 18px;
        line-height: 22px;
        padding: 0rem 1rem;
        max-width: 90%;
    }

    .card-container {
        transform: translate(0px, -60px);
        display: none;
    }

    .card {
        width: calc(50% - 12px);
        margin-bottom: 24px;
    }

    .card-title {
        font-size: 20px;
        line-height: 24px;
        padding: 0px 10px;
    }

    .card-text {
        font-size: 13px;
    }
    .card-container.slick-initialized {
        display: block; /* Show when initialized as a slider */
    }

    /* Styles for the mobile slider */
    .slick-slider {
        margin-bottom: 24px;
        transform: translate(0px, -60px);
    }

    .slick-slide {
        margin: 0 10px;
    }
    .card {
        width: 100%;
        margin-bottom: 0;
    }

    .card-title {
        font-size: 20px;
        line-height: 24px;
        padding: 0px 10px;
    }

    .card-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .trade-prospects {
        padding: 20px 20px 80px;
    }

    .section-title-h2 {
        font-size: 28px;
        line-height: 34px;
        padding: 0;
    }

    .section-caption {
        font-size: 16px;
        line-height: 19px;
        padding: 0;
        max-width: 100%;
    }

    .card-container {
        transform: translate(0px, -90px);
        gap: 16px;
    }

    .card {
        width: 100%;
        margin-bottom: 16px;
        padding: 20px 50px;
        height: 340px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .card-title {
        font-size: 22px;
        line-height: 26px;
        margin: 13px 0px;
    }

    .card-text {
        font-size: 14px;
        font-family: 'Inter', sans-serif;
    }
    .card-container.slick-initialized {
        transform: translate(0px, -100px);
    }
}
/* End of Section 2 css */
/* Section 4  */
.key-drivers {
    background: #F6F3F3;
    padding: 100px 0;
  }
  
  .container {
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    text-align: left;
    margin-bottom: 40px;
    color: #000;
  }
  
  .content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 24px;
  }
  
  .drivers-list {
    flex: 0 0 calc(70% - 12px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .driver-item {
    display: flex;
    align-items: center;
    gap: 1.333rem;
    background-color: #ffffff;
    padding: 1.333rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
  
  .driver-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  
  .driver-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #2d2d2d;
    font-weight: 300;
  }
  
  .economic-survey {
    flex: 0 0 calc(30% - 12px);
    border-radius: 8px;
  }
  
  .economic-survey h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1px;
    color: #909090;
}
  
  .gsdp {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 24px;
    color: #2d2d2d;
  }
  
  .gsdp b {
    font-weight: 600;
  }
  
  .chart {
    margin-bottom: 12px;
  }
  
  .chart-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  @media (max-width: 1024px) {
    .key-drivers {
        background: #F6F3F3;
        padding: 50px 0;
        margin-top: -30px;
    }
    .content-wrapper {
      flex-direction: column;
    }
    .economic-survey {
        margin-left: 5px;
    }
    .drivers-list, .economic-survey {
      flex: 0 0 100%;
    }
  }
  
  @media (max-width: 768px) {
    .drivers-list {
      grid-template-columns: 1fr;
    }
    .economic-survey {
        margin-left: 5px;
    }
    .section-title {
      font-size: 32px;
      line-height: 40px;
    }
  }
/* End of Section 4  */
/* start of section 5  */
.karnataka{
    padding: 100px 156px;
    background: var(--Primary-Primary100, #F7E2E4);
}
.ka-container {
    display: flex;
    gap: 24px;
    
    align-items: flex-start;
    background: var(--Primary-Primary100, #F7E2E4);
    justify-content: center;
}
.ka-containerTitle{
    align-items: flex-start;
    background: var(--Primary-Primary100, #F7E2E4);
    justify-content: center;
    padding: 0px 23px;
}
.map-container {
    display: flex;
    width: 552px;
    padding: 0px 65px;
    align-items: center;
}
.map-container img {
    width: 100%;
    height: auto;
}
path{            
    transition: fill 0.4s;
}
path:hover {
fill: #E4A4AA
}
path:focus {
    outline: none;
}
a.map-a:focus {
    color: transparent;
    text-decoration: none;
    outline: none;
}
.map-a {
    pointer-events: all;
    cursor: pointer;
}

.map-a path {
    transition: all 0.3s ease;
}

.content-wrapper {
    flex: 1;
}
.district-content {
    display: none;
}
.district-content.active {
    display: block;
}
/* tool tip css */
.tooltip {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 15px;
    border-radius: 5px;
    background-color: #234C86;
  }
  
  .tooltip .tooltip-inner {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: transparent; /* Since background is set on the parent tooltip */
  }

  /* Optional: Adjust the tooltip arrow */
  .tooltip.bs-tooltip-top .arrow::before,
  .tooltip.bs-tooltip-bottom .arrow::before,
  .tooltip.bs-tooltip-left .arrow::before,
  .tooltip.bs-tooltip-right .arrow::before {
    background-color: #234C86 !important;
  }

.karight-content {
    display: flex;
    width: 540px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    position: relative;
    height: 476px;
    overflow-y: auto;
    padding-right: 12px;
    scrollbar-width: thin;
    scrollbar-color: #C83744 #F7D1D1;
}
.karight-content::-webkit-scrollbar {
    width: 7px;
}
.karight-content::-webkit-scrollbar-thumb {
    background-color: #F7D1D1;
    border-radius: 50px;
    height: 188px;
}
.karight-content::-webkit-scrollbar-track {
    background-color: #F7D1D1;
}
.district-info {
    margin-bottom: 16px;
}
.district-name {
    color: #C83744;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}
p.district-description {
    color: #2D2D2D;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    display: none;
}
.data-container {
    display: flex;
    padding: 23px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    width: 100%;
}
.data-headContainer {
    display: flex;
    padding: 23px;
    align-items: center;
    gap: 15px;
    align-self: stretch;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    justify-content: space-between;
}
.data-title {
    color: #C83744;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}
.data-headTitle {
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

.total-headExports {
    color: #C83744;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}
.total-exports {
    color: #C83744;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}
.data-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.data-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;;
    padding-bottom: 10px;
    border-bottom: 1px solid #E7DBDB;
}
.data-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.percentage {
    color: #C83744;
}
@media (max-width: 767px) {
    .karnataka {
        padding: 50px 15px;
        background: var(--Primary-Primary100, #F7E2E4);
    }
    .ka-container {
        flex-direction: column;
        padding: 0px 20px;
    }
    .kaleft-content, .karight-content {
        width: 100%;
    }
    .title {
        font-size: 28px;
    }
    .map-container {
        padding: 0;
        width: 100%;
    }
    
    .karight-content {
        display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    position: relative;
    height: 330px;
    overflow-y: auto;
    padding-right: 12px;
    scrollbar-width: thin;
    scrollbar-color: #C83744 #F7D1D1;
    }
    .data-headContainer, .data-container {
        padding: 15px;
    }
    .district-name {
        font-size: 20px;
    }
    .data-headTitle, .data-title {
        font-size: 10px;
    }
    .total-headExports, .total-exports {
        font-size: 20px;
    }
}

/* Media query for 4K displays */
@media (min-width: 3840px) {
    .ka-container {
        max-width: 3840px;
        margin: 0 auto;
        padding: 200px 312px;
        justify-content: center;
    }
    .title {
        font-size: 80px;
    }
    .map-container {
        padding: 0 130px;
    }
    .karight-content {
        width: 1280px;
        height: 1400px;
    }
    .district-name {
        font-size: 48px;
    }
    p.district-description {
        font-size: 28px;
    }
    .data-headTitle, .data-title {
        font-size: 24px;
    }
    .total-headExports, .total-exports {
        font-size: 48px;
    }
    .data-list li {
        font-size: 28px;
    }
}
/* end of section 5  */
/* start of Section 6 */
.champion-section {
    background-color: #234C86;
    padding: 100px 156px;
    font-family: 'Inter', sans-serif;
    justify-content: center;
    display: flex;
}
.champion-content {
    display: flex;
    align-items: flex-start;
    gap: 185px;
}

.champion-text {
    max-width: 552px;
}

.champion-title {
    color: #FFF;
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 24px;
}
span.title-exporter {
    color: #FFF;
    font-family: Inter;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.champion-caption {
    color: #FFF;
    font-size: 18px;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 20px;
}

.champion-image {
    width: 391px;
    height: 410px;
}

@media (max-width: 1200px) {
    .champion-section {
        padding: 80px 100px;
    }

    .champion-content {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .champion-image {
        width: 65%;
        height: auto;
        max-width: 391px;
    }

    .champion-text {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .champion-section {
        padding: 60px 40px;
    }

    .champion-title {
        font-size: 32px;
    }

    .champion-caption {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .champion-section {
        padding: 40px 20px;
    }

    .champion-title {
        font-size: 28px;
    }

    .champion-caption {
        font-size: 14px;
    }
}
/* end of section 6 */
/* Start of Section 7 */
section.cardTabs {
    display: flex;
    flex-direction: column;
    padding: 10px 156px;
    padding-bottom: 50px;
    align-items: center;
    background: #F6F3F3;
}
.cardTabs-container {
    transform: translate(0px, -50px);
}

.tabs-container {
    width: 100%;
    height: auto;
    display: flex;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-bottom: 20px;
}
.tab {
    display: flex;
    padding: 35px 24px;
    justify-content: center;
    align-items: center;
    flex: 1;
    background: white;
    color: #2d2d2d;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Inter';
    cursor: pointer;
    border-right: 1px solid #D6A3A7;
    transition-duration: 0.3s;
}

.tab:first-child {
    border-left: none;
    border-radius: 5px 0px 0px 5px;
}
.tab.active::before, .tab.active::after  {
    content: url("images/Polygon 3.png");
    transform: translate(0px, 70px);
    position: absolute;
    display: block;
}
.tab.active {
    background: #C83744;
    color: white;
    font-weight: 500;
}

.tab:last-child {
    border-right: none;
    border-radius: 0 5px 5px 0;
}
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.card-view {
    display: flex;
    width: 100%;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}

.cardrow {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.cardcol {
    flex: 1 1 calc(10% - 16px);
    display: flex;
}

.card-content {
    display: flex;
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    border-radius: 5px;
    border: 1px solid #E5E5E5;
}
span.headtext {
    font-size: 14px;
    color: #000;
    font-family: "Inter", sans-serif;
}
.icon-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

img.cardImg {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.icon-title span {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
}

ul {
    padding-left: 20px;
    margin: 0;
    width: 100%;
}

li {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    font-family: "Inter", sans-serif;
}
.mobiletab{
    display: none;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    section.cardTabs {
        padding: 50px 20px;
    }

    .cardTabs-container {
        transform: translate(0px, -60px);
    }
    .tab.active::before, .tab.active::after{
        display: none;
        background: #C83744;
    }
    .tabs-container {
        flex-direction: column;
    }

    .tab {
        border-right: none;
        border-bottom: 1px solid #D6A3A7;
    }
    .tab.active{
        z-index: 0;
        width: 100%;
        background: #C83744;

    }
    .tab:first-child {
        border-radius: 5px 5px 0 0;
        width: 100%;
        
    }

    .tab:last-child {
        border-radius: 0 0 5px 5px;
    }
    .mobiletab{
        display: block;
        width: 100%;
    }
    .tabs-container{
        display: none;
    }
    
    .card-view {
        padding: 20px;
    }

    .cardcol ,.slick-initialized {
        flex: 1 1 100%;
        display: block;
    }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
    section.cardTabs {
        padding: 30px 10px;
    }

    .cardTabs-container {
        transform: translate(0px, -40px);
    }

    .tab {
        padding: 10px 15px;
        font-size: 12px;
    }

    .card-view {
        padding: 15px;
    }

    .icon-title span {
        font-size: 14px;
    }

    li {
        font-size: 12px;
    }
}

/* 4K Screen Responsiveness */
@media (min-width: 2560px) {
    section.cardTabs {
        padding: 200px 312px;
        padding-bottom: 100px;
    }

    .cardTabs-container {
        transform: translate(0px, -240px);
    }

    .tabs-container,
    .card-view {
        max-width: 2256px;
    }

    .tab {
        padding: 30px 60px;
        font-size: 28px;
    }

    img.cardImg {
        width: 100px;
        height: 100px;
        margin-bottom: 30px;
    }

    .icon-title span {
        font-size: 32px;
    }

    li {
        font-size: 28px;
        margin-bottom: 16px;
    }
}
/* end of Section 7 */
/* Start of Section 8  */
.dashboard {
    background: #F7E6E6;
    border-radius: 8px;
    padding: 100px 156px;
}
.dashtitle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
    gap: 107px;
}
.title {
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
}
p.subtitle {
    color: var(--Base-Base-Black, #2D2D2D);
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    max-width: 60%;
    padding: 5px 3px;
}
.btncontainer {
    justify-content: center;
    display: flex;
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.btn-group.mb-4 {
    display: flex;
    padding: var(--Spacing-xs, 4px);
    align-items: center;
    border-radius: var(--Radius-Round, 999px);
    border: var(--Size-Line-Width-lineWidth, 1px) solid var(--Primary-Primary300, #E7A9AF);
    background: #FFF;
}
.custom-button {
    position: relative;
    border: none;
    background: none;
    padding: 14px 24px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 200;
    line-height: 120%;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

span.button-text {
    padding: 0px 10px;
}
span.accordionTitle {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.custom-button.active {
    color: #FFF;
}
.slider {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: calc(50% - 5px);
    background-color: #C83744;
    border-radius: 999px;
    transition: transform 0.3s ease;
}
#button-2025.active ~ .slider {
    transform: translateX(calc(100% + 0px));
}  
select {
    width: 142px !important;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    outline: none;
    margin-right: 13px;
}
.form-select:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%);
}
  .cityDate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 27px;
}
.citydateleft {
    display: flex;
}
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}
.form-control {
    display: block;
    width: 84%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
button.btn.searchbutton {
    display: flex;
    padding: 5px 16px;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}
/* accordation */
.accordion-item {
    border: none;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
  }
  .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    font-weight: bold;
    border: none;
    padding: 20px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  .accordion-button:focus {
    box-shadow: none;
  }
  .accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: #ffffff;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {    
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-right: 8px;
    background-image: url(images/blueChevron.png);
    transform: var(--bs-accordion-btn-icon-transform);
    background-size: cover;
    background-position: center;
}
.accordion-button::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-right: 8px;
    background-image: url(images/blueChevron.png);
    background-size: cover;
    background-position: center;    
    transition: var(--bs-accordion-btn-icon-transition);
}
  .accordion-body {
    background-color: #f9f9f9;
    padding: 20px;
  }
  .accordionlable {
    align-items: center;
    display: flex;
    width: 95%;
    justify-content: space-between;
}
  .accordionlableleft{
    align-items: center;
    display: flex;
  }
  .accordionlableright{
    align-items: start;
    display: flex;
  }
  .lableright-container {
    margin-right: 20px;
    border-left: 1px solid #EDEDED;
    padding: 0px 18px;
    width: 300px;
}
  p.lableRightp5 {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
}
h5.labeRighth5 {
    color: #000;
    text-align: start;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    display: flex;
    padding: 8px 16px;
    border-radius: 5px;
    border: var(--Size-Line-Width-lineWidth, 1px) solid var(--Secondary-Secondary300, #9AB9E5);
    background: #FFF;
    width: 30%;
    margin-bottom: 1rem;
}
  /* Status labels */
  .status {
    /* font-size: 12px; */
    /* padding: 5px 10px; */
    border-radius: 12px;
    width: 35%;
    margin-top: 10px;
    text-align: center;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    display: flex;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.completed {
    border-radius: 10px;
    background: #F5DB8A;
    width: 120px;
}
  .ongoing {
    border-radius: 10px;
background: #C6D7EE;
width: 100px;
  }
  .upcoming {
    border-radius: 10px;
    background: #BDE2BC;
    width: 100px;
}
  .date-container {
    background-color: #f3f3f3;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    width: 70px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .date-number {
    color: #dc3545;
    font-size: 16px;
    display: block;
  }
  .date-month-year {
    color: #6c757d;
    font-size: 12px;
  }
  .location {
    color: #6c757d;
    font-size: 14px;
    color: var(--Secondary-Secondary1000, #112542);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    display: flex;
    align-items: center;
}
.location::before{
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background-image: url('images/Location.png');
    background-size: cover;
    background-position: center;
}

  .sector {
    font-size: 14px;
    background-color: #fff;
    padding: 5px 10px;
    border: 1px solid lightblue;
    border-radius: 5px;
    width: 65px;
    text-align: center;
  }
  .dropdown-icon {
    font-size: 20px;
    color: #6c757d;
  }
  .paracontent {
    font-size: 14px;
    font-weight: 300;
  }
  .chev {
    border: 1px solid skyblue;
    border-radius: 50px;
    background-color: var(--bs-accordion-active-bg);
    width: 210px;
    text-align: center;
  }
  .rightsection {
    display: flex;
    justify-content: space-between;
  }
/* accordation */


.pagination {
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}
img.imgchevronleft {
    width: 20px;
}
img.imgchevronright {
    width: 20px;
}
a.page-link {
    padding: 8px 8px;
}
a.page-link:focus {
    outline: 0;
    box-shadow: none;
}

/* Start of Section 8 - Refined Mobile View */

@media (max-width: 768px) {
    div#button-1 {
        display: flex;
        width: 90%;
    }
    .dashboard {
        padding: 40px 20px;
    }

    .dashtitle {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    span.button-text {
        padding: 0px 0px;
        text-wrap: nowrap;
        flex-direction: column;
        font-size: 12px;
        display: flex;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 30px;
    }

    p.subtitle {
        font-size: 16px;
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .btncontainer {
        margin: 20px 0;
        width: 100%;
    }

    .btn-group.mb-4 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .custom-button {
        padding: 5px 12px;       
        flex: 1;
        overflow: hidden;
        
    }

    .slider {
        height: calc(100% - 6px);
        top: 3px;
    }

    .cityDate {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-bottom: 20px;
    }

    .citydateleft {
        gap: 15px;
    }

    select, .date-wrapper, .searchbutton {
        width: 100%;
        height: 44px;
        border-radius: 5px;
    }

    select, .date-wrapper input {
        padding: 10px 15px;
        font-size: 16px;
        border: 1px solid #e0e0e0;
    }

    .searchbutton {
        font-size: 16px;
        display: flex;
        align-items: start;
        justify-content: start;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
        width: 49%;
    }
    .searchbutton svg {
        margin-right: 8px;
    }
    input.form-control.search-input {
        padding: 0.6rem;
    }
    .accordion-item {
        margin-bottom: 15px;
    }

    .accordion-button {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .accordionlable {
        flex-direction: column;
        width: 100%;
    }

    .accordionlableleft, .accordionlableright {
        width: 100%;
    }

    .accordionlableleft {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 15px;
        align-items: center;
        margin-bottom: 15px;
    }

    .date-container {
        width: 80px;
        height: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #f3f3f3;
        border-radius: 8px;
    }
    input#dateInput {
        width: 79%;
    }
    .date-number {
        font-size: 20px;
        font-weight: bold;
        color: #C83744;
    }

    .date-month-year {
        font-size: 12px;
        color: #6c757d;
    }

    .leftsection {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .leftsection span {
        font-size: 18px;
        font-weight: bold;
    }

    .location, .status {
        font-size: 14px;
        display: flex;
        align-items: center;
    }

    .location i, .status i {
        margin-right: 5px;
    }

    .accordionlableright {
        background-color: #f8f9fa;
        padding: 10px;
        border-radius: 5px;
    }

    h5.labeRighth5 {
        width: auto;
        display: inline-block;
        margin-bottom: 5px;
        font-size: 14px;
        padding: 5px 10px;
    }

    p.lableRightp5 {
        margin-bottom: 0;
        font-size: 14px;
    }

    .accordion-body {
        padding: 15px;
        font-size: 14px;
        background-color: #ffffff;
    }

    .pagination {
        margin-top: 20px;
    }

    .pagination .page-item .page-link {
        padding: 10px 15px;
        font-size: 16px;
    }
    br {
        display: none;
    }
}

/* END of Section 8 - Refined Mobile View */
/* END of Section 8  */
/* footer  */
.footer {
    background-color: #234C86;
    color: white;
    padding: 100px 0rem;
    background-size: 8px 8px;
}
.footer-header-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 6.25rem;
}
h3.footer-h3 {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}
p.footer-p {
    color: #FFF;
    font-family: Inter;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.footer-email {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    align-self: stretch;
}
input[type="email"] {
    display: flex;
    padding: 0.55rem 1.25rem;
    align-items: center;
    gap: 0.625rem;
    border-radius: 0.25rem;
}
input.footerEmail {
    display: flex;
    width: 23.25rem;
    padding: 0.55rem 1.25rem;
    align-items: center;
    gap: 0.625rem;
    border-radius: 0.25rem;
    background: var(--Background, #F9F9F9);
    border: none; 
}
input.footerEmail:focus{
    outline: none
}
input[type="email"]:focus {
    outline: none;
}
button.footer-sumbit-btn:hover {
    opacity: 0.9;
    color: #fff;
}
button.footer-sumbit-btn {
    color: var(--Base-Base-White, #FAFAFA);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 1.05rem */
    border: none;
    display: flex;
    width: 10.5rem;
    height: 2.6875rem;
    padding: 1rem 1.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--Radius-s, 0.25rem);
    background: #C83744;
}
.visitors-links {
    display: flex;
}
img.footer-downloadIcon {
    width: 50px;
    height: 63px;
    margin-right: 10px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-sections {
    display: flex;
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
    gap: 24px;
}
.footer-sectionR {
    display: flex;
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
    gap: 23px;
    /* flex-direction: column; */
    width: 471px;
    padding-bottom: 1rem;
}
.footer-sectionR1 {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.footer-sectionR2 {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.footer-sectionR3 {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-top: 1rem;
    width: 620px;
    border-top: 2px solid rgba(255, 255, 255, 0.10);
}
.footer-sectionM {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 300px;
}
.footer-sectionL {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 230px;
}

.footer-sectionM {
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    padding-left: 48px;
}

.footer-title {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.footer-links {
    /* display: flex; */
    flex-wrap: wrap;
    gap: 8px;
    /* width: 100%; */
    /* max-width: 408px; */
}

.footer-links a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    font-family: "Inter", sans-serif;
    width: calc(80% - 4px);
    padding: 4px 8px;
    padding-left: 0px;
    box-sizing: border-box;
}

.footer-links a::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-image: url('images/chevron.png');
    background-size: cover;
    background-position: center;
}

.visitors-info {
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-direction: column;
}
.social-link-column {
    display: flex;
    gap: 20px;
}
.social-link {
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 20px;
}

.footer-bottom-content {
    gap: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

p.footerTitleP {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

p.footerCaptionP {
    color: #FFF;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

img.cegImg {
    width: 37px;
    padding: 0px 3px;
}

span.footerCaptionPspan {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.footer-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.footer-logos img {
    height: 30px;
}

p.disclaimer {
    text-align: start;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    color: #FFFFFFCC;
    display: flex;
    justify-content: start;
    padding-right: 16rem;
    padding-left: 2rem;
}

p.footerp1 {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    opacity: 0.8;
    padding-bottom: 1rem;
}

p.footerp {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    padding-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .footer-sections {
        flex-direction: column;
        gap: 16px;
    }
    .footer-sectionL, .footer-sectionM, .footer-sectionR {
        width: 100%;
    }
    .footer-email input[type="email"] {
        width: 100%;
    }
    button.footer-sumbit-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 100px 1rem;
    }
    .footer-sections {
        flex-direction: column;
    }
    .footer-sectionL, .footer-sectionM, .footer-sectionR {
        width: 100%;
    }
    .footer-links a {
        width: 100%;
    }
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
    }
    .footer-sectionR3{
        width: 100%;
    }
    .footer-sectionM{
        padding: 0%;
        border-right: none;
        border-left: none;
    }
    .footer-email{
        flex-direction: column;
    }
    button.footer-sumbit-btn{
        width: 50%;
    }
    .download-brochure {
        padding-top: 0.7rem;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 20px;
    }
    p.footerTitleP, p.footerCaptionP, p.footerp, p.footerp1 {
        font-size: 12px;
    }
    p.disclaimer {
        font-size: 14px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
/* End of footer  */

/* ============================================================================================================= */
/* ============================================================================================================= */
/* ============================================================================================================= */
/* ============================================================================================================= */
/* =================================================ABOUT US==================================================== */
/* ============================================================================================================= */
/* ============================================================================================================= */
/* ============================================================================================================= */
/* ============================================================================================================= */
/* Hero Section */
.hero {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 639px;
    flex-shrink: 0;
    margin: 0 auto;
    background-color: #013d47; /* Dark teal background */
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
/* END Hero Section */
/* ============================================================================================================= */
.champion-section1 {
    background-color: #234C86;
    padding: 80px 156px;
    font-family: 'Inter', sans-serif;
    justify-content: flex-start;
    display: flex;
}
.champion-container1 {
    width: 93%;
}
.champion-caption1 {
    color: #FFF;
    font-size: 24px;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 20px;
}
/* Mobile Devices (up to 768px) */
@media screen and (max-width: 768px) {
    .champion-section1 {
        padding: 40px 20px;
    }
    
    .champion-container1 {
        width: 100%;
    }
    
    .champion-title {
        font-size: 24px;
    }
    
    .champion-caption1 {
        font-size: 16px;
    }
}

/* Tablets and Small Laptops (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .champion-section1 {
        padding: 60px 80px;
    }
    
    .champion-title {
        font-size: 28px;
    }
    
    .champion-caption1 {
        font-size: 20px;
    }
}

/* 4K Displays (3840px and above) */
@media screen and (min-width: 3840px) {
    .champion-section1 {
        padding: 160px 312px;
    }
    
    .champion-container1 {
        width: 80%;
        max-width: 2400px;
        margin: 0 auto;
    }
    
    .champion-title {
        font-size: 48px;
    }
    
    .champion-caption1 {
        font-size: 32px;
        line-height: 140%;
    }
}
/* Section about 2 */
/* Styling the What-We-Do Section */
.what-we-do {
    display: flex;
padding: 80px 156px;
flex-direction: column;
gap: 32px;
background: linear-gradient(96deg, #803F56 0.15%, #B43949 25.27%, #CE4540 51.97%, #DC6338 79.19%, #ECB044 104.84%); 
  }
  
  .what-we-do-h3 {
    color: #FFF;
text-align: center;
font-family: 'Inter', sans-serif;
font-size: 33px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 39.6px */
  }
  
  /* Grid Layout for Features */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 24px;
    width: 100%;
}
  
  /* Individual Feature Styling */
  .feature {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    display: flex;
    gap: 16px;
    align-items: center;
}
  
.feature img {
    width: 60px;
    height: 60px;
}
  p.what-we-do-p {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 27px;
}
  
 /* Tablet Devices (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .what-we-do {
        padding: 60px 80px;
    }

    .what-we-do-h3 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }

    .feature {
        font-size: 18px;
    }

    p.what-we-do-p {
        font-size: 18px;
        line-height: 24px;
    }
}

/* Mobile Devices (up to 767px) */
@media screen and (max-width: 767px) {
    .what-we-do {
        padding: 40px 20px;
    }

    .what-we-do-h3 {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* Changed to 2 columns */
        gap: 16px;  /* Reduced gap for mobile */
    }

    .feature {
        font-size: 14px;  /* Reduced font size */
        gap: 8px;  /* Reduced gap between image and text */
        flex-direction: column;  /* Stack image and text vertically */
        text-align: center;  /* Center text */
    }

    .feature img {
        width: 40px;  /* Slightly smaller images */
        height: 40px;
    }

    p.what-we-do-p {
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }
}

/* Small Mobile Devices (up to 375px) */
@media screen and (max-width: 375px) {
    .what-we-do {
        padding: 32px 16px;
    }

    .feature img {
        width: 36px;
        height: 36px;
    }

    p.what-we-do-p {
        font-size: 12px;
        line-height: 16px;
    }
}

/* 4K Displays (3840px and above) */
@media screen and (min-width: 3840px) {
    .what-we-do {
        padding: 160px 312px;
    }

    .what-we-do-h3 {
        font-size: 48px;
    }

    .features-grid {
        max-width: 2400px;
        gap: 40px 48px;
    }

    .feature {
        font-size: 24px;
        gap: 24px;
    }

    .feature img {
        width: 80px;
        height: 80px;
    }

    p.what-we-do-p {
        font-size: 24px;
        line-height: 32px;
    }
}
/* Section about 2 */

/* Table section Aboutus  */
/* Styling the Governing Council Section */
.governing-council {
    display: flex;
    flex-direction: column;
    padding: 100px 156px;
    justify-content: center;
    align-items: flex-start;
    background: #F6F3F3;
  }
  
  /* Title Section */
  .gove-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    margin-bottom: 20px;
  }
  
  .gove-title h1 {
    color: var(--Base-Base-Black, #2D2D2D);
font-family: 'Inter', sans-serif;
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 48px */
  }
  
  .gove-title p {
    display: flex;
    height: 95px;
    padding: 23px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 5px;
    background: #DDE8F6;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
  }
  
  /* Table Container */
  .gove-table-container {
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
  
  /* Table Styles */
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  thead tr {
    background: #C83744;
    color: #FFF;
  }
  
  th, td {
    padding: 12px 24px;
    text-align: left;
    border-right: var(--Size-Line-Width-lineWidth, 1px) solid #EDEDED;
    border-bottom: var(--Size-Line-Width-lineWidth, 1px) solid #EDEDED;  
  }

  
  th:last-child, td:last-child {
    border-right: none;
    text-align: center;
  }
  
  /* Table Head Styling */
  th {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%; /* 19.2px */
  }
  td.slnoTD {
    text-align: center;
}
th.slno {
    text-align: center;
}
  
  tbody tr {
    border-bottom: 1px solid #EDEDED;
    background: #FFF;
  }
  
  tbody tr:nth-child(even) {
    background: #F9F9F9;
  }
  
  /* Tablet Devices (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .governing-council {
        padding: 60px 40px;
    }

    .gove-title {
        gap: 30px;
    }

    .gove-title h1 {
        font-size: 32px;
    }

    .gove-title p {
        height: auto;
        padding: 20px;
        font-size: 0.9rem;
    }

    th {
        font-size: 14px;
    }

    th, td {
        padding: 10px 16px;
    }
}

/* Mobile Devices (up to 767px) */
@media screen and (max-width: 767px) {
    .governing-council {
        padding: 40px 20px;
    }

    .gove-title {
        gap: 20px;
        margin-bottom: 15px;
    }

    .gove-title h1 {
        font-size: 28px;
        text-align: center;
    }

    .gove-title p {
        padding: 15px;
        font-size: 0.85rem;
        height: auto;
        text-align: center;
    }

    .gove-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
    }

    table {
        min-width: 650px; /* Minimum width to ensure readability */
    }

    th {
        font-size: 13px;
        white-space: nowrap;
    }

    td {
        font-size: 13px;
    }

    th, td {
        padding: 8px 12px;
    }

    td.slnoTD, th.slno {
        padding: 8px;
    }

    .desigTD {
        white-space: nowrap;
    }
}

/* Small Mobile Devices (up to 375px) */
@media screen and (max-width: 375px) {
    .governing-council {
        padding: 30px 15px;
    }

    .gove-title h1 {
        font-size: 24px;
    }

    .gove-title p {
        padding: 12px;
        font-size: 0.8rem;
    }

    .gove-table-container {
        margin: 0 0px;
        padding: 0 0px;
    }

    th, td {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* 4K Displays (3840px and above) */
@media screen and (min-width: 3840px) {
    .governing-council {
        padding: 200px 312px;
        max-width: 2400px;
        margin: 0 auto;
    }

    .gove-title {
        gap: 60px;
        margin-bottom: 40px;
    }

    .gove-title h1 {
        font-size: 60px;
    }

    .gove-title p {
        padding: 35px;
        font-size: 24px;
        height: auto;
    }

    .gove-table-container {
        border-radius: 10px;
    }

    th {
        font-size: 24px;
        padding: 24px 36px;
    }

    td {
        font-size: 20px;
        padding: 24px 36px;
    }

    td.slnoTD, th.slno {
        padding: 24px;
    }
}


/* Table section Aboutus  */

/* Organization */
.organization-section {
    width: 100%;
    padding: 100px 156px;
    background: #FFF;
    padding-bottom: 40px;
}

.section-title {
    color: var(--Base-Base-Black);
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 42px;
}

.person-container {
    margin-bottom: 25px;
}

.person {
    width: 359px;
    background: #fff;
    
}

.person-image {
    border-radius: 50%;
    margin-bottom: 10px;
}
img.userIcon {
    width: 72px;
    height: 72px;
}

.person-title {
    /* color: #000; */
    /* font-size: 24px; */
    /* font-weight: 600; */
    /* text-align: center; */
    /* line-height: 120%; */
    color: #000;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.designation-text {
    /* color: #000; */
    /* font-size: 16px; */
    /* font-weight: 400; */
    /* text-align: center; */
    /* line-height: 120%; */
    color: #000;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    z-index: 1;
    position: relative;
    background-color: #fff;
}

.vertical-line {
    height: 60px;
    margin: 0 auto 20px auto;
    border: 0.1px dashed #c83744;
}

img.haldcircle {
    width: 744px;
    height: 372px;
    transform: translate(0px, -45px);
}
.justify-content-between {
    justify-content: space-between!important;
    background: #fff;
    position: relative;
    z-index: 1;
    padding: 15px;
    margin-top: -100px;
}
/* Tablet Devices (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .organization-section {
        padding: 60px 40px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .person {
        width: 300px;
    }

    img.userIcon {
        width: 60px;
        height: 60px;
    }

    .person-title {
        font-size: 20px;
    }

    .designation-text {
        font-size: 14px;
    }

    img.haldcircle {
        width: 100%;
        height: auto;
        transform: translate(0px, -35px);
    }
}

/* Mobile Devices (up to 767px) */
@media screen and (max-width: 767px) {
    .organization-section {
        padding: 40px 20px;
        padding-bottom: 0px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .person {
        width: 100%;
        max-width: 280px;
        height: 165px;
    }

    img.userIcon {
        width: 50px;
        height: 50px;
    }

    .person-title {
        font-size: 18px;
    }

    .designation-text {
        font-size: 13px;
    }

    .vertical-line {
        display: none;
    }

    .justify-content-between {
        flex-direction: column;
        align-items: center;
        gap: 0px;
        margin-top: -20px;
    }

    img.haldcircle {
        display: none; /* Hide the arch line on mobile */
    }

}

/* Small Mobile Devices (up to 375px) */
@media screen and (max-width: 375px) {
    .organization-section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .person {
        max-width: 240px;
    }

    .person-title {
        font-size: 16px;
    }

    .designation-text {
        font-size: 12px;
    }
}

/* 4K Displays (3840px and above) */
@media screen and (min-width: 3840px) {
    .organization-section {
        padding: 160px 312px;
        max-width: 2400px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 60px;
        margin-bottom: 60px;
    }

    .person {
        width: 500px;
    }

    img.userIcon {
        width: 100px;
        height: 100px;
    }

    .person-title {
        font-size: 32px;
    }

    .designation-text {
        font-size: 24px;
    }

    .vertical-line {
        height: 80px;
    }

    img.haldcircle {
        width: 1200px;
        height: auto;
    }
}
/* Organization */
/* ============================================================================================================= */
/* ============================================================================================================= */
/* ============================================================================================================= */
/* ============================================================================================================= */
/* =================================================GI Pages==================================================== */
/* ============================================================================================================= */
/* ============================================================================================================= */
/* ============================================================================================================= */
/* ============================================================================================================= */
/* banner Section */
.mainHero1 {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #000; /* Add black background to container */
}

/* Carousel base styles */
.carousel-fade, 
.carousel-inner {
    height: 100vh;
}

/* Fix for white flash */
.carousel-inner {
    background-color: #000; /* Add black background */
}

.carousel-item {
    height: 100vh;
    position: absolute; /* Change to absolute positioning */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Improved fade transition */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block; /* Keep display block */
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    z-index: 1;
}

/* Image styling */
.carousel-item img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block; /* Ensure block display */
}

/* Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1; /* Ensure overlay is above image */
}

/* Content styling */
.banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    position: absolute;
    bottom: 134px;
    left: 156px;
    z-index: 2;
}

.banner-title {
    color: #FAFAFA;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 51px;
    margin: 0;
    width: 551px;
}

.view-products-btn {
    display: inline-flex;
    padding: 16px 28px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: #C83744;
    border: none;
    color: #FAFAFA;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    text-decoration: none;
    transition: background-color 0.3s ease;
    pointer-events: auto; /* Enable button interaction */
}
.view-products-btn:after{
    content: '';
    display: inline-table;
    /* flex-direction: row; */
    width: 1.3rem;
    height: 1.3rem;
    margin-left: 8px;
    /* margin-top: -12px; */
    /* align-items: center; */
    background-image: url(images/chevron\ right\ white.png);
    transform: translate(0px, -1px);
    background-size: cover;
    background-position: center;
}

.view-products-btn:hover {
    background: #b32f3b;
    color: #FAFAFA;
}

/* Carousel interaction prevention */
.carousel {
    pointer-events: none;
}
.carousel.slide:hover {
    animation-play-state: running !important;
}

/* Fix for Bootstrap's default transition */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: none;
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: none;
}
/* Media Queries for Responsive Layout */

/* Tablet (Max Width: 1024px) */
@media (max-width: 1024px) {
    .mainHero1 {
        height: 80vh;
    }
    .carousel-item {
        height: 80vh;
    }
    .banner-content {
        bottom: 100px;
        left: 30px;
        right: 30px;
        gap: 20px;
    }
    .banner-title {
        font-size: 32px;
        width: 90%;
    }
    .view-products-btn {
        padding: 12px 22px;
        font-size: 12px;
    }
}

/* Mobile (Max Width: 768px) */
@media (max-width: 768px) {
    .mainHero1 {
        height: 60vh;
    }
    .carousel-item {
        height: 60vh;
    }
    .banner-content {
        bottom: 50px;
        left: 20px;
        right: 20px;
        gap: 15px;
    }
    .banner-title {
        font-size: 26px;
        line-height: 36px;
        width: 100%;
    }
    .view-products-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* Mobile (Max Width: 480px) */
@media (max-width: 480px) {
    .mainHero1 {
        height: 50vh;
    }
    .carousel-item {
        height: 50vh;
    }
    .banner-content {
        bottom: 20px;
        left: 10px;
        right: 10px;
        gap: 12px;
    }
    .banner-title {
        font-size: 22px;
        line-height: 30px;
        width: 100%;
    }
    .view-products-btn {
        padding: 8px 16px;
        font-size: 10px;
    }
}
/* GI Section */
.gi-section {
    display: flex;
    padding: 6.25rem 9.75rem;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background: #FFF;
}

.gi-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 4.5rem;
    width: 100%;
}

.gi-right-content {
    display: flex;
    width: 61rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
}

.gi-title {
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 120%;
}

.gi-caption {
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 120%;
}

.gi-list {
    list-style: none;
    padding-left: 0;
}

.gi-list li {
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.375rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.gi-list li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.gi-button {
    display: flex;
    padding: 1rem 1.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #2D2D2D;
    background: transparent;
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.gi-button:hover {
    background: transparent;
    color: #000;
    font-weight:700;
}

.gi-modal {
    display: flex;
    width: 37.5rem;
    padding: 3rem;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.gi-modal-title {
    color: #2D2D2D;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    width: 100%;
}

.gi-modal-text {
    color: #2D2D2D;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375rem;
}
img.img-fluidGI {
    width: 24rem;
    height: 30.1875rem;
}
.gi-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gi-modal-close:hover {
    transform: rotate(90deg);
}

.gi-modal-close svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2D2D2D;
}
.cards-container-gi1 {
    display: flex;
    /* width: 100%; */
    /* max-width: 90rem; */
    /* padding: 0 9.75rem; */
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: start;
}

.info-card-gi {
    display: flex;
    width: 34.5rem; /* Keeping exact width as specified */
    padding: 1rem 1.9375rem;
    align-items: center;
    gap: 0.8125rem;
    border-radius: 0.75rem;
    border-left: 4px solid #C83744;
    background: #F7F7F7;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.12);
}
.info-card-gi:hover {
    transform: translateY(-5px);
}
.content-wrapper-gi {
    display: flex;
    width: 28.5rem; /* Keeping exact width as specified */
    height: 5.1875rem; /* Keeping exact height as specified */
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    flex-shrink: 0;
}

.card-title-gi {
    color: #000;
    font-family: Inter;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.card-text-gi {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 0;
    align-self: stretch;
    color: #2D2D2D;
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Media Queries for GI Section */

/* Tablet (Max Width: 1200px) */
@media (max-width: 1200px) {
    .gi-section {
        padding: 4rem 2rem;
    }

    .gi-content {
        gap: 2rem;
    }

    .gi-right-content {
        width: 100%;
    }

    .cards-container-gi1 {
        justify-content: center;
        gap: 1rem;
    }

    .info-card-gi {
        width: 100%;
    }
}

/* Tablet (Max Width: 992px) */
@media (max-width: 992px) {
    .gi-section {
        padding: 3rem 1.5rem;
    }

    .gi-content {
        gap: 2rem;
    }

    .gi-right-content {
        width: 100%;
    }

    .gi-modal {
        width: 61%;
        padding: 2rem;
    }

    .cards-container-gi1 {
        gap: 1rem;
    }

    .info-card-gi {
        width: 100%;
    }
}

/* Mobile (Max Width: 768px) */
@media (max-width: 768px) {
    .gi-section {
        padding: 2rem 1rem;
    }

    .gi-right-content {
        gap: 1.5rem;
    }

    .gi-title {
        font-size: 1.8rem;
    }

    .gi-caption {
        font-size: 1.2rem;
    }

    .gi-button {
        font-size: 12px;
        padding: 12px 18px;
    }

    .cards-container-gi1 {
        flex-direction: column;
        gap: 1rem;
    }

    .info-card-gi {
        width: 100%;
    }
}

/* Mobile (Max Width: 600px) */
@media (max-width: 600px) {
    .gi-title {
        font-size: 1.6rem;
    }

    .gi-caption {
        font-size: 1.1rem;
    }

    .gi-button {
        font-size: 11px;
        padding: 10px 16px;
    }

    .cards-container-gi1 {
        gap: 1rem;
    }

    .info-card-gi {
        width: 100%;
    }
}

/* Mobile (Max Width: 480px) */
@media (max-width: 480px) {
    .gi-title {
        font-size: 1.4rem;
    }

    .gi-caption {
        font-size: 1rem;
    }

    .gi-button {
        font-size: 10px;
        padding: 8px 14px;
    }

    .cards-container-gi1 {
        gap: 1rem;
        width: 100%;
    }
    p.card-text-gi{
        width: 100%;
    }
    .content-wrapper-gi{
        width: 100%;
    }

    .info-card-gi {
        width: 100%;
        height: 9rem;
    }
}

/* GI Section */
/* Forefont Section */
.forefront-section {
    display: flex;
    padding: 5rem 0;
    flex-direction: column;
    align-items: center;
    gap: 3.75rem;
    background: linear-gradient(279deg, #ECB044 0%, #DC6338 24.5%, #CE4540 50.5%, #B43949 76%, #803F56 100%);
}

.title-container-gi {
    display: flex;
    width: 100%;
    max-width: 50rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.section-caption-gi {
    color: #FFF;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.section-title-gi {
    color: #FFF;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 120%;
}

.cards-container-gi {
    display: flex;
    width: 100%;
    max-width: 90rem;
    padding: 0 9.75rem;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    display: flex;
    padding: 1.75rem;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
    border-radius: 0.25rem;
    background: #FAFAFA;
    backdrop-filter: blur(21px);
}

.stat-number {
    color: #C83744;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    transition: color 0.3s ease;
}

.stat-text {
    color: #112542;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 120%;
    margin: 0;
}

@media (max-width: 1400px) {
    .cards-container-gi {
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    .stat-card {
        flex: 0 0 calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .section-caption-gi {
        font-size: 1.25rem;
    }
    
    .section-title-gi {
        font-size: 2rem;
    }

    .cards-container-gi {
        padding: 0 1rem;
    }

    .stat-card {
        flex: 0 0 100%;
        margin-bottom: 1rem;
    }
}
/* Karnataka’s GI Treasures */
.treasures-container {
    width: 90rem;
    padding: 6.25rem 9.75rem;
    background: #FFF;
}

.header-section {
    margin-bottom: 3.75rem;
}

.header-section h1 {
    color: #2D2D2D;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 0.5rem;
}

.header-section p {
    color: #2D2D2D;
    font-size: 1.5rem;
    line-height: 120%;
    max-width: 50rem;
}

.content-wrapper {
    display: flex;
    gap: 1.5625rem;
}

.sidebar {
    width: 16.5rem;
    flex-shrink: 0;
    border-right: 1px solid #B6B6B6;
    padding-right: 1.25rem;
}

.category-heading {
    color: #2D2D2D;
    font-size: 1.25rem;
    font-weight: 600;
    padding-bottom: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.category-heading:hover {
    color: #C83744;
}

.category-heading.active {
    color: #C83744;
    opacity: 1;
}

.product-list {
    padding-left: 1rem;
    margin-bottom: 1rem;
    height: 7rem;
    overflow: hidden;
    overflow-y: scroll;
}

.product-list .list-item {
    padding-bottom: 0.75rem;
    color: #2D2D2D;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    line-height: 1.375rem; /* 137.5% */
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    opacity: 0.5;
}
.product-list .list-item:hover {
    color: #C83744;
}

.product-list .list-item.active {
    color: #000;
    font-weight: 400;
    opacity: 1;
}
.product-list .list-item.active:before {
    content: '';
    border-left: 2px solid #C83744;
    transform: translate(-0.62rem, 0px);
}

.product-showcase {
    display: flex;
    flex-grow: 1;
    background: #fff;
    border-radius: 0.375rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}
.product-details {
    width: 28.5rem;
    padding: 2.25rem;
    background: #F6F3F3;
    border-radius: 0 0.375rem 0.375rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    position: relative;
}
.product-details h2 {
    color: #2D2D2D;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.product-details p {
    color: #000;
    font-size: 1rem;
    line-height: 1.375rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.button-container {
    display: flex;
    margin-top: 2rem;
    gap: 1rem;
    justify-content: space-between;
}

.btn-enquire {
    padding: 1rem 1.75rem;
    background: #C83744;
    color: white;
    border: none;
    border-radius: 0.25rem;
    flex: 1;
    transition: all 0.3s ease;
}
button.btn-enquire:after {
    content: '';
    display: inline-table;
    /* flex-direction: row; */
    width: 1.3rem;
    height: 1.3rem;
    margin-left: 8px;
    /* margin-top: -12px; */
    /* align-items: center; */
    background-image: url(images/chevron\ right\ white.png);
    transform: translate(5px, 3px);
    background-size: cover;
    background-position: center;
}

.btn-enquire:hover {
    background: #a12935;
}

.btn-learn {
    padding: 1rem 1.75rem;
    background: transparent;
    color: #2D2D2D;
    border: 1px solid #2D2D2D;
    border-radius: 0.25rem;
    flex: 1;
    transition: all 0.3s ease;
}
button.btn-learn:after {
    content: '';
    display: inline-table;
    /* flex-direction: row; */
    width: 1.3rem;
    height: 1.3rem;
    margin-left: 8px;
    /* margin-top: -12px; */
    /* align-items: center; */
    background-image: url(images/chevron\ right\ black.png);
    transform: translate(5px, 3px);
    background-size: cover;
    background-position: center;
}

.btn-learn:hover {
    background: #f8f8f8;
}

.collapse:not(.show) {
    display: none;
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.category-heading[aria-expanded="true"] .chevron-icon {
    transform: rotate(-180deg);
}
.product-content {
    display: none;  /* Hide all product content by default */
}

.product-content.active {
    display: flex;  /* Show active product content */
}
.product-image {
    width: 24rem;
    object-fit: cover;
    border-radius: 0.375rem 0 0 0.375rem;
    animation: imageSlideIn 0.6s ease-in-out;
}

@keyframes imageSlideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
/* learn modal css */
.gap-4 {
    gap: 1.5rem!important;
    width: 30.5rem;
}
.learn-modal-title{
    color: #2D2D2D;
text-align: start;
font-family: 'Inter', sans-serif;
font-size: 1.5rem;
font-weight: 700;
width: 100%;
}
.form-control-GI {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 1px solid #78A1DC;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
button.submit-btn {
    color: var(--Base-Base-White, #FAFAFA);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    border-radius: var(--Radius-s, 0.25rem);
    background: var(--Primary-Primary, #C83744);
    display: flex;
    padding: 1rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: var(--Spacing-s, 0.375rem);
    border: none;
}
/* Enquire Modal css */
.modal.show .modal-dialog {
    transform: none;
    width: 40.5rem;
    max-width: none;
}
.enquire-modal{
    display: flex;
    padding: 3rem;
    flex-direction: column;
    gap: 1rem;
}

.enquire-modal-text{
    color: #2D2D2D;
    text-align: start;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375rem;
}
.divider {
    height: 1px;
    background: #000;
    margin: 1rem 0;
}
.content-scroll {
    max-height: 200px;
    overflow-y: auto;
    margin: 1rem 0;
    padding-right: 1rem;
}

.content-scroll::-webkit-scrollbar {
    width: 6px;
}

.content-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.content-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.enquire-modal-text {
    color: #2D2D2D;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.375rem;
    margin: 0 0 1rem 0;
}

.form-section-title {
    color: #2D2D2D;
    font-size: 1.5rem;
    font-weight: 600;
    padding-top: 1rem;
    position: sticky;
    bottom: 0;
    background: white;
    border-top: 1px solid #B6B6B6;
}

.form-control-enquire {
    padding: 1rem;
    border: 1px solid #78A1DC;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
}

textarea.form-control-enquire {
    min-height: 100px;
    margin-top: 1rem;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Karnataka’s GI Treasures */
/* Artisanal Stories */
.artisanal-section {
    background: #F6F3F3;
    padding: 6.25rem 9.75rem;
    max-width: 90rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.section-title-Artisanal-Stories {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.05rem;
}

.section-title-Artisanal-Stories h3 {
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 120%;
}

.section-title-Artisanal-Storiesp {
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 120%;
}

.craft-cards-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
}

.craft-card-wrapper {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
}

.craft-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 0.375rem;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Maintain a 16:9 aspect ratio */
    background-color: lightgray;
    overflow: hidden;
    border-radius: 0.375rem 0.375rem 0 0;
}

.video-placeholder video {
    width: 100%;
}
.craft-content {
    display: flex;
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.craft-title {
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.craft-text {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.375rem;
    margin: 0;
}

.craft-origin {
    font-weight: 600;
}

/* Media Queries for Artisanal Stories Section */

/* Tablet (Max Width: 1200px) */
@media (max-width: 1200px) {
    .artisanal-section {
        padding: 4rem 2rem;
    }

    .craft-cards-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .craft-card-wrapper {
        width: 100%;
    }

    .craft-card {
        margin-bottom: 1rem;
    }

    .video-placeholder {
        padding-bottom: 56.25%;
    }

    .craft-content {
        gap: 1rem;
    }

    .craft-title {
        font-size: 1.75rem;
    }

    .craft-text {
        font-size: 1.125rem;
    }
}

/* Tablet (Max Width: 992px) */
@media (max-width: 992px) {
    .artisanal-section {
        padding: 3rem 1.5rem;
    }

    .craft-cards-container {
        flex-direction: column;
        gap: 1rem;
    }

    .craft-card-wrapper {
        width: 100%;
    }

    .video-placeholder {
        padding-bottom: 56.25%;
    }

    .craft-title {
        font-size: 1.6rem;
    }

    .craft-text {
        font-size: 1rem;
    }
}

/* Mobile (Max Width: 768px) */
@media (max-width: 768px) {
    .artisanal-section {
        padding: 2rem 1rem;
    }

    .craft-cards-container {
        flex-direction: column;
        gap: 1rem;
    }

    .craft-card-wrapper {
        width: 100%;
    }

    .craft-title {
        font-size: 1.4rem;
    }

    .craft-text {
        font-size: 0.95rem;
    }

    .video-placeholder {
        padding-bottom: 56.25%;
    }

    .craft-content {
        gap: 1rem;
    }
    .header-section {
        width: 100% !important;
        padding: 1rem 1rem;
        margin-bottom: 2rem;
    }
}

/* Mobile (Max Width: 600px) */
@media (max-width: 600px) {
    .artisanal-section {
        padding: 1.5rem 1rem;
    }

    .craft-title {
        font-size: 1.3rem;
    }

    .craft-text {
        font-size: 0.9rem;
    }

    .video-placeholder {
        padding-bottom: 56.25%;
    }

    .craft-content {
        gap: 1rem;
    }

    .craft-cards-container {
        gap: 1rem;
    }
}

/* Mobile (Max Width: 480px) */
@media (max-width: 480px) {
    .artisanal-section {
        padding: 1rem 0.5rem;
    }

    .craft-title {
        font-size: 1.2rem;
    }

    .craft-text {
        font-size: 0.85rem;
    }

    .craft-cards-container {
        gap: 1rem;
    }

    .craft-card-wrapper {
        width: 100%;
    }

    .video-placeholder {
        padding-bottom: 56.25%;
    }
}

/* Artisanal Stories */
/* Gateway to Global Markets */
a.download-link {
    text-decoration: none;
    color: #990B18;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    display: flex;
    justify-content: center;
    align-items: center;
}
button.download-button {
    display: flex;
    padding: 1rem 1.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--Radius-s, 0.25rem);
    background: #FFF;
    border: none;
}
a.download-link:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    background-image: url('images/download-button-icon.png');
    background-size: cover;
    background-position: center;
    margin-bottom: 3px;
}

/* Gateway to Global Markets */
/* Training Program */
.training-program {
    display: flex;
    padding: 6.25rem 9.75rem;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    background: #F6F3F3;
    min-height: 100vh;
}

.title-section-tp {
    display: flex;
    max-width: 71.25rem;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 1.875rem;
    flex: 1 0 0;
}
.title-section-download {
    display: flex;
    max-width: 71.25rem;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    flex: 1 0 0;
}

.title-section-tp h2 {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.875rem;
}

.custom-table {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 0.3125rem;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.table {
    margin-bottom: 0;
}

.table > :not(caption) > * > * {
    padding: 0.5rem;
    background-color: transparent;
}

.table-header th {
    background: #C83744;
    color: #FFF;
    font-family: Inter, sans-serif;
    font-weight: 500;
    padding: 0.5rem 1.4rem !important;
    border-right: 1px solid #E4A4AA;
    vertical-align: middle;
    height: 2.75rem;
}

.table-header th:first-child {
    width: 6rem;
}

.table-header th:last-child {
    border-right: none;
    text-align: center;
    width: 11.2rem;
}

.table tbody td {
    padding: 0.5rem 1.5rem;
    border-right: 1px solid #E4E4E4;
    vertical-align: middle;
    height: 2.75rem;
}

.table tbody td:first-child {
    padding: 0.5rem;
    text-align: center;
    width: 6rem;
}

.table tbody td:last-child {
    border-right: none;
    text-align: center;
    padding: 0.5rem;
}

.module-name {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 120%;
}

.click-here {
    color: #0066FF;
    text-decoration: none;
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
}

.click-here:hover {
    text-decoration: underline;
}

.pager {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.pagination {
    gap: 0.5rem;
}

.page-item .page-link {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0.3125rem;
    color: #666;
    border: none;
    background: transparent;
}

.page-item.active .page-link {
    background: #C83744 !important;
    color: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}

.page-item:not(.active) .page-link:hover {
    background: #f8f9fa;
}

.table tbody tr:last-child td {
    border-bottom: none;
}
img.pagerleft {
    display: flex;
    width: 1.9375rem;
    height: 2.0625rem;
    padding: 0.5rem;
    align-items: center;
    gap: 0.3125rem;
    border-radius: 0.3125rem;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}
img.pagerright {
    display: flex;
    width: 1.9375rem;
    height: 2.0625rem;
    padding: 0.5rem;
    align-items: center;
    gap: 0.3125rem;
    border-radius: 0.3125rem;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}
li#nextButton:focus {
    outline: none;
}
/* Tablet Devices (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .training-program {
        padding: 60px 40px;
    }

    .title-section-download {
        max-width: 100%;
        align-items: center;
        gap: 20px;
    }

    .custom-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 5px;
        margin: 0;
    }

    .table {
        min-width: 650px; /* Ensure table readability */
    }

    .table-header th, .table tbody td {
        padding: 10px;
        font-size: 14px;
    }

    .table-header th:first-child, .table tbody td:first-child {
        width: auto;
    }

    .table-header th:last-child, .table tbody td:last-child {
        width: auto;
    }
}

/* Mobile Devices (up to 767px) */
@media screen and (max-width: 767px) {
    .training-program {
        padding: 40px 20px;
    }

    .title-section-download {
        gap: 15px;
        justify-content: center;
    }

    .custom-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 0px !important;
        padding: 0 0px !important;
        border-radius: 5px;
    }
    .click-hereExpanded{
        padding: 15.5px 0 !important;
    }
    .table {
        min-width: 650px; /* Ensure the table scrolls horizontally */
    }

    .table-header th, .table tbody td {
        font-size: 12px;
        padding: 8px;
    }

    .table tbody td:first-child {
        text-align: center;
    }

    .click-here {
        font-size: 12px;
    }
}

/* Small Mobile Devices (up to 375px) */
@media screen and (max-width: 375px) {
    .training-program {
        padding: 30px 15px;
    }

    .custom-table {
        margin: 0 -15px;
        padding: 0 15px;
    }

    .table-header th, .table tbody td {
        padding: 5px;
        font-size: 10px;
    }

    .table {
        min-width: 650px; /* Ensure horizontal scrolling */
    }

    .click-here {
        font-size: 10px;
    }
}
/* Tablet Devices (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .training-program {
        padding: 60px 40px;
    }

    .title-section-tp {
        max-width: 100%;
        align-items: center;
        gap: 20px;
    }

    .custom-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 5px;
        margin: 0;
    }

    .table {
        min-width: 650px; /* Ensures horizontal scrolling on smaller screens */
    }

    .table-header th, .table tbody td {
        padding: 10px;
        font-size: 14px;
    }

    .table-header th:first-child, .table tbody td:first-child {
        text-align: center;
        width: auto;
    }

    .table-header th:last-child, .table tbody td:last-child {
        text-align: center;
        width: auto;
    }
}

/* Mobile Devices (up to 767px) */
@media screen and (max-width: 767px) {
    .training-program {
        padding: 40px 20px;
    }

    .title-section-tp {
        gap: 15px;
        justify-content: center;
    }

    .custom-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
        border-radius: 5px;
    }

    .table {
        min-width: 650px; /* Ensures the table is scrollable */
    }

    .table-header th, .table tbody td {
        font-size: 12px;
        padding: 8px;
    }

    .table tbody td:first-child {
        text-align: center;
    }

    .click-here {
        font-size: 12px;
    }

    .pagination {
        gap: 10px;
    }

    .page-item .page-link {
        width: 32px;
        height: 32px;
    }
}

/* Small Mobile Devices (up to 375px) */
@media screen and (max-width: 375px) {
    .training-program {
        padding: 30px 15px;
    }

    .custom-table {
        margin: 0 -15px;
        padding: 0 15px;
    }

    .table-header th, .table tbody td {
        padding: 5px;
        font-size: 10px;
    }

    .table {
        min-width: 650px; /* Ensures horizontal scrolling */
    }

    .click-here {
        font-size: 10px;
    }

    .page-item .page-link {
        width: 28px;
        height: 28px;
    }
}

/* 4K Displays (3840px and above) */
@media screen and (min-width: 3840px) {
    .training-program {
        padding: 200px 312px;
        max-width: 2400px;
        margin: 0 auto;
    }

    .title-section-tp {
        gap: 60px;
    }

    .table-header th, .table tbody td {
        font-size: 20px;
        padding: 20px;
    }
}



/* Training Program */

/* <!-- Focus Sectors of Karnataka --> */
.header-section {
    display: flex;
    width: 70.5625rem;
    flex-direction: column;
    align-items: flex-start;
}

.section-title {
    color: #2D2D2D;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 120%;
}

.section-description {
    color: #2D2D2D;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.content-container {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

.sidebar {
    display: flex;
    width: 16.5rem;
    flex-direction: column;
}

.sidebar-item {
    color: #2D2D2D;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.sidebar-item:hover {
    background: rgba(200, 55, 68, 0.1);
}

.sidebar-item.active {
    color: #C83744;
    font-weight: 600;
    background: rgba(200, 55, 68, 0.1);
}

.main-content {
    display: flex;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    background: #F6F3F3;
    border-radius: 8px;
}

.content-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.content-image {
    object-fit: cover;
    border-radius: 4px;
    width: 25.75rem;
    height: 16.125rem;
}
p.content-textP {
    color: #000;
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.content-text {
    flex: 1;
}

.content-title {
    color: #2D2D2D;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stats-boxes {
    display: flex;
    gap: 1rem;
}

.stat-box {
    display: flex;
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-numberEC {
    color: #C83744;
    text-align: start;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.08rem;
    line-height: normal;
    margin: 0;
    transition: color 0.3s ease;
}
.graph-section {
    border-radius: 8px;
}

.graph-title {
    color: #2D2D2D;
    font-size: 1rem;
    font-weight: 600;
    color: #2D2D2D;
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0.75rem;
}
p.graph-text {
    color: #000;
    font-family: Inter;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
th.ExportTable {
    width: 25rem!important;
    padding: 0.75rem 1rem !important;
}
td.tabledataEC {
    padding: 0.75rem 1rem !important;
    text-align: start !important;
}
th.ExportTable {
    text-align: start !important;
}
th.thEC3 {
    width: 14rem !important;
}
.chart-data-points {
    display: none;
}
.chart-container {
    height: 300px !important;
    position: relative;
    width: 100%;
    margin: 1rem 0;
}
/* <!-- Focus Sectors of Karnataka --> */

/* <!-- Market Intelligence --> */
/* Section Layout */
.mi-section {
    display: flex;
    padding: 6.25rem 9.75rem;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    background: #FAFAFA;
}

/* Title Styles */
.mi-title-wrapper {
    display: flex;
    width: 46.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.mi-title-wrapper h2 {
    color: #2D2D2D;
    font-size: 2rem;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
}

.mi-title-wrapper p {
    color: #2D2D2D;
    font-size: 1rem;
    line-height: 150%;
    margin: 0;
}

/* Content Frame */
.mi-content-frame {
    display: flex;
    width: 70.5rem;
    flex-direction: column;
    align-items: flex-start;
}

/* Tabs */
.mi-tabs-frame {
    display: flex;
    width: 70.5rem;
    height: 3.75rem;
    max-width: 71.25rem;
    align-items: stretch;
    margin-bottom: 0.75rem;
    
}
button.mi-tab:last-child {
    border-radius: 0rem 0.35rem 0.35rem 0rem;
}
button.mi-tab:first-child {
    border-radius: 0.35rem 0 0 0.35rem;
}

.mi-tab {
    display: flex;
    height: 100%;
    padding: 1rem 2rem;
    justify-content: center;
    align-items: center;
    flex: 1;
    background: transparent;
    border: 1px solid #D6A3A7;
    color: #2D2D2D;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mi-tab.active {
    background: #C83744;
    color: #FAFAFA;
    border-color: #C83744;
}
button.mi-tab.active:after, button.mi-tab.active:after {
    content: url("images/Polygon 3.png");
    transform: translate(0px, 44px);
    position: absolute;
    display: block;
    scale: 0.8;
    background: transparent;
}
/* Main Content */
.mi-main-content {
    display: flex;
    height: 46.875rem;
    width: 100%;
    border: 1px solid #D6A3A7;
    background: #FFFFFF;
    border-radius: 0.35rem;
}

/* Sidebar */
.mi-sidebar {
    width: 16.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #D6A3A7;
}

.mi-filters-container {
    display: flex;
    flex-direction: column;
}
/* Tab Content Visibility */
.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
}

/* Additional Filter Section for Tab 3 */
.mi-filter-section.products {
    border-top: 1px solid #D6A3A7;
}

/* Adjusting spacing for dual filters */
.dual-filters .mi-filter-section {
    padding: 0.75rem 1.5rem;
}
/* Filters Header */
.mi-filters-header {
    display: flex;
    padding: 1.5rem;
    justify-content: space-between;
    align-items: center;
    background: #F7F7F7;
    border-bottom: 1px solid #D6A3A7;
    border-radius: 0.35rem 0 0 0;
}

.mi-filters-header span:first-child {
    color: #2D2D2D;
    font-size: 1rem;
    font-weight: 500;
}

.mi-clear-all {
    color: #C83744;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}

/* Filter Sections */
.mi-filter-section {
    padding: 1rem 1.5rem;
    background: #FFFFFF;
}
.mi-filter-section.search-btn {
    padding: 0rem 1.5rem;
}

.mi-filter-section h6 {
    color: #2D2D2D;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.mi-filter-section.search-btn.countries {
    padding-top: 1rem;
}
/* Checkbox Groups */
.mi-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mi-custom-checkbox.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}
.mi-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mi-custom-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    border: 1.5px solid #D6A3A7;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.mi-custom-checkbox.checked {
    background: #C83744;
    border-color: #C83744;
}

.mi-custom-checkbox.checked::after {
    content: '';
    position: absolute;
    width: 0.75rem;
    height: 0.375rem;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    left: 0.1875rem;
    top: 0.25rem;
}

.mi-checkbox-label {
    color: #2D2D2D;
    font-size: 1rem;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.mi-checkbox-label:hover{
    overflow: visible;
}
.mi-checkbox-group.vertical-scroll {
    overflow-y: auto;
    height: 200px;
}
.mi-checkbox-group.scrollable-div {
    overflow: auto;
    height: 200px;
}
/* Apply Filters Button */
.mi-apply-filters-container {
    padding: 1.5rem;
}

.mi-apply-filters {
    display: flex;
    width: 100%;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: #C83744;
    color: #FAFAFA;
    border: none;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}
/* Search bar css */
.mi-search-container {
    margin: 10px 0;
}

.mi-search-box {
    position: relative;
    display: flex;
}

.mi-search-input {
    padding: 8px 12px;
    font-size: 14px;
    width: 185px;
    border: none;
    transition: border-color 0.2s ease;
}

.mi-search-input:focus {
    outline: none;
    border-color: #2196F3;
}

.mi-search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 5px;
    background-color: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mi-search-button:hover {
    background-color: #fff;
}

.mi-search-button svg {
    stroke: #000;
}

.mi-product-code {
    color: #666;
    font-size: 12px;
    margin-right: 8px;
    font-family: monospace;
}

.initially-hidden {
    display: none;
}

.no-results-message {
    padding: 16px;
    text-align: center;
    color: #666;
    font-style: italic;
}


/* Graph Section */
.mi-graph-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #F7F7F7;
    padding: 1.5rem;
    overflow: hidden; /* Prevents overflow */
    border-radius: 0.35rem;
}
#exportChart {
    width: 100% !important;
    height: 100% !important;
}

.mi-graph-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.mi-graph-title h3 {
    color: #2D2D2D;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.mi-graph-title h4 {
    color: #2D2D2D;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

/* Line Chart Select */
.mi-line-chart-select {
    display: flex;
    padding: 0.5rem 1rem;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #D6A3A7;
    border-radius: 0.25rem;
    background: #FFFFFF;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2D2D2D;
}

/* Chart Container */
.mi-chart-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0; /* Prevents flex item from overflowing */
}

.mi-chart-container {
    flex: 1;
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
    height: 400px; /* Fixed height */
    position: relative; /* For proper chart sizing */
}
.mi-legend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.mi-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFA723;
}

.mi-legend-text {
    color: #2D2D2D;
    font-size: 14px;
    font-weight: 500;
    font-family: Inter, sans-serif;
}

/* Download Section */
.mi-download-container {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
}

.mi-download-btn {
    display: flex;
    padding: 0.875rem 1.75rem;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #2D2D2D;
    border-radius: 0.25rem;
    background: #FFFFFF;
    color: #2D2D2D;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

/* Chart Y-axis Labels */
.chart-y-label {
    color: #2D2D2D;
    font-size: 0.9375rem;
    font-weight: 400;
}
/* Chart Type Dropdown Styles */
.mi-chart-type-select {
    position: relative;
    min-width: 150px;
}

.chart-type-dropdown {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #D6A3A7;
    border-radius: 0.25rem;
    background: #FFFFFF;
    color: #2D2D2D;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232D2D2D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
select#chartTypeSelector:focus {
    outline: none;
}
/* <!-- Market Intelligence --> */
/* Downloads */
.container-download {
    width: 100%;
    margin-bottom: 0.5rem;
}
.custom-table.w-100.download {
    margin-bottom: 3rem;
}

/* Downloads */
.module-nameexpand{
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 120%;
    padding-bottom: 0;
    margin-bottom: 0;
}
.nested-content {
    display: none;
}

.nested-content.active {
    display: block;
}

.district-list {
    list-style-type: disc;
}
td.module-nameExpand {
    padding-bottom: 0px!important;
}
td.expand {
    padding-bottom: 0px !important;
}
.click-hereExpanded {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid #dee2e6;
    padding: 17.1px 0;
    font-size: 13px;
    width: 100%;
    margin-bottom: 0;
}
.click-hereExpanded1 {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid #dee2e6;
    padding: 17.6px 0;
    font-size: 14px;
    width: 100%;
    margin-bottom: 0;
    pointer-events: none;   
}
.clickhere-div {
    display: flex;
}
.click-hereExpanded:hover {
    text-decoration: underline;
}
.click-hereExpanded1:hover {
    text-decoration: underline;
}

.expand-collapse {
    color: #0066cc;
    text-decoration: none;
    cursor: pointer;
    padding-left: 10px;
}
.district-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.district-list li {
    border-bottom: 1px solid #dee2e6;
    padding: 15px 0;
}

/* Remove bottom border from last list item */
.district-list li:last-child {
    border-bottom: none;
}
.dropdown-icon {
    transition: transform 0.2s ease;
    padding-bottom: 2px;
}

.dropdown-icon.active {
    transform: rotate(180deg);
}                   
/* Adding styles for the district and product alignment */
.district-row {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    gap: 250px;  /* Space between district name and product */
}

.district-row span:first-child {
    min-width: 250px;  /* Minimum width for district names */
}

.district-row span:last-child {
    text-align: start;
    color: #666;  /* Slightly different color for products */
}
.district-row-gi {
    margin-bottom: -10px;
    display: flex;
    gap: 320px;
    margin-top: 10px;
}
/* Warehouse section */
.warehouse-section {
    display: flex;
    padding: 6.25rem 9.75rem;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: stretch;
    background: #F7E6E6;
}

.warehouse-container {
    display: flex;
    max-width: 71.25rem;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 3.125rem;
    flex: 1 0 0;
}
.title-caption {
    width: 100%;
    display: flex;
}
.title-wh-caption {
    display: flex;
    align-items: flex-start;
    gap: 6.6875rem;
    flex: 1 0 0;
}

.title-wh {
    color: #2D2D2D;
    font-family: Inter, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 120%;
    width: 50%;
}

.text {
    color: #2D2D2D;
    font-family: Inter, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 120%;
}

.content-wh {
    display: flex;
    width: 70.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.search-filter {
    display: flex;
    width: 70.5rem;
    justify-content: space-between;
    align-items: center;
}

.search-button-wh {
    display: flex;
    padding: 0.75rem;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 0.25rem;
    background: #FFF;
    border: none;
    width: 100%;
    max-width: 300px;
}

.name-filter {
    display: flex;
    width: 16.5rem;
    align-items: center;
    gap: 0.5625rem;
    flex-shrink: 0;
}

.name-dropdown {
    display: flex;
    padding: 0.75rem 1rem;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 0.25rem;
    background: #FFF;
    border: none;
    width: 100%;
}

.filter-icon {
    display: flex;
    width: 2.75rem;
    padding: 0.625rem;
    justify-content: center;
    align-items: center;
    gap: 0.3125rem;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 0.25rem;
    background: #FFF;
    border: none;
}

.map-districts-wh {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    align-self: stretch;
}

.map-container-wh {
    display: flex;
    width: 52.5rem;
    height: 37.5rem;
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    border-radius: 0.5rem;
    background: #FFF;
}

.district-list-wh {
    flex: 1;
    overflow-y: scroll;
    height: 83vh;
    border-radius: 5px;
}

.district-item-wh {
    display: flex;
    padding: 1rem 1.5rem;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.25rem;
    background: #FFF;
    margin-bottom: 0.5rem;
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 500;
}
button.name-dropdown:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(images/Down.png);
    transform: var(--bs-accordion-btn-icon-transform);
    background-size: cover;
}
.district-item-wh:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(images/Down.png);
    transform: var(--bs-accordion-btn-icon-transform);
    background-size: cover;
}
/* Adding new styles for the warehouse list */
.district-list-wh {
    flex: 1;
    overflow-y: auto;
    height: 83vh;
    width: 16.5rem;
    padding-right: 4px;
}

.district-list-wh::-webkit-scrollbar {
    width: 4px;
}

.district-list-wh::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.district-list-wh::-webkit-scrollbar-thumb {
    background: #C83744;
    border-radius: 2px;
}

.district-container-wh {
    margin-bottom: 0.5rem;
}

.district-item-wh {
    display: flex;
    padding: 1rem 1.5rem;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.25rem;
    background: #FFF;
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
}

.district-item-wh:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(images/Down.png);
    transform: var(--bs-accordion-btn-icon-transform);
    background-size: cover;
    transition: transform 0.2s ease;
}

.district-container-wh.active .district-item-wh {
    color: #C83744;
    border-radius: 0.25rem 0.25rem 0 0;
    border: 1px solid #FFE6E6;
    border-bottom: 1px solid;
    margin-bottom: 0;
}

.district-container-wh.active .district-item-wh:after {
    transform: rotate(180deg);
}

.warehouse-dropdown {
    display: none;
    background: #FFF;
    border: 1px solid #FFE6E6;
    border-top: none;
    border-radius: 0 0 0.25rem 0.25rem;
}

.district-container-wh.active .warehouse-dropdown {
    display: block;
}

.warehouse-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    color: #2D2D2D;
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    border-top: 1px solid #FFE6E6;
}

.warehouse-item:first-child {
    border-top: none;
}

.location-name {
    margin-right: 1rem;
}

.capacity {
    color: #2D2D2D;
    white-space: nowrap;
}

button.name-dropdown:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(images/Down.png);
    transform: var(--bs-accordion-btn-icon-transform);
    background-size: cover;
}
/* Warehouse section */
/* Application Section */
.application-section {
    display: flex;
    width: 90rem;
    padding: 6.25rem 9.75rem;
    justify-content: center;
    align-items: flex-start;
}

.forms-header {
    display: flex;
    width: 70.5625rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.forms-title {
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 120%;
    margin: 0;
}

.forms-text {
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.forms-grid {
    margin-top: 3.75rem;
}

.form-card {
    display: flex;
    width: 34.5rem;
    height: 18.625rem;
    padding: 1.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 0.5rem;
    border: 1px solid #E5E5E5;
    background: #FAFAFA;
    margin-bottom: 1.5rem;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.12);
}
.form-card:hover {
    transform: translateY(-5px);
}

.card-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    align-self: stretch;
}

.card-title-form {
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
}

.card-caption-form {
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 120%;
}

.apply-now-btn {
    display: flex;
    height: 3.0625rem;
    padding: 1rem 1.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.25rem;
    background: #C83744;
    color: #FAFAFA;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 120%;
    border: none;
    text-decoration: none;
}
.apply-now-btn:after {
    content: '';
    display: inline-table;
    /* flex-direction: row; */
    width: 1.3rem;
    height: 1.3rem;
    margin-left: 8px;
    /* margin-top: -12px; */
    /* align-items: center; */
    background-image: url(images/chevron\ right\ white.png);
    transform: translate(-7px, -1px);
    background-size: cover;
    background-position: center;
}

.apply-now-btn:hover {
    background: #b32f3b;
    color: #FAFAFA;
}
img.formIcon {
    width: 4.5rem;
}
.card-info-form {
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
}
/* Tablet Devices (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .application-section {
        flex-direction: column;
        width: 100%;
        padding: 60px 40px;
        align-items: center;
    }

    .forms-header {
        width: 100%;
        gap: 1rem;
    }

    .forms-title {
        font-size: 2rem;
    }

    .forms-text {
        font-size: 1.25rem;
    }

    .forms-grid {
        margin-top: 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .form-card {
        width: 90%;
        height: auto;
    }

    .card-title-form {
        font-size: 1.25rem;
    }

    .card-caption-form {
        font-size: 1rem;
    }

    .apply-now-btn {
        height: 2.5rem;
        font-size: 0.875rem;
    }
}

/* Mobile Devices (up to 767px) */
@media screen and (max-width: 767px) {
    .application-section {
        padding: 40px 20px;
        align-items: center;
    }

    .forms-header {
        text-align: center;
        gap: 1rem;
    }

    .forms-title {
        font-size: 1.75rem;
    }

    .forms-text {
        font-size: 1rem;
        text-align: left;
    }

    .forms-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .form-card {
        width: 100%;
        padding: 1rem;
        height: auto;
        gap: 1rem;
    }

    .formIcon {
        width: 3.5rem;
    }

    .card-title-form {
        font-size: 1.125rem;
    }

    .card-caption-form {
        font-size: 0.875rem;
    }

    .apply-now-btn {
        height: 2.25rem;
        font-size: 0.75rem;
        padding: 0.75rem 1.25rem;
    }
}

/* Small Mobile Devices (up to 375px) */
@media screen and (max-width: 375px) {
    .application-section {
        padding: 30px 15px;
    }

    .forms-title {
        font-size: 2rem;
    }

    .forms-text {
        font-size: 1rem;
        text-align: start;
    }

    .form-card {
        padding: 0.75rem;
        gap: 1rem;
    }

    .formIcon {
        width: 3rem;
    }

    .card-title-form {
        font-size: 1rem;
    }

    .card-caption-form {
        font-size: 0.75rem;
    }

    .apply-now-btn {
        height: 2rem;
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
}

/* 4K Displays (3840px and above) */
@media screen and (min-width: 3840px) {
    .application-section {
        width: 2400px;
        padding: 200px 312px;
        justify-content: center;
        align-items: flex-start;
    }

    .forms-title {
        font-size: 3.5rem;
    }

    .forms-text {
        font-size: 2rem;
    }

    .form-card {
        width: 40rem;
        height: auto;
    }

    .card-title-form {
        font-size: 2rem;
    }

    .card-caption-form {
        font-size: 1.5rem;
    }

    .apply-now-btn {
        height: 3.5rem;
        font-size: 1rem;
    }
}

/* Application Section */