#home {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* Hero Section Styles */
#hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg,
            rgba(255, 245, 234, 0.2) 0%,
            rgba(255, 183, 96, 0.43) 100%);
    width: 100%;
    height: 100%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero1 {
    padding: 0 2rem;
    line-height: 4rem;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero1 h1 {
    font-size: 3rem;
    color: #000;
}

.hero1 h2 {
    font-size: 2.5rem;
}

.hero1 h1 span {
    color: #FC380E;
}

.hero1 h3 {
    font-size: 1.5rem;
    margin: -10px 0;
    color: #000;
    font-weight: 500;
    line-height: 1.2rem;
}

/* Container for the slideshow */
.bgImage {
    position: relative;
    width: 100vw;
    height: 80vh;
    overflow: hidden;
}

/* Each image */
.bgImage img {
    position: absolute;
    width: 100vw;
    /* Full width of the viewport */
    height: 100vh;
    /* Full height of the viewport */
    object-fit: cover;
    top: 0;
    left: 100%;
    /* Start off-screen to the right */
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

/* Active image is centered */
.bgImage img.active {
    left: 0;
    opacity: 1;
}

/* Image moving out of view */
.bgImage img.exit {
    transform: translateX(-100%);
    opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .bgImage {
        height: 70vh;
        /* Adjust height for smaller laptops */
    }

    .bgImage img {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .bgImage {
        height: 60vh;
        object-fit: inherit;
        /* Reduce height for tablets */
    }

    .bgImage img {
        height: 60vh;
    }
}

@media (max-width: 576px) {
    .bgImage {
        height: 50vh;
        object-fit: inherit;
        /* Adjust for mobile devices */
    }

    .bgImage img {
        height: 50vh;
    }
}

@media (max-width: 400px) {
    .bgImage {
        height: 40vh;
        object-fit: inherit;
        /* Further reduce height for very small screens */
    }

    .bgImage img {
        height: 40vh;
    }
}

.hero2 {
    position: relative;
    max-width: 40%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero2 img {
    width: 100%;
    height: 100%;
    max-width: 1220px;
}

#about {
    width: 100%;
    height: autos;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

#about .about-title h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 3rem;
    margin: 5px;
}

#about .about-title h1 span {
    color: #FC380E;
}

#about .about-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7rem;
}


#about .about-info .about-niceLogo img {
    width: 11vw;
    height: 10vh;
    z-index: 11;
    margin: 10%;
    position: relative;
    max-width: 1220px;

}

.hero-headline {
    /* max-width: 1220px; */
    margin: 0px auto;
    margin-top: -30px;
}


#about .background {
    position: absolute;
    width: 100%;
    height: 13rem;
    top: 23%;
    left: 74px;
    border-radius: 10rem 0 0 10rem;
    background-color: #f3f3f3;
    max-width: 1220px;
    overflow: hidden;
}


#about .about-info p {
    position: relative;
    font-size: 1rem;
    text-align: justify;
    color: #000;
    padding: 0 4rem;
}


#about .about-contactUs {
    background-color: red;
    padding: 3%;
    margin-top: 8%;
}

#about .about-contactUs img {
    width: 80%;
    height: 80%;
    object-fit: cover;
}



#branding {
    width: 100%;
    height: 100%;
}

#branding .branding-title h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

#branding .branding-title h1 span {
    font-size: 2rem;
    font-weight: 500;
}

#moving-div {
    margin-top: 1.5rem;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    max-width: fit-content;
    margin: 0 auto;
}

#moving-div .move {
    display: inline-block;
    animation-name: mobe;
    animation-duration: 70s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#moving-div .move img {
    height: 12vw;
    cursor: pointer;
    margin: 0 1.2vw;
    padding: 3rem;
    /* Apply grayscale filter */
    transition: filter 0.3s ease;
    /* Smooth transition for hover effect */
}



