* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
        overflow-x: hidden;
    }
p{font-size:14px}


.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.pt-30 {
    padding-top: 60px;
}

.pb-30 {
    padding-bottom: 60px;
}

.mt-30 {
    margin-top: 60px;
}

.mb-30 {
    margin-bottom: 60px;
}

.title {
    text-align: center;
    font-size: 36px;
    color: rgb(26, 43, 73);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.title::after {
    content: "";
    position: absolute;
    left: 0%;
    right: 0%;
    bottom: -12px;
    width: 100%;
    height: 3px;
    background: rgb(179 181 186);
    border-radius: 5px;
}

.title {
    position: relative;
    isolation: isolate; /* new layer create karega */
}

.title{
    position: relative;
}

.title::before{
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px; /* fixed line width */
    height: 3px;
    background: rgb(112, 177, 16);
    animation: titleLineMove 2.5s linear infinite;
    pointer-events: none;
    z-index: 4;
}

@keyframes titleLineMove {
    0%{
        transform: translateX(-70px);
    }
    100%{
        transform: translateX(200px);
    }
}

/* Navbar fix */
.custom-navbar{
    z-index: 99999 !important;
}



.custom-navbar {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    padding: 5px 0px;
    transition: 0.3s;
    z-index: 999;
    
}

.logo {
    font-size: 24px;
    color: rgb(0, 0, 0);
}

.logo span {
    color: rgb(244, 111, 35);
}

.navbar-nav .nav-link {
    position: relative;
    margin: 0px 5px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(51, 51, 51);
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: rgb(111, 175, 16);
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: rgb(0, 0, 0);
}

.navbar-nav .nav-link.active {
    color: rgb(109, 174, 15);
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}

.top-bar {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-size: 14px;
    position: fixed;
    z-index: 99;
    top: 0px;
    width: 100%;
    padding: 10px;
    height: 40px;
}

.top-bar span {
    margin-right: 20px;
    display: inline-flex;
    gap: 5px;
    line-height: 13px;
    padding-top: 0px;
}

.top-bar i {
    font-size: 13px;
}

.top-bar span:hover {
    opacity: 0.8;
    cursor: pointer;
}

@media (max-width: 768px) {
    .top-left, .top-right {
        text-align: center;
        margin-bottom: 5px;
    }
}

.btn-main {
    background: linear-gradient(120deg, rgb(244, 111, 35), rgb(255, 60, 0));
    color: rgb(255, 255, 255);
    padding: 8px 20px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: rgba(244, 111, 35, 0.3) 0px 8px 20px;
    color: rgb(255, 255, 255);
}

.custom-navbar.scrolled {
    padding: 10px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px;
}

.hero-slide {
    height: 600px;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    top: 80px;
    position: unset;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide h1 {
    color: rgb(0, 0, 0);
    font-size: 50px;
    font-weight: 700;
    margin-top: 65px;
}

.hero-slide p {
    margin: 20px 0px;
    color: rgb(0, 0, 0);
    font-size: 15px;
}

.btn-main {
    background: rgb(244, 111, 35);
    color: rgb(255, 255, 255);
    padding: 12px 30px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-main:hover {
    background: rgb(0, 0, 0);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.custom-modal {
    border-radius: 20px;
    padding: 25px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 50px;
}

.custom-close {
    position: absolute;
    right: 15px;
    top: 15px;
}

.modal-header-custom h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.modal-header-custom p {
    font-size: 14px;
    color: rgb(119, 119, 119);
}

.form-group {
    margin-bottom: 15px;
}

.custom-input {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid rgb(221, 221, 221);
    transition: 0.3s;
    font-size: 14px;
}

.custom-input:focus {
    border-color: rgb(244, 111, 35);
    box-shadow: rgba(244, 111, 35, 0.1) 0px 0px 0px 3px;
}

.btn-main {
    background: linear-gradient(120deg, rgb(244, 111, 35), rgb(255, 60, 0));
    color: rgb(255, 255, 255);
    border-radius: 30px;
    padding: 10px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: rgba(244, 111, 35, 0.3) 0px 8px 20px;
}

.modal-backdrop.show {
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.4);
}

.animated-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 30px;
    overflow: visible;
    /* z-index: 99999; */
}

.animated-btn .arrow {
    display: inline-block;
    transition: 0.3s;
    rotate: -31deg;
}

.animated-btn:hover .arrow {
    transform: translateX(6px) rotate(15deg);
}

.animated-btn:hover {
    transform: translateY(-3px);
}

.animated-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: 3s ease-in-out 0s infinite normal none running floatBtn;
}

@keyframes floatBtn {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animated-btn:hover {
    animation: auto ease 0s 1 normal none running none;
}

.animated-btn .arrow {
    transition: 0.3s;
}

.animated-btn:hover .arrow {
    transform: translateX(6px);
}

.btn-main {
    color: rgb(255, 255, 255);
    background: linear-gradient(135deg, rgb(132, 204, 22), rgb(101, 163, 13));
    padding: 10px 19px;
    border-radius: 30px;
}

.about-section {
    padding: 80px 0px;
    background-image: url("../img/banner/bg.jpg");
}

.about-img img {
    border-radius: 15px;
    transition: 0.3s;
}

.about-img img:hover {
    transform: scale(1.05);
}

.about-content {
    /* padding-left: 30px; */
}



.tagline {
    color: rgb(249, 87, 18);
    margin-bottom: 7px;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
}

.about-content p {
    margin-bottom: 15px;
    color: rgb(85, 85, 85);
    font-size: 14px;
    text-align: justify;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-content {
        /* padding-left: revert-layer; */
        margin-top: 0px;
        text-align: center;
    }
}

.creative-services {
    background: rgb(27, 43, 92);
    font-family: "Segoe UI", sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.card {
    padding: 15px;
    border-radius: 20px;
    text-align: center;
    color: rgb(255, 255, 255);
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-width: 1px 1px 2px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.1) rgba(255, 255, 255, 0.1) rgb(248, 92, 22);
    border-image: initial;
    transition: 0.4s;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: rgb(248, 94, 24);
    z-index: -1;
    opacity: 0;
    transition: 0.4s;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-12px) scale(1.03);
}

.icon {
    font-size: 40px;
    margin-bottom: 15px;
    transition: 0.4s;
}

.card:hover .icon {
    transform: rotate(10deg) scale(1.2);
}

.card h3 {
    font-size: 15px;
    letter-spacing: 0.5px;
    font-family: Poppins, sans-serif;
}

.card:hover::after {
    top: 100%;
}

.icon img {
    width: 70px;
    filter: brightness(0) invert(1);
}

.card p {
    font-size: 14px;
}

.core-section {
    background: rgb(255, 255, 255);
}

.title {
    text-align: center;
    color: rgb(0, 0, 0);
    margin-bottom: 30px;
    position: relative;
    font-family: Poppins, sans-serif;
    font-size: 34px !important;
    font-weight: 700 !important;
}

.title::after {
    content: "";
    width: 225px;
    justify-content: center;
    display: block;
    margin: 10px auto 0px;
}

.core-box {
    font-family: Poppins, sans-serif;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(238, 238, 238);
    padding: 5px 5px 15px;
    text-align: center;
    border-radius: 14px;
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 5px 15px;
}

.core-box:hover {
    transform: translateY(-8px);
    border-color: rgb(244, 111, 35);
    box-shadow: rgba(244, 111, 35, 0.15) 0px 10px 25px;
}

.core-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 12px;
}

