.team-section {
    padding: 60px 0;
}

.row {
    gap: 25px 0;
}

.team-card {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    overflow: hidden;
    height: 430px;
}

.team-card:hover {
    transform: translateY(-10px);

}

.team-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 300px;
    align-items: center;
    justify-content: center;
}

.team-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transition: 0.4s;
    background-color: #0F3D91;
    padding: 12px 0;
    z-index: 0;
}

.team-card:hover .team-social {
    bottom: 0;
    opacity: 1;
}

.team-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 25px;
    transition: 0.3s;
}

.team-social a:hover {
    color: #1C7ED6;
    background-color: #ffff;
    padding: 3px;
    border-radius: 10%;
}

.team-card h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
}

.team-card p {
    color: #666;
    font-size: 14px;

}

.video-section {
    padding: 50px 0;
    text-align: center;
    font-family: Arial;
}

.video-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}

.video-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.video-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.video-card:hover {
    transform: translateY(-6px);
}

.video-card img {
    width: 100%;
    display: block;
    transition: 0.4s;
}

.video-card:hover img {
    transform: scale(1.08);
    opacity: 0.85;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: #1C7ED6;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    opacity: 0;
    transition: 0.3s;
}

.video-card:hover .play-btn {
    opacity: 1;
}

.video-card h4 {
    margin: 15px 0;
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 0;
    width: 80%;
    max-width: 700px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.popup-content iframe {
    width: 100%;
    height: 400px;
}

.close {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 32px;
    cursor: pointer;
    color: #333;
}

/* Responsive Popup Height */
@media(max-width: 550px) {
    .popup-content iframe {
        height: 250px;
    }
}

.video-section {
    padding: 40px 0;
    text-align: center;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.video-slider {
    display: flex;
    gap: 20px;
    transition: 0.5s ease;
}

.video-card {
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
}

.video-card img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s;
}

.video-card:hover img {
    transform: scale(1.08);
    opacity: 0.85;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: #1C7ED6;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    opacity: 0;
    transition: 0.3s;
}

.video-card:hover .play-btn {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 26px;
    width: 40px;
    height: 40px;
    color: #222;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: #7AC943;
    color: #fff;
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}

/* Responsive */
@media(max-width: 768px) {
    .video-card {
        min-width: 200px;
    }
}

@media(max-width: 480px) {
    .video-card {
        min-width: 180px;
    }
}

/* Video */
.video-card {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.video-card:hover {
    transform: translateY(-6px);
}

.video-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 220px;
    /* FIXED HEIGHT for all videos */
}

/* Video Fit Perfectly */
.video-thumb video,
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Keeps video/image fit inside */
    display: block;
    transition: 0.4s;
}

.video-card:hover video,
.video-card:hover img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn i {
    color: #fff;
    font-size: 23px;
}

.modal-header {
    background-color: #1C7ED6;

}

/* //careers apply page custom css */
.job-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
    text-align: left;
    position: relative;
}

.job-card:hover {
    transform: translateY(-6px);
}

.job-title {
    font-size: 22px;
    color: #222;
    font-weight: 600;
}

.job-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.apply-btn {
    background: #1C7ED6;
    border: none;
    padding: 10px 18px;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;

}

.apply-btn:hover {
    background: #7AC943;
}

