.ctnr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.service-banner-section {
    width: 100%;
}

.service-banner-bg {
    width: 100%;
    height: calc(100vh - 80px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.service-banner-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.service-banner-content {
    background-color: #fff;
    padding: 45px 60px 45px 25px;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-banner-content h2 {
    font-size: 70px;
    font-weight: 900;
    color: #333;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: Helvetica, Roboto;
}

.service-banner-content p {
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.6;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: .5px;
    font-family: Verdana, Roboto;
}

.btn-contact-us {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border: 3px solid #005fb6;
    color: #005fb6;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    min-width: 200px;
    font-family: Helvetica, Roboto;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-contact-us .arrow-icon {
    font-size: 10px;
    margin-left: 8px;
}

.btn-contact-us:hover {
    background-color: #005fb6;
    color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
    .service-banner-bg {
        align-items: flex-end;
        height: auto;
    }

    .service-banner-content {
        max-width: 100%;
        padding: 20px;
        margin: 20px 0;
    }

    .service-banner-content h2 {
        font-size: 40px;
    }

    .btn-contact-us {
        font-size: 14px;
        border: 2px solid #005fb6;
        min-width: unset;
    }


}

/* Contact Section */
.service-contact-section {
    background-color: #005fb6;
    background-image: linear-gradient(240deg, #005fb6 0, #0c518f 100%);
    background-color: transparent;
    padding: 100px 0;
    color: #fff;
}

.sc-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.sc-contact-col {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.sc-contact-col:only-child {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px 50px;
    width: 100%;
}

.sc-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sc-contact-icon {
    /* width: 100px; */
    /* height: 100px; */
    /* background-color: #fff; */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005fb6;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.sc-contact-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.sc-contact-icon svg {
    width: 30px;
    height: 30px;
}

.sc-contact-info {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #e0f2fe;
    word-break: break-word;
}

.sc-contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.sc-contact-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #e0f2fe;
    margin: 0 0 6px 0;
}

.sc-contact-info p:last-child {
    margin-bottom: 0;
}

.sc-contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sc-contact-info ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #e0f2fe;
}

.sc-contact-info a {
    color: #e0f2fe;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sc-contact-info a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive */
@media (min-width: 768px) {
    .sc-contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 60px;
    }

    .sc-contact-grid:has(> .sc-contact-col:only-child) {
        grid-template-columns: 1fr;
    }

    .sc-contact-col:only-child {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }
}

@media (max-width: 767px) {
    .service-contact-section {
        padding: 70px 0;
    }

    .sc-contact-icon img {
        width: 60px;
        height: 60px;
    }

    .sc-contact-info h3 {
        font-size: 20px;
    }
}

/* Innovation & Newsletter Section */
.innovation-newsletter-section {
    padding: 80px 0;
    background-color: #fff;
}

.inno-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 992px) {
    .inno-news-grid {
        grid-template-columns: 2fr 1fr;
        gap: 50px;
    }

    .inno-col {
        border-right: 1px solid #e5e7eb;
        padding-right: 80px;
    }
}

@media (max-width: 992px) {
    .innovation-newsletter-section {
        padding: 40px 0;
    }
}

.inno-title {
    color: #005fb6;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.inno-list {
    display: flex;
    flex-direction: column;
}

.inno-item {
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #e5e7eb;
    gap: 30px;
}

.inno-item:first-child {
    padding-top: 0;
}

.inno-item:last-child {
    border-bottom: none;
}

.inno-img {
    width: 200px;
    flex-shrink: 0;
    display: block;
    /* height: 130px; */
}

.inno-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 11;
}

.inno-content {
    font-family: Helvetica, Roboto;
}

.inno-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.inno-content h3 a {
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
}

.inno-content h3 a:hover {
    color: #005fb6;
}

.inno-date {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 15px;
}

.inno-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Form Styles */
.sc-news-title {
    font-size: 24px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 30px;
    line-height: 1.3;
}

.sc-social-title {
    margin-top: 50px;
}

.sc-newsletter-form .sc-form-group {
    margin-bottom: 20px;
}

.sc-newsletter-form .sc-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 2px;
    font-size: 14px;
    color: #374151;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.sc-newsletter-form .sc-form-control:focus {
    outline: none;
    border-color: #005fb6;
}

.sc-captcha-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sc-captcha-img {
    height: 42px;
    border: 1px solid #d1d5db;
}

.sc-btn-send-outline {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #005fb6;
    color: #005fb6;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sc-btn-send-outline:hover {
    background-color: #005fb6;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .inno-item {
        flex-direction: column;
    }

    .inno-img {
        width: 100%;
    }

    .inno-title {
        font-size: 26px;
    }
}

/* Social Icons */
.sc-social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.sc-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.sc-social-icon:hover {
    opacity: 0.8;
}

.sc-social-icon.facebook {
    background-color: #3b5998;
}

.sc-social-icon.twitter {
    background-color: #1da1f2;
}

.sc-social-icon.youtube {
    background-color: #cd201f;
}

.sc-social-icon.instagram {
    background-color: #262626;
}

.sc-social-icon.linkedin {
    background-color: #0077b5;
}

/* Recent Posts */
.sc-recent-title {
    margin-top: 50px;
    margin-bottom: 25px;
}

.sc-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sc-recent-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sc-recent-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.sc-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc-recent-info h4 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.sc-recent-info h4 a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sc-recent-info h4 a:hover {
    color: #005fb6;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.support-bg-text {
    font-size: 120px;
    font-weight: 800;
    color: #f3f4f6;
    margin: 0 0 20px 0;
    line-height: 1;
    letter-spacing: -2px;
}

.support-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .support-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.support-card {
    display: block;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-img-wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-info {
    padding: 25px;
}

.card-info h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #374151;
}

/* Workshop Section */
.workshop-section {
    background: linear-gradient(135deg, #748de7 0%, #68a8f6 50%, #63c0fd 100%);
    padding: 80px 0;
    color: #fff;
}

.workshop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .workshop-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.workshop-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.workshop-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.4;
}

.workshop-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.workshop-youtube {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    font-size: 15px;
}

.workshop-youtube .yt-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.workshop-youtube .yt-icon:hover {
    transform: scale(1.1);
}

.workshop-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Video Operations Section */
.video-ops-section {
    padding: 80px 0;
    background-color: #fff;
}

.video-ops-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .video-ops-grid {
        grid-template-columns: 3fr 2fr;
        gap: 60px;
        align-items: flex-start;
    }
}