.core-box h3 {
    font-size: 15px;
    color: rgb(0, 0, 0);
    margin: 0px;
    font-weight: 600;
}

.core-grid .col-md-2 {
    margin-bottom: 0px;
}

.stats-clean {
    background-image: url("../img/banner/banner-back.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.stat-item {
    position: relative;
    padding: 0px 10px;
}

.stat-item::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgb(61, 71, 104);
}

.col-md-3:last-child .stat-item::after {
    display: none;
}

.stat-item h2 {
    font-size: 60px;
    font-weight: 800;
    color: rgb(110, 175, 16);
    position: relative;
    margin-bottom: 18px;
}

.stat-item h2::after {
    content: "";
    width: 40px;
    height: 3px;
    background: rgb(112, 177, 16);
    display: block;
    margin: 8px auto 0px;
    transition: 0.3s;
}

.stat-item:hover h2::after {
    width: 70px;
}

.stat-item p {
    font-size: 17px;
    color: rgb(0, 0, 0);
    margin: 0px;
    font-weight: 700;
    letter-spacing: 1px;
}

.stat-item:hover {
    transform: translateY(-6px);
}

.testimonials {
    background: aliceblue;
    text-align: center;
}

.testimonial-box {
    background: rgb(255, 255, 255);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 25px;
    height: 271px;
    max-width: 500px;
    margin: auto;
}

