.home-shell {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(110, 63, 170, 0.2), transparent 30%), radial-gradient(circle at 85% 10%, rgba(33, 176, 190, 0.18), transparent 28%), linear-gradient(180deg, #f6f8fc 0%, #eef2f8 48%, #f8fafc 100%);
    color: #18213f;
}

.home-shell:before,
.home-shell:after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
}

.home-shell:before {
    width: 420px;
    height: 420px;
    top: -180px;
    right: -130px;
    background: radial-gradient(circle, rgba(91, 42, 140, 0.3), rgba(91, 42, 140, 0));
}

.home-shell:after {
    width: 360px;
    height: 360px;
    left: -140px;
    top: 38%;
    background: radial-gradient(circle, rgba(48, 157, 196, 0.22), rgba(48, 157, 196, 0));
}

.home-shell section,
.home-map-wrap {
    position: relative;
    z-index: 1;
}

.home-shell .container {
    position: relative;
    z-index: 2;
}

#mainNav {
    /*background: rgba(8, 16, 48, 0.28);*/
    background: rgb(240 241 248 / 28%) ;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

#mainNav.navbar-home-scrolled {
   /* background: rgba(9, 18, 52, 0.94);*/
    background: #565C70;
    box-shadow: 0 16px 50px rgba(9, 18, 52, 0.22);
}

#mainNav .navbar-brand img {
    height: 62px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    padding: 5px;
    box-shadow: 0 16px 40px rgba(7, 14, 40, 0.16);
}

#mainNav .navbar-nav {
    gap: 10px;
    align-items: center;
}

 

#mainNav .nav-link:hover,
#mainNav .dropdown-toggle:hover,
#mainNav .nav-item.show .dropdown-toggle {
    background: rgba(255, 255, 255, 0.14);
    color: #fff !important;
    transform: translateY(-1px);
}

#mainNav .dropdown-menu {
    margin-top: 14px;
    border: 0;
    border-radius: 18px;
    padding: 12px;
    background: rgba(9, 18, 52, 0.96);
    box-shadow: 0 22px 44px rgba(9, 18, 52, 0.24);
}

#mainNav .dropdown-item {
    color: #eef2ff;
    font-weight: 600;
    border-radius: 12px;
    padding: 10px 12px;
}

#mainNav .dropdown-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.home-section {
    padding: 25px 0;
}

.home-section.compact {
    padding: 82px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 42px;
}

.section-head.centered {
    display: block;
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5b2a8c;
}

.kicker:before {
    content: '';
    width: 38px;
    height: 1px;
    background: linear-gradient(90deg, rgba(91, 42, 140, 0), rgba(91, 42, 140, 0.75));
}

.section-title {
    margin: 0;
    color: #161e3f;
    font-size: clamp(2.1rem, 2vw, 3.4rem);
    font-weight: 700;
    line-height: 1.12;
}

.section-copy {
    margin: 18px auto 0;
    max-width: 760px;
    color: #5c6480;
    font-size: 18px;
    line-height: 1.8;
}

.hero {
    min-height: 100vh;
    padding: 0;
    position: relative;
    background: linear-gradient(135deg, rgba(6, 13, 34, 0.82), rgba(9, 25, 58, 0.66)), url('../img/bg/slide-1.png') center/cover no-repeat;
}

.hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.44)), radial-gradient(circle at top right, rgba(220, 184, 255, 0.16), transparent 24%);
}

.hero .container {
    max-width: 1280px;
    height: 100%;
}

.hero-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 110px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
}

.hero-copy-wrap {
    color: #fff;
    max-width: 980px;
}

.hero-badge {
    display: none;
}

.hero-title {
    margin: 0;
    clamp(2.6rem, 3.2vw, 5rem);
    line-height: 0.94;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.02em;
}

.hero-title span {
    display: block;
    color: #fff;
    text-shadow: none;
}

.hero-text {
    margin: 38px 0 0;
    max-width: 920px;
    position: relative;
    padding-top: 34px;
    color: rgba(244, 246, 252, 0.92);
    font-size: 18px;
    line-height: 1.85;
    letter-spacing: 0.08em;
}

.hero-text:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: min(100%, 790px);
    height: 2px;
    background: rgba(255, 255, 255, 0.84);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 38px;
}

