/********** Template CSS **********/
/* Global layout overflow fix */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
.bg_primary_light {
background-color: #311d73 !important;
}
/* Keep layout wrappers full width to avoid side gaps at browser zoom levels */
main,
section,
header,
footer,
nav,
article,
aside {
    width: 100%;
    max-width: 100%;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    width: 100% !important;
    max-width: 100% !important;
}

/* Safety clamp: no element should exceed viewport width */
img,
video,
canvas,
svg,
iframe,
table,
pre {
    max-width: 100%;
}

[style*="width:100vw"],
[style*="width: 100vw"] {
    width: 100% !important;
}

:root {
    --primary: #0d1a3f;
    --secondary: #e0115e;
    --light: #F6F4F9;
    --dark: #311D66;
}


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

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Ubuntu', sans-serif;
}

h1,
h2,
.fw-bold {
    font-weight: 700 !important;
    color: var(--primary);

}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}
.btn-secondary {
    color: #ffffff;
    background-color: #311D66 !important;
    border-color: #311D66 !important;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: #311D66;
    background-color: #ffffff !important; /* Slightly lighter */
    border-color: #ffffff !important;
    box-shadow: 0 8px 18px rgba(252, 252, 252, 0.3);
    transform: translateY(-2px);
}
/* Red Button */
.btn-red {
    color: #ffffff;
    background-color: #e0115e !important;
    border-color: #e0115e !important;
    transition: all 0.3s ease;
}

.btn-red:hover {
    color: #e0115e;
    background-color: #ffffff !important; /* Brighter red */
    border-color: #ffffff !important;
    box-shadow: 0 8px 18px rgba(224, 17, 94, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}


/*** Hero Header ***/
.hero-header {
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    position: relative;
    overflow: hidden;
    margin-bottom: 6rem;
    padding: 10rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
        /* url(../img/bg-bottom.png); */
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-size:
        auto,
        auto,
        auto,
        auto,
        auto,
        100% auto;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}

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


/*** Fact ***/
.fact {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Service ***/




.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--primary);
    overflow: hidden;
    /* transition: .5s; */

    border-radius: 20px;
    transition: 0.4s ease;
}





.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary);
    transform: translateY(-8px);

}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/blob-primary.png) center center no-repeat;

    background-size: contain;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--light);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
}
/* Left animated line */
.service-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: #2ea3f2; /* blue color */
    transition: height 0.4s ease;
}

/* Hover effect */
.service-item:hover::before {
    height: 100%;
    box-shadow: 0 0 15px #2ea3f2;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light);
    background: #ffc107;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--light);
}

.service-item:hover a.btn {
    bottom: 0;
}
/*** /////////////////////////////// ***/
.team-card {
    padding: 20px;
}

/* Image Wrapper */
.team-image {
    display: flex;
    justify-content: center;
}

/* Organic Rounded Shape (Exact Style) */
.team-image img {
    width: 260px;
    height: 320px;
    object-fit: cover;
}

/* Purple Name Badge */
.team-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3b2a78;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 25px;
}

/* White Dot */
.team-name .dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

/* Role Title */
.team-title {
    font-size: 30px;
    font-weight: 800;
    margin-top: 22px;
    color: #140a3c;
}

/* Description Text */
.team-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2b1a55;
    margin-top: 18px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* ///Project Portfolio// */
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

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

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        /* url(../img/bg-top.png), */
        url(../img/map.png);
    background-position:
        center top,
        center center;
    background-size:
        auto,
        auto,
        auto,
        auto,
        auto,
        100% auto;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}
.bg-primary {
    background-color: #11053a !important;
}
.bg-dark {
    background-color: #311D66 !important;
}
.bg-secondary {
    background-color: #e0115e !important;
}

/* Hero cards (glass style) */
.her-card {
    position: relative;
    min-height: 195px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(120deg, rgba(20, 34, 58, 0.72) 0%, rgba(43, 59, 86, 0.66) 52%, rgba(20, 34, 58, 0.72) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 14px 28px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 2.4rem 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.her-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.03) 100%);
    pointer-events: none;
}

.her-card .hero-icon {
    color: #b8a8f7;
    font-size: 2.65rem;
    line-height: 1;
    margin-bottom: 1.5rem !important;
}

