* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* ================= HERO SECTION ================= */

.hero{
    position:relative;
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url('assets/images/hero-bg.jpg') center/cover no-repeat;
    padding:140px 0;
    color:#fff;
    overflow:hidden;
}

/* Container Layout */
.hero-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT CONTENT */
.hero-content{
    flex:1;
    text-align:left;
}

.hero-content h1{
    font-size:52px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
    color:#fff;
}

.hero-content h1 span{
    color:#f4c430;
}

.hero-content p{
    font-size:18px;
    color:#ddd;
    margin-bottom:30px;
    line-height:1.7;
}

/* BUTTON */
.btn-primary{
    display:inline-block;
    padding:14px 30px;
    background:#f4c430;
    color:#000;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.btn-primary:hover{
    background:#fff;
    transform:translateY(-3px);
}

/* RIGHT IMAGE */
.hero-image{
    flex:1;
    text-align:right;
}

.hero-image img{
    max-width:520px;
    width:100%;
    animation:floatImage 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatImage{
    0%{ transform:translateY(0px); }
    50%{ transform:translateY(-15px); }
    100%{ transform:translateY(0px); }
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .hero-content{
        text-align:center;
    }

    .hero-image{
        text-align:center;
        margin-top:40px;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:16px;
    }

}

@media(max-width:600px){

    .hero{
        padding:100px 0;
    }

    .hero-content h1{
        font-size:28px;
    }

    .btn-primary{
        padding:12px 24px;
        font-size:14px;
    }

}
/* ################## About Section ###################*/

/* ================= FEATURES SECTION ================= */

/* ================= ABOUT SECTION ================= */

.about-section {
    position: relative;
    padding: 80px 0;
    background: #f5f5f5;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Ensure content is above background */
.about-section .container {
    position: relative;
    z-index: 5;
    width: 90%;
    margin: auto;
}

/* TITLE */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #777;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #111;
    margin-top: 10px;
}

/* CONTENT GRID */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT */
.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.company-details {
    list-style: none;
    padding: 0;
}

.company-details li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #222;
}

/* SERVICES BOX */
.services-box {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.services-box h3 {
    color: #f4c430;
    margin-bottom: 20px;
    font-size: 22px;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    transition: 0.3s;
}

.services-list li:hover {
    padding-left: 10px;
    color: #f4c430;
}

/* BACKGROUND MOVING SHAPES */
.bg-shape {
    position: absolute;
    opacity: 0.06;
    background-repeat: no-repeat;
    background-size: contain;
    animation: float 8s infinite ease-in-out alternate;
    z-index: 1;
}

.shape1 {
    width: 300px;
    height: 300px;
    background-image: url('https://printmagic.ae/wp-content/uploads/2024/10/Flex-Sign-Board-01.webp');
    top: 80px;
    left: -80px;
}

.shape2 {
    width: 350px;
    height: 350px;
    background-image: url('assets/images/vector2.png');
    bottom: 60px;
    right: -100px;
    animation-duration: 10s;
}

@keyframes float {
    from { transform: translateY(0px); }
    to { transform: translateY(30px); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .services-box {
        padding: 30px;
    }
}

@media (max-width: 600px) {

    .about-section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 14px;
    }

    .services-box {
        padding: 25px;
    }
}

/*########################### Why Choose Us ####################*/
/* ================= WHY CHOOSE US ================= */

.why-choose-section {
    /* padding: 120px 0; */
    background: #f5f5f5;
    font-family: 'Poppins', sans-serif;
}

.why-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* IMAGE */
.why-image {
    position: relative;
    animation: fadeInLeft 1.2s ease;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

.why-image:hover img {
    transform: scale(1.03);
}

/* FLOATING BADGE */
.floating-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #f4c430;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite alternate;
}

.floating-badge h4 {
    margin: 0;
    font-size: 18px;
    color: #000;
}

.floating-badge p {
    margin: 0;
    font-size: 13px;
    color: #000;
}

/* CONTENT */
.why-content {
    animation: fadeInRight 1.2s ease;
}

.sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #888;
}