.branding {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 1.5rem;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-column,
.right-column {
    width: 30%;
}

.service-box {
    border-radius: 0 15rem 15rem 0rem;
}

.right {
    border-radius: 15rem 0 0 15rem;
}

.center-image {
    width: 40%;
    text-align: center;
}

.center-image img {
    max-width: 100%;
    height: auto;
}

.service-box {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 15px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 14px;
    color: #555;
    text-align: justify;
}


.service-box .service-box-info p:hover,
.service-box-info h1 p:hover {
    color: #fff;
}

.service-box:hover,
.service-box-info:hover {
    background-color: #FC3A0F;
    color: #fff;
}

.service-box:hover,
.service-box:hover .service-box-info p,
.service-box:hover .service-box-info h3 {
    background-color: #FC380E;
    color: #fff;
}

.service .content .service-box img {
    width: 20%;
    height: 20%;
    padding: 20px;
}

.service-box {
    display: flex;
    align-items: center;
}

.service-box.highlighted p {
    color: #fff;
}

/* Keyframes for animation */
@keyframes mobe {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

#branding .branding-showcase {
    width: 100%;
    max-width: 1360px;
    margin: 5rem auto;
}


#branding .branding-showcase h1 {
    font-size: 700;
    text-align: center;
    line-height: 1rem;
    font-size: 2rem;
}

#branding .branding-showcase h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1rem;
    padding: 0;
}


#branding .branding-showcase h1 span {
    color: #FC380E;
}

#branding .branding-showcase .branding-showcase-cards .line-img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
    top: -90px;
    left: -152px;
}


#branding .branding-showcase-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 56px;
    position: relative;
    margin-top: 1.5rem;
}

#branding .card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 13px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 200px;
    border: 1px solid #d6d5d5;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

#branding .card img {
    width: 7rem;
    border-radius: 100%;
    height: 7rem;
    margin-left: 2.8rem;
    object-fit: cover;
    margin-top: 10px;
}

#branding .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

#branding .card p {
    font-size: 14px;
    color: #666;
    text-align: center;
}

#branding .advertising {
    transform: rotate(-10deg);
}

#branding .event-management {
    transform: rotate(5deg);
    background-color: #ffffff;
    color: #333;
}

#branding .printing {
    transform: rotate(-3deg);
}

#branding .digital-marketing {
    transform: rotate(8deg);
}

#branding .branding {
    transform: rotate(-6deg);
    position: relative;
    z-index: 1;
}

#branding .card:hover {
    transform: scale(1.05);
}

#branding .event-card,
#branding .digital-marketing-card {
    width: 150px;
    height: 150px;
    margin-top: 55px;
}

#branding .event-card .card-content img,
#branding .digital-marketing-card .card-content img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-top: 1.5rem;
}

#branding .event-card .card-content h3,
#branding .digital-marketing-card .card-content h3 {
    font-size: 1rem;
    line-height: 1rem;
}

#branding .event-card .card-content p,
#branding .digital-marketing-card .card-content p {
    font-size: .8rem;
}

#branding .branding-showcase .branding-showcase-cards .left-side-bg {
    background-color: #FC3A0F;
    height: 350px;
    width: 330px;
    position: absolute;
    transform: translateX(-180%);
    top: -17px;
    border-bottom-right-radius: 180px;
    border-top-right-radius: 180px;
}

#branding .branding-showcase .right-side-bg {
    /* circle */
    background-color: #FFDE6A;
    height: 300px;
    width: 300px;
    position: absolute;
    transform: translateX(240%);
    top: 100px;
    border-radius: 50%;
}

#contact-us {
    width: 100%;
    height: 100%;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service {
    background-color: #fff7f7af;
}

.service .service-headline {
    text-align: center;
    line-height: 1.5rem;
}

.service .service-headline h1 {
    color: #FC380E;
}

.services-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 9rem;
    margin-top: 1.5rem;
}

.services-content {
    max-width: 1220px;
}

.services-content h3 {
    color: #666;
    font-size: 2rem;
    line-height: .2rem;
}

.services-content h1 {
    color: #333;
    font-size: 4rem;
    margin-bottom: 3rem;
    line-height: 3rem;
}

