* {
    padding: 0;
    margin: 0;
    font-family: "Zalando Sans", sans-serif;
}

.padding-box {
    padding: 30px 0;
}

.container {
    width: 90%;
    margin: auto;
}

.bg-light {
    background-color: #f0f0f0 !important;
}

.txt-color {
    color: #bc872c !important;
}

small {
    font-size: 1em;
}

.logo {
    width: 114px;
    height: 100%;
}

/* navbar css */

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #bc872c;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #eeeeee;
    }

    .logo {
        width: 100px;
    }
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

/* footer css */

.site-footer {
    background: #bc872c;
    color: #000;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-box h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-box ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #f1f1f1;
    font-size: 14px;
}

/* Tablet */
@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* about section css */

.about-section {
    padding: 80px 20px;
    background: #f9fafb;

}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.about-content h2 {
    font-size: 36px;
    color: #111827;
    margin-bottom: 10px;
}

.about-content .subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ef4444;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 15px;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 32px;
    background: #ef4444;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.about-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content h2 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-section {
        padding: 60px 15px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 15px;
    }
}

/* creative text para css */


.impact-text-section {
    width: 100%;
    padding: 80px 20px;
    background: #f9fafb;
}

.impact-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.impact-container p {
    font-size: 18px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 25px;
}

/* Tablet */
@media (max-width: 991px) {
    .impact-container p {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .impact-text-section {
        padding: 60px 15px;
    }

    .impact-container p {
        font-size: 16px;
        line-height: 1.8;
    }
}


/* creative section info css */

.services-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.services-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    color: #111827;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-box {
    background: #f9fafb;
    padding: 35px 20px;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.service-box span {
    font-size: 36px;
    display: block;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 18px;
    color: #1f2933;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Tablet */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .services-section {
        padding: 60px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }
}


/* qoutes css */

.quote-section {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #111827, #1f2933);

}

.quote-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: #f9fafb;
    position: relative;
}

.quote-icon {
    font-size: 120px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.15);
    display: block;
    margin-bottom: -40px;
}

.quote-text {
    font-size: 26px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 25px;
}

.quote-author {
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fca5a5;
}

/* Tablet */
@media (max-width: 991px) {
    .quote-text {
        font-size: 22px;
    }

    .quote-icon {
        font-size: 100px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .quote-section {
        padding: 60px 15px;
    }

    .quote-text {
        font-size: 18px;
    }

    .quote-icon {
        font-size: 80px;
        margin-bottom: -25px;
    }
}