
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
 p{
    text-align: justify;
 }
 body{  font-family: "Inter", sans-serif;
color: #292d33;}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  font-weight: bold !important;
  color: #0F172A!important;
  font-family: "Montserrat", sans-serif;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.btn {
    text-transform: uppercase;
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
}

.btn.btn-primary:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-dark {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-dark:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-primary);
    color: var(--bs-dark) !important;
}



/*** Topbar Start ***/

.search-btn {
    position: relative;
    width: 100%;
    padding: 0 0 0 25px;
}

.search-btn .form-group {
    width: 100%;
}

.search-btn button {
    position: absolute;
    right: 25px;
}

@media (max-width: 992px) {
    .search-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
    }
    .search-btn {
        display: none;
    }
    .topbar-info {
        flex-direction: column;
    }
    .topbar-info a {
        padding: 0 0 10px 0;
    }
    .topbar-icon {
        padding: 0 0 10px 0;
    }
}

@media (max-width: 576px) {
    .topbar-top {
        display: none;
    }
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav {
    /* padding: 15px 0; */
}

.navbar .navbar-nav .nav-link {
  padding: 0 8px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    outline: none;
    transition: .5s;
    padding: 5px 8px 5px 12px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active  {
    /* background: #ee7f1c; */
    border-bottom: 2px solid #ee7f1c;
    transition: .5s;
    /* border-radius: 1em; */
    color: #fff;
    /* padding: 5px 12px 5px 12px; */
    align-items: center;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    vertical-align: middle;
    margin-left: 4px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover,
.dropdown .dropdown-menu a.active {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.navbar-toggler {
    background: var(--bs-secondary);
    color: var(--bs-light) !important;
    padding: 5px 12px;
    border: 2px solid var(--bs-primary) !important;
}

/*** Navbar End ***/



/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    /* background: rgba(0, 0, 0, .7); */
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev {
    width: 80px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 30px 30px 0;
    transition: .5s;
    opacity: 1;
}


.carousel-control-next {
    width: 80px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 30px 0 0 30px;
    transition: .5s;
    opacity: 1;
}

#carouselId .carousel-indicators li,
#carouselId .carousel-indicators li {
    width: 24px;
    height: 24px;
    background: var(--bs-dark);
    border: 2px solid var(--bs-primary);
    border-radius: 24px;
    margin: 0 10px 30px 10px;
}

#carouselId .carousel-indicators li.active {
    background: var(--bs-primary) !important;
}

@media (max-width: 768px) {
    .carousel-item {
        width: 100%;
        /* height: 400px; */
    }

    .carousel-item img {
        /* height: 400px; */
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
    margin-bottom: 6rem;
}

/*** Carousel End ***/
/*** Clean About Styling ***/
.text-dark-heading {
    color: #0F172A !important;
    font-family: 'Montserrat', sans-serif !important;
}

.text-slate-body {
    color: #475569 !important;
    font-family: 'Inter', sans-serif !important;
}

.tracking-wider {
    letter-spacing: 0.06em;
}

.custom-badge {
    background-color: #f1f5f9 !important;
    color: #0F172A !important;
    border: 1px solid #e2e8f0 !important;
    font-size: 0.75rem !important;
    font-family: 'Inter', sans-serif !important;
}

.custom-about-btn {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
}

.custom-about-btn:hover {
    transform: translateY(-2px);
}

/* Image Container Wrapper */
.about-img-clean {
    width: 100%;
    padding-right: 20px;
    padding-bottom: 20px;
}

/* Premium smooth image without background boxes */
.custom-clean-img {
    border-radius: 12px !important;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.15) !important;
    transition: transform 0.4s ease;
}

.custom-clean-img:hover {
    transform: scale(1.01);
}

/* Polished Floating Experience Badge Card */
.clean-experience-badge {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 140px;
    padding: 18px 12px;
    border-radius: 8px;
    z-index: 10;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1) !important;
}

/* Metrics Dashboard Cards */
.metric-card {
    background-color: #e4e7f0 !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card:hover {
    background-color: #ffffff !important;
    transform: translateY(-4px);
    border-color: var(--bs-primary) !important;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.08) !important;
}

.metric-icon-wrap {
    transition: transform 0.3s ease;
}