.btn-pill,
.mini-link,
.product-link,
.contact-submit,
.csr-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn-pill:hover,
.mini-link:hover,
.product-link:hover,
.contact-submit:hover,
.csr-chip:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-pill.primary,
.contact-submit {
    padding: 15px 30px;
    background: linear-gradient(135deg, #7a49d5, #5526a7);
    box-shadow: 0 18px 40px rgba(85, 38, 167, 0.3);
    color: #fff;
}

.btn-pill.secondary {
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, 0.72);
    background: transparent;
    color: #fff;
}

.hero-meta {
    display: none;
}

.hero-meta-card {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 30px rgba(3, 6, 22, 0.18);
}

.hero-meta-card h4 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.35;
}

.hero-meta-card p {
    margin: 0;
    color: rgba(232, 237, 250, 0.76);
    font-size: 14px;
    line-height: 1.7;
}

.showcase {
    position: relative;
    padding: 28px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 36px 70px rgba(4, 10, 30, 0.28);
    overflow: hidden;
}

.showcase:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 55%);
}

.showcase-panel,
.showcase-item {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-panel {
    padding: 24px;
    border-radius: 28px;
    background: rgba(7, 14, 42, 0.48);
}

.showcase-panel h3,
.showcase-item h4 {
    color: #fff;
}

.showcase-panel h3 {
    margin: 0 0 10px;
    font-size: 1.65rem;
    line-height: 1.2;
}

.showcase-panel p,
.showcase-item p {
    margin: 0;
    color: rgba(233, 237, 247, 0.82);
    line-height: 1.7;
}

.showcase-stack {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.showcase-item {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.showcase-item:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.16);
}

.showcase-item h4 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.card,
.service-card,
.product-card,
.logo-card,
.contact-card,
.accordion-card,
.solution-card,
.csr-card,
.form-shell,
.map-shell {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 26px 55px rgba(24, 33, 63, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover,
.service-card:hover,
.product-card:hover,
.logo-card:hover,
.contact-card:hover,
.accordion-card:hover,
.solution-card:hover,
.csr-card:hover,
.form-shell:hover,
.map-shell:hover {
    transform:  scale(calc((300 - 5) / 300)); 
     box-shadow: 0 36px 70px rgba(24, 33, 63, 0.14);
    border-color: rgba(122, 73, 213, 0.22);
}

.grid-3,
.feature-grid,
.contact-grid,
.solution-grid {
    display: grid;
    gap: 24px;
}

.grid-3,
.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.icon-badge {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(122, 73, 213, 0.16), rgba(65, 184, 198, 0.14));
    color: #5b2a8c;
    font-size: 28px;
}

.card,
.contact-card,
.logo-card {
    padding: 28px;
    height: 100%;
}

.card h4,
.service-copy h4,
.product-card h4,
.contact-card h4,
.csr-card h3,
.csr-card h4 {
    margin: 0 0 14px;
    color: #161e3f;
    font-weight: 700;
}

.card-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #70789b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.card p,
.service-copy p,
.product-card p,
.contact-card p,
.csr-card p,
.section-note {
    color: #5b6481;
    line-height: 1.55;
}

.mini-link {
    margin-top: 18px;
    color: #5b2a8c;
    justify-content: flex-start;
    padding: 0;
    letter-spacing: 0.1em;
}

.section-note {
    max-width: 900px;
    margin: 32px auto 0;
    text-align: center;
    font-size: 17px;
}

.service-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
    overflow: hidden;
    border-radius: 15px !important;
    height: 320px;
}

.service-card:nth-child(even) {
    grid-template-columns: minmax(280px, 1.1fr) minmax(0, 0.9fr);
}

.service-card:nth-child(even) .service-media {
    order: 1;
}

.service-card:nth-child(even) .service-copy {
    order: 2;
}

.service-copy {
    padding: 36px;
    align-self: center;
}

.service-media {
    min-height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-media:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 14, 42, 0.08), rgba(7, 14, 42, 0.14));
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 26px;
    align-items: stretch;
}

.partner-client-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
}

.split-dark {
    padding: 40px;
    border-radius: 34px;
    background: linear-gradient(160deg, #10183a, #1b2757 58%, #27336a);
    color: #f4f6fb;
    box-shadow: 0 28px 60px rgba(17, 28, 62, 0.26);
}
 

.split-dark .section-title,
.split-dark p {
    color: #4b4b4d;
}
.split-dark h2 ,.split-dark .kicker { color: #b1b1b4 !important; }
.split-dark .kicker:before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(220, 184, 255, 0.85));
}

.accordion-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.accordion-card {
    padding: 0;
    overflow: hidden;
}

.accordion-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    background: transparent;
    border: 0;
    color: #161e3f;
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}