.testimonial-box img {
    width: 70px;
    margin: 0px auto 15px;
    height: 70px;
    border-radius: 50%;
}

.testimonial-box p {
    font-size: 15px;
    color: rgb(85, 85, 85);
    line-height: 1.6;
}

.testimonial-box h4 {
    margin-top: 15px;
    font-size: 16px;
    color: rgb(0, 0, 0);
}

.partners-section {
    padding: 80px 0px;
    background: rgb(255, 255, 255);
}

.partner-logo {
    text-align: center;
    padding: 45px 4px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 25px;
}

.partner-logo img {
    max-width: 100%;
    height: 65px;
    object-fit: contain;
    transition: 0.3s;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partners-row .col-md-2 {
    margin-bottom: 20px;
}

.cta-creative::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 111, 35, 0.4), transparent);
    top: -100px;
    display: none;
    left: -100px;
}

.cta-creative::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 138, 61, 0.3), transparent);
    bottom: -100px;
    right: -100px;
    display: none;
}

.cta-wrapper {
    background: linear-gradient(135deg, rgb(132, 204, 22), rgb(101, 163, 13));
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: rgb(255, 255, 255);
    position: relative;
    /* z-index: 2; */
    box-shadow: rgba(0, 0, 0, 0.4) 0px 20px 60px;
}

.cta-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: Poppins, sans-serif;
}

