@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
        url('../fonts/Poppins-Thin.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 100;
    src: url('../fonts/Poppins-ThinItalic.woff2') format('woff2'),
        url('../fonts/Poppins-ThinItalic.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraLight.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 200;
    src: url('../fonts/Poppins-ExtraLightItalic.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraLightItalic.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 300;
    src: url('../fonts/Poppins-LightItalic.woff2') format('woff2'),
        url('../fonts/Poppins-LightItalic.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/Poppins-Italic.woff2') format('woff2'),
        url('../fonts/Poppins-Italic.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    src: url('../fonts/Poppins-MediumItalic.woff2') format('woff2'),
        url('../fonts/Poppins-MediumItalic.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 600;
    src: url('../fonts/Poppins-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBoldItalic.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/Poppins-BoldItalic.woff2') format('woff2'),
        url('../fonts/Poppins-BoldItalic.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 800;
    src: url('../fonts/Poppins-ExtraBoldItalic.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBoldItalic.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 900;
    src: url('../fonts/Poppins-BlackItalic.woff2') format('woff2'),
        url('../fonts/Poppins-BlackItalic.woff') format('woff');
    font-display: swap;
}


@font-face {
    font-family: 'Creattion';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/CreattionDemo.otf') format('truetype');
    font-display: swap;
}



:root {
    --red: #cd211d;
    --blue: #0165fc;
    --white: #fff;
    --dark: #333336;
    --font1: 'Poppins';
    --font2: 'Creattion';
}

* {
    font-size: 16px;
    font-family: var(--font1);
}

.TopHeader {
    background: var(--dark);
    position: relative;
}

.TopHeader::after {
    position: absolute;
    content: "";
    background: var(--red);
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    display: none;
}

.TopHeader::before {
    position: absolute;
    content: "";
    background: var(--red);
    left: 15px;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: 0.5;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    display: none;
}


.SocialIcons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.COntUpper {
    position: relative;
    z-index: 5;
}

.SCIBox {
    display: flex;
    gap: 10px;
    padding: 15px 0;
}

.SCIBox p {
    margin-bottom: 0;
    color: white;
}

.TopHeaderAtag {
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    padding: 6px;
}

.TopHeaderAtag:hover {
    color: white;
}

.CTABox {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.CTABoxItem {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: white;
}

.CTABoxItem:hover {
    color: white;
}

.menuContext {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.BottomNav {
    padding: 10px 0;
}

.ContactUsButton {
    background: var(--red);
    color: white;
    padding: 10px 20px;
    border: none;
    font-weight: 500;
    border-radius: 6px;
}



.Landing_hero {
    min-height: 600px;
    background-image: url(https://www.hire4event.com/assets-new/images/landing-page/56123.jpg);
    background-size: cover;
    background-position: center;
    padding: 130px 0;
}

.LPinput_box {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 48%;
}

.LPinput_box_full {
    display: flex;
    gap: 2px;
    width: 100%;
    justify-content: flex-start;
}

.LPinput_box_container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-content: flex-start;
}

.LPinput_box input,
.LPinput_box select {
    height: 50px;
    width: 100%;
    background: #f1f1f1;
    border: none;
    border-radius: 50px;
    padding: 16px;
    font-size: 14px;
}

.LPinput_box label {
    font-size: 14px;
    font-weight: 500;
}

.LPWhitespace {
    background: white;
    padding: 45px;
    border-radius: 30px;
}

.LP_Enquire {
    font-size: 25px;
    margin: 0 0 10px;
}

.LP_Enquire span {
    color: var(--red);
}

.LP_Discount {
    font-size: 14px;
    font-style: italic;
}

.LP_Discount span {
    color: var(--red);
    font-style: normal;
}

.fotrmHeader {
    margin-bottom: 25px;
}

.LP_tc {
    font-size: 14px;
    font-weight: 400;
}

.LP_InputCheckbox {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.LP_submitbtn {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    border: none;
    background: var(--red);
    color: white;
}

.LP_logoBox {
    display: flex;
    justify-items: start;
    justify-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.LP_logoBox img {
    width: 23%;
    height: 60px;
    background: white;
    padding: 9px;
    object-fit: contain;
    border-radius: 7px;
}

.LP_HeroTitle {
    font-size: 40px;
    color: white;
    text-transform: capitalize;
    margin: 0;
}

.LP_SmallTag {
    text-transform: uppercase;
    color: white;
    margin: 0 0 15px;
}

.LP_LogoLable {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
}

.LP_HeroBox {
    margin-top: 40px;
}

.LP_LogoMore {
    width: 23%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.no-padding {
    padding: 0;
}

.custom-about-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 0;
    margin-top: 50px;
    margin-bottom: 50px;
}

.custom-service-card {
    width: 32.5%;
    float: left;
    padding-right: 15px;
    position: relative;
    margin-bottom: 0;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: flex-start;
}

.custom-service-card h3 {
    font-size: 20px;
    margin: 0 0 .4em;
    text-transform: capitalize;
    font-weight: 400;
}

.custom-read-more {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    margin-top: 5px;
    color: var(--blue);
    font-weight: 400;
    cursor: pointer;
    background: no-repeat;
    border: none;
}

.custom-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    box-shadow: 0 15.96px 53.83px 0 rgb(184 185 228 / .4), 1px 1px 0 0 #fff;
    padding: 10px;
    border-radius: 25px;
}

.custom-seo-text {
    display: none;
}

.custom-about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 0;
    margin-top: 50px;
    margin-bottom: 50px;
}

.LPSSMallTag {
    text-transform: uppercase;
    color: var(--red);
    text-align: center;
    margin: 0;
    font-weight: 500;
}

.LP_SecondHeading {
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    margin: 10px 0;
    text-transform: capitalize;
}

.LP_Paragraph {
    text-align: center;
}

.LP_InnerContainer {
    padding: 50px 0;
}

.AB_moreParagraph {
    margin-top: 15px;
}

.BestEVTTitle {
    font-size: 55px;
    text-transform: uppercase;
    line-height: 0.9;
    font-weight: 900;
}

.CompTag {
    font-size: 80px;
    font-weight: 800;
    position: relative;
    color: var(--blue);
}

.CompTag span {
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    background: #ffffff;
    padding: 3px 5px;
    top: 60%;
    left: 41%;
    text-transform: uppercase;
    color: var(--dark);
}

.RightImageDesignBox {
    display: flex;
    align-items: end;
}

.CtWithBG {
    width: 50%;
    background-color: var(--red);
    max-height: 100%;
    padding: 30px;
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: end;
    min-height: 450px;
}

.CtWithBG::after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://www.hire4event.com/assets-new/images/landing-page/conference-organizer-in-delhi-gurgaon-and-noida.webp);
    background-size: cover;
    position: absolute;
    mix-blend-mode: multiply;
    opacity: 0.5;
    background-position: right;
}

.LeftImageTop {
    width: 50%;
}

.HrefLink {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 5;
    color: white;
    margin-bottom: 20px;
}

.HrefLink:hover {
    color: white;
}

.HrefLink span {
    font-size: 20px;
    font-weight: 400;
    display: block;
    color: white;
}

.HrefLink span:hover {
    color: white;
}


.GalleryDiv {
    display: flex;
    gap: 15px;
    min-height: 600px;
    margin-bottom: 25px;
}

.GalleryRow {
    width: 24%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.GalleryRow img {
    width: 100%;
    object-fit: cover;
}

.GalleryFirstRow img:nth-child(1) {
    height: 30%;
}

.GalleryFirstRow img:nth-child(2) {
    height: 70%;
}

.GallerySecRow img:nth-child(1) {
    height: 55%;
}

.GallerySecRow img:nth-child(2) {
    height: 45%;
}

.GalleryThirdRow img:nth-child(1) {
    height: 40%;
}

.GalleryThirdRow img:nth-child(2) {
    height: 60%;
}

.GalleryFourthRow img:nth-child(1) {
    height: 55%;
}

.GalleryFourthRow img:nth-child(2) {
    height: 55%;
}


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


.about-company-section22-4-25 {
    padding: 50px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container22-4-25 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content22-4-25 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image22-4-25 {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    overflow: hidden;

    border-radius: 0 15% 15% 0;
}

.play-button22-4-25 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 50%;
    padding: 10px 14px;
    font-size: 18px;
    color: black;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.about-text22-4-25 {
    flex: 1;
    min-width: 300px;
}

.subheading22-4-25 {
    color: #d51919;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.about-text22-4-25 h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-text22-4-25 p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}





.BharTSaktiSection {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 15% 15% 0;
    box-shadow: 10px 0 0 0 var(--red);
}












@media only screen and (max-width: 992px) {
    .GalleryDiv {
        flex-wrap: wrap;
    }

    .GalleryRow {
        width: 47%;
    }

    .TopHeader {
        background: var(--red);
    }

    .LPWhitespace {
        margin-top: 20px;
    }

    .custom-about-features {
        flex-wrap: wrap;
    }

    .custom-service-card {
        width: 48.5%;
    }
}



@media only screen and (max-width: 1200px) {
    .LPinput_box {
        display: flex;
        flex-direction: column;
        gap: 2px;
        width: 47%;
    }
}

@media only screen and (max-width: 768px) {
    .LPinput_box {

        width: 100%;
    }

    .custom-service-card {
        width: 100%;
    }
}








.work-process-section {
    padding: 10px 20px 60px 20px;
    background: #fff;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.section-header .tagline {
    color: #b10606;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 8px;
    display: inline-block;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    position: relative;
}

.step-icon {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    /* overflow: hidden; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 10px solid white;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.step-number {
    position: absolute;
    top: 50%;
    right: calc(100% - 25px);
    background-color: #a60000;
    color: #ffffff;
    font-weight: bold;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    text-align: center;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

.step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Optional Responsive Touches */
@media screen and (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .SCIBox {
        display: none;
    }
}



.mapRowCOntainer {
    margin-top: 50px;
    padding: 0 15px;
}

.HowToReachBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.HowToReachBox P {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    max-width: 800px;
}

.TopTagofHreach {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}


.HowToReachBox h2 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-top: 5px;
}




@media only screen and (max-width: 992px) {
    .rowReverce {
        display: flex;
        flex-direction: column-reverse;
    }

    .RowForRevese {
        display: flex;
        flex-direction: column-reverse;
        padding: 0 25px;
        gap: 25px;
        width: 100%;
        padding-right: 0;
    }

    .Landing_hero {
        padding-top: 0;
    }

    .RightImageDesignBox {
        flex-direction: column;
    }

    .LeftImageTop {
        width: 100%;
    }

    .CtWithBG {
        width: 100%;
    }
}

.rightReachContainer {
    background: #2d2e33;
    padding: 25px;
    min-height: 500px;
    position: relative;
}

.ReachCart {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 5;
}

.ReachIcon {
    width: 70px;
    height: 70px;
    background: var(--red);
    padding: 14px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    color: white;
}

.ReachTitle {
    font-weight: 600;
    color: white;
    font-size: 22px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 15px 0 20px;
}

.reachparaBox {
    display: flex;
    gap: 20px;
}

.reachParaIcon {
    width: 12px;
    height: 12px;
    display: flex;
    background: white;
    position: relative;
    margin-top: 7px;
}

.reachpara {
    font-size: 16px;
    color: var(--white);
    flex: 1;
}


iframe {
    width: 100%;
    border: none;
}

.LP_SectionHeader {
    margin-top: 60px;
}

.FooterCss {
    background-color: var(--dark);
    padding: 10px;
}

.FooterCss p {
    text-align: center;
    color: white;
    margin: 0;
}

.FixedPop.ShowPopup {
    width: 100%;
    height: 100%;
}

.FixedPop {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 0;
    height: 0;
    left: 0;
    top: 0;
    overflow: hidden;
    background: #00000091;
    z-index: 9999;
}

.FixedPopInner {
    width: 100%;
    max-width: 550px;
    position: relative;
}

.LP_closePop {
    background: var(--red);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    position: absolute;
    right: -15px;
    top: -15px;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.PlannSticky {
    width: 130px;
    height: 50px;
    border: none;
    position: fixed;
    left: -41px;
    top: 50%;
    z-index: 999;
    background: var(--red);
    color: white;
    transform: rotateZ(-90deg);
    font-size: 16px;
    font-family: 'Poppins';
    letter-spacing: 1px;
    font-weight: 400;
    border-radius: 0 0 10px 10px;
}


@media only screen and (max-width: 768px) {
    .FixedPopInner {
        width: 100%;
        max-width: 100%;
        height: 100%;
        display: flex;
    }

    .FixedPopInner .LPWhitespace {
        margin-top: 0 !important;
        border-radius: 0;
    }

    .LP_closePop {
        right: 10px;
        top: 10px;
    }

}

.topsocilic {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topsocilic a {
    border: 1px solid;
    padding: 8px;
    border-radius: 50%;
    color: var(--red);
    display: flex;
}