.job-form {
    margin-top: 15px;
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.job-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.submit-btn {
    background: #7AC943;
    border: none;
    padding: 10px 18px;
    color: #fff;
    border-radius: 50px;
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* job form */
/* Outer Section */
.pro-job-form {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

/* Form Container */
.job-container {
    width: 100%;
    max-width: 850px;
    background: #ffffff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid #f1f1f1;
}

/* Heading with Line */
.job-title-line {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #1a1a1a;
    margin-bottom: 5px;
    border-left: 5px solid #7AC943;
    padding-left: 12px;
}

.job-sub {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

/* Layout */
.row-group {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Labels */
.input-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

/* Inputs */
.jobForm input,
.jobForm select,
.jobForm textarea {
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    background: #fafafa;
    font-size: 15px;
    transition: 0.25s;
}

/* Focus Effects */
.jobForm input:focus,
.jobForm select:focus,
.jobForm textarea:focus {
    background: #fff;
    border-color: #3b82f6;
    box-shadow: 0 0 0px 4px rgba(59, 130, 246, 0.2);
    outline: none;
}

/* Submit Button */
.btn-apply {
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    border: none;
    border-radius: 15px;
    font-size: 17px;
    background-color: #1C7ED6;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-apply:hover {
    background-color: #7AC943;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .row-group {
        flex-direction: column;
        gap: 15px;
    }

    .job-container {
        padding: 25px;
    }

    .btn-apply {
        font-size: 16px;
    }
}

.blinking {
    color: darkgreen;
    font-weight: bold;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.blinking-close {
    color: red;
    font-weight: bold;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

/* our products page custom css */
.our-products-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
    transition: 0.4s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.product-img img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.product-content {
    padding: 18px 20px;
    text-align: center;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.product-desc {
    font-size: 14px;
    color: #555;
    margin: 10px 0 18px;
    line-height: 1.5;
}

.product-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 15px;
    background: #1C7ED6;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.product-btn:hover {
    background: #7AC943;
}

/* our projects page custom css */
/* SECTION SPACING */
.project-section {
    padding: 60px 0;
}

/* CARD STYLE */
.project-card {
    width: 100%;
    height: 360px;
    /* FULL CARD HEIGHT */
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease-in-out;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* IMAGE SIZE FIXED */
.project-img {
    width: 100%;
    height: 220px;
    /* FIXED IMAGE HEIGHT */
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Perfect crop */
    transition: transform 0.4s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.08);
}

/* TEXT AREA */
.project-info {
    padding: 16px 20px;
    height: calc(100% - 220px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-tag {
    font-size: 14px;
    color: #1C7ED6;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
}

.project-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.project-title a {
    color: #111;
    text-decoration: none;
}

.project-title a:hover {
    color: #0F3D91;
}

/* SECTION STYLING */
.starter-package-section {
    padding: 60px 0;
    background: #f4f7fc;
}

.starter-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
}

.starter-title i {
    color: #3949ab;
    margin-right: 10px;
}

/* PRICE TAG */
.starter-price-tag {
    text-align: center;
    background: #1C7ED6;
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    margin: 0 auto 35px;
    font-weight: 600;
}

.starter-price-tag i {
    margin-right: 8px;
}

/* TABLE DESIGN */
.starter-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
}

.starter-table th {
    background: #1C7ED6;
    color: #fff;
    padding: 14px;
    font-size: 18px;
    text-align: left;
}

.starter-table td {
    padding: 14px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.starter-table tr:nth-child(even) td {
    background: #f1f1f1;
}

.starter-table i {
    color: #3949ab;
    margin-right: 8px;
}

/* FOOTER NOTE */
.starter-footer-note {
    margin-top: 20px;
    text-align: center;
    color: #444;
    font-size: 15px;
}

/* Navbar Call Icon Button */
.call-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bs-primary);
    transition: all 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.call-icon-btn i {
    font-size: 18px;
    color: var(--bs-primary);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(15, 61, 145, 0.5);
}

/* Navbar Nav Items Spacing */
.header-nav .nav.navbar-nav {
    gap: 5px;
    padding-top: 8px;
}

.header-nav .nav.navbar-nav > li > a {
    padding: 10px 12px !important;
    font-weight: 500;
}

.header-nav .nav.navbar-nav > li > a span {
    padding: 0 3px;
}

/* Header Nav Alignment */
@media (min-width: 992px) {
    .header-nav.w3menu-start {
        display: flex;
        align-items: center;
    }
    
    .site-header .main-bar .inner-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    /* Ensure nav items are vertically centered */
    .header-nav.w3menu-start .nav {
        display: flex;
        align-items: center;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .header-nav .nav.navbar-nav > li > a {
        padding: 8px 10px !important;
        font-size: 14px;
    }
    
    .call-icon-btn {
        width: 38px;
        height: 38px;
        margin-left: 10px;
    }
    
    .call-icon-btn i {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .header-nav .nav.navbar-nav > li > a {
        padding: 10px 15px !important;
        font-size: 15px;
    }
    
    .call-icon-btn {
        width: 40px;
        height: 40px;
        margin: 10px 0;
        display: inline-flex;
    }
    
    .header-nav .nav.navbar-nav {
        padding: 10px 0;
    }
}

@media (max-width: 576px) {
    .call-icon-btn {
        width: 36px;
        height: 36px;
    }
    
    .call-icon-btn i {
        font-size: 15px;
    }
}

/* Mobile Menu Call Icon */
@media (max-width: 991px) {
    .w3menu-start .call-icon-btn {
        display: inline-flex !important;
        margin: 15px 10px;
    }
    
    .header-nav.mo-left {
        background: #fff;
    }
    
    .header-nav .nav.navbar-nav > li {
        border-bottom: 1px solid #eee;
    }
    
    .header-nav .nav.navbar-nav > li > a {
        border-radius: 0 !important;
    }
}

/* Ensure proper spacing in nav for desktop */
@media (min-width: 992px) {
    .header-nav .nav > li.call-icon-wrapper {
        display: flex;
        align-items: center;
    }
}

/* FAQ Section Responsive Fixes */
.dz-accordion.style-3 .accordion-button {
    padding: 15px 20px;
    font-size: 15px;
}

.dz-accordion.style-3 .accordion-body {
    padding: 15px 20px;
    font-size: 14px;
}

.content-wrapper.style-5 .content-info {
    padding: 20px;
}

.content-wrapper.style-5 .content-media img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .content-wrapper.style-5 {
        flex-direction: column;
    }
    
    .content-wrapper.style-5 .col-xxl-7,
    .content-wrapper.style-5 .col-xxl-5 {
        width: 100%;
    }
    
    .content-wrapper.style-5 .content-media {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .dz-accordion.style-3 .accordion-button {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .content-wrapper.style-5 .section-head .title {
        font-size: 24px;
    }
}

/* Responsive FAQ styles end */

/* FAQ Section CSS */
.faq-section {
    padding: 80px 0;
}

.faq-section .accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.faq-section .accordion-button {
    background: #fff;
    color: #0F3D91;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #0F3D91 0%, #1E5CB8 100%);
    color: #fff;
    box-shadow: none;
}

.faq-section .accordion-button::after {
    filter: brightness(0) invert(0.3);
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion-button.collapsed {
    color: #0F3D91 !important;
}

.faq-section .accordion-body {
    background: #f8f9fa;
    padding: 20px 25px;
    font-size: 15px;
    line-height: 1.7;
}

.faq-section .section-head .title {
    font-size: 36px;
    font-weight: 800;
    color: #0F3D91 !important;
}

.faq-image-wrapper img {
    transition: transform 0.4s ease;
}

.faq-image-wrapper:hover img {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 991px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section .section-head .title {
        font-size: 28px;
    }
    
    .faq-section .accordion-button {
        font-size: 15px;
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .faq-section .pe-lg-4 {
        padding-right: 0 !important;
    }
    
    .faq-image-wrapper {
        margin-bottom: 30px;
    }
    
    .faq-image-wrapper div {
        bottom: -15px !important;
        right: 10px !important;
        padding: 15px !important;
    }
}

/* Marquee Section CSS */
.marquee-section {
    background: linear-gradient(135deg, #0F3D91 0%, #1E5CB8 100%);
    overflow: hidden;
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, #0F3D91, transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, #0F3D91, transparent);
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    padding: 10px 0;
}

.marquee-content span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 0 30px;
    letter-spacing: 0.5px;
}

.marquee-divider {
    color: #F46700 !important;
    font-size: 20px !important;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-content span {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .marquee-content {
        animation: marquee 18s linear infinite;
    }
}

/* About Section CSS */
.about-section {
    background: #fff;
}

.about-image-wrapper img {
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover img {
    transform: translateY(-5px);
}

.about-content h2 {
    transition: all 0.3s ease;
}

.about-features .d-flex {
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
}

.about-features .d-flex:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.about-content .btn:hover {
    background: #1E5CB8 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 61, 145, 0.4);
}

/* About section button outline hover */
.about-content .btn-outline:hover {
    background: linear-gradient(135deg, #0F3D91, #1E5CB8) !important;
    color: #fff !important;
    border-color: #0F3D91 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .about-section {
        padding: 50px 0 !important;
    }
    
    .about-content h2 {
        font-size: 28px !important;
    }
    
    .about-experience-box {
        left: 10px !important;
        bottom: 15px !important;
    }
}

@media (max-width: 576px) {
    .faq-image-wrapper {
        margin-bottom: 30px;
    }
    
    .faq-image-wrapper div {
        bottom: -15px !important;
        right: 10px !important;
        padding: 15px !important;
    }
}

/* New FAQ Section CSS */
.faq-new-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    padding: 80px 0;
}

.faq-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.faq-image-card > img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faq-experience-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: linear-gradient(135deg, #0F3D91, #1E5CB8);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(15, 61, 145, 0.4);
}

.exp-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-icon i {
    color: #fff;
    font-size: 22px;
}

.exp-text {
    display: flex;
    flex-direction: column;
}

.exp-number {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.exp-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
}

.faq-stats {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    color: #0F3D91;
    font-size: 20px;
    font-weight: 700;
}

.stat-label {
    font-size: 11px;
    color: #666;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(15, 61, 145, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(15, 61, 145, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 22px 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
    gap: 15px;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #0F3D91 0%, #1E5CB8 100%);
}

.faq-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(15, 61, 145, 0.1), rgba(30, 92, 184, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: rgba(255, 255, 255, 0.2);
}

.faq-icon i {
    color: #0F3D91;
    font-size: 18px;
}

.faq-item.active .faq-icon i {
    color: #fff;
}

.faq-question span:nth-child(2) {
    flex: 1;
    font-weight: 600;
    color: #0F3D91;
    font-size: 16px;
    line-height: 1.4;
}

.faq-item.active .faq-question span:nth-child(2) {
    color: #fff;
}

.faq-arrow {
    width: 30px;
    height: 30px;
    background: rgba(15, 61, 145, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(180deg);
}

.faq-arrow i {
    color: #0F3D91;
    font-size: 12px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-arrow i {
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .faq-image-card {
        margin-top: 30px;
    }
    
    .faq-experience-badge {
        left: 10px;
        bottom: 15px;
        padding: 15px;
    }
    
    .faq-stats {
        right: 10px;
        bottom: 15px;
        padding: 12px 15px;
    }
}

/* Elegant Testimonial Section CSS */
.testimonial-elegant-section {
    background: #fafbfc;
    padding: 100px 0;
    position: relative;
}

.testimonial-elegant-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, #fff 0%, transparent 100%);
}

.testimonial-elegant-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.elegant-badge {
    display: inline-block;
    background: #0F3D91;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.elegant-title {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.1;
}

.elegant-subtitle {
    color: #6b7280;
    font-size: 18px;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonial-wrapper {
    overflow-x: auto;
    padding-bottom: 20px;
}

.testimonial-row {
    display: flex;
    gap: 25px;
    min-width: max-content;
}

.testimonial-card-elegant {
    width: 380px;
    flex-shrink: 0;
    position: relative;
    background: #fff;
    border-radius: 24px;
    transition: all 0.4s ease;
}

.testimonial-card-elegant:hover {
    transform: translateY(-10px);
}

.testimonial-card-elegant.featured {
    width: 450px;
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, #0F3D91, #1E5CB8);
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.card-content {
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card-elegant.featured .card-content {
    padding: 40px;
}

.top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.quote-icon-elegant {
    width: 55px;
    height: 55px;
    background: #0F3D91;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon-elegant i {
    color: #fff;
    font-size: 24px;
}

.quote-icon-elegant.small {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.quote-icon-elegant.small i {
    font-size: 18px;
}

.rating-elegant {
    display: flex;
    gap: 4px;
}

.rating-elegant i {
    color: #fbbf24;
    font-size: 16px;
}

.rating-elegant.small {
    margin-top: auto;
    padding-top: 15px;
}

.rating-elegant.small i {
    font-size: 12px;
}

.review-elegant {
    font-size: 17px;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 25px;
    flex: 1;
}

.testimonial-card-elegant .review-elegant {
    font-size: 15px;
    margin-bottom: 20px;
}

.client-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.client-row.compact {
    padding-top: 15px;
    border-top: none;
    margin-bottom: 10px;
}

.client-img-elegant {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-card-elegant .client-img-elegant {
    width: 45px;
    height: 45px;
}

.client-img-elegant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info-elegant h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0F3D91;
    margin: 0 0 4px;
}

.testimonial-card-elegant .client-info-elegant h4 {
    font-size: 15px;
}

.client-info-elegant span {
    font-size: 13px;
    color: #9ca3af;
}

.testimonial-card-elegant .client-info-elegant span {
    font-size: 12px;
}

/* Hide scrollbar */
.testimonial-wrapper::-webkit-scrollbar {
    height: 6px;
}

.testimonial-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonial-wrapper::-webkit-scrollbar-thumb {
    background: #0F3D91;
    border-radius: 10px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #0F3D91;
    width: 35px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .testimonial-elegant-section {
        padding: 60px 0;
    }
    
    .elegant-title {
        font-size: 38px;
    }
    
    .elegant-subtitle {
        font-size: 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .elegant-title {
        font-size: 30px;
    }
    
    .elegant-subtitle {
        font-size: 15px;
    }
    
    .testimonial-card-elegant,
    .testimonial-card-elegant.featured {
        width: 320px;
    }
    
    .card-content,
    .testimonial-card-elegant.featured .card-content {
        padding: 25px;
    }
    
    .quote-icon-elegant {
        width: 45px;
        height: 45px;
    }
    
    .quote-icon-elegant i {
        font-size: 20px;
    }
    
    .review-elegant,
    .testimonial-card-elegant .review-elegant {
        font-size: 14px;
    }
}

/* New Blog Section CSS */
.blog-modern-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.blog-card-new {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 61, 145, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-new:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(15, 61, 145, 0.15);
    border-color: rgba(15, 61, 145, 0.2);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-new:hover .blog-image-wrapper img {
    transform: scale(1.15);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0F3D91;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content-wrapper {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta-new {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

.blog-meta-new span {
    color: #888;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta-new i {
    color: #0F3D91;
    font-size: 12px;
}

.blog-content-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content-wrapper h3 a {
    color: #0F3D91;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content-wrapper h3 a:hover {
    color: #1E5CB8;
}

.blog-content-wrapper p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0F3D91;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-btn:hover {
    color: #1E5CB8;
    gap: 15px;
}

.blog-btn .btn-arrow {
    width: 28px;
    height: 28px;
    background: rgba(15, 61, 145, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog-btn .btn-arrow i {
    font-size: 12px;
    color: #0F3D91;
}

.blog-btn:hover .btn-arrow {
    background: #0F3D91;
}

.blog-btn:hover .btn-arrow i {
    color: #fff;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0F3D91, #1E5CB8);
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(15, 61, 145, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(15, 61, 145, 0.4);
    gap: 18px;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .testimonial-modern-section,
    .blog-modern-section {
        padding: 60px 0;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card-new {
        padding: 30px;
    }
    
    .testimonial-modern-section h2,
    .blog-modern-section h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 768px) {
    .testimonial-card-new {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .author-info h4 {
        font-size: 16px;
    }
    
    .blog-image-wrapper {
        height: 200px;
    }
    
    .blog-content-wrapper {
        padding: 20px;
    }
    
    .blog-content-wrapper h3 {
        font-size: 18px;
    }
    
    .blog-meta-new {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .testimonial-modern-section h2,
    .blog-modern-section h2 {
        font-size: 26px !important;
    }
    
    .testimonial-card-new {
        margin-bottom: 20px;
    }
    
    .quote-icon {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .quote-icon i {
        font-size: 16px;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .view-all-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .faq-new-section {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 18px 20px;
        gap: 12px;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
    }
    
    .faq-question span:nth-child(2) {
        font-size: 14px;
    }
    
    .faq-answer p {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .faq-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .faq-question span:nth-child(2) {
        font-size: 14px;
        order: 1;
        width: calc(100% - 80px);
    }
    
    .faq-experience-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
    }
    
    .faq-stats {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 10px;
        gap: 12px;
        padding: 10px 12px;
    }
    
    .exp-icon {
        width: 40px;
        height: 40px;
    }
    
    .exp-icon i {
        font-size: 18px;
    }
    
    .exp-number {
        font-size: 22px;
    }
}

/* Hero Banner Style 3 Fix */
.hero-banner.style-3 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    min-height: 680px;
}

.hero-thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

#lottie-container {
    width: 100%;
    max-width: 550px;
    height: auto;
    min-height: 350px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-banner-img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero-banner.style-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(15, 61, 145, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(30, 92, 184, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(122, 201, 67, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.hero-banner.style-3 > * {
    position: relative;
    z-index: 1;
}

.hero-banner.style-3::after {
    display: none;
}

.hero-banner.style-3 .banner-shape4,
.hero-banner.style-3 .banner-shape5,
.hero-banner.style-3 .banner-shape6 {
    opacity: 0.4 !important;
}

.hero-banner.style-3 .banner-shape4 {
    background-color: #0F3D91 !important;
}

.hero-banner.style-3 .banner-shape5 {
    background-color: #1E5CB8 !important;
}

.hero-banner.style-3 .banner-shape6 {
    background-color: #7AC943 !important;
}

.hero-banner.style-3 .title {
    color: #0F3D91 !important;
}

.hero-banner.style-3 .banner-p {
    color: #0F3D91 !important;
    font-weight: 600;
}

.hero-banner.style-3 .content-bx {
    color: #555 !important;
}

.hero-banner.style-3 .btn-primary {
    background: #0F3D91 !important;
    border-color: #0F3D91 !important;
}

.hero-banner.style-3 .btn-secondary {
    background: transparent !important;
    border: 2px solid #0F3D91 !important;
    color: #0F3D91 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner.style-3 {
        height: auto !important;
        min-height: 500px;
        padding-bottom: 50px;
    }
    
    .hero-banner.style-3 .banner-shape4,
    .hero-banner.style-3 .banner-shape5,
    .hero-banner.style-3 .banner-shape6 {
        display: none;
    }
}
@media (max-width: 991px) {
    .about-section {
        padding: 50px 0 !important;
    }
    
    .about-content h2 {
        font-size: 28px !important;
    }
    
    .about-experience-box {
        left: 10px !important;
        bottom: 15px !important;
        padding: 20px !important;
    }
    
    .about-experience-box h2 {
        font-size: 36px !important;
    }
    
    .about-image-wrapper > div:nth-child(3) {
        right: 10px !important;
        top: 15px !important;
    }
    
    .marquee-section {
        padding: 20px 0 !important;
    }
    
    .marquee-content span {
        font-size: 14px !important;
        padding: 0 15px !important;
    }
    
    .services-section .col-xl-3 {
        margin-bottom: 20px;
    }
    
    .hero-banner .col-md-7,
    .hero-banner .col-md-5 {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-banner .padding-top-h {
        padding-top: 100px !important;
    }
    
    .hero-banner h1 {
        font-size: 28px !important;
    }
    
    .hero-banner .banner-p {
        font-size: 16px !important;
    }
    
    .hero-thumbnail dotlottie-player {
        max-width: 300px !important;
        margin: 0 auto;
        display: block;
    }
    
    .vertical-info {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .about-features .col-6 {
        margin-bottom: 15px;
    }
    
    .about-features .d-flex {
        flex-direction: row !important;
        text-align: left;
    }
    
    .about-features .d-flex > div:first-child {
        margin-right: 12px !important;
        margin-bottom: 0 !important;
    }
    
    .about-content .btn {
        padding: 12px 25px !important;
        font-size: 14px !important;
    }
    
    .about-content .d-flex {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .section-head .title {
        font-size: 26px !important;
    }
    
    .services-section .icon-bx-wraper {
        margin-bottom: 20px;
    }
    
    .testimonial-3 {
        flex-direction: column;
    }
    
    .testimonial-3 .testimonial-media {
        order: -1;
    }
    
    .testimonial-3 .testimonial-media img {
        height: 200px !important;
    }
}

@media (max-width: 576px) {
    .about-image-wrapper {
        margin-bottom: 40px;
    }
    
    .about-experience-box {
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: -20px !important;
    }
    
    .about-image-wrapper > div:nth-child(3) {
        right: 50% !important;
        transform: translateX(50%) !important;
        top: auto !important;
        bottom: 80px !important;
    }
    
    .marquee-content span {
        font-size: 12px !important;
    }
    
    .hero-banner .btn-lg {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    .hero-banner .d-flex {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .hero-banner .ms-2 {
        margin-left: 0 !important;
    }
    
    .video-carousel-section .col-lg-3 {
        margin-bottom: 15px;
    }
    
    .video-card .video-thumb {
        height: 180px !important;
    }
    
    .content-wrapper.style-14 {
        flex-direction: column;
    }
    
    .content-wrapper.style-14 .col-xl-6 {
        width: 100% !important;
        margin-bottom: 30px !important;
    }
}

/* Fix for all sections to ensure proper padding on mobile */
@media (max-width: 991px) {
    section {
        padding: 50px 0 !important;
    }
    
    .content-inner,
    .content-inner-2 {
        padding: 50px 0 !important;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0 !important;
    }
    
    .content-inner,
    .content-inner-2 {
        padding: 40px 0 !important;
    }
}
    
    .about-experience-box {
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: -20px !important;
    }
}