.cta-wrapper p {
    margin-bottom: 22px;
    color: rgb(255, 255, 255);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.call-btn {
    background: rgb(255, 255, 255);
    color: rgb(26, 43, 73);
}

.call-btn:hover {
    transform: translateY(-5px);
}

.whatsapp-btn {
    background: rgb(37, 211, 102);
    color: rgb(255, 255, 255);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
}

.main-btn {
    background: rgb(27, 43, 92);
    color: rgb(255, 255, 255);
    font-size: 15px;
    box-shadow: rgba(244, 111, 35, 0.6) 0px 0px 20px;
    position: relative;
}

.main-btn::before {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 30px;
    background: inherit;
    filter: blur(10px);
    opacity: 0.6;
    z-index: -1;
    animation: 2s ease 0s infinite normal none running pulse;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.cta-btn:hover {
    transform: translateY(-6px) scale(1.05);
}

.modal-content {
    border-radius: 15px;
    padding: 10px;
}

.modal-title {
    font-weight: 600;
}

.form-control {
    height: 45px;
    border-radius: 8px;
    font-size: 14px;
}

.captcha-box {
    background: rgb(241, 245, 249);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 3px;
}

.submit-btn {
    background: linear-gradient(135deg, rgb(132, 204, 22), rgb(101, 163, 13));
    color: rgb(255, 255, 255);
    border-radius: 30px;
    padding: 10px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: rgb(217, 92, 28);
}

button.btn-close {
    background-color: rgb(206, 203, 202);
    opacity: 1;
    color: rgb(255, 255, 255) !important;
}

.footer {
    background: rgb(0, 0, 0);
    color: rgb(203, 213, 225);
    padding: 50px 0px 10px;
}
/* .footert .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(52 142 203);
}
.footert-top {
    background-position: top;
    position: relative;
    background-size: cover !important;
    background: url(../img/bg-footer.jpg) no-repeat top center / cover;
} */
.footer-logo {
    border-radius: 10px;
    width: 145px;
    text-align: center;
    margin-bottom: 15px;
    padding: 5px 26px;
    background-color: rgb(255, 255, 255);
}

.footer-title {
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    font-size: 18px;
    width: max-content;
    border-bottom: 1.5px solid rgb(114, 180, 17);
    position: relative;
    line-height: 35px;
    gap: 2px;
}

.footer-links {
    list-style: none;
    padding: 0px;
}

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

.footer-links a {
    color: rgb(203, 213, 225);
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    font-size: 14px;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 0%;
    height: 2px;
    background: rgb(110, 176, 16);
    transition: 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: rgb(255, 255, 255);
}

.footer-contact {
    list-style: none;
    padding: 0px;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 26px;
    font-size: 14px;
}

.footer-contact i {
    color: rgb(114, 180, 17);
    font-size: 16px;
    min-width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 15px;
    font-size: 13px;
    color: rgb(148, 163, 184);
}

.footer-about p {
    font-size: 14px;
    text-align: justify;
}

.breadcrumb-section {
    position: relative;
    min-height: 350px;
    padding-top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    color: rgb(255, 255, 255);
}

.breadcrumb-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.breadcrumb-section .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0px;
    left: 0px;
    z-index: 2;
}

.breadcrumb-section .container {
    position: relative;
    z-index: 3;
}

.breadcrumb-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb-section p {
    font-size: 14px;
}

.breadcrumb-section a {
    color: rgb(110 175 15);
    text-decoration: none;
}

.breadcrumb-section a:hover {
    text-decoration: underline;
}

.fixed-top {
    position: fixed;
    top: 35px;
    right: 0px;
    left: 0px;
    z-index: 2;
}



.phone-anim i {
    display: inline-block;
    animation: 2s ease 0s infinite normal none running phoneShake;
    color: rgb(255, 255, 255);
}

@keyframes phoneShake {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.phone-anim {
    animation: 2s ease 0s infinite normal none running pulseGlow;
}

@keyframes pulseGlow {
    0% {
        text-shadow: rgba(255, 255, 255, 0.5) 0px 0px 0px;
    }

    50% {
        text-shadow: rgba(255, 255, 255, 0.9) 0px 0px 8px;
    }

    100% {
        text-shadow: rgba(255, 255, 255, 0.5) 0px 0px 0px;
    }
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgb(132, 204, 22), rgb(101, 163, 13));
    color: rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
}

.call-icon {
    width: 35px;
    height: 35px;
    background: rgb(255, 255, 255);
    color: rgb(110, 175, 16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    animation: 1.5s ease 0s infinite normal none running ringPulse;
}

@keyframes ringPulse {
    0% {
        box-shadow: rgba(255, 255, 255, 0.7) 0px 0px 0px 0px;
        transform: scale(1);
    }

    50% {
        box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 10px;
        transform: scale(1.1);
    }

    100% {
        box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 0px;
        transform: scale(1);
    }
}

.call-icon i {
    animation: 1.5s ease 0s infinite normal none running phoneShake;
    rotate: 90deg;
}

@keyframes phoneShake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.call-btn:hover .call-icon {
    background: rgb(255, 255, 255);
    color: rgb(28, 29, 102);
    transform: scale(1.2);
}

#typing {
    font-size: 47px;
    font-weight: 700;
}

#typing::after {
    content: "|";
    animation: 0.7s ease 0s infinite normal none running blink;
    margin-left: 5px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 999999999;
    padding: 25px;
    border: 5px solid rgb(37, 211, 102);
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.btn-whatsapp-pulse:hover, .btn-call-pulse:hover {
    color: white !important;
}

.btn-whatsapp-pulse {
    background: rgb(16, 160, 70);
    color: white;
    position: fixed;
    bottom: 15px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0px;
    height: 0px;
    padding: 41px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 9999999999;
}

.event-item {
    gap: 15px;
    align-items: center;
    overflow: hidden;
    padding: 25px 14px;
    border: 0.2px solid rgba(255, 255, 255, 0.35);
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .event-item {
        padding: 15px 10px;
    }
}

.event-item::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0px;
    width: 4px;
    height: 47px;
    transition: 0.3s;
    transform: translateY(-50%);
    background: rgb(146, 220, 99);
}