.services-content h1 span {
    color: #FC380E;
}

.services-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-list-item {
    display: flex;
    justify-content: space-between;
    gap: 6rem;
}

.services-list li {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.contact-btn {
    background-color: #FC380E;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.services-images {
    position: relative;
    max-width: 45%;
}

.services-images .main-image {
    width: 70%;
    margin-left: 10rem;
    max-width: 1220px;
}


.footer {
    margin-top: 1.5rem;
    border-top: 1px solid #d1d1d16f;
    background-color: #f6f6f6;
    color: #000;
    padding-top: 20px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    flex: 1 1 100%;
}

.footer-logo img {
    max-width: 150px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.footer-column {
    flex: 1 1 150px;
}

.footer-column p {
    color: #333333c7;
    font-weight: 700;
    font-size: 1rem;
}

.footer-column h4 {
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #464646;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #000;
}

.footer .social-links {
    margin-bottom: 15px;
}

.footer .social-links a {
    color: #000;
    margin-right: 10px;
    font-size: 25px;
    cursor: pointer;
    text-decoration: none;
}

.footer .social-links a:hover {
    color: #3f3e3e;
}

.footer .subscribe-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer .subscribe-form input[type="email"] {
    border: 1px solid #666;
    padding: 10px 20px;
    border-radius: 10px;
    width: 100%;
}

.footer .subscribe-form button {
    padding: 10px 20px;
    border: none;
    margin-top: 1rem;
    background-color: #FC380E;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #bdbdbdc2;
    margin-top: 20px;
    color: #000;
    width: 80%;
    /* Adjust the percentage to your preference */
    margin-left: auto;
    margin-right: auto;
}

/* animation 
 */



@keyframes mobe {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }

}



@media (min-width:2560px) {
    #about .background {
        width: 100%;
        height: 50%;
    }
}

@media (max-width: 1377px) {
    #about .background {
        width: 100%;
        height: 13rem;
    }

    #hero .hero1 h1 {
        font-size: 3rem;
    }

    #hero .hero1 h2 {
        font-size: 2rem;
    }

    #hero .hero1 h3 {
        font-size: 1.5rem;
    }

}

@media (max-width: 1024px) {
    .hero-headline {
        margin: 0;
    }

    #branding .branding-showcase-cards {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #branding .card {
        width: 80%;
        margin: 10px 0;
        transform: rotate(0deg);
        /* Reset rotation on mobile */
    }

    #branding .card .card-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    #branding .branding-showcase .branding-showcase-cards .line-img,
    .left-side-bg,
    .right-side-bg {
        display: none;
    }

    #branding .branding-showcase .branding-showcase-cards .event-card img,
    #branding .branding-showcase .branding-showcase-cards .digital-marketing-card img {
        width: 100px;
        height: 100px;
    }

    #branding .branding-showcase .branding-showcase-cards .event-card img,
    #branding .branding-showcase .branding-showcase-cards .digital-marketing-card img {
        width: 120px;
        height: 120px;
    }

    #branding .branding-showcase .branding-showcase-cards .event-management,
    #branding .branding-showcase .branding-showcase-cards .digital-marketing {
        width: 80%;
        height: 80%;
    }

    #branding .card .card-content img {
        margin-right: 2.5rem;
    }

    #services .service-card .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #about .about-info p {
        font-size: .9rem;
    }

    #services .service-card .card-grid .card {
        height: 500px;
    }

    .content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .center-image {
        display: none;
    }

    .left-column,
    .right-column {
        width: 50%;
        margin-bottom: 15px;
    }

    .service-box {
        width: 90%;
        margin: 10px auto;
    }
}