.metric-card:hover .metric-icon-wrap {
    transform: scale(1.1);
}

/* Responsive Adaptive adjustments */
@media (max-width: 768px) {
    .about-img-clean {
        padding-right: 0;
        padding-bottom: 0;
        margin-bottom: 25px;
    }
    .clean-experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 15px;
        width: 100%;
    }
}
/*** About End ***/

/*** Services Start ***/
.services-inner-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    position: relative;
    
}

.services-inner-icon::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 62px;
    top: 50%;
    left: 50%;
    transition: .5s;    color: #fff;

}

.services-item:hover .services-inner-icon::after {
    width: 100%;
    height: 100%;
    margin-top: -50%;
    margin-left: -50%;
    background: var(--bs-primary);
    color: #fff;
    
} 

.services-item i {
    text-align: center;
    transition: .5s;
}

.services-item:hover i {
    color: var(--bs-dark) !important;
    z-index: 1;
    rotate: 360deg;
}

.services-item em {
    text-align: center;
    transition: .5s;
}

.services-item:hover em {
    color: var(--bs-dark) !important;
    z-index: 1;
    rotate: 360deg;
}

.services-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** Services Start ***/

/*** Project Start ***/
.project-item {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px 30px 30px 30px ;
    overflow: hidden;
}

.project-item::before {
    content: "";
    width: 100%;
    height: 40%;
    background: var(--bs-dark);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}


.project-item::after {
    content: "";
    width: 100%;
    height: 60%;
    background: var(--bs-primary);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}

.project-left {
    width: 180px;
    height: 70px;
    position: absolute;
    top: 22%;
    left: -18%;
    rotate: 30deg;
    z-index: 2;
}

.project-right {
    width: 180px;
    height: 70px;
    position: absolute;
    top: 22%;
    right: -18%;
    rotate: -30deg;
    z-index: 2;
}

.project-item img {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-item a {
    position: absolute;
    padding: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-360deg);
    border-radius: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    opacity: 0;
}

.project-item:hover a {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    background: var(--bs-primary);
    color: var(--bs-dark) !important;
    opacity: 1;

}


/*** prohect Start ***/


/*** Blog Start ***/

.blog-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}


.blog-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 80px;
    height: 50px;
    background: var(--bs-primary);
    top: -51px;
    left: 0;
    border: 0;
    border-radius: 10px 30px 30px 10px;
}

.blog-carousel .owl-nav .owl-prev {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: .5s;
}

