/*====================================================
GALLERY.CSS
AMROS PROJECTS LLP
======================================================*/

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: #fff;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #eaf4ff;
    color: #005BAA;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Category Filter Tabs */
.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 12px 28px;
    background: #f8fbfd;
    border: 1px solid #e5edf5;
    color: #475467;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: #005BAA;
    color: #fff;
    border-color: #005BAA;
    box-shadow: 0 8px 20px rgba(0, 91, 170, 0.25);
}

/* Gallery Grid */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* Gallery Items */
.gallery-item-box {
    padding: 15px;
}

.gallery-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e8eef5;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    height: 100%;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.09);
    border-color: #005BAA;
}

.gallery-img-wrapper {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #081c34;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.08);
    opacity: 0.85;
}

/* Video Overlay controls */
.video-overlay-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    color: #005BAA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 2;
    cursor: pointer;
}

.gallery-card:hover .video-overlay-play {
    background: #005BAA;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-card-info {
    padding: 25px;
    flex-grow: 1;
}

.gallery-card-info span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0A84FF;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.gallery-card-info h4 {
    font-size: 18px;
    color: #081c34;
    margin-bottom: 8px;
    line-height: 1.4;
}

.gallery-card-info p {
    font-size: 14px;
    color: #667085;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Custom Lightbox Embed or simple Modal video play */
.modal-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Request Form */
.request-form-section {
    padding: 60px 0;
    background: #f8fbfd;
}

.request-form-box {
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    border: 1px solid #e5edf5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.request-form-box h3 {
    font-size: 24px;
    color: #081c34;
    margin-bottom: 12px;
}

.request-form-box p {
    font-size: 15px;
    color: #667085;
    margin-bottom: 30px;
}

.request-form-box label {
    font-size: 14px;
    font-weight: 600;
    color: #344054;
    margin-bottom: 8px;
    display: block;
}

.request-form-box .form-control,
.request-form-box .form-select {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #e5edf5;
    background: #fff;
    font-size: 14px;
}

.request-form-box textarea.form-control {
    height: auto;
    min-height: 120px;
}

.btn-primary-custom {
    padding: 15px 35px;
    background: linear-gradient(135deg, #005BAA, #0A84FF);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-primary-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 91, 170, 0.2);
    color: #fff;
}