.why-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 15px 0;
    color: #111;
}

.why-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* QUOTE SLIDER */
.quote-slider {
    height: 40px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.quote {
    position: absolute;
    opacity: 0;
    transition: 0.8s ease;
    font-weight: 600;
    color: #f4c430;
}

.quote.active {
    opacity: 1;
}

/* BUTTON */
.why-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #111;
    border-radius: 30px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    transition: 0.3s;
}

.why-btn:hover {
    background: #111;
    color: #fff;
}

/* ANIMATIONS */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    from { transform: translateY(0px); }
    to { transform: translateY(-10px); }
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .why-content h2 {
        font-size: 24px;
    }

    .floating-badge {
        padding: 10px 15px;
    }
}

/*######################### Image section #######################*/
/* ================= GALLERY SECTION ================= */

.gallery-section {
    padding: 80px 0;
    background: #f5f5f5;
    font-family: 'Poppins', sans-serif;
}

.gallery-section .container {
    width: 90%;
    margin: auto;
}

/* TITLE */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title span {
    font-size: 14px;
    letter-spacing: 2px;
    color: #777;
    font-weight: 600;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    margin-top: 10px;
}

/* FILTER MENU */
.gallery-menu {
    text-align: center;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 22px;
    margin: 5px;
    border: none;
    border-radius: 30px;
    background: #e0e0e0;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #111;
    color: #fff;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ITEM */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    margin: 0;
    font-size: 18px;
}

/* FILTER ANIMATION */
.gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition: 0.4s ease;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 220px;
    }

    .section-title h2 {
        font-size: 26px;
    }
}

/* ###################################################### Services details page ##########################*/
/* GLOBAL */
/* body{
    margin:0;
    padding:0;
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
} */

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* HERO */
/* .hero{
    background:linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),
    center/cover no-repeat;
    padding:140px 20px;
    text-align:center;
    color:#fff;
}

.hero h1{
    font-size:48px;
    font-weight:700;
} */

/* DESCRIPTION SECTION */
.description-section{
    padding:80px 0;
}

.description-section h2{
    margin-bottom:20px;
    font-size:32px;
}

.description-section p{
    line-height:1.9;
    font-size:16px;
}

/* GALLERY */
.gallery-section{
    padding:60px 0;
    background:#f8f9fb;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-grid img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* FAQ + CONTACT */
.bottom-section{
    padding:80px 0;
}

.bottom-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

/* FAQ */
.faq h2{
    margin-bottom:25px;
}

.faq-item{
    background:#f9f9f9;
    border-radius:12px;
    margin-bottom:15px;
    overflow:hidden;
}

.faq-question{
    padding:15px 20px;
    font-weight:600;
    cursor:pointer;
    position:relative;
}

.faq-question::after{
    content:"+";
    position:absolute;
    right:20px;
}

.faq-item.active .faq-question::after{
    content:"-";
}

.faq-answer{
    display:none;
    padding:0 20px 15px;
    font-size:14px;
}

.faq-item.active .faq-answer{
    display:block;
}

/* CONTACT */
.contact-box{
    background:#f4f4f4;
    padding:40px;
    border-radius:20px;
}

.contact-box h2{
    margin-bottom:20px;
}

.contact-box input,
.contact-box textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border-radius:10px;
    border:1px solid #ddd;
}

.contact-box button{
    background:#f4c430;
    padding:12px 30px;
    border:none;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-box button:hover{
    background:#111;
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:992px){
    .gallery-grid{
        grid-template-columns:1fr 1fr;
    }
    .bottom-grid{
        grid-template-columns:1fr;
    }
    .hero h1{
        font-size:32px;
    }
}

@media(max-width:600px){
    .gallery-grid{
        grid-template-columns:1fr;
    }
}