.blog-carousel .owl-nav .owl-prev:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.blog-carousel .owl-prev,
.blog-carousel .owl-next {
    color: var(--bs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-carousel .owl-nav .owl-next {
    position: absolute;
    width: 80px;
    height: 50px;
    background: var(--bs-primary);
    top: -51px;
    right: 0;
    border-radius: 30px 10px 10px 30px;
}

.blog-carousel .owl-nav .owl-next {
    box-shadow: inset 0 0 0 0 #000000;
    transition: .5s;
}

.blog-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 200px 0 0 0 #000000;
    color: var(--bs-primary) !important;
}

/*** Blog End ***/
.blog-carousel1 {
    width: 100%;
    height: 100%;
    position: relative;
}


.blog-carousel1 .owl-nav .owl-prev {
    position: absolute;
    width: 80px;
    height: 50px;
    background: var(--bs-primary);
    top: -51px;
    left: 0;
    border: 0;
    border-radius: 10px 30px 30px 10px;
}

.blog-carousel1 .owl-nav .owl-prev {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: .5s;
}

.blog-carousel1 .owl-nav .owl-prev:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.blog-carousel1 .owl-prev,
.blog-carousel1 .owl-next {
    color: var(--bs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-carousel1 .owl-nav .owl-next {
    position: absolute;
    width: 80px;
    height: 50px;
    background: var(--bs-primary);
    top: -51px;
    right: 0;
    border-radius: 30px 10px 10px 30px;
}

.blog-carousel1 .owl-nav .owl-next {
    box-shadow: inset 0 0 0 0 #000000;
    transition: .5s;
}

.blog-carousel1 .owl-nav .owl-next:hover {
    box-shadow: inset 200px 0 0 0 #000000;
    color: var(--bs-primary) !important;
}

/*** Blog End ***/


/*** Pricing Start ***/
.pricing-item {
    transition: .5s;
    
}

.pricing-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
    margin: -20px 0 20px 0;
}

.pricing-label {
    border-bottom: 20px solid var(--bs-light);
    border-radius: 0 0 300px 300px;
    transition: .5s;
}

.pricing-item:hover .pricing-label {
    border-color: rgba(0, 0, 0, .5);
}

.pricing-item:hover .pricing-label.pricing-featured {
    border-color: rgba(255, 255, 255, .5);
}


/*** Pricing End ***/


/*** Call To Action start ***/

.call-to-action {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

/*** Call To Action End ***/


/*** Team Start ***/
.team-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team-item .team-icon {
    position: absolute;
    top: 15px;
    right: -80px;
    rotate: -30deg;
    transition: .5s;
    visibility: hidden;
}

.team-item:hover .team-icon {
    visibility: visible;
    margin-right: 95px;
    rotate: 0deg;
}

.team-item .team-icon .btn {
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
}

.team-item .team-content {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: 1s;
    
}

.team-item:hover .team-content {
    box-shadow: inset 550px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}
/*** Team End ***/
/*** CSR Horizon Rectangular Matrix Light Styles ***/
.font-inter {
    font-family: 'Inter', sans-serif !important;
}

.custom-csr-badge {
    background-color: rgba(15, 23, 42, 0.05) !important;
    color: #475569 !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.06em;
}

.custom-main-title {
    max-width: 650px;
    width: 100%;
    font-family: 'Montserrat', sans-serif !important;
}

.z-index-3 {
    position: relative;
    z-index: 3;
}

.text-indigo {
    color: #4f46e5 !important;
}

.csr-horizon-section {
    background-color: #f8fafc !important; /* Elegant light slate white backdrop */
}

/* Elegant Light Fluid Mesh Glow Background Objects */
.matrix-blur-core {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35; /* Higher visibility opacity for light canvases */
    z-index: 1;
    pointer-events: none;
}
.blur-primary { top: -10%; left: 5%; background: #e0e7ff; } /* Soft corporate indigo wash */
.blur-subtle { bottom: -10%; right: 5%; background: #ccfbf1; } /* Soft clean teal wash */

/* --- THE CLEAN HORIZON MATRIX CONTAINER --- */
.horizon-matrix-wrapper {
    width: 980px;
    height: 620px;
    max-width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 24px;
}

/* CENTRAL ARCHOR: Media Display Hub Box */
.matrix-center-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 180px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08) !important;
}

.matrix-logo {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.horizon-matrix-wrapper:hover .matrix-logo {
    transform: scale(1.12) rotate(360deg);
}

/* --- THE MOVING OBJECT: Premium Indigo Laser Border Track --- */
.kinetic-laser-track {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 2px solid transparent;
    /* High-contrast gradient moving capsule */
    background: linear-gradient(90deg, transparent, #4f46e5, #06b6d4, transparent) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    background-size: 200% 100%;
    animation: runLaserBorderLight 7s infinite linear;
    pointer-events: none;
    z-index: 2;
}

@keyframes runLaserBorderLight {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* --- QUADRANT STRUCTURAL MATRIX GRID --- */
.quadrant-card-wrapper {
    position: absolute;
    width: 330px;
    z-index: 5;
}

/* Locks items perfectly into clean rectangular grid quadrants */
.quad-top-left     { top: 40px;    left: 40px; }
.quad-top-right    { top: 40px;    right: 40px; }
.quad-bottom-left  { bottom: 40px; left: 40px; }
.quad-bottom-right { bottom: 40px; right: 40px; }

/* Premium High-Contrast White Card Panels */
.horizon-premium-card {
    background: #e4e7f0;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
    
    will-change: transform, border-color, background, box-shadow;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

/* Bright Soft Core Card Icons */
.horizon-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

/* Micro color branding sets for the light cards */
.icon-blue  { background-color: #eff6ff; color: #1d4ed8; }
.icon-teal  { background-color: #f0fdfa; color: #0f766e; }
.icon-rose  { background-color: #fff1f2; color: #be123c; }
.icon-amber { background-color: #fffbeb; color: #b45309; }

.horizon-premium-card h5 {
    font-size: 1.05rem !important;
    line-height: 1.3;
}

.horizon-premium-card p {
    font-size: 0.85rem;
    line-height: 1.55;
}

/* Light Card Interactions */
.horizon-premium-card:hover {
    background: #ffffff;
    border-color: #4f46e5;
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.08);
    cursor: pointer;
}

.horizon-premium-card:hover .horizon-icon {
    transform: scale(1.08);
}

/* --- MOBILE RESPONSIVE ADAPTATION --- */
@media (max-width: 991px) {
    .horizon-matrix-wrapper {
        width: 100%;
        height: auto;
        border: none;
        background: transparent;
        display: flex;
        flex-direction: column !important;
        gap: 20px;
    }
    .matrix-center-display, .kinetic-laser-track, .matrix-blur-core {
        display: none !important;
    }
    .quadrant-card-wrapper {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
    }
    .horizon-premium-card {
        box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
    }
}
/*** testimonial Start ***/
.testimonial-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bs-light);
    z-index: 1;
}

.testimonial-content::before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50px;
    bottom: -15px;
    rotate: 45deg;
    z-index: -5;
    background: var(--bs-light);
}

.testimonial-carousel {
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 60px;
    height: 40px;
    background: var(--bs-primary);
    color: var(--bs-dark);
    font-size: 22px;
    top: 14%;
    left: 0px;
    border-radius: 30px 0 0 30px;
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.testimonial-carousel .owl-nav .owl-next {
    left: auto;
    right: 0px;
    border-radius: 0 30px 30px 0;
}

.testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-secondary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

/*** testimonial End ***/


/*** Contact Start ***/
.contact-link a i,
.contact-link a h5,
.contact-link a.h5 {
    transition: .5s;
}

.contact-link a i:hover,
.contact-link a h5:hover,
.contact-link a.h5:hover {
    color: var(--bs-primary) !important;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .8)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    color: rgba(255, 255, 255, .7);
    /* margin-top: 6rem; */
}

.footer-item,
.footer-item a {
    color: rgba(255, 255, 255, .7);
    text-transform: capitalize;
}

/*** Footer End ***/


/*** Copywright Start ***/

.copyright .copyright-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright .copyright-icon {
    width: 44px; 
    height: 44px; 
    display: flex;
    align-items: center; 
    justify-content: center;
}

/*** Copywright End ***/


.bg-light {
  background-color: #1e37801f !important;
}

/* --- Custom Upgrades for Latest Event Spotlight --- */

.text-montserrat {
    font-family: 'Montserrat', sans-serif !important;
}

.text-inter {
    font-family: 'Inter', sans-serif !important;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

/* Light gray body alternative designed specifically to pop on dark backgrounds */
.text-slate-light {
    color: #cbd5e1 !important;
}

/* Section Background Box Structure */
.custom-cta-section {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('../img/carousel-1.jpg') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 16px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.3);
}

/* Clean Image Frame - Removed old circle border clipping */
.event-image-frame {
    padding: 10px;
}

.custom-event-img {
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-cta-section:hover .custom-event-img {
    transform: translateY(-4px) scale(1.01);
}

/* Event Detail Chips */
.event-meta-tag {
    background: rgba(255, 255, 255, 0.06);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
}

/* Main Action Button Styling overrides */
.custom-event-btn {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.custom-event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(var(--bs-primary-rgb), 0.4) !important;
}

/* Secondary Outline Button */
.custom-event-secondary-btn {
    font-family: 'Montserrat', sans-serif !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
}

.custom-event-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* Absolute Positioning overrides for inside content utilities */
.top-3 { top: 1rem !important; }
.start-3 { start: 1rem !important; }

/* Responsive Adjustments for Mobile Devices */
@media (max-width: 991.98px) {
    .custom-cta-section {
        margin: 4rem 0 !important;
        border-radius: 0px; /* Bleeds container seamlessly on edge-to-edge small screen layouts */
    }
    .event-meta-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}.bg-primary {
  background-color: #EE7F1C !important;
}
/*** Premium CTA Section Styles ***/
 
.font-inter {
    font-family: 'Inter', sans-serif !important;
}
.font-montserrat {
    font-family: 'Montserrat', sans-serif !important;
}

.premium-cta-section {
    background-color:#e4e7f0 !important
}

/* Custom Typography & Badge Details */
.cta-custom-badge {
    background-color: rgba(79, 70, 229, 0.08) !important;
    color: #EE7F1C !important;
    border: 1px solid rgba(79, 70, 229, 0.15) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.06em;
}

.heading-lh {
    line-height: 1.25 !important;
}

/* Luxury Soft Canvas Backdrop Blurs */
.cta-blur-core {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}
.cta-blur-indigo { top: -10%; right: 10%; background: #e0e7ff; }
.cta-blur-sky { bottom: -10%; left: 10%; background: #e0f2fe; }

/* --- GEOMETRIC IMAGE FRAME DESIGN --- */
.cta-image-wrapper {
    max-width: 440px;
    width: 100%;
    height: 440px;
}

.cta-image-bg-shape {
    position: absolute;
    inset: 15px;
    background: linear-gradient(135deg, #EE7F1C 0%, #06b6d4 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Trendy fluid shape mask */
    transform: rotate(-6deg);
    z-index: 1;
    opacity: 0.15;
}

.cta-dynamic-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 40% 40% 60% 60%; /* Alternating geometric shape */
    border: 6px solid #ffffff;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-radius 0.5s ease;
}

.cta-image-wrapper:hover .cta-dynamic-img {
    transform: translateY(-8px) rotate(2deg);
    border-radius: 50% 50% 50% 50%; /* Smoothly circles out on user hover interactions */
}

/* --- MODERN FORM WRAPPER INLINE FIELDS --- */
.cta-input-group {
    border-radius: 100px; /* Fully rounded continuous pill capsule */
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-input-group input.form-control {
    background: transparent !important;
    color: #1e293b !important;
    font-size: 0.95rem;
}

.cta-input-group input.form-control:focus {
    box-shadow: none !important;
    outline: none !important;
}

.cta-input-icon i {
    font-size: 1.1rem;
}

/* Luxury Royal Blue/Indigo Premium Button Theme overrides */
.btn-indigo {
    background-color: #EE7F1C !important;
    color: #ffffff !important;
    border-radius: 100px !important;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease !important;
}

.btn-indigo:hover {
    background-color: #EE7F1C !important;
    color: #ffffff !important;
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25) !important;
}

/* Glow highlights tracking when the input is selected */
.cta-newsletter-form:focus-within .cta-input-group {
    border-color: #EE7F1C;
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.1) !important;
}

/* --- RESPONSIVE MOBILE BREAKPOINTS --- */
@media (max-width: 991px) {
    .cta-image-wrapper {
        max-width: 320px;
        height: 320px;
        margin-bottom: 30px;
    }
    .cta-content-card {
        padding-left: 0 !important;
        text-align: center;
    }
    .cta-input-group {
        flex-direction: column;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        gap: 15px;
        padding: 0 !important;
    }
    .cta-input-icon {
        display: none !important; /* Hides icon representation inside block elements on phone layers */
    }
    .cta-input-group input.form-control {
        background: #ffffff !important;
        border: 1px solid rgba(15, 23, 42, 0.1) !important;
        border-radius: 12px !important;
        text-align: center;
        padding: 14px !important;
    }
    .btn-indigo {
        width: 100%;
        border-radius: 12px !important;
        padding: 14px !important;
    }
}/*** Premium CSR Donation Banner Style Elements ***/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@600;700&display=swap');

.font-inter {
    font-family: 'Inter', sans-serif !important;
}
.font-montserrat {
    font-family: 'Montserrat', sans-serif !important;
}

/* Structural Alignment Overrides */
.custom-donation-card {
    background-color: #111827 !important; /* Deep neutral slate black matching your references */
}

.custom-card-body-bg {
    background: linear-gradient(145deg, #111827 0%, #0f172a 100%);
}

.text-slate-muted {
    color: #94a3b8 !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-custom-yellow {
    color: #fbc02d !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.heading-lh {
    line-height: 1.25 !important;
}

.min-h-res {
    min-height: 400px;
}

/* Custom Micro Badges */
.custom-empowerment-badge {
    background-color: rgba(251, 192, 45, 0.1) !important;
    color: #fbc02d !important;
    border: 1px solid rgba(251, 192, 45, 0.25) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.06em;
}

/* --- LEFT IMAGE GLASSMORPHISM OVERLAY --- */
.glass-impact-badge {
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    max-width: 280px;
}

.geo-accent-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444; /* Clean crimson locator accent */
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #ef4444;
}

.impact-media-frame {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-donation-card:hover .impact-media-frame {
    transform: scale(1.04);
}


/* --- HIGH CONVERSION ACTION BUTTON --- */
.btn-premium-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.2) !important;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease !important;
}

.btn-premium-orange:hover {
    background: linear-gradient(135deg, #ea580c 0%, #d97706 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(234, 88, 12, 0.4) !important;
}

/* Micro interaction arrow tracking */
.dynamic-arrow {
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-premium-orange:hover .dynamic-arrow {
    transform: translateX(4px);
}

.text-primary-gradient {
    color: #38bdf8; /* Soft blue icon color */
}

/* --- RESPONSIVE WORKFLOW OVERRIDES --- */
@media (max-width: 767px) {
    .custom-card-body-bg {
        padding: 30px 20px !important;
    }
    .btn-premium-orange {
        width: 100%;
        justify-content: center;
    }
}@media (min-width: 1200px) {
  .display-5 {
    font-size: 2.5rem;
  }
}@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1rem;
  }
}/*** CSR Next-Gen Split-Screen Design Engine Styles ***/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@600;700&display=swap');

.font-inter { font-family: 'Inter', sans-serif !important; }
.font-montserrat { font-family: 'Montserrat', sans-serif !important; }
.z-index-5 { position: relative; z-index: 5; }
.heading-line-height { line-height: 1.25 !important; }
.border-slate-100 { border-color: #f1f5f9 !important; }
.micro-text { font-size: 0.72rem !important; display: block; }

/* Backdrop Glowing Mesh Orbs */
.nexus-glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}
.orb-indigo { top: -10%; left: -5%; background: #e0e7ff; }
.orb-teal { bottom: -10%; right: -5%; background: #ccfbf1; }

/* --- LEFT SIDE: STICKY HUB MODULE --- */
.brand-nexus-core {
    background: #ffffff;
    border-radius: 24px;
}

.nexus-badge-accent {
    background-color: rgba(79, 70, 229, 0.08) !important;
    color: #4f46e5 !important;
    border: 1px solid rgba(79, 70, 229, 0.15) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.05em;
}

.nexus-mini-avatar-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.nexus-avatar-spin {
    transition: transform 0.8s ease;
}
.brand-nexus-core:hover .nexus-avatar-spin {
    transform: rotate(360deg);
}

/* --- RIGHT SIDE: FEATURE STRIP DECKS --- */
.feature-strip-card {
    border: 1px solid #f1f5f9;
    border-bottom: 4px solid #e2e8f0; /* Default subtle base border accent */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, box-shadow 0.3s;
}

.feature-strip-card h5 {
    font-size: 1.05rem !important;
    letter-spacing: -0.01em;
}

.feature-strip-card p {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Individual Color Shields Configuration */
.strip-icon-shield {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.bg-blue-light  { background-color: #eff6ff; } .text-blue  { color: #1d4ed8; }
.bg-teal-light  { background-color: #f0fdfa; } .text-teal  { color: #0f766e; }
.bg-rose-light  { background-color: #fff1f2; } .text-rose  { color: #be123c; }
.bg-amber-light { background-color: #fffbeb; } .text-amber { color: #b45309; }

/* Dynamic Multi-Color Border Accents on Interaction Hover states */
.b-border-blue:hover  { border-bottom-color: #1d4ed8 !important; }
.b-border-teal:hover  { border-bottom-color: #0f766e !important; }
.b-border-rose:hover  { border-bottom-color: #be123c !important; }
.b-border-amber:hover { border-bottom-color: #b45309 !important; }

.feature-strip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.05) !important;
    cursor: pointer;
}

.feature-strip-card:hover .strip-icon-shield {
    transform: scale(1.08);
}

/* --- MOBILE RESPONSIVE SYSTEM STACK OVERRIDES --- */
@media (max-width: 991px) {
    .brand-nexus-core {
        border-radius: 16px;
    }
    .feature-strip-card {
        padding: 24px 20px !important;
        border-radius: 16px !important;
    }

    .carousel-caption {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: start;
  z-index: 1;
  left: 0;
  right: 0;
}
.display-6 {
  font-size: 0.5em;
  font-weight: 800;
  line-height: 1.2;
}h5, .h5 {
  font-size: 0.8em;
}.btn {
  font-size: 0.6em;
}
}.modal-content { border: 2px solid #d4af37; border-radius: 12px; overflow: hidden; }
        .modal-header { background: #0f2027; color: #fff; text-align: center; display: block; border: none; }
        .event-title { color: #d4af37; font-weight: 700; }
        .countdown-box { background: #f8fafc; border: 1px solid #cbd5e1; border-radius: 6px; padding: 5px; min-width: 55px; }
        .countdown-num { font-size: 1.3rem; font-weight: 700; color: #0f2027; display: block; }
        .countdown-label { font-size: 0.6rem; text-transform: uppercase; color: #64748b; }
        .info-bar { background-color: #fffbeb; border: 1px dashed #fcd34d; border-radius: 8px; font-size: 0.9rem; }


/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed #d97706;
}


.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #D4601A;
    border: 2px solid #f9a876;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed #D4601A;
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: #1B2A4A;
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    margin-right: 5px;
    background: #ffe6d1;
    border: 1px solid rgba(0, 0, 0, 0);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #000;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #ffffff;
    background-color: #1B2A4A;
    border-color: #dee2e6 #dee2e6 #fff;
}

.bg-grey{
    background-color: #e1e1e1;
}
.dropbtn {
padding: 0 10px;
  color: #000;
  font-weight: 500;
  font-size: 15px;
  outline: none;
  transition: .5s;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;  margin-top: -3px;
}

.dropdown-content a {
  color: black;
  padding: 5px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

 
.progress-bar{
    transition: width 3s ease;
}

ul.list{
list-style-type: none;
padding-left:0;
}

ul.list li {
    display: flex;
    margin-bottom: 5px;
}

ul.list li strong {
    display: contents;
    margin-bottom: 5px;
    color: #1B2A4A;
}

ul.list li::before {
    font-family: "FontAwesome";
    content: "\f0da";
  color:#1B2A4A;
    padding: 0 10px 0 0;
}


ul.list2{
list-style-type: none;
padding-left:0;
}

ul.list2 li {
    display: flex;
    margin-bottom: 5px;
}

ul.list2 li strong {
    display: contents;
    margin-bottom: 5px;
    color: #f0b782;
}

ul.list2 li::before {
    font-family: "FontAwesome";
    content: "\f0da";
  color:#f0b782;
    padding: 0 10px 0 0;
}


.display-6{
    font-size: 30px!important;
}

#achievement-counter{
    background: #fff;
    border-radius: 20px;
}

#achievement-counter .counter{
    font-size:1.7rem;
    color:var(--bs-primary)!important;
}

#achievement-counter em{
    color:#1c347f;
}

#achievement-counter h3{
    color:var(--primary);
}

#achievement-counter small{
    color:#000;
}


.rounded-4{
    border-radius: 15px;
}



.bg-siteblue{
    background-color: #091c4a;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #1e367b;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
.accordion-button{
    color:#000;
    font-weight: 500;
}



#myBtn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: transparent;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

.award-seal{
    width:140px;
    height:140px;
    border-radius:50%;
    background:linear-gradient(135deg,#f8b400,#ffdd57);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:55px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.award-seal i{
    text-shadow:0 2px 10px rgba(0,0,0,.2);
}

a {
    color: #1c347f;
    text-decoration: none;
}

a:hover {
    color: #f97316;
    font-weight: 600;
    text-decoration: none;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

@media (max-width: 991px) {

    .dropdown-submenu > .dropdown-menu {
        position: static;
        transform: none !important;
        border: 0;
        margin-left: 15px;
        display: none;
    }

    .dropdown-submenu > .dropdown-menu.show {
        display: block;
    }
}

.membership-card{
    transition:all .3s ease;
}

.membership-card:hover{
    transform:translateY(-8px);
}

.membership-header{
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.custom-csr-badge{
    background:#f5f5f5;
    color:#0c2340;
    border:1px solid #ddd;
    letter-spacing:1px;
}