.event-item .xb-item--icon {
    height: 115px;
    margin-bottom: 20px;
    width: 115px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-image: initial;
    background-position: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(255, 255, 255) !important;
}

.event-item .xb-item--title {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 30px;
    flex-basis: 0px;
    text-transform: capitalize;
    color: rgb(255, 255, 255);
    font-family: Poppins, sans-serif;
}

.event-item:hover {
    box-shadow: rgba(206, 220, 227, 0.23) 0px 21px 32px 0px;
}

.event-item:hover::before {
    height: 100%;
}

.event-col:nth-child(2) .event-item::before {
    background: rgb(0, 184, 255);
}

.event-col:nth-child(2) .event-item .xb-item--icon {
    background: rgba(0, 183, 255, 0.1);
}

.event-col:nth-child(3) .event-item::before {
    background: rgb(237, 199, 11);
}

.event-col:nth-child(3) .event-item .xb-item--icon {
    background: rgba(237, 199, 11, 0.1);
}

.event-col:nth-child(4) .event-item::before {
    background: rgb(255, 101, 0);
}

.event-col:nth-child(4) .event-item .xb-item--icon {
    background: rgba(255, 102, 0, 0.1);
}

.event-col:nth-child(5) .event-item::before {
    background: rgb(11, 201, 180);
}

.event-col:nth-child(6) .event-item::before {
    background: rgb(0, 184, 255);
}

.event-col:nth-child(6) .event-item::before {
    background: rgb(239, 189, 219);
}

.event-col:nth-child(6) .event-item .xb-item--icon {
    background: rgba(255, 102, 0, 0.1);
}

.fa-event-item .xb-item--img {
    overflow: hidden;
    display: inline-block;
}

.fa-event-item .xb-item--img img {
    transition: 0.3s;
}

.fa-event-item .xb-item--img:hover img {
    transform: scale(1.03);
}