.her-card h5 {
    position: relative;
    z-index: 1;
    color: #c8ced8;
    font-weight: 200;
    line-height: 1.25;
    margin: 0;
}
/* about */

/* SECTION BG + PADDING */
.mcts-issues{
    background:#f2f3f6;
    padding:80px 0;
    position:relative;
}

/* animation */
.gig-badge-left {
    position: absolute;
    top: 5%;
    left: 0%;
    width: 30%;
    max-width: 220px;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: floatBadge 3s ease-in-out infinite;
}
.gig-badge-right {
    position: absolute;
    top: 5%;
    right: 0%;        /* moved to the right side */
    width: 30%;
    max-width: 220px;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: floatBadge 3s ease-in-out infinite;
}
.gig-badge-bottom-right {
    position: absolute;
    bottom: 5%;      /* moved to the bottom */
    right: 0%;       /* keep it on the right side */
    width: 30%;
    max-width: 220px;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: floatBadge 3s ease-in-out infinite;
}

/* LEFT TITLE */
.mcts-issues-title{
    font-size:40px;
    line-height:1.05;
    padding:50px 0;

    font-weight:800;
    letter-spacing:-0.5px;
    color:#12003a;
    margin:0;
}
.mcts-issues-highlight{
    color:#b8a8f7;
    font-weight:600;
}

/* RIGHT ROW SPACING */
.mcts-issues-row{
    padding-top:90px; /* icon row starts lower like screenshot */
}

/* EACH COLUMN */
.mcts-issue-col{
    padding:0 36px;
}

/* ICON BOX */
.mcts-issue-icon{
    width:56px;
    height:56px;
    border-radius:14px;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    box-shadow:0 1px 0 rgba(16,24,40,0.04);
    margin-bottom:28px;
}

/* CARD HEADING */
.mcts-issue-heading{
    font-size:28px;
    line-height:1.2;
    font-weight:800;
    color:#12003a;
    margin:0 0 16px 0;
}

/* CARD TEXT */
.mcts-issue-text{
    font-size:18px;
    line-height:1.8;
    color:#2b1a55;
    margin:0;
}

/* VERTICAL DOTTED DIVIDERS (full height) */
.mcts-divider{
    position:relative;
}
.mcts-divider::after{
    content:"";
    position:absolute;
    top:-140px;          /* extend line above icons */
    right:0;
    width:1px;
    height:calc(100% + 240px); /* extend line to bottom */
    background:repeating-linear-gradient(
        to bottom,
        rgba(100, 116, 139, 0.35),
        rgba(100, 116, 139, 0.35) 6px,
        transparent 6px,
        transparent 14px
    );
}

/* OPTIONAL: light dotted line behind whole section (like grid) */
.mcts-issues::before,
.mcts-issues::after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    width:1px;
    background:repeating-linear-gradient(
        to bottom,
        rgba(100, 116, 139, 0.25),
        rgba(100, 116, 139, 0.25) 6px,
        transparent 6px,
        transparent 14px
    );
    pointer-events:none;
}
.mcts-issues::before{ left:12%; }
.mcts-issues::after{ right:12%; }

/* RESPONSIVE */
@media (max-width: 991px){
    .mcts-issues-title{ font-size:44px; }
    .mcts-issues-row{ padding-top:40px; }
    .mcts-issue-col{ padding:0 16px; }
}
@media (max-width: 768px){
    .mcts-divider::after{ display:none; }
    .mcts-issues::before,
    .mcts-issues::after{ display:none; }
}


@media (max-width: 991.98px) {
    .her-card {
        min-height: 172px;
        border-radius: 20px;
        padding: 2rem 1.25rem 1.5rem;
    }

    .her-card .hero-icon {
        font-size: 2.2rem;
        margin-bottom: 1.2rem !important;
    }

    .her-card h5 {
        font-size: 1.65rem;
    }
}


@media (max-width: 575.98px) {
    .her-card {
        min-height: 150px;
        border-radius: 18px;
        padding: 1.65rem 1rem 1.25rem;
    }

    .her-card .hero-icon {
        font-size: 1.95rem;
        margin-bottom: 1rem !important;
    }

    .her-card h5 {
        font-size: 1.35rem;
    }
}