.accordion-toggle span:last-child {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(122, 73, 213, 0.12);
    color: #5b2a8c;
    font-size: 16px;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.accordion-card.is-open .accordion-toggle span:last-child {
    transform: rotate(180deg);
    background: rgba(122, 73, 213, 0.18);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-inner {
    padding: 0 28px 26px;
}

.solution-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 18px;
    /*height: 100%;*/
}

.solution-card {
    overflow: hidden;
    position: relative;
    height: 173px;
}

.solution-card img {
     
    object-fit: fill;
    transition: transform 0.45s ease;
    display: block;
    margin-left: auto;
    margin-top: 17px;
    width: 80%;
    height: 80%;
    margin-right: auto;
}

.solution-card:hover img {
    transform: scale(1.06);
}

.solution-card:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 58, 0.06), rgba(17, 24, 58, 0.22));
}

.product-grid,
.logo-grid,
.contact-grid {
    display: grid;
    gap: 24px;
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.product-card,
.logo-card {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.product-media {
    aspect-ratio: 1.08;
    background: linear-gradient(180deg, #f7f9fd, #e9eef6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.product-media img,
.logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-copy {
    padding: 28px;
}

.product-link {
    margin-top: 18px;
    padding: 13px 18px;
    color: #fff;
    background: linear-gradient(135deg, #10183a, #243265);
    box-shadow: 0 16px 35px rgba(16, 24, 58, 0.18);
}

.logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px;
    min-height: 170px;
    text-align: center;
}

.logo-card img {
    max-width: 100%;
    max-height: 80px;
}

.logo-card .mini-link {
    margin-top: 14px;
    justify-content: center;
}

.client-card {
    padding: 14px 0 18px;
}

.client-card .logo-card {
    min-height: 220px;
    padding: 30px 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 255, 0.94));
    border: 1px solid rgba(130, 147, 190, 0.14);
    box-shadow: 0 24px 60px rgba(20, 33, 71, 0.12), 0 10px 26px rgba(109, 128, 176, 0.08);
}

.client-card .logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 78px rgba(20, 33, 71, 0.16), 0 16px 34px rgba(109, 128, 176, 0.1);
}

.partner-client-stack > div {
    min-width: 0;
    overflow: hidden;
}

.partner-client-stack .section-head {
    display: block;
    margin-bottom: 26px;
}

.partner-client-stack .home-client-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.partner-client-stack .home-client-slider:not(.owl-loaded) {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.partner-client-stack .home-client-slider .owl-stage-outer {
    overflow: hidden;
    background: transparent !important;
    border-radius: 0;
    box-shadow: none;
}

.partner-client-stack .home-client-slider .owl-stage {
    display: flex;
    align-items: stretch;
}

.partner-client-stack .home-client-slider .owl-item {
    height: auto;
}

.partner-client-stack .owl-item .client-card {
    height: 100%;
}

.csr-card {
    padding: 42px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.84)), radial-gradient(circle at top right, rgba(122, 73, 213, 0.18), transparent 30%);
}

.csr-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 700;
    line-height: 1;
}

.csr-logo-alzad {
    color: #161e3f;
}

.csr-logo-sep {
    color: rgba(22, 30, 63, 0.25);
}

.csr-logo-edux {
    color: #49a55c;
}

.csr-list {
    display: grid;
    gap: 12px;
    margin: 20px 0 28px;
    padding: 0;
    list-style: none;
}

.csr-list li {
    position: relative;
    padding-left: 28px;
    color: #44506f;
    line-height: 1.8;
}

.csr-list li:before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 2px;
    color: #49a55c;
}

.csr-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.csr-chip {
    padding: 12px 18px;
    background: rgba(73, 165, 92, 0.1);
    color: #2a7a3d;
    border: 1px solid rgba(73, 165, 92, 0.16);
}

.home-shell .home-slider .owl-stage-outer,
.home-shell .services-slider .owl-stage-outer,
.home-shell .home-client-slider .owl-stage-outer {
    overflow: hidden;
    border-radius: 15px;
}

.home-shell .owl-nav {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.home-shell .owl-nav button,
.home-shell .owl-dots button {
    outline: none;
}

.home-shell .owl-nav button.owl-prev,
.home-shell .owl-nav button.owl-next {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.home-shell .services-slider .owl-nav button.owl-prev,
.home-shell .services-slider .owl-nav button.owl-next,
.home-shell .home-client-slider .owl-nav button.owl-prev,
.home-shell .home-client-slider .owl-nav button.owl-next {
    background: #10183a !important;
    border-color: #10183a !important;
    color: #fff !important;
}

.home-shell .owl-nav button.owl-prev:hover,
.home-shell .owl-nav button.owl-next:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2) !important;
}