.fa-event-time-wrap {
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0px;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.fa-event-time-wrap::before {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
    height: 100%;
    width: 100%;
    content: "";
}

.event-spot-inner p {
    max-width: 410px;
}

.event-spot-img {
    position: absolute;
    inset: 0px;
    z-index: -1;
}

.xb-item--icon img {
    width: 75px;
    animation: 3s ease-in-out 0s infinite normal none running float;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.portfolio_img {
    height: 450px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    border-bottom: 3px solid rgb(251, 142, 1);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.portfolio_img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    object-fit: cover;
    object-position: 0% 0%;
    transition: 0.1s ease-in-out;
}

.portfolio_img:hover img {
    object-position: 0% 100%;
    transition: 1s ease-in-out;
}

.diagonal-marquee {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(45deg, rgb(15, 109, 0), rgb(87, 229, 49));
    padding: 25px 0px;
    transform: rotate(-4deg);
    position: relative;
    z-index: 1;
}

.diagonal-marquee::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.diagonal-marquee::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: 50s linear 0s infinite normal none running scrollText;
}

.marquee-track span {
    font-size: 25px;
    color: rgb(255, 255, 255);
    white-space: nowrap;
    margin-right: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

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

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

.diagonal-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.star {
    color: rgb(255, 215, 0);
    margin: 0px 10px;
}

.core-section {
    background: rgb(247, 249, 252);
}

.core-slider {
    width: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.core-box {
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    height: 244px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px;
}

.core-box img {
    margin-bottom: 10px;
}

.core-box h3 {
    font-size: 17px;
    font-weight: 600;
}

.core-box:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgb(132, 204, 22), rgb(101, 163, 13));
}

.core-box:hover h3 {
    color: rgb(255, 255, 255);
}

.core-box:hover img {
}

.core-slider .swiper-wrapper {
    display: flex;
}

.core-slider .swiper-slide {
    width: calc(25%) !important;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .core-slider .swiper-slide {
        width: calc(33.3333%) !important;
    }
}

@media (max-width: 768px) {
    .core-slider .swiper-slide {
        width: calc(50%) !important;
    }
}

@media (max-width: 480px) {
    .core-slider .swiper-slide {
        /* width: 100% !important; */
    }
}

.testimonial-box {
    background: rgb(255, 255, 255);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-box p {
    flex-grow: 1;
}

.testi-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(45deg, rgb(15, 109, 0), rgb(58, 149, 34));
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.testi-btn:hover {
    transform: translateY(-3px);
    box-shadow: rgba(15, 109, 0, 0.3) 0px 10px 20px;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -5px !important;
}

.services-section {
    background: rgb(249, 251, 253);
}

.service-box {
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
}

.service-box:hover {
    background: rgb(255, 255, 255);
    transform: translateY(-5px);
}

.service-box h3 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 10px;
}

.service-box ul {
    padding-left: 0px;
    list-style: none;
}

.service-box ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

.service-box ul li i {
    background-color: rgb(16, 160, 70);
    color: rgb(255, 255, 255);
    height: 20px;
    border-radius: 50%;
    width: 20px;
    line-height: 20px;
    margin-right: 6px;
    font-size: 11px;
}

.clients-section {
    background: rgb(248, 251, 255);
}

.clients-title {
    font-size: 38px;
    font-weight: 700;
    color: rgb(17, 17, 17);
    margin-bottom: 10px;
}

.clients-subtitle {
    color: rgb(102, 102, 102);
    font-size: 16px;
}

.client-box {
    background: rgb(255, 255, 255);
    border-radius: 5px;
    padding: 20px;
    height: auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 5px 20px;
    transition: 0.4s;
    border: 1px solid rgb(238, 238, 238);
}

.client-box img {
    max-width: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.client-box:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 12px 30px;
}

.client-box:hover img {
    filter: grayscale(0%);
}

.contact-section {
    background: rgb(248, 251, 255);
}

.contact-box {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.contact-info {
    background: linear-gradient(135deg, rgb(132, 204, 22), rgb(101, 163, 13));
    color: white;
    padding: 50px 30px;
}

.contact-info h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 18px;
    font-size: 16px;
}

.custom-input {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: rgb(245, 247, 250);
    border-radius: 12px;
    padding: 14px 18px;
}

.custom-input:focus {
    box-shadow: none;
    border: 1px solid rgb(52, 142, 203);
}

.send-btn {
    background: rgb(52, 142, 203);
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: 0.3s;
}

.send-btn:hover {
    background: rgb(27, 95, 147);
    color: white;
    transform: translateY(-2px);
}

.form-select.custom-input {
    padding: 14px 18px;
    border-radius: 12px;
    background-color: rgb(245, 247, 250);
    appearance: auto !important;
}

.contact-mini-box {
    background: rgb(248, 251, 255);
    padding: 20px 15px;
    border-radius: 15px;
    margin-top: 0px;
    text-align: center;
    border: 1px solid rgb(234, 234, 234);
    height: 100%;
    transition: 0.3s;
}

.contact-mini-box i {
    font-size: 35px;
    color: rgb(113, 179, 17);
    margin-bottom: 12px;
}

.contact-mini-box h6 {
    color: rgb(0, 0, 0);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 22px;
}

.contact-mini-box p {
    margin: 0px;
    font-size: 14px;
}

.contact-mini-box:hover {
    transform: translateY(-5px);
}

.address {
    margin-bottom: 60px;
}

.contact-mini-box a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.faq-section {
    background: rgb(248, 251, 255);
}

.accordion-item {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 15px;
    border-radius: 12px !important;
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
    box-shadow: none !important;
    font-size: 14px;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgb(132, 204, 22), rgb(101, 163, 13));
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px;
    line-height: 1.8;
    font-size: 14px;
}

.why-designhubs {
    background: rgb(247, 242, 245);
}

.why-image img {
    border-radius: 6px;
    width: 100%;
    object-fit: cover;
}

.feature-card {
    background: rgb(255, 255, 255);
    padding: 15px 11px;
    border-radius: 10px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 5px 20px;
    height: 100%;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-card i {
    font-size: 28px;
    color: rgb(52, 142, 203);
    margin-bottom: 15px;
}

.feature-card h5 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.feature-card p {
    margin: 0px;
    font-size: 14px;
    text-align: center;
}

.feature-card img {
    width: 50px;
    display: block;
    margin: 0px auto;
    filter: brightness(0) invert(1);
}

.upper {
    background: linear-gradient(135deg, rgb(132, 204, 22), rgb(101, 163, 13));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px auto;
}
div#enquiryModal {
    z-index: 999999;
}

