﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&amp;family=Alegreya+Sans+SC&amp;family=Chango&amp;family=Caladea&amp;family=Rubik+Moonrocks&amp;family=Bungee+Inline&amp;family=Alegreya+Sans+SC&amp;family=Rammetto+One&amp;family=Michroma&amp;family=Nosifer&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&amp;family=Alegreya+Sans+SC&amp;family=Chango&amp;family=Caladea&amp;family=Rubik+Moonrocks&amp;family=Bungee+Inline&amp;family=Alegreya+Sans+SC&amp;family=Rammetto+One&amp;family=Michroma&amp;family=Nosifer&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&amp;family=Bowlby+One&amp;family=Days+One&amp;family=Lilita+One&amp;family=Titan+One&amp;display=swap');


body {
    font-family: "Open Sans", sans-serif;
    background: linear-gradient(135deg, rgb(221 236 225) 0%, rgb(255 255 255) 100%);
}

a {
    color: #000000;
    text-decoration: none;
}

    a:hover {
        color: #5faee3;
        text-decoration: none;
    }

h1,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

h2,
h3 {
    font-family: "Playfair Display", serif;
}

/*--------------------------------------------------------------
# Back to top button - Unique Modern Cool Style
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    right: 10px;
    bottom: 10px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #114d82, #067d72);
    color: transparent;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    transform: scale(0.8);
    transform-origin: center;
    overflow: hidden;
}

    .back-to-top i {
        font-size: 30px;
        color: #ffffff;
        transition: transform 0.3s ease, color 0.3s ease;
        z-index: 1;
    }

    .back-to-top:hover {
        background: linear-gradient(135deg, #0c467a, #009688);
    }

        .back-to-top:hover i {
            color: #ffffff;
            transform: translateY(-5px);
            transform: scale(1.1) rotate(-45deg);
        }

    .back-to-top:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 300%;
        height: 300%;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .back-to-top:hover:before {
        opacity: 1;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

    .back-to-top i:before {
        content: "\2191";
        /* Unicode for "up arrow" */
        font-size: 30px;
        font-weight: bold;
        z-index: 2;
    }


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    z-index: 997;
    transition: all 0.5s ease;
    padding: 16px 0;
    background: linear-gradient(135deg, #0c3777, #0f8e7e);
    width: 100%;
    margin: 0px;
}

    #header.header-scrolled {
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        padding: 12px 0;
        top: 0;
        margin-top: 0;
        border-radius: 0;
        width: 100%;
        border: 0;
    }

    #header .logo h1 {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1px;
        color: #ffffff;
    }

        #header .logo h1 a,
        #header .logo h1 a:hover {
            color: #d1ffd3;
            text-decoration: none;
        }

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 50px;
    }

/*--------------------------------------------------------------
# Header End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: inline-block;
        padding: 12px 16px;
        font-size: 17px;
        font-weight: 500;
        color: #f8f9fa;
        white-space: nowrap;
        transition: 0.3s;
        font-family: 'Poppins', sans-serif;
    }

        .navbar a:hover,
        .navbar .active,
        .navbar li:hover > a {
            color: #6ce0df;
            text-decoration: none;
        }

        .navbar a:hover {
            transform: translateY(-2px);
        }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        padding: 10px 30px;
        margin-left: 20px;
        border-radius: 50px;
        color: white;
        background: #25d36600;
        transition: all 0.3s ease;
        border: 2px solid white;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            background: #ffffff;
            border: 2px solid #ffffff;
            color: #033f6c;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 30px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
        }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #000000;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    #header {
        box-shadow: 0px 2px 12px rgba(106, 91, 91, 0.0);
        background-color: #28a745;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 8px;
        background: linear-gradient(60deg, #032f72, #108d7e);
        /* Red gradient background */

        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 30px 20px;
        text-align: center;
        font-size: 28px;
        color: #ffffff;
        border-bottom: 1px solid rgb(255 255 255 / 91%);
    }

    .navbar-mobile ul.list-border li {
        padding: 8px 0px;
        margin: 18px 18px;
    }

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: #8df0f6;
    }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 40px 0px;
        background: #000000;
        color: white;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #000000;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Navigation Section End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Hero Section start
--------------------------------------------------------------*/

#hero {
    padding: 100px 0;
    background: linear-gradient(60deg, #032f72, #108d7e);
    color: #fff;
    overflow: hidden;
    position: relative;
    height: 100vh;
    max-height: 100%;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
}

    .hero-title .highlight {
        color: #e1fffd;
        text-decoration: underline;
    }

.hero-description {
    margin: 20px 0;
    font-size: 22px;
    line-height: 1.6;
    color: #e0f4ff;
}