@media (max-width:1000px) {

    #about .about-info {
        flex-direction: column;
    }

    #about .about-info .about-niceLogo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #about .about-info .about-niceLogo img {
        position: relative;
        z-index: unset;
    }

    #about .about-info .about-niceLogo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #about .about-info .about-niceLogo img {
        width: 40%;
        height: 40%;
        padding: 0;
        margin: 0;
    }

    #about .about-info .background {
        display: none;
    }

    #about .about-info p {
        padding: 0;
    }

    #about .about-info p {
        font-size: .9rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        flex-direction: column;
        padding: 20px;
    }

    #branding .branding-showcase-cards {
        gap: 0px;
        margin: 0px;
        padding: 0px;
    }

    .left-column,
    .right-column {
        width: 100%;
        margin-bottom: 15px;
    }

    .service-box {
        width: 90%;
        margin: 10px auto;
    }

    .service-box h3 {
        font-size: 1rem;
    }

    #about .about-title h1 {
        font-size: 2rem;
    }

    .service .service-headline {
        padding: 0 1rem;
    }

    .services-content {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .contact-btn {
        padding: 7px 13px;
    }

    .footer-columns {
        gap: 0px;
        max-width: 70%;
    }

    .services-content h1 {
        font-size: 1.5rem;
        line-height: 1rem;
    }

    .services-list li {
        font-size: 16px;
    }

    .services-images {
        max-width: 100%;
    }

    .services-images .main-image {
        margin-left: 4.5rem
    }

    .footer-column {
        flex-direction: column;
    }

    .footer .container {
        margin: 0 auto;
        align-items: center;
        justify-content: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .footer .subscribe-form input[type="email"] {
        width: 100%;
    }

    #services .service-card .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #moving-div .move img {
        height: 25vw;
    }

    #services .services-title h1,
    #services .services-title h1 span,
    #branding .branding-title h1,
    #branding .branding-title h1 span,

    #branding .branding-showcase h1 {
        font-size: 1.5rem;
    }

    #branding .branding-showcase h2 {
        font-size: 1.2rem;
    }

    #about .about-title h1 {
        font-size: 2rem;
    }

    .services-content h3 {
        color: #666;
        font-size: 1rem;
    }

    #hero {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    #hero .hero1 h1 {
        font-size: 2rem;
        line-height: 2.2rem;
    }

    #about .about-info {
        padding: 0 4rem;
    }

    #about .about-info p {
        padding: 0;
        font-size: 1rem;
    }

    #hero .hero1 h3 {
        line-height: 2rem;
        font-size: 1.2rem;
        /* Slightly smaller for mobile */
    }

    #hero .hero1 h2 {
        font-size: 1.5rem;
        text-align: center;
        line-height: 2rem;
    }

    .hero1 {
        transform: none;
    }

    .hero2 img {
        content: url(../assets/Group\ 1000003833.webp);
        width: 80%;
        margin: 0 auto;
    }

    #contact-us h2 {
        font-size: 1.5rem;
    }

    .contact-form {
        width: 60%;
    }

    #contact-us input,
    textarea {
        width: 100%;
    }

    #contact-us button {
        max-width: 100%;
        width: auto;
    }

    .service-list-item {
        gap: 1rem;

    }

    .service-list-item .services-list li {
        display: flex;
        align-items: flex-start;
    }

    #about {
        padding: 0px;
    }

    #about .about-info {
        padding: 0 1rem;
    }
}


@media (max-width:582px) {
    #hero .hero1 h1 {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }

    #about .about-title h1 {
        font-size: 1.5rem;
    }

    #hero .hero1 h3 {
        line-height: 1.5rem;
        font-size: 1em;
    }

    #hero .hero1 h2 {
        font-size: 1rem;
        text-align: center;
        line-height: 1.5rem;
    }

    .hero1 {
        transform: none;
    }


    .hero2 img {

        width: 100%;
        height: 50%;
        margin: 0 auto;
    }

}

@media (max-width: 480px) {
    #contact-us h2 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 15px;
    }

    #services .service-card .card-grid {
        grid-template-columns: 1fr;
    }

    #services .service-card .card-grid .card {
        margin-bottom: 20px;
    }


    .hero2 img {

        width: 64vw;
        height: 50vh;
        margin: 35px -52px;
    }
}