.p-l-40{
padding-left: 50px;
}

.partner-info:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    /*border: 1px solid #84CC16;*/
  }
  
  .partner-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .partner-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
  }
.partner-info {
    background: #f8f9fa;
    padding: 20px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.partner-info a{
    color: #70b210;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}

.carousel-indicators{
    display: none;
}
button.navbar-toggler {
    background-color: #528703;
    color: #ffff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    padding: 9px;
    justify-content: center;
    align-items: center;
    display: flex;
}
.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}


/*media query*/

.testimonials .swiper {
    padding-bottom: 60px; /* pagination ke liye space */
    position: relative;
}

.testimonials .swiper-pagination {
    position: absolute;
    bottom: 0px !important; /* neeche shift */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

#popupModal {
    z-index: 999999;
}



/*media query start*/

@media (max-width: 479px) {
    
   .col-xs-6{
       width: 50%
   }
   .title {
 
    font-size: 26px !important;

}
   
   
   .navbar-brand  img{
       width: 50px;
   }
   #typing {
    font-size: 18px;
}
.hero-slide p {
    margin: 20px 0px;
    color: rgb(0, 0, 0);
    font-size: 10px;
    display: none;
}
.hero-slide {
    height: auto;
    height: 200px;
}
.top-bar{font-size:12px;padding: 5px 0px;height: 29px;}
.top-bar span {
    margin-right: -22px;
    float: revert-rule;
}

.custom-navbar {
    padding: 1px 0px;
}
.fixed-top {
    top: 28px;}
.btn-main {
  
    padding: 7px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.marquee {
    width: 180px;
    padding-top: 20px;
}
.about-section {
    padding: 40px 0px;}
    
   
 
.about-img img {
    margin-bottom: 20px;
    width: 350px;
    /* margin: 0px auto; */
}

.diagonal-marquee {
    padding: 8px 0px;
}

.marquee-track span {
    font-size: 17px;
}
    .pb-60 {
        padding-bottom:40px;
    }

 .pt-60 {
        padding-top:40px;
    }
     .mt-60 {
        margin-top:40px;
    }
       .mb-60 {
           
           
           
        margin-bottom:40px;
    }
    .mb-30 {
        margin-bottom: 15px;
    }
        .event-item .xb-item--icon {
        height: 100px;
        margin-bottom: 20px;
        width: 100px;
        padding: 10px;
        
        }
    
    .event-item .xb-item--title{
        line-height: 0px;
    }
    .portfolio_img {
        margin-bottom: 0px;
    
    }
        .core-box {
      width: 200px;
      height: 200px;
      padding: 10px;
    }
.accordion-body {
        padding: 9px;
    }

.cta-wrapper h2 {
        font-size: 23px;
}
.cta-wrapper p {
        margin-bottom: 15px;
}

    .cta-wrapper {
        padding: 15px;
    }
    
        .stat-item h2 {
        font-size: 36px;
    
}
    .partner-logo {
        padding: 20px 4px;
        
    }
    .partners-section {
        padding: 40px 0px;

}
    .core-box h3 {font-size:14px;}
    
.col-xs-12{
    width: 100%
}

    .accordion-button {
       
        padding: 15px;
    }
    
    .p-l-40{
        /* padding-left: inherit; */
        padding-left: 20px;
    }
        .testimonials .swiper {
        padding-bottom: 10px;

}
.footer-bottom {
        margin-top: 5px;

}
.feature-card h5 {
       
        font-size: 15px;
}

    .footer-links li {
        margin-bottom: 6px;
    }

.about-img {
    text-align: center;
}
    .breadcrumb-section h1 {font-size:22px}

.breadcrumb-section {
        min-height: 255px;
        .title {

        padding-top: 100px;

}
.breadcrumb-section a {
        font-size: 12px;
    }
        .breadcrumb-section p {
        font-size: 12px;
    }
    
    .service-box {
        padding: 10px;

}
    .service-box h3 {
       
        font-size: 25px;
        margin-top: 20px;
}


}