.hero-buttons .btn {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

.hero-buttons .btn-primary {
    background: #ffffff;
    color: #004f7c;
    border: none;
}

    .hero-buttons .btn-primary:hover {
        background: #ffcc3300;
        border: 2px solid #ffffff;
        color: white;
    }

.hero-buttons .btn-outline-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    margin-left: 10px;
}

    .hero-buttons .btn-outline-secondary:hover {
        background: #ffffff;
        color: #004f7c;
    }

/* Image Wrapper with Before & After Elements */
.image-wrapper {
    position: relative;
    max-width: 100%;
}

    .image-wrapper img {
        border-radius: 15px;
        width: 100%;
    }

    .image-wrapper .before-element,
    .image-wrapper .after-element {
        content: '';
        position: absolute;
        background: rgba(255, 214, 102, 0.4);
        border-radius: 50%;
        z-index: -1;
        opacity: 0.8;
    }

    .image-wrapper .before-element {
        top: -30px;
        left: -30px;
        width: 120px;
        height: 120px;
    }

    .image-wrapper .after-element {
        bottom: -40px;
        right: -40px;
        width: 150px;
        height: 150px;
        background: rgba(42, 161, 200, 0.4);
    }

/* Responsive Adjustments */
@media (max-width: 991px) {
    #hero {
        text-align: center;
        height: 100%;
        min-height: 100vh;
        margin-top: 30px;
        padding: 70px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .image-wrapper .before-element,
    .image-wrapper .after-element {
        display: none;
    }
}

@media (max-width: 768px) {
    #hero .row {
        flex-direction: column-reverse;
    }

    .hero-buttons .btn {
        display: block;
        margin: 20px auto;
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Hero Section End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}


.section-title {
    text-align: left;
    padding-bottom: 25px;
}

    .section-title h2 {
        font-size: 32px;
        position: relative;
        color: #3e3e3e;
        font-weight: 500;
        font-family: "Playfair Display", serif;
    }

    .section-title h4 {
        font-size: 40px;
        text-transform: uppercase;
        position: relative;
        color: #000000;
        font-family: 'Caladea', serif;
    }

        .section-title h4::after {
            content: "";
            width: 100px;
            height: 1px;
            background: #a5a1a1;
            display: inline-block;
        }

        .section-title h4::after {
            margin: 0 0 8px 15px;
        }


    .section-title p {
        margin: 15px 0 0 0;
    }

@media screen and (max-width: 768px) {
    .section-title {
        padding-left: 20px;
    }
}

