/* Banner section styles for index.php */
.banner-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: url('../banner/banner1.png') center center/cover no-repeat;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}
.banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* background: linear-gradient(90deg, rgba(210,58,71,0.7) 0%, rgba(44,68,140,0.7) 100%); */
    z-index: 1;
}
.banner-content {
    position: relative;
    z-index: 2;
    /* text-align: center; */
    color: #fff;
    width: 100%;
    max-width: 1200px;
    /* margin: 0 auto; */
}
.banner-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px #00000080;
    margin-bottom: 0.5rem;
    /* background: #000; */
    display: inline-block;
    padding: 0.2em 0.8em;
    border-radius: 8px;
}
.banner-subtitle {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px #00000080;
    margin-bottom: 2.5rem;
    /* background: #000; */
    display: inline-block;
    padding: 0.1em 0.7em;
    border-radius: 8px;
}
.banner-cards {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    gap: 24px;
    /* margin-top: 2.5rem; */
}
.banner-card {
background: linear-gradient(90deg, #fff 0%, #28488C 100%);
    color: #222;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 24px 0 #00000030;
    border: 4px solid #fff;
    text-align: center;
    /* padding: 18px; */
    transition: transform 0.2s;
    overflow: hidden;
}
.banner-card span {
    
    background: linear-gradient(90deg, #FFD500 0%, #FFD400 100%);
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    font-weight: 700;
    width: 100%;
 border-radius: 10px;
    padding: 0.2em 0.5em;
}
.banner-card:hover {
    transform: scale(1.07);
}
.social-icons-fixed {
    position: fixed;
    top: 50%;
    right: 32px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transform: translateY(-50%);
}
.social-icons-fixed a {
    background: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px #0002;
    color: #222;
    font-size: 1.5rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.social-icons-fixed a:hover {
    background: #2c448c;
    color: #fff;
}
@media (max-width: 991.98px) {
    .banner-title { font-size: 1.6rem; }
    .banner-subtitle { font-size: 1.2rem; }
    .banner-cards { gap: 12px; }
    .banner-card { width: 100px; height: 100px; font-size: 0.8rem;  }
    .social-icons-fixed { right: 10px; }
}





/* new */

.pillars-section {
   background: linear-gradient(180deg, #2E4792 0%, #D43145 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.pillars-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    padding: 8px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background .3s, color .3s;
}
.pillars-btn:hover {
    background: #fff;
    color: #3a4edb;
}
.pillars-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffe03a;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.pillars-title span {
    color: #fff;
    font-weight: 700;
}
.pillars-desc {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 2rem;
}
.pillars-card {
    background: rgba(0,0,0,0.7);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transition: transform .3s, box-shadow .3s;
    position: relative;
    cursor: pointer;
}
.pillars-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}
.pillars-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.pillars-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: filter .4s;
}
.pillars-card:hover .pillars-card-img img {
    filter: grayscale(0%) contrast(1.05);
}
.pillars-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.85) 100%);
}
.pillars-card-content {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
}
.pillars-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}
.pillars-icon {
    font-size: 1.6rem;
    margin-right: 0.5rem;
}
.pillars-card-text {
    color: #ffe03a;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0;
}
.pillars-footer p {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .pillars-card-img {
        height: 180px;
    }
    .pillars-title {
        font-size: 1.5rem;
    }
}
@media (max-width: 767px) {

    .pillars-footer p {
    font-size: 1rem;
    margin-top: 1rem;
}
    .pillars-desc {
    font-size: 1rem;
    margin-bottom: 1rem;
    }
    .pillars-section {
        padding: 2rem 0;
    }
    .pillars-card-img {
        height: 140px;
    }
    .pillars-card-content {
        padding: 1rem;
    }
}



