
.about-section {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.heading-line {
    width: 80px;
    height: 4px;
    background:#1DA69D;
    margin-top: 10px;
    border-radius: 5px;
}

.about-img img {
    transition: 0.4s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.badge-exp {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background:#1DA69D;
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 30px;
    font-size: 14px;
}

.btn-primary {
    background:#1DA69D;
    border: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background:#1DA69D;
}
.section-padding-0-100 {
    padding: 120px 0;
}

.letter-spacing {
    letter-spacing: 3px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.feature-box:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-5px);
}
.sub-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color:#1CC3B2;
}

.main-title {
    font-weight: 700;
    font-size: 36px;
    margin-top: 10px;
}

.title-line {
    width: 70px;
    height: 4px;
    background:#1CC3B2;
    margin-top: 15px;
    border-radius: 5px;
}

.about-text {
    color: #6c757d;
    line-height: 1.8;
}

.feature-item {
    font-size: 15px;
    margin-bottom: 12px;
    color: #333;
}

.feature-item i {
    color:#1CC3B2;
    margin-right: 8px;
}

.btn-gold {
    background:#1CC3B2;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-gold:hover {
    background:#1CC3B2;
    color: #fff;
}

/* Image Layout */
.image-grid {
    position: relative;
}

.img-box {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.img-box:hover img {
    transform: scale(1.1);
}

.img-box.large {
    height: 420px;
}

.img-box.small {
    position: absolute;
    width: 48%;
    height: 200px;
}

.img-box.top {
    top: -20px;
    left: -20px;
}

.img-box.bottom {
    bottom: -20px;
    right: -20px;
}

/* Responsive Fix */
@media(max-width:991px){
    .img-box.small{
        position: static;
        width: 100%;
        margin-top:15px;
    }
}
.about-container {
    padding: 80px 0;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
}

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-images-grid img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: 0.4s ease;
}

.about-images-grid img:hover {
    transform: scale(1.05);
}

/* Make first image bigger */
.about-images-grid img:first-child {
    grid-column: span 2;
    height: 250px;
}
.custom-btn {
    background-color: #1CC3B2 !important;
    color: #fff !important;
    border: none;
}

.custom-btn:hover {
    background-color: #17a89a !important;
}


.video-section {
    padding: 80px 0;
    background: gray;
    color: #fff;
}

/* Heading Style */
.section-heading h5 {
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.8;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeUp 1s ease forwards;
}

.heading-line {
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 0 auto 40px;
}

/* Video Card */
.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
}

.video-card:hover {
    transform: translateY(-8px);
}

.video-card video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.4s ease;
}

.video-card:hover video {
    transform: scale(1.05);
}

/* Overlay Text */
.video-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.video-overlay h4 {
    margin: 0;
    font-size: 20px;
    color: #fff;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .video-card video {
        height: 260px;
    }
}

@media (max-width: 767px) {
    .video-section {
        padding: 50px 0;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .video-card video {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .video-card {
        margin-bottom: 25px;
    }
}