/*--------------------------------------------------------------
# Features Section for Printing Service
--------------------------------------------------------------*/
.features-printing {
    padding: 80px 20px;
    background: #eef7fb;
    position: relative;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

    .features-printing .section-title h1 {
        font-family: 'Playfair Display', serif;
        font-size: 42px;
        color: #2c3e50;
        text-align: center;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .features-printing .section-title .subtitle {
        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        color: #067e67;
        text-align: center;
        margin-bottom: 40px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

.feature-item {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #068b71, #0e5f96);
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
    width: 100%;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
    }

    .feature-card .icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        line-height: 1.5;
    }

@media (max-width: 991px) {
    .features-printing {
        padding: 60px 20px;
    }

        .features-printing .section-title h1 {
            font-size: 36px;
        }

        .features-printing .section-title .subtitle {
            font-size: 18px;
        }

    .feature-card {
        padding: 25px;
    }

        .feature-card h3 {
            font-size: 18px;
        }
}

@media (max-width: 575px) {
    .features-printing .section-title h1 {
        font-size: 30px;
    }

    .features-printing .section-title .subtitle {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Features Section End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# About Printing Section
--------------------------------------------------------------*/
.about-printing {
    padding: 100px 20px;
    position: relative;
    background-color: #f8fafd;
    overflow: hidden;
}

    .about-printing .text-content h1, h2 {
        font-family: 'Playfair Display', serif;
        font-size: 42px;
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .about-printing .text-content .subtitle {
        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        color: #067e67;
        font-weight: 600;
        margin-bottom: 25px;
    }

    .about-printing .text-content .description {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #100e0e;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .about-printing .features {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

        .about-printing .features .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            text-align: left;
            justify-content: left;
        }

        .about-printing .features .icon {
            font-size: 30px;
            color: #1abc9c;
            flex-shrink: 0;
        }

        .about-printing .features h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            color: #34495e;
            margin-bottom: 5px;
            font-weight: 600;
            text-align: left;
        }

        .about-printing .features p {
            font-family: 'Open Sans', sans-serif;
            font-size: 16px;
            color: #232323;
        }

    .about-printing .graphics-wrapper {
        position: relative;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .about-printing .graphics-image {
        width: 90%;
        border-radius: 15px;
        z-index: 2;
        position: relative;
    }

    .about-printing .gradient-background {
        position: absolute;
        top: 10%;
        left: -10%;
        width: 150%;
        height: 150%;
        background: linear-gradient(45deg, #1abc9c, #3498db);
        opacity: 0.3;
        border-radius: 50%;
        z-index: 1;
    }

    .about-printing h4 {
        margin: 0px;
    }


@media (max-width: 991px) {
    .about-printing {
        padding: 30px 15px;
    }

        .about-printing .text-content h1 {
            font-size: 36px;
        }

        .about-printing .text-content .description {
            font-size: 16px;
        }

        .about-printing .graphics-image {
            width: 80%;
        }
}

@media (max-width: 575px) {
    .about-printing .text-content h1 {
        font-size: 28px;
    }

    .about-printing .text-content .subtitle {
        font-size: 18px;
    }

    .about-printing .features h4 {
        font-size: 18px;
    }

    .about-printing .features p {
        font-size: 14px;
    }

    .about-printing .graphics-image {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# About  Section End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/


.printing-services-section {
    padding: 70px 20px;
    background: #f4f8fc;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

    .printing-services-section .section-title h1 {
        font-family: 'Playfair Display', serif;
        font-size: 42px;
        color: #2c3e50;
        text-align: center;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .printing-services-section .section-title .subtitle {
        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        color: #067e67;
        text-align: center;
        margin-bottom: 40px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

.services {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-left,
.service-right {
    width: 48%;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

    .service-item:hover {
        transform: translateY(-10px);
    }

.icon-container {
    background-color: #1abc9c;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-info {
    flex: 1;
}

    .service-info h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 8px;
    }

    .service-info p {
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        color: #191818;
        line-height: 1.5;
    }

.divider {
    width: 2px;
    background-color: #1abc9c;
    height: auto;
    margin: 0 40px;
}

/* Responsive Design */

@media (max-width: 1024px) {

    .services {
        flex-direction: row;
    }

    .service-left,
    .service-right {
        width: 50%;
    }

    .divider {
        display: none;
    }
}

@media (max-width: 758px) {

    .printing-services-section {
        padding-bottom: 20px;
    }

        .printing-services-section .section-title h1 {
            font-size: 27px;
        }

    .services {
        flex-direction: column;
    }

    .service-left,
    .service-right {
        width: 100%;
    }

    .divider {
        display: none;
    }
}

/* Responsive Design */


@media (max-width: 575px) {
    .icon-container {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .service-info h3 {
        font-size: 20px;
    }

    .service-info p {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# Services Section End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Call to Action Section Start
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(135deg, #0c467a, #009688);
    /* Red gradient background */
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

    .cta .cta-content h3 {
        font-size: 32px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
    }

    .cta .cta-content p {
        font-size: 16px;
        color: #f1f1f1;
        margin-bottom: 30px;
    }

.cta-btn .btn-whatsapp {
    background-color: #25d366;
    color: white;
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .cta-btn .btn-whatsapp:hover {
        background-color: #34c0affc;
        transform: scale(1.05);
    }

/* Responsive Design */
@media (max-width: 767px) {
    .cta .cta-content h3 {
        font-size: 28px;
    }

    .cta .cta-content p {
        font-size: 15px;
    }

    .cta .col-lg-12 {
        text-align: center;
    }
}


/*--------------------------------------------------------------
# Call to Action Section End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Pricing Secion  Start
--------------------------------------------------------------*/
.pricing {
    padding: 60px 20px;
    background-color: #ffffff;
}

    .pricing .section-title h4 {
        font-size: 24px;
        text-align: center;
        color: #2c3e50;
        margin-bottom: 5px;
    }

    .pricing .section-title h2 {
        font-size: 36px;
        text-align: center;
        color: #067e67;
        margin-bottom: 40px;
    }

.pricing-options {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-tier {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

    .pricing-tier:hover {
        transform: translateY(-5px);
    }

.icon-container {
    font-size: 40px;
    margin-right: 20px;
}

.icon {
    display: inline-block;
}

.price-box {
    text-align: left;
    width: 100%;
}

    .price-box h4 {
        font-size: 22px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .price-box .price {
        font-size: 40px;
        font-weight: bold;
        color: #1abc9c;
        margin-bottom: 10px;
    }

    .price-box .price-info {
        font-size: 16px;
        color: #555;
        margin-bottom: 10px;
    }

    .price-box .description {
        font-size: 16px;
        color: #777;
        line-height: 1.5;
        margin-top: 15px;
    }


.contact-us {
    text-align: center;
    font-size: 18px;
    margin-top: 40px;
    color: #2c3e50;
}

    .contact-us p {
        margin: 0;
        font-size: 18px;
    }

    .contact-us a {
        color: #16a085;
        text-decoration: none;
    }

        .contact-us a:hover {
            text-decoration: underline;
        }

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .pricing-options {
        flex-direction: column;
        align-items: center;
    }

    .pricing {
        padding-bottom: 0px;
    }

    .price-box h4 {
        text-align: left;
        margin-bottom: 20px;
    }

    .pricing-tier {
        width: 100%;
        margin-bottom: 20px;
    }

    .icon-container {
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .pricing .section-title h2 {
        font-size: 28px;
    }

    .pricing-tier .price {
        font-size: 30px;
    }

    .pricing-tier .price-info {
        font-size: 16px;
        margin-top: 7px;
    }

    .cta-btn .btn-primary {
        font-size: 16px;
    }
}


/*--------------------------------------------------------------
# Pricing Section End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Gallery Section Start
--------------------------------------------------------------*/


.gallery-section {
    padding: 60px 0;
    color: #000000;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}


.gallery-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-section h2 {
    font-size: 36px;
    font-size: 28px;
    text-align: center;
    color: #067e67;
    margin-bottom: 40px;
}

/* Filter Buttons */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.filter-btn {
    background: linear-gradient(135deg, #0c3777, #0f8e7e);
    flex: 1 1 auto;
    min-width: 60px;
    color: #fff;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

    .filter-btn.active,
    .filter-btn:hover {
        background: linear-gradient(135deg, #0c3777, #0d4e79);
        /* Red gradient background */
    }

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

    .gallery-item img {
        width: 100%;
        display: block;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    color: #fff;
    padding: 20px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.gallery-overlay p {
    font-size: 16px;
}


/* Responsive */
@media (max-width: 1024px) {

    .gallery-section {
        padding: 0px 0px 60px 0px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }

    .gallery-grid {
        padding: 10px;
        gap: 40px;
        margin-top: 0px;
    }

    .filter-btn {
        padding: 9px 15px;
        font-size: 17px;
    }
}

/*--------------------------------------------------------------
# Gallery Section End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    background: linear-gradient(135deg, #0c467a, #009688);
    padding: 80px 0;
    border-top-left-radius: 200px;
    border-bottom-right-radius: 200px;
}

    .testimonials .section-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .testimonials h4 {
        font-size: 26px;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .testimonials h2 {
        font-size: 36px;
        color: #ffffff;
        font-weight: 700;
    }

.testimonial-item {
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

    .testimonial-item:hover {
        transform: translateY(-10px);
        box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
    }

.testimonial-content {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 0px;
    font-style: italic;
    background-color: #e1f7d50f;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-bg {
    height: 8px;
    margin-top: 0px;
}

.client-info {
    padding-top: 10px;
}

    .client-info h3 {
        font-size: 19px;
        font-weight: bold;
        color: #ffffff;
        margin-top: 10px;
    }

    .client-info h4 {
        font-size: 15px;
        color: #e2e2e2;
        text-transform: uppercase;
        margin-top: 5px;
    }

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #28a745;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 767px) {
    .testimonials h2 {
        font-size: 28px;
    }

    .testimonial-item {
        margin-bottom: 20px;
    }

    .testimonial-content {
        font-size: 18px;
    }

    .testimonial-item h3 {
        font-size: 18px;
    }
}

/* Responsive Styles */
@media (max-width: 1324px) and (min-width: 824px) {
    .testimonials .col-lg-3 {
        flex: 1 1 48%;
    }
}

/*--------------------------------------------------------------
# Testimonials Section End
--------------------------------------------------------------*


    

/*--------------------------------------------------------------
# faq Section start
--------------------------------------------------------------*/


.faq {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

    .faq .section-title h4 {
        font-size: 24px;
        text-align: center;
        color: #2c3e50;
        margin-bottom: 5px;
    }

    .faq .section-title h2 {
        font-size: 36px;
        text-align: center;
        color: #1abc9c;
        margin-bottom: 40px;
    }

.faq-columns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.faq-column {
    width: 48%;
}

.faq-item {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

    .faq-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .faq-item .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 18px;
        font-weight: 600;
        color: #2c3e50;
    }

    .faq-item .faq-toggle {
        font-size: 24px;
        color: #16a085;
        transition: transform 0.3s ease;
    }

    .faq-item .faq-answer {
        display: none;
        margin-top: 15px;
        font-size: 16px;
        color: #555;
        line-height: 1.6;
        border-left: 5px solid #1abc9c;
        padding-left: 15px;
    }

    .faq-item.active .faq-answer {
        display: block;
    }

    .faq-item.active .faq-toggle {
        transform: rotate(45deg);
    }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-columns {
        flex-direction: column;
        align-items: center;
    }

    .faq-column {
        width: 90%;
        margin-bottom: 20px;
        padding-left: 0;
    }

    .faq-item {
        padding: 15px;
    }

        .faq-item .faq-question {
            font-size: 16px;
        }
}


/*--------------------------------------------------------------
# faq Section End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Contact Section start
--------------------------------------------------------------*/


.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e9ecef);
    color: #333;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

    .contact-image img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        transform: scale(0.98);
        transition: transform 0.3s ease-in-out;
    }

        .contact-image img:hover {
            transform: scale(1);
        }

.contact-form-container {
    background: #ffffff;
    padding: 40px;
}

    .contact-form-container h2 {
        font-size: 28px;
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 20px;
    }

.contact-form .form-control {
    margin-bottom: 20px;
    padding: 15px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

    .contact-form .form-control:focus {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
    }

.contact-form .btn-submit {
    background-color: #16a085;
    color: white;
    font-size: 16px;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

    .contact-form .btn-submit:hover {
        background-color: #2980b900;
        color: #045765;
        border: 2px solid #035a65;
    }

.button-area span {
    font-size: 17px;
    margin-top: 0.5rem;
    display: none;
}

@media (max-width: 968px) {

    .contact-section {
        padding: 0px 0px 60px 0px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 0px;
    }

    form .button-area {
        flex-direction: column;
    }

    .button-area button {
        width: 100%;
        padding: 11px 0;
        font-size: 16px;
    }

    .button-area span {
        margin: 5px 0 0;
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Contact Section End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* Footer Section */
.funky-footer {
    background: linear-gradient(135deg, #063661, #027268);
    color: #fff;
    padding: 50px 0px 0px 0px;
    position: relative;
    overflow: hidden;
}

    .funky-footer h4 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .funky-footer p {
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-tagline {
    margin-top: 10px;
    font-size: 16px;
    font-style: italic;
    line-height: 1.5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #16a085;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
}

    .social-icon:hover {
        background: #acffff00;
        transform: scale(1.15) rotate(15deg);
        border: 2px solid #b4f4ff;
    }

.footer-contact p {
    text-align: end;
}

.footer-bottom {
    background: linear-gradient(135deg, #001e38, #05433d);
    color: #1abc9c;
    text-align: center;
    padding: 15px 0;
    position: relative;
    font-size: 16px;
    margin: 50px 0px 0px 0px;
}

    .footer-bottom .marquee {
        overflow: hidden;
        white-space: nowrap;
    }

        .footer-bottom .marquee p {
            display: inline-block;
            animation: scroll 10s linear infinite;
            font-weight: bold;
            text-transform: uppercase;
        }

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Responsiveness */
@media (max-width: 968px) {
    .funky-footer {
        text-align: center;
    }


    .footer-contact p,
    h4 {
        text-align: center;
        margin: 20px 0px;
    }

    .funky-footer p {
        margin: 15px 0px;
    }

    .funky-footer .marquee p {
        margin: 0px;
    }

    .social-links {
        justify-content: center;
        margin: 20px;
    }

    .footer-logo {
        margin: 15px;
    }
}



/*--------------------------------------------------------------
# PAGES
--------------------------------------------------------------*/

.page-header {
    padding: 100px 0;
    background: linear-gradient(60deg, #032f72, #108d7e);
    color: #fff;
    text-align: center;
    position: relative;
}

    .page-header h1 {
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 10px;
        margin-top: 30px;
    }

    .page-header .tagline {
        font-family: 'Roboto', sans-serif;
        font-size: 22px;
        font-weight: 400;
        opacity: 0.9;
        margin: auto;
        margin-bottom: 15px;
        width: 70%;
    }

.page-breadcrumb {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

    .page-breadcrumb a {
        color: #e1fffd;
        text-decoration: none;
        transition: color 0.3s;
        margin: 5px;
    }

        .page-breadcrumb a:hover {
            color: #33e1ff;
        }

    .page-breadcrumb span {
        color: #b3e5fc;
        margin: 5px;
    }

/* Responsiveness */
@media (max-width: 768px) {
    .page-header .tagline {
        width: 100%;
    }

    .page-header h1 {
        font-size: 33px;
    }

    .page-header .tagline {
        font-size: 22px;
    }
}