.home-shell .services-slider .owl-nav button.owl-prev:hover,
.home-shell .services-slider .owl-nav button.owl-next:hover,
.home-shell .home-client-slider .owl-nav button.owl-prev:hover,
.home-shell .home-client-slider .owl-nav button.owl-next:hover {
    background: #243265 !important;
}

.home-shell .owl-dots {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.home-shell .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    transition: all 0.25s ease;
}

.home-shell .services-slider .owl-dots .owl-dot span,
.home-shell .home-client-slider .owl-dots .owl-dot span {
    background: rgba(16, 24, 58, 0.18);
}

.home-shell .owl-dots .owl-dot.active span {
    width: 34px;
    border-radius: 999px;
    background: #dcb8ff;
}

.home-shell .services-slider .owl-dots .owl-dot.active span,
.home-shell .home-client-slider .owl-dots .owl-dot.active span {
    background: #5b2a8c;
}

.hero .home-slider,
.hero .home-slider .owl-stage-outer,
.hero .home-slider .owl-stage,
.hero .home-slider .owl-item {
    height: 100%;
}

.hero .home-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.hero .home-slider .owl-nav button.owl-prev,
.hero .home-slider .owl-nav button.owl-next {
    width: 72px;
    height: 86px;
    border: 0 !important;
    border-radius: 0 28px 28px 0;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #8ca09c !important;
}

.hero .home-slider .owl-nav button.owl-prev {
    margin-left: 0;
}

.hero .home-slider .owl-nav button.owl-next {
    margin-right: 0;
    border-radius: 28px 0 0 28px;
}

.hero .home-slider .owl-nav button.owl-prev:hover,
.hero .home-slider .owl-nav button.owl-next:hover {
    background: #fff !important;
    color: #5c726f !important;
    transform: none;
}

.hero .home-slider .owl-dots {
    left: 50%;
    bottom: 18px;
    z-index: 4;
    display: flex;
    justify-content: center;
    transform: translateX(-50%);
    margin-top: 0;
}

.hero .home-slider .owl-dots .owl-dot span {
    width: 64px;
    height: 8px;
    border-radius: 999px;
    background: rgba(233, 238, 239, 0.62);
}

.hero .home-slider .owl-dots .owl-dot.active span {
    width: 64px;
    background: #7a49d5;
}

.reveal-home {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-home.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .hero-grid,
    .split,
    .service-card,
    .service-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(even) .service-media,
    .service-card:nth-child(even) .service-copy {
        order: initial;
    }

    .feature-grid,
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    #mainNav {
        background: rgba(9, 18, 52, 0.96);
    }

    #mainNav .navbar-collapse {
        margin-top: 16px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.06);
    }

    .home-section,
    .home-section.compact {
        padding: 88px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-slide {
        min-height: 100vh;
        padding: 145px 0 86px;
    }

    .hero-title {
        font-size: clamp(2.8rem, 10vw, 5rem);
    }

    .hero-text {
        font-size: 17px;
        padding-top: 28px;
    }

    .partner-client-stack {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .feature-grid,
    .grid-3,
    .contact-grid,
    .solution-grid,
    .hero-meta {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-copy,
    .split-dark,
    .form-shell,
    .map-shell,
    .csr-card {
        padding: 26px;
    }
  
    .hero-slide {
        padding: 126px 0 72px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-pill,
    .product-link {
        width: auto;
        min-width: 220px;
    }

    .showcase,
    .showcase-panel,
    .showcase-item,
    .card,
    .service-card,
    .product-card,
    .logo-card,
    .contact-card,
    .accordion-card,
    .solution-card,
    .csr-card,
    .form-shell,
    .map-shell {
        border-radius: 24px;
    }

    .hero .home-slider .owl-nav button.owl-prev,
    .hero .home-slider .owl-nav button.owl-next {
        width: 58px;
        height: 72px;
    }

    .hero .home-slider .owl-dots {
        left: 50%;
        bottom: 18px;
    }

    .hero .home-slider .owl-dots .owl-dot span {
        width: 40px;
    }

    .map-shell iframe {
        min-height: 300px;
    }
}

@media (max-width: 575.98px) {
    .product-grid,
    .logo-grid {
        grid-template-columns: 1fr;
    }

    #mainNav .navbar-brand img {
        height: 54px;
        padding: 9px 12px;
    }

    .hero-badge {
        letter-spacing: 0.12em;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}