.video-ops-left {
    min-width: 0;
    /* Prevents grid blowout from flex children */
}

.video-ops-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 20px;
}

.video-player-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbs-scroll {
    background-color: #1f2937;
    /* padding: 0 30px;  */
}

/* Slick Arrows customization */
.video-thumbs-scroll .slick-prev,
.video-thumbs-scroll .slick-next {
    width: 30px;
    height: 100%;
    z-index: 1;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.5) !important;

}

.video-thumbs-scroll .slick-prev {
    left: 0;
}

.video-thumbs-scroll .slick-next {
    right: 0;
}

.video-thumbs-scroll .slick-prev:before,
.video-thumbs-scroll .slick-next:before {
    display: none;
}

.video-thumbs-scroll .custom-slick-arrow svg {
    transition: fill 0.2s;
}

.video-thumbs-scroll .custom-slick-arrow:hover svg,
.video-thumbs-scroll .custom-slick-arrow:focus svg {
    fill: #fff;
}

.video-thumbs-scroll .custom-slick-arrow:hover {
    background: rgba(0, 0, 0, 1) !important;
}

.video-thumb-item {
    display: flex !important;
    padding: 10px;
    gap: 10px;
    cursor: pointer;
    border-right: 1px solid #374151;
    transition: background-color 0.2s;
    outline: none;
}

.video-thumb-item:hover,
.video-thumb-item.active {
    background-color: #005fb6;
}

.slick-arrow svg {
    width: 22px;
}

.thumb-img-wrapper {
    width: 80px;
    flex-shrink: 0;
}

.thumb-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.video-thumb-item span {
    font-size: 12px;
    color: #d1d5db;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.video-thumb-item:hover span,
.video-thumb-item.active span {
    color: #fff;
}

/* Category List */
.video-ops-title {
    font-size: 28px;
    font-weight: 700;
    color: #005fb6;
    margin-bottom: 40px;
    line-height: 1.3;
}

.video-category-accordion {
    border-top: 1px solid #e5e7eb;
}

.accordion-header {
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #005fb6;
    cursor: pointer;
    display: flex;
    align-items: center;
    user-select: none;
}

.accordion-icon {
    font-size: 12px;
    margin-right: 10px;
    transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.video-text-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.video-text-list li {
    padding: 8px 0;
    padding-left: 20px;
}

.video-text-list a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    line-height: 1.5;
    display: block;
}

.video-text-list a:hover,
.video-text-list a.active {
    color: #005fb6;
}

/* Academy Section */
.academy-section {
    padding: 80px 0;
    background-color: #f3f8fc;
}

.academy-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .academy-header {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.academy-title {
    font-size: 32px;
    font-weight: 800;
    color: #005fb6;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    flex: 1;
}

.academy-desc {
    flex: 1;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.academy-desc p {
    margin: 0 0 10px 0;
}

.academy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .academy-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

.academy-col {
    min-width: 0;
}

.academy-col-title {
    font-size: 20px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 20px;
}

/* Specific styling for Academy accordion */
.academy-accordion {
    border-top: none;
    border-bottom: 1px solid #e5e7eb;
}

.academy-accordion .accordion-header {
    color: #6b7280;
}