.products-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.products-btn {
    background: transparent;
    border: 2px solid #D43145;
    color: #D43145;
    border-radius: 30px;
    padding: 8px 24px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.products-btn:hover {
    background: #D43145;
    color: #fff;
}

.view-all-btn {
    background: #D43145;
    color: #fff;
    border-radius: 30px;
    padding: 8px 24px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

.view-all-btn:hover {
    background: #c82333;
    color: #fff;
    text-decoration: none;
}

.products-tabs {
    border-bottom: none;
    margin-bottom: 2rem;
}

.products-tabs .nav-link {
    background: transparent;
    border: 2px solid #2E4792;
    color: #2E4792;
    border-radius: 25px;
    padding: 8px 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.products-tabs .nav-link:hover,
.products-tabs .nav-link.active {
    background: #2E4792;
    color: #fff;
    border-color: #2E4792;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #D43145;
    color: #fff;
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.product-img {
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    /* padding: 30px 20px; */
    text-align: center;
    /* min-height: 200px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    max-width: 100%;
    /* max-height: 150px; */
    object-fit: contain;
}

.product-info {
    background: #FFD400;
    padding: 20px 15px;
}

.product-title {
    color: #D43145;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-subtitle {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-rating {
    color: #D48B31;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.product-size {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.product-btn {
    background: #28488C;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s ease;
}

.product-btn:hover {
    background: #1e3a6f;
}

.view-more-btn {
    background: #D43145;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.view-more-btn:hover {
    background: #c82333;
}

@media (max-width: 991.98px) {
    .products-tabs .nav-link {
        font-size: 0.9rem;
        padding: 6px 15px;
        margin-right: 5px;
    }
    
    .product-info {
        padding: 15px 12px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .products-section {
        padding: 40px 0;
    }
    
    /* .d-flex.justify-content-between {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    } */
    
    .products-tabs {
        flex-direction: column;
    }
    
    .products-tabs .nav-link {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .product-img {
        /* padding: 20px 15px; */
        /* min-height: 160px; */
    }
}

@media (max-width: 575.98px) {
    .product-card {
        margin-bottom: 20px;
    }
    
    .product-size {
        font-size: 0.85rem;
    }
    
    .product-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}




/* new */

.industries-section {
  background: linear-gradient(180deg, #2E4792 0%, #D43145 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.industries-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    padding: 7px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.industries-btn:hover {
    background: #fff;
    color: #4a5bb8;
}

.industries-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 1px;
     color: #FFD400;
}

.industries-title span {
    color: #FFD400;
}

.industries-desc {
    font-size: 1.15rem;
    color: #fff;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.industry-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.industry-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-img img {
    transform: scale(1.05);
}

.industry-content {
    padding: 1.5rem;
    color: #333;
    position: relative;
}

.industry-icon {
    position: absolute;
    top: -30px;
    left: 20%;
    transform: translateX(-50%);
    background: #FFD400;
    width: 70px;
    height: 70px;
    border-radius: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.industry-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #D43145;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: start;
}

.industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-list li {
    color: #2E4792;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    padding-left: 0;
    line-height: 1.4;
}

@media (max-width: 991.98px) {
    .industries-title {
        font-size: 1.8rem;
    }
    
    .industry-content {
        padding: 1.2rem;
    }
    
    .industry-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .industries-section {
        padding: 40px 0;
    }
    
    .industries-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .industries-desc {
        font-size: 1rem;
    }
    
    .industry-img {
        height: 160px;
    }
    
    .industry-content {
        padding: 1rem;
    }
    
    .industry-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .industry-title {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .industries-btn {
        padding: 8px 24px;
        font-size: 1rem;
    }
    
    .industries-title {
        font-size: 1.2rem;
    }
    
    .industry-card {
        margin-bottom: 20px;
    }
}




/* new */

.timeline-section {
    background: #000;
    color: #fff;
    position: relative;
    padding: 80px 0;
}

.timeline-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    padding: 7px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.timeline-btn:hover {
    background: #fff;
    color: #000;
}

.timeline-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.timeline-title span {
    color: #FFD400;
}

.timeline-desc {
    font-size: 1.15rem;
    color: #ccc;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12rem 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD400 0%, #FFD400 100%);
    z-index: 1;
    border-radius: 2px;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #FFD400;
    border-radius: 50%;
    border: 4px solid #000;
    z-index: 3;
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
}

.timeline-content {
    position: absolute;
    width: 200px;
    z-index: 2;
}

.timeline-top {
    bottom: 40px;
}

.timeline-bottom {
    top: 40px;
}

.timeline-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.timeline-box:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD400;
    margin-bottom: 0.5rem;
}

.timeline-event {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.timeline-description {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .timeline-title {
        font-size: 2rem;
    }
    
    .timeline-desc {
        font-size: 1rem;
    }
    
    .timeline-content {
        width: 180px;
    }
    
    .timeline-box {
        padding: 1.2rem 0.8rem;
    }
    
    .timeline-year {
        font-size: 1.5rem;
    }
    
    .timeline-event {
        font-size: 1rem;
    }
    
    .timeline-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .timeline-section {
        padding: 60px 0;
    }
    
    .timeline-title {
        font-size: 1.6rem;
    }
    
    .timeline-wrapper {
        padding: 1rem 0;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-items {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-item {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    
    .timeline-content {
        position: static;
        width: auto;
        flex: 1;
        margin-left: 1rem;
    }
    
    .timeline-top,
    .timeline-bottom {
        position: static;
    }
    
    .timeline-box {
        text-align: left;
        padding: 1rem;
        width: 100%;
    }
    
    .timeline-dot {
        flex-shrink: 0;
    }
}

@media (max-width: 575.98px) {
    .timeline-btn {
        padding: 8px 24px;
        font-size: 1rem;
    }
    
    .timeline-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .timeline-desc {
        font-size: 0.95rem;
    }
    
    .timeline-box {
        padding: 0.8rem;
    }
    
    .timeline-year {
        font-size: 1.3rem;
    }
    
    .timeline-event {
        font-size: 0.95rem;
    }
    
    .timeline-description {
        font-size: 0.8rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item {
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }





/* new */



.certification-section {
background: linear-gradient(180deg, #2E4792 0%, #D43145 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.certification-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    padding: 7px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.certification-btn:hover {
    background: #fff;
    color: #4a5bb8;
}

.certification-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD400;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.certification-desc {
    font-size: 1.15rem;
    color: #fff;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.certification-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.certification-wrapper::-webkit-scrollbar {
    display: none;
}

.certification-card {
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: 180px;
    max-width: 200px;
    /* height: 290px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0 10px 30px 10px;
      
}
/* 
.certification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
} */

.cert-badge-svg {
    position: relative;
    width: 181px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.cert-svg-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    
}

.cert-badge::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #FFD400;
    z-index: 1;
}

.cert-content {
    flex: 1;
    padding: 1.2rem 1rem 0.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: transparent;
}

.cert-code {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a5bb8;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.cert-ribbon-svg {
    position: absolute;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    width: 100%;
    height: 28px; /* Adjust as needed for your text */
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="158" height="23" viewBox="0 0 158 23" fill="none"><mask id="mask0_34_528" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="-1" y="0" width="159" height="23"><path d="M152.046 0H5.36591L-0.0102539 11.0579L5.36591 22.1157H152.046L157.423 11.0579L152.046 0Z" fill="white"/></mask><g mask="url(%23mask0_34_528)"><path d="M-8.38428 -7.37256H165.797V29.487H-8.38428V-7.37256Z" fill="%23FFD400"/></g></svg>') center/100% 100% no-repeat;
    color: #222;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    border-radius: 0; /* Remove border-radius for sharp edges */
    padding: 4px 0 2px 0;
    z-index: 3;
    box-shadow: 0 2px 8px #0001;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    z-index: 2;
}
.cert-logo-svg {
    position: absolute;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    /* width: 124px; */
    height: auto;
    object-fit: contain;
    z-index: 2;
    background: #fff;
    /* border-radius: 50%; */
    padding: 6px 6px 4px 6px;
    /* box-shadow: 0 2px 8px #0001; */
}
.cert-title {
    font-size: 0.9rem;         /* Large font size */
    color: #7a89b8;            /* Soft blue-grey like your image */
    font-weight: 400;          /* Normal weight */
    line-height: 1.2;
    margin: 4rem 0 0 0;     
    letter-spacing: 0.02em;
    text-align: center;
    z-index: 222;

}

/* Responsive Design */
@media (max-width: 991.98px) {
    .certification-title {
        font-size: 2rem;
    }
    
    .certification-desc {
        font-size: 1rem;
    }
    
    .certification-card {
        min-width: 160px;
        max-width: 180px;
        /* height: 260px; */
    }
    
    .cert-content {
        padding: 1.5rem 1.2rem 1.2rem;
    }
    
    .cert-code {
        font-size: 1.2rem;
    }
    
    .cert-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .certification-section {
        padding: 60px 0;
    }
    
    .certification-title {
        font-size: 1.6rem;
    }
    
    .certification-wrapper {
        justify-content: flex-start;
        gap: 50px;
        padding: 10px 15px;
    }
    
    .certification-card {
        min-width: 140px;
        max-width: 160px;
        /* height: 240px; */
    }
    
    .cert-content {
        padding: 1.2rem 1rem 1rem;
    }
    
    .cert-code {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .cert-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .certification-btn {
        padding: 8px 24px;
        font-size: 1rem;
    }
    
    .certification-title {
        font-size: 1.4rem;
    }
    
    .certification-card {
        min-width: 130px;
        max-width: 150px;
        height: 220px;
    }
    
    .cert-badge {
        height: 50px;
    }
    
    .cert-content {
        padding: 1rem 0.8rem 0.8rem;
    }
    
    .cert-code {
        font-size: 1rem;
    }
    
    .cert-title {
        font-size: 0.75rem;
    }
}

/* Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.certification-card {
    animation: slideInUp 0.6s ease forwards;
}

.certification-card:nth-child(1) { animation-delay: 0.1s; }
.certification-card:nth-child(2) { animation-delay: 0.2s; }
.certification-card:nth-child(3) { animation-delay: 0.3s; }
.certification-card:nth-child(4) { animation-delay: 0.4s; }
.certification-card:nth-child(5) { animation-delay: 0.5s; }
.certification-card:nth-child(6) { animation-delay: 0.6s; }
.certification-card:nth-child(7) { animation-delay: 0.7s; }



/* new */


.testimonials-section {
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.testimonials-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    padding: 7px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.testimonials-btn:hover {
    background: #fff;
    color: #000;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD400;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.testimonials-desc {
    font-size: 1.15rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.testimonial-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #FFD400;
    border-radius: 20px;
    padding: 0;
    display: flex;
    align-items: stretch;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.testimonial-text {
    flex: 1;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2rem;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.author-info {
    margin-left: 0;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 30px;
}

.author-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
    background: #FFD400;
}

.author-position {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0;
    padding-left: 30px;
}

.testimonial-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    background: #FFD400;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.control-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.testimonial-image {
    flex: 0 0 300px;
    position: relative;
    background: #FFD400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #000;
}

.testimonial-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
}

.dot:hover {
    background: #fff;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-desc {
        font-size: 1rem;
    }
    
    .testimonial-image {
        flex: 0 0 250px;
    }
    
    .testimonial-text {
        padding: 2rem;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 1.6rem;
    }
    
    .testimonial-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .testimonial-image {
        flex: none;
        height: 200px;
        order: -1;
    }
    
    .testimonial-text {
        padding: 1.5rem;
    }
    
    .testimonial-dots {
        top: 15px;
        right: 15px;
        flex-direction: row;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 575.98px) {
    .testimonials-btn {
        padding: 8px 24px;
        font-size: 1rem;
    }
    
    .testimonials-title {
        font-size: 1.4rem;
    }
    
    .testimonial-text {
        padding: 1.2rem;
    }
    
    .testimonial-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .author-position {
        font-size: 0.85rem;
    }
}


/* new */



.cta-section {
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../images/img/CTA.png');
    position: relative;
}

.cta-wrapper {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../images/img/image4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    display: flex;

    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem;
    width: 100%;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFD400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-description {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-btn {
    background: #FFD400;
    color: #000;
    padding: 14px 35px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #FFD400;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background: transparent;
    color: #FFD400;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .cta-title {
        font-size: 2.4rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        font-size: 1.1rem;
        padding: 12px 30px;
    }
}

@media (max-width: 991.98px) {
    .cta-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1.2rem;
    }
    
    .cta-description {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .cta-content {
        padding: 2.5rem 2rem;
        text-align: center;
    }
    
    .cta-btn {
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-wrapper {
        border-radius: 20px;
        min-height: 280px;
    }
    
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 575.98px) {
    .cta-wrapper {
        border-radius: 15px;
        min-height: 260px;
        margin: 0 10px;
    }
    
    .cta-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-content {
        padding: 1.8rem 1.2rem;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-description {
        font-size: 0.85rem;
    }
    
    .cta-content {
        padding: 1.5rem 1rem;
    }
    
    .cta-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-wrapper {
    animation: fadeInScale 0.8s ease forwards;
}

/* Parallax effect for background */
@media (min-width: 768px) {
    .cta-wrapper {
        background-attachment: fixed;
    }
}