/* Buttons */
.service-btn-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

/* Call Button */
.btn-call {
    background: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-call:hover {
    background: #218838;
}

/* Read Button */
.btn-read {
    border: 1px solid #28a745;
    color: #28a745;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-read:hover {
    background: #28a745;
    color: #fff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .service-image img {
        height: 200px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 14px;
    }

    .service-btn-group {
        flex-direction: column;
    }

    .btn-call,
    .btn-read {
        width: 100%;
        text-align: center;
    }
}

.faq-section {
    padding: 60px 0;
    background: #f8f9fc;
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.faq-question {
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 20px;
    transition: 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    font-size: 14px;
    line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-question {
        font-size: 14px;
    }
}

/* Video Card */
.video-gallery {
    margin-bottom: 20px;
}
.row {
    row-gap: 25px;
}

/* Fixed Size Box */
.video-box {
    position: relative;
    width: 100%;
    height: 330px; /* SAME HEIGHT */
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

/* iframe full fit */
.video-box iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
    .video-box {
        height: 300px;
    }
}

.applications-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.app-row {
    margin-top: 50px;
}

.app-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.app-content ul {
    list-style: none;
    padding-left: 0;
}

.app-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.app-image img {
    width: 100%;
    border-radius: 15px;
}

.app-extra {
    margin-top: 60px;
}

.app-cta {
    margin-top: 30px;
}

.btn-primary {
    background: #28a745;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
}

.btn-secondary {
    border: 1px solid #28a745;
    color: #28a745;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .app-row {
        text-align: center;
    }

    .app-cta a {
        display: block;
        margin: 10px 0;
    }
}

.tick-list {
    list-style: none;
    padding-left: 0;
}

.tick-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Tick Icon */
.tick-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
}


.sticky1-container1 {
            padding: 0px;
            margin: 0px;
            position: fixed;
            right: -115px;
            top: 381px;
            width: 210px;
            z-index: 1100;
            list-style-type: none;
        }

        
        video {
            max-width: 100%;
            height: auto;
        }
		
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}		

/* Section */
.process-section {
    padding: 80px 0;
    background: #f8f9fc;
}

/* Title */
.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

/* Row spacing */
.process-row {
    margin-top: 40px;
    row-gap: 30px;
}

/* Card */
.process-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-8px);
}

/* Icon */
.process-icon {
    margin-bottom: 15px;
}

.process-icon img {
    width: 60px;
}

/* Heading */
.process-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Text */
.process-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {

    .section-title h2 {
        font-size: 18px;
    }

    .process-card {
        padding: 20px;
    }

    .process-card h3 {
        font-size: 18px;
    }

    .process-card p {
        font-size: 14px;
    }
}