.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: #493e97;
    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: #f05924;
    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: #ff3e6c;
    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: #ff3e6c;
    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: #ff3e6c;
    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: #f05924;

}

/* //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: #f05924;
    border: none;
    padding: 10px 18px;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;

}

.apply-btn:hover {
    background: #ee2f1a;
}

.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: #28a745;
    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 #ff4b4b;
    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: #f05924;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-apply:hover {
    background-color: #ee2f1a;
}


/* 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: #f05924;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.product-btn:hover {
    background: #ee2f1a;
}

/* 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: #f05924;
    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: #483e94;
}

/* 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: #f05924;
    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: #f05924;
    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;
}

