

/* =========================================================
   SILARIS DIGI - HERO
========================================================= */

.sdg-hero-section {
    background: #071a63;
    overflow: hidden;
}

.sdg-hero-content {
    
    padding: 55px 35px 55px 25px;
}

.sdg-hero-description {
    max-width: 560px;
    font-size: 13px;
    line-height: 1.6;
}

.sdg-hero-image-wrapper {
    height: 100%;
    min-height: 365px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .sdg-hero-content {
        max-width: 100%;
        padding: 45px 25px;
    }

    .sdg-hero-image-wrapper,
    .sdg-hero-image {
        min-height: 320px;
    }

}

@media (max-width: 575.98px) {

    .sdg-header-logo {
        width: 100px;
    }

    .sdg-hero-content {
        padding: 40px 20px;
    }

    .sdg-hero-content h1 {
        font-size: 2rem;
    }

    .sdg-hero-description {
        font-size: 12px;
    }

    .sdg-hero-image-wrapper,
    .sdg-hero-image {
        min-height: 250px;
    }

}

/* =========================================================
   SILARIS DIGI HERO
========================================================= */

.sdg-hero-section {
    position: relative;
    background: #071a63;
    overflow: hidden;
}


/* ---------------------------------------------------------
   LEFT CONTENT
--------------------------------------------------------- */

.sdg-hero-content {
    position: relative;
    z-index: 5;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(13, 110, 253, 0.18),
            transparent 35%
        ),
        #021033;
    overflow: hidden;
}


/* Animated glow inside left panel */

.sdg-hero-content::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -120px;
    top: 15%;
    border-radius: 50%;
    background: rgba(0, 180, 255, 0.12);
    filter: blur(60px);
    animation: sdgHeroGlowMove 3s ease-in-out infinite alternate;
}

.sdg-hero-content::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(92, 55, 255, 0.15);
    filter: blur(55px);
    animation: sdgHeroGlowMoveReverse 5s ease-in-out infinite alternate;
}


/* ---------------------------------------------------------
   HERO TITLE
--------------------------------------------------------- */

.sdg-hero-title {
    position: relative;
    z-index: 2;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    animation: sdgHeroTextReveal 0.9s ease-out both;
}

.sdg-hero-title .text-info {
    color: #09cfff !important;
}


/* ---------------------------------------------------------
   DESCRIPTION
--------------------------------------------------------- */

.sdg-hero-description {
    position: relative;
    z-index: 2;
    max-width: 540px;
    font-size: 12px;
    line-height: 1.65;
    opacity: 0;
    animation: sdgHeroTextReveal 0.9s ease-out 0.2s forwards;
}


/* ---------------------------------------------------------
   VISION
--------------------------------------------------------- */

.sdg-vision-box {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: sdgHeroTextReveal 0.9s ease-out 0.4s forwards;
}

.sdg-vision-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #08cfff;
    border-radius: 50%;

    color: #08cfff;
    font-size: 19px;

    box-shadow:
        0 0 0 0 rgba(8, 207, 255, 0.5);

    animation: sdgVisionPulse 2.5s infinite;
}


/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */

.sdg-hero-buttons {
    position: relative;
    z-index: 2;

    opacity: 0;

    animation:
        sdgHeroTextReveal
        0.9s
        ease-out
        0.6s
        forwards;
}

.sdg-hero-btn {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.sdg-hero-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.18);
}

.sdg-hero-btn i {
    transition: transform 0.25s ease;
}

.sdg-hero-btn:hover i {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   HERO IMAGE
--------------------------------------------------------- */

.sdg-hero-visual {
    position: relative;
    overflow: hidden;
    min-height: 590px;
    background: #0b1f5c;
}


.sdg-hero-image {
    position: relative;
    z-index: 1;
    object-fit: cover;
    object-position: center;
    min-height: 590px;
    transform: scale(1.02);

    animation: sdgHeroImageZoom 12s ease-in-out infinite alternate;

    transition: transform 0.6s ease;
}


/* ---------------------------------------------------------
   IMAGE DARK BLUE GRADIENT
--------------------------------------------------------- */

.sdg-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    background: linear-gradient(90deg, #021033 0%, #021033d9 10%, rgba(7, 26, 99, 0.25) 28%, rgba(7, 26, 99, 0.05) 48%, rgba(7, 26, 99, 0.10) 100%);
    pointer-events: none;
}


/* ---------------------------------------------------------
   MOVING LIGHT
--------------------------------------------------------- */

.sdg-hero-light {
    position: absolute;

    z-index: 3;

    top: -30%;
    left: -20%;

    width: 45%;
    height: 160%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.10),
        transparent
    );

    transform: rotate(15deg);

    animation: sdgHeroLightSweep 7s ease-in-out infinite;

    pointer-events: none;
}


/* ---------------------------------------------------------
   BLUE GLOW
--------------------------------------------------------- */

.sdg-hero-glow {
    position: absolute;

    z-index: 2;

    width: 350px;
    height: 350px;

    right: 8%;
    top: 10%;

    border-radius: 50%;

    background: rgba(0, 170, 255, 0.10);

    filter: blur(80px);

    animation: sdgHeroGlowFloat 6s ease-in-out infinite alternate;

    pointer-events: none;
}


/* =========================================================
   ANIMATIONS
========================================================= */


/* Text reveal */

@keyframes sdgHeroTextReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Image slow zoom */

@keyframes sdgHeroImageZoom {

    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.08);
    }

}


/* Light sweep */

@keyframes sdgHeroLightSweep {

    0% {
        left: -40%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    55% {
        left: 120%;
        opacity: 0;
    }

    100% {
        left: 120%;
        opacity: 0;
    }

}


/* Vision pulse */

@keyframes sdgVisionPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(8, 207, 255, 0.45);
    }

    70% {
        box-shadow:
            0 0 0 12px rgba(8, 207, 255, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(8, 207, 255, 0);
    }

}


/* Glow movement */

@keyframes sdgHeroGlowMove {

    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(100px, 50px);
    }

}

@keyframes sdgHeroGlowMoveReverse {

    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-80px, -50px);
    }

}


/* Image blue glow */

@keyframes sdgHeroGlowFloat {

    from {
        transform: translate(0, 0);
        opacity: 0.4;
    }

    to {
        transform: translate(-40px, 30px);
        opacity: 0.8;
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .sdg-hero-image {
        min-height: 320px;
    }

    .sdg-hero-visual {
        min-height: 320px;
    }

    .sdg-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 26, 99, 0.15),
                rgba(7, 26, 99, 0.35)
            );
    }

}


@media (max-width: 575.98px) {

    .sdg-hero-title {
        font-size: 2rem;
    }

    .sdg-hero-image,
    .sdg-hero-visual {
        min-height: 250px;
    }

}

/* =========================================================
   DELIVERY CENTRES
========================================================= */

.sdg-delivery-section {
    position: relative;
    z-index: 10;

    background: #ffffff;

    padding: 18px 0 22px;
}


/* ---------------------------------------------------------
   MAIN BAR
--------------------------------------------------------- */

.sdg-delivery-bar {
    display: flex;
    align-items: stretch;

    min-height: 64px;

    background:
        linear-gradient(
            110deg,
            #071a63 0%,
            #0a2b78 55%,
            #0d3f9b 100%
        );

    border-radius: 8px;

    overflow: hidden;

    box-shadow:
        0 8px 24px rgba(7, 26, 99, 0.18);
}


/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.sdg-delivery-heading {
    display: flex;
    align-items: center;

    min-width: 245px;

    padding: 10px 24px;

    color: #ffffff;

    border-right: 1px solid rgba(255, 255, 255, 0.18);
}


.sdg-delivery-heading-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-right: 12px;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.22);

    border-radius: 50%;

    color: #16c9ff;

    font-size: 15px;

    box-shadow:
        0 0 15px rgba(22, 201, 255, 0.15);
}


.sdg-delivery-heading-label {
    display: block;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.4px;
}


.sdg-delivery-heading small {
    display: block;

    margin-top: 2px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 9px;
}


/* ---------------------------------------------------------
   CITY
--------------------------------------------------------- */

.sdg-delivery-city {
    position: relative;

    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 10px 18px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    border-right: 1px solid rgba(255, 255, 255, 0.15);

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}


.sdg-delivery-city:last-child {
    border-right: 0;
}


/* City icon */

.sdg-delivery-city-icon {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: rgba(255, 255, 255, 0.10);

    color: #66dcff;

    font-size: 11px;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}


/* Hover */

.sdg-delivery-city:hover {
    background: rgba(255, 255, 255, 0.08);
}


.sdg-delivery-city:hover .sdg-delivery-city-icon {
    background: #0d6efd;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .sdg-delivery-bar {
        flex-wrap: wrap;
    }

    .sdg-delivery-heading {
        min-width: 100%;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);

        justify-content: center;
    }

    .sdg-delivery-city {
        flex: 1 1 25%;
    }

}


@media (max-width: 575.98px) {

    .sdg-delivery-section {
        padding: 12px 0 18px;
    }

    .sdg-delivery-bar {
        border-radius: 7px;
    }

    .sdg-delivery-heading {
        justify-content: flex-start;

        padding: 12px 16px;
    }

    .sdg-delivery-city {
        flex: 1 1 50%;

        padding: 12px 8px;

        font-size: 10px;
    }

}

/* =========================================================
   SILARIS - CORE SERVICES
   Scoped CSS - Does not affect other website sections
========================================================= */

.silaris-services-section {
    width: 100%;
    padding: 70px 20px;
    background: #ffffff;
}

.silaris-services-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}


/* =========================
   SECTION HEADING
========================= */

.silaris-services-heading {
    text-align: center;
    margin-bottom: 28px;
}

.silaris-services-heading span {
    position: relative;
    display: inline-block;

    color: #1756a9;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.6px;
    line-height: 1;
}


/* =========================
   SERVICES GRID
========================= */

.silaris-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}


/* =========================
   SERVICE CARD
========================= */

.silaris-service-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    min-height: 125px;
    padding: 16px 17px;

    background: #ffffff;
    border: 1px solid #edf1f6;
    border-radius: 5px;

    box-shadow: 0 2px 9px rgba(23, 86, 169, 0.08);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Top blue line */

.silaris-service-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: #1756a9;

    transition: width 0.35s ease;
}


/* Hover */

.silaris-service-card:hover {
    transform: translateY(-4px);

    border-color: #dce8f8;

    box-shadow:
        0 10px 25px rgba(23, 86, 169, 0.13);
}

.silaris-service-card:hover::before {
    width: 100%;
}


/* =========================
   ICON
========================= */

.silaris-service-icon {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 13px;

    color: #1756a9;

    font-size: 22px;

    border-radius: 8px;

    background: linear-gradient(
        135deg,
        #f4f8ff 0%,
        #eaf2ff 100%
    );

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.silaris-service-card:hover .silaris-service-icon {
    transform: scale(1.08);

    background: linear-gradient(
        135deg,
        #eaf2ff 0%,
        #dceaff 100%
    );
}


/* =========================
   CONTENT
========================= */

.silaris-service-content {
    flex: 1;
    min-width: 0;
}

.silaris-service-content h3 {
    margin: 1px 0 5px;

    color: #15345f;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.25;
}

.silaris-service-content p {
    margin: 0 0 7px;

    color: #6d7785;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.45;
}

.silaris-service-content a {
    display: inline-flex;
    align-items: center;
    gap: 4px;

    color: #1756a9;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.silaris-service-content a i {
    font-size: 7px;
}

.silaris-service-content a:hover {
    color: #0d3d7a;
    gap: 7px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .silaris-services-section {
        padding: 55px 20px;
    }

    .silaris-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 575px) {

    .silaris-services-section {
        padding: 45px 15px;
    }

    .silaris-services-heading {
        margin-bottom: 22px;
    }

    .silaris-services-heading span {
        font-size: 12px;
    }

    .silaris-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .silaris-service-card {
        min-height: auto;
        padding: 15px;
    }

    .silaris-service-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .silaris-service-content h3 {
        font-size: 13px;
    }

    .silaris-service-content p {
        font-size: 10px;
    }

    .silaris-service-content a {
        font-size: 9.5px;
    }
}
/* =========================================================
   SILARIS - WHY CHOOSE SILARIS DIGI
   Scoped CSS
========================================================= */

.silaris-why-section {
    width: 100%;
    padding: 70px 20px 70px;

    background:
        linear-gradient(
            135deg,
            #111d67 0%,
            #142b82 50%,
            #101e6a 100%
        );

    position: relative;
    overflow: hidden;
}


/* Subtle background glow */

.silaris-why-section::before {
    content: "";

    position: absolute;
    width: 420px;
    height: 420px;

    top: -250px;
    left: 50%;

    transform: translateX(-50%);

    background: rgba(66, 133, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


.silaris-why-container {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1680px;

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.silaris-why-heading {
    text-align: center;
    margin-bottom: 26px;
}


.silaris-why-heading span {
    color: #ffffff;

    font-size: 30px;
    font-weight: 700;

    letter-spacing: 0.55px;
    line-height: 1;
}


/* =========================================================
   GRID
========================================================= */

.silaris-why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    width: 100%;
}


/* =========================================================
   ITEM
========================================================= */

.silaris-why-item {
    position: relative;
    min-height: 105px;
    padding: 30px 18px;
    margin: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    border: 1px solid #b9bfdb6b;
}





/* =========================================================
   ICON
========================================================= */

.silaris-why-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.65);

    border-radius: 50%;

    color: #ffffff;

    font-size: 18px;

    background: rgba(255, 255, 255, 0.035);

    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.025);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   TITLE
========================================================= */

.silaris-why-item h3 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.25;

    white-space: nowrap;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.silaris-why-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}


/* =========================================================
   HOVER
========================================================= */

.silaris-why-item:hover {
    transform: translateY(-3px);
}


.silaris-why-item:hover .silaris-why-icon {
    transform: scale(1.08);

    background: rgba(255, 255, 255, 0.12);

    border-color: rgba(255, 255, 255, 0.95);

    box-shadow:
        0 0 0 5px rgba(255, 255, 255, 0.035),
        0 0 18px rgba(255, 255, 255, 0.10);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .silaris-why-section {
        padding: 35px 20px;
    }

    .silaris-why-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 25px;
    }

    .silaris-why-item {
        min-height: 105px;
    }

    /* Remove separator from every 3rd item */
    .silaris-why-item:nth-child(3)::after,
    .silaris-why-item:nth-child(6)::after {
        display: none;
    }

    /* Horizontal separator */
    .silaris-why-item:nth-child(-n+3)::before {
        content: "";

        position: absolute;

        bottom: -13px;
        left: 15%;
        right: 15%;

        height: 1px;

        background: rgba(255, 255, 255, 0.15);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .silaris-why-section {
        padding: 40px 18px;
    }

    .silaris-why-heading {
        margin-bottom: 25px;
    }

    .silaris-why-heading span {
        font-size: 12px;
    }

    .silaris-why-grid {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 25px;
    }

    .silaris-why-item {
        padding: 0 12px;
        min-height: 115px;
    }

    .silaris-why-item h3 {
        font-size: 10px;
        white-space: normal;
    }

    .silaris-why-item p {
        font-size: 16px;
    }

    /* Right separator only for odd items */
    .silaris-why-item:nth-child(even)::after {
        display: none;
    }

    .silaris-why-item:nth-child(odd)::after {
        display: block;
    }

    /* Horizontal separators */
    .silaris-why-item:nth-child(1)::before,
    .silaris-why-item:nth-child(2)::before,
    .silaris-why-item:nth-child(3)::before,
    .silaris-why-item:nth-child(4)::before {
        content: "";

        position: absolute;

        bottom: -13px;
        left: 15%;
        right: 15%;

        height: 1px;

        background: rgba(255, 255, 255, 0.15);
    }

    .silaris-why-item:nth-child(5)::before,
    .silaris-why-item:nth-child(6)::before {
        display: none;
    }
}

/* =========================================================
   SILARIS - TECHNOLOGY & ANALYTICS
   Scoped CSS
========================================================= */

.silaris-tech-section {
    width: 100%;
    padding: 72px 20px 70px;

    background: #ffffff;

    border-top: 1px solid #edf1f6;
    border-bottom: 1px solid #edf1f6;
}


.silaris-tech-container {
    width: 100%;
    max-width: 1680px;

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.silaris-tech-heading {
    margin-bottom: 14px;

    text-align: center;

    color: #1756a9;

    font-size: 32px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.4px;
}


/* =========================================================
   GRID
========================================================= */

.silaris-tech-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    width: 100%;
}


/* =========================================================
   ITEM
========================================================= */

.silaris-tech-item {
    position: relative;

    min-height: 72px;

    padding: 0 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;

    transition:
        transform 0.3s ease;
}


/* Vertical separators */

.silaris-tech-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 1px;
    height: 100%;

    background: #dfe5ee;
}


/* =========================================================
   ICON
========================================================= */

.silaris-tech-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #174e99;

    font-size: 25px;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


/* =========================================================
   TITLE
========================================================= */

.silaris-tech-item h3 {
    margin: 0;

    color: #1d3152;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.3;

    transition:
        color 0.3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.silaris-tech-item:hover {
    transform: translateY(-3px);
}


.silaris-tech-item:hover .silaris-tech-icon {
    transform: scale(1.12);

    color: #0c63c9;
}


.silaris-tech-item:hover h3 {
    color: #1756a9;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .silaris-tech-section {
        padding: 25px 20px;
    }

    .silaris-tech-grid {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 20px;
    }

    .silaris-tech-item {
        min-height: 75px;
    }

    /* Hide right border on every 3rd item */
    .silaris-tech-item:nth-child(3)::after,
    .silaris-tech-item:nth-child(6)::after {
        display: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .silaris-tech-section {
        padding: 25px 15px;
    }

    .silaris-tech-heading {
        margin-bottom: 20px;

        font-size: 11px;
    }

    .silaris-tech-grid {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 20px;
    }

    .silaris-tech-item {
        min-height: 75px;

        padding: 0 10px;
    }

    .silaris-tech-item h3 {
        font-size: 9px;
    }

    /* Remove right border from even items */
    .silaris-tech-item:nth-child(even)::after {
        display: none;
    }

    /* Horizontal separators */
    .silaris-tech-item:nth-child(1)::before,
    .silaris-tech-item:nth-child(2)::before,
    .silaris-tech-item:nth-child(3)::before,
    .silaris-tech-item:nth-child(4)::before {
        content: "";

        position: absolute;

        left: 15%;
        right: 15%;
        bottom: -10px;

        height: 1px;

        background: #e3e8ef;
    }
}
/* =========================================================
   SILARIS - INDUSTRIES WE SERVE
   Bootstrap 5 compatible
   Scoped CSS
========================================================= */

.silaris-industries-section {
    width: 100%;
    padding: 100px 0;

    background: #ffffff;
}


/* =========================================================
   HEADING
========================================================= */

.silaris-industries-heading {
    text-align: center;
    margin-bottom: 20px;
}

.silaris-industries-heading span {
    color: #1756a9;

    font-size: 32px;
    font-weight: 700;

    letter-spacing: 0.5px;
}


/* =========================================================
   CARD
========================================================= */

.silaris-industry-card {
    position: relative;

    height: 400px;

    overflow: hidden;

    border-radius: 5px;

    background: #102a61;

    box-shadow:
        0 4px 14px rgba(15, 43, 91, 0.12);

    cursor: pointer;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   IMAGE
========================================================= */

.silaris-industry-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.55s ease;
}


/* =========================================================
   DARK BLUE OVERLAY
========================================================= */

.silaris-industry-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(to bottom, rgba(7, 35, 78, 0.05) 0%, #07234ebf 35%, rgba(5, 27, 65, 0.94) 100%);

    transition:
        background 0.35s ease;
}


/* =========================================================
   CONTENT
========================================================= */

.silaris-industry-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 30px;

    padding: 20px 16px 15px;

    color: #ffffff;

    z-index: 2;
}


/* =========================================================
   ICON
========================================================= */

.silaris-industry-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.55);

    border-radius: 50%;

    color: #ffffff;

    font-size: 26px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(3px);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


/* =========================================================
   TITLE
========================================================= */

.silaris-industry-content h3 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 22px;
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.silaris-industry-content p {
    margin: 0;

    max-width: 100%;

    color: rgba(255, 255, 255, 0.88);

    font-size: 16px;
    font-weight: 400;

    line-height: 1.45;
}


/* =========================================================
   HOVER
========================================================= */

.silaris-industry-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 28px rgba(15, 43, 91, 0.20);
}


.silaris-industry-card:hover .silaris-industry-image {
    transform: scale(1.08);
}


.silaris-industry-card:hover .silaris-industry-overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(7, 35, 78, 0.10) 0%,
            rgba(7, 35, 78, 0.35) 35%,
            rgba(5, 27, 65, 0.96) 100%
        );
}


.silaris-industry-card:hover .silaris-industry-icon {
    transform: scale(1.08);

    background: rgba(255, 255, 255, 0.16);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .silaris-industries-section {
        padding: 45px 0;
    }

    .silaris-industry-card {
        height: 230px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .silaris-industries-section {
        padding: 40px 0;
    }

    .silaris-industries-heading {
        margin-bottom: 18px;
    }

    .silaris-industry-card {
        height: 220px;
    }

    .silaris-industry-content {
        padding: 18px 15px 14px;
    }

    .silaris-industry-content h3 {
        font-size: 12px;
    }

    .silaris-industry-content p {
        font-size: 9px;
    }
}

/* =========================================================
   SILARIS - BUILD YOUR CAREER
   FULL WIDTH SECTION
   Bootstrap 5 Compatible
========================================================= */

.silaris-career-section {
    width: 100%;
    margin-bottom: 70px;
    padding: 0;
    overflow: hidden;
    background: #29267e;
}


/* =========================================================
   FULL WIDTH WRAPPER
========================================================= */

.silaris-career-wrapper {
    position: relative;

    width: 100%;
    min-height: 205px;

    margin: 0;
    padding: 0;

    display: grid;

    grid-template-columns:
        32%
        34%
        34%;

    overflow: hidden;

    background:
        linear-gradient(
            105deg,
            #282477 0%,
            #302b88 48%,
            #272477 100%
        );
}


/* =========================================================
   LEFT IMAGE
========================================================= */

.silaris-career-image {
    position: relative;
    width: 100%;
    height: 355px;
    overflow: hidden;
}


.silaris-career-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.6s ease;
}


/* =========================================================
   IMAGE → PURPLE GRADIENT
   This is the important part from screenshot.
========================================================= */

.silaris-career-image-gradient {
    position: absolute;

    top: 0;
    right: -1px;
    bottom: 0;

    width: 70%;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(40, 36, 119, 0) 0%,
            rgba(40, 36, 119, 0.10) 20%,
            rgba(40, 36, 119, 0.48) 48%,
            rgba(40, 36, 119, 0.88) 75%,
            #29267e 100%
        );
}


/* =========================================================
   CENTER CONTENT
========================================================= */

.silaris-career-content {
    position: relative;

    z-index: 5;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: flex-start;

    padding: 25px 30px;

    background:
        linear-gradient(
            90deg,
            rgba(45, 40, 126, 0.72),
            rgba(47, 43, 132, 0.98)
        );
}


/* Vertical divider */

.silaris-career-content::before {
    content: "";

    position: absolute;

    left: 0;
    top: 15px;
    bottom: 15px;

    width: 1px;

    background: rgba(255, 255, 255, 0.18);
}


/* =========================================================
   HEADING
========================================================= */

.silaris-career-content h2 {
    margin: 0 0 6px;

    color: #ffffff;

    font-size: 33px;
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.silaris-career-content p {
    max-width: 100%;

    margin: 0 0 12px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    font-weight: 400;

    line-height: 1.5;
}


/* =========================================================
   BUTTON
========================================================= */

.silaris-career-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-width: 80px;

    padding: 6px 12px;

    color: #29267e;

    background: #ffffff;

    border-radius: 3px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        gap 0.25s ease;
}


.silaris-career-btn i {
    font-size: 7px;
}


.silaris-career-btn:hover {
    color: #29267e;

    gap: 10px;

    transform: translateY(-2px);

    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   RIGHT BENEFITS
========================================================= */

.silaris-career-benefits {
    position: relative;

    z-index: 5;

    display: flex;
    flex-direction: column;

    justify-content: center;

    gap: 13px;

    padding: 18px 35px;

    background:
        linear-gradient(
            90deg,
            rgba(44, 39, 124, 0.97),
            #282477
        );
}


/* =========================================================
   BENEFIT ITEM
========================================================= */

.silaris-career-benefit {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    transition:
        transform 0.3s ease;
}


.silaris-career-benefit:hover {
    transform: translateX(4px);
}


/* =========================================================
   BENEFIT ICON
========================================================= */

.silaris-career-benefit-icon {
    flex: 0 0 65px;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 30px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.silaris-career-benefit:hover
.silaris-career-benefit-icon {
    transform: scale(1.08);

    background: rgba(255, 255, 255, 0.14);
}


/* =========================================================
   BENEFIT CONTENT
========================================================= */

.silaris-career-benefit-content h3 {
    margin: 0 0 2px;

    color: #ffffff;

    font-size: 19px;
    font-weight: 700;

    line-height: 1.25;
}


.silaris-career-benefit-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.67);

    font-size: 16px;

    line-height: 1.4;
}


/* =========================================================
   DESKTOP IMAGE HOVER
========================================================= */

.silaris-career-wrapper:hover
.silaris-career-image img {
    transform: scale(1.04);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .silaris-career-wrapper {
        grid-template-columns:
            35%
            65%;
    }

    .silaris-career-image {
        height: 210px;
    }

    .silaris-career-benefits {
        grid-column: 1 / -1;

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 15px;

        padding: 18px 30px;

        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .silaris-career-wrapper {
        display: block;

        min-height: auto;
    }


    /* Image */

    .silaris-career-image {
        height: 190px;
    }


    /* Stronger image gradient on mobile */

    .silaris-career-image-gradient {
        width: 100%;

        background:
            linear-gradient(
                180deg,
                rgba(40, 36, 119, 0) 20%,
                rgba(40, 36, 119, 0.45) 65%,
                #29267e 100%
            );
    }


    /* Center */

    .silaris-career-content {
        padding: 22px 20px;

        background: #29267e;
    }

    .silaris-career-content::before {
        display: none;
    }

    .silaris-career-content h2 {
        font-size: 16px;
    }

    .silaris-career-content p {
        max-width: 100%;

        font-size: 16px;
    }


    /* Benefits */

    .silaris-career-benefits {
        display: flex;

        padding: 20px;

        gap: 13px;

        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

}
/* =========================================================
   SILARIS - CONTACT / PARTNER SECTION
   Bootstrap 5 Compatible
   Fully Scoped CSS
========================================================= */

.silaris-contact-section {
    width: 100%;

    padding: 32px 0 28px;

    background: #f8faff;

    border-top: 1px solid #edf1f7;
    border-bottom: 1px solid #edf1f7;
}


/* =========================================================
   LEFT CONTACT INTRO
========================================================= */

.silaris-contact-intro {
    height: 100%;

    padding: 8px 45px 8px 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.silaris-contact-label {
    display: block;

    margin-bottom: 5px;

    color: #1756a9;

    font-size: 26px;
    font-weight: 700;

    letter-spacing: 0.35px;
}


.silaris-contact-intro h2 {
    margin: 0 0 8px;

    color: #172b4d;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.2;
}


.silaris-contact-description {
    max-width: 235px;

    margin: 0 0 13px;

    color: #687589;

    font-size: 16px;

    line-height: 1.5;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.silaris-contact-detail {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 6px;
}


.silaris-contact-detail-icon {
    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1756a9;

    font-size: 18px;
}


.silaris-contact-detail a {
    color: #46566d;

    font-size: 18px;
    font-weight: 500;

    text-decoration: none;

    transition: color 0.25s ease;
}


.silaris-contact-detail a:hover {
    color: #1756a9;
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.silaris-enquiry-wrapper {
    height: 100%;
    padding: 8px 25px;
    display: flex;
}


/* =========================================================
   FORM
========================================================= */

.silaris-enquiry-form {
    width: 100%;
}


.silaris-form-control {
    min-height: 30px;

    padding: 6px 9px;

    color: #34445c;

    background: #ffffff;

    border: 1px solid #e1e6ee;

    border-radius: 2px;

    font-size: 18px;

    box-shadow: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.silaris-form-control::placeholder {
    color: #929cab;

    opacity: 1;
}


.silaris-form-control:focus {
    color: #34445c;

    background: #ffffff;

    border-color: #3a70bd;

    box-shadow:
        0 0 0 2px rgba(23, 86, 169, 0.08);
}


/* =========================================================
   TEXTAREA
========================================================= */

.silaris-form-textarea {
    height: 55px;

    resize: none;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.silaris-submit-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 28px;

    padding: 6px 12px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #1756a9,
            #0f4b9d
        );

    border: 0;

    border-radius: 2px;

    font-size: 18px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 3px 8px rgba(23, 86, 169, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        gap 0.25s ease;
}


.silaris-submit-btn i {
    font-size: 7px;
}


.silaris-submit-btn:hover {
    color: #ffffff;

    gap: 10px;

    transform: translateY(-1px);

    box-shadow:
        0 5px 12px rgba(23, 86, 169, 0.25);
}


/* =========================================================
   LOCATIONS
========================================================= */

.silaris-locations-wrapper {
    height: 100%;

    padding: 5px 45px 5px 30px;

    border-left: 1px solid #e4e9f0;
}


.silaris-locations-wrapper > h3 {
    margin: 0 0 7px;

    color: #172b4d;

    font-size: 26px;
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================================
   LOCATION ITEM
========================================================= */

.silaris-location-item {
    display: flex;

    align-items: flex-start;

    gap: 7px;

    margin-bottom: 6px;
}


.silaris-location-icon {
        flex: 0 0 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1756a9;
    font-size: 20px;
}


.silaris-location-content h4 {
    margin: 0 0 1px;

    color: #34445c;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.2;
}


.silaris-location-content p {
    margin: 0;

    color: #718096;

    font-size: 15px;

    line-height: 1.35;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .silaris-contact-section {
        padding: 35px 0;
    }

    .silaris-contact-intro {
        padding: 15px 30px;
    }

    .silaris-enquiry-wrapper {
        padding: 15px 30px;
    }

    .silaris-locations-wrapper {
        margin-top: 15px;

        padding: 15px 30px;

        border-left: 0;
        border-top: 1px solid #e4e9f0;
    }

    .silaris-locations-wrapper {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        column-gap: 25px;
    }

    .silaris-locations-wrapper > h3 {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .silaris-contact-section {
        padding: 30px 0;
    }

    .silaris-contact-intro {
        padding: 10px 20px 20px;
    }

    .silaris-contact-intro h2 {
        font-size: 17px;
    }

    .silaris-enquiry-wrapper {
        padding: 10px 20px 20px;
    }

    .silaris-locations-wrapper {
        display: block;

        padding: 20px;

        margin-top: 0;
    }

    .silaris-location-item {
        margin-bottom: 9px;
    }
}

/* =========================================================
   SILARIS DIGI HOME PAGE
   PREMIUM VISUAL OVERRIDE
   Existing HTML / Content remains unchanged
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.silaris-services-section,
.silaris-why-section,
.silaris-tech-section,
.silaris-industries-section,
.silaris-career-section,
.silaris-contact-section {
    position: relative;
}


/* =========================================================
   HERO - PREMIUM VERSION
========================================================= */

.sdg-hero-section {
    position: relative;
    min-height: 520px;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(0, 183, 255, 0.12),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #020b28 0%,
            #071a63 48%,
            #092a72 100%
        );

    overflow: hidden;
}


/* Decorative grid */

.sdg-hero-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image: linear-gradient(
        to right,
        black,
        transparent 80%
    );

    pointer-events: none;
}


/* LEFT PANEL */

.sdg-hero-content {
    min-height: 520px;

    padding: 55px 55px 55px 45px !important;

    background:
        radial-gradient(
            circle at 5% 50%,
            rgba(0, 195, 255, 0.15),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #020b28,
            #061a55
        );

    box-shadow:
        20px 0 60px rgba(0,0,0,0.15);

    isolation: isolate;
}


/* Animated glow */

.sdg-hero-content::before {
    width: 420px;
    height: 420px;

    left: -230px;
    top: 15%;

    background:
        radial-gradient(
            circle,
            rgba(0, 202, 255, 0.18),
            transparent 68%
        );

    filter: blur(15px);

    animation:
        sdgHeroGlowMove 6s ease-in-out infinite alternate;
}


.sdg-hero-content::after {
    width: 300px;
    height: 300px;

    right: -180px;
    bottom: -180px;

    background:
        radial-gradient(
            circle,
            rgba(108, 69, 255, 0.25),
            transparent 68%
        );

    filter: blur(20px);

    animation:
        sdgHeroGlowMoveReverse 8s ease-in-out infinite alternate;
}


/* HERO TITLE */

.sdg-hero-title {
    
    margin-bottom: 22px !important;

    font-size: clamp(
        2.4rem,
        4vw,
        3.1rem
    );

    font-weight: 700 !important;

    line-height: 1.03;

    text-shadow:
        0 5px 25px rgba(0,0,0,0.25);
}


.sdg-hero-title .text-info {
    position: relative;

    color: #16d8ff !important;

    text-shadow:
        0 0 25px rgba(22,216,255,0.20);
}


/* Description */

.sdg-hero-description {
    max-width: 650px;

    margin-bottom: 25px !important;

    color: rgba(255,255,255,0.78) !important;

    font-size: 17px !important;

    line-height: 1.75;

    letter-spacing: 0.1px;
}


/* Vision */

.sdg-hero-content .d-flex.align-items-start {
    position: relative;

    padding: 14px 16px;

    max-width: 620px;

    background:
        rgba(255,255,255,0.045);

    border: 1px solid
        rgba(255,255,255,0.10);

    border-radius: 12px;

    backdrop-filter: blur(10px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06);

    animation:
        sdgVisionFloat 4s ease-in-out infinite;
}


.sdg-hero-content .d-flex.align-items-start .text-white {
    font-size: 14px !important;

    color:
        rgba(255,255,255,0.82) !important;

    line-height: 1.5;
}


/* Buttons */

.sdg-hero-buttons {
    margin-top: 25px;

    gap: 12px !important;
}


.sdg-hero-btn {
    min-height: 48px;

    padding: 11px 23px !important;

    border-radius: 8px;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 0.1px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.12);
}


.sdg-hero-btn:first-child {
    background:
        linear-gradient(
            135deg,
            #1769ff,
            #0c9eea
        );

    border: 0;

    box-shadow:
        0 8px 25px rgba(23,105,255,0.25);
}


.sdg-hero-btn:first-child:hover {
    box-shadow:
        0 12px 35px rgba(23,105,255,0.38);
}


/* HERO VISUAL */

.sdg-hero-visual {
    min-height: 520px;

    background: #071a63;
}


/* Better overlay */

.sdg-hero-overlay {
    background:
        linear-gradient(
            90deg,
            #020b28 0%,
            rgba(2,11,40,0.82) 7%,
            rgba(7,26,99,0.20) 36%,
            rgba(7,26,99,0.04) 65%,
            rgba(2,11,40,0.18) 100%
        );
}


/* Image glow */

.sdg-hero-glow {
    width: 500px;
    height: 500px;

    right: 5%;
    top: 5%;

    background:
        radial-gradient(
            circle,
            rgba(0,210,255,0.15),
            transparent 68%
        );

    filter: blur(35px);
}


/* Light */

.sdg-hero-light {
    width: 35%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.14),
            transparent
        );

    animation-duration: 8s;
}


/* =========================================================
   DELIVERY CENTRES
========================================================= */

.sdg-delivery-section {
    padding: 25px 0 35px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f6f9ff
        );
}


.sdg-delivery-bar {
    position: relative;

    min-height: 78px;

    border-radius: 15px;

    background:
        linear-gradient(
            110deg,
            #061441,
            #0a2875 55%,
            #0b58a8
        );

    box-shadow:
        0 15px 40px rgba(7,26,99,0.20);

    border: 1px solid
        rgba(255,255,255,0.12);

    overflow: hidden;
}


.sdg-delivery-bar::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: 10%;
    top: -100px;

    border-radius: 50%;

    background:
        rgba(0,205,255,0.10);

    filter: blur(10px);

    animation:
        deliveryGlow 5s ease-in-out infinite alternate;
}


.sdg-delivery-heading {
    min-width: 285px;

    padding: 12px 30px;
}


.sdg-delivery-heading-icon {
    width: 45px;
    height: 45px;

    background:
        rgba(255,255,255,0.10);

    box-shadow:
        0 0 20px rgba(22,201,255,0.18);

    animation:
        deliveryPulse 3s infinite;
}


.sdg-delivery-heading-label {
    font-size: 13px;
}


.sdg-delivery-heading small {
    font-size: 11px;
}


.sdg-delivery-city {
    min-height: 78px;

    font-size: 18px;

    letter-spacing: 0.2px;

    z-index: 2;
}


.sdg-delivery-city-icon {
    width: 34px;
    height: 34px;

    border-radius: 9px;

    font-size: 13px;
}


.sdg-delivery-city:hover {
    transform: translateY(-2px);

    background:
        rgba(255,255,255,0.10);
}


/* =========================================================
   CORE SERVICES
========================================================= */

.silaris-services-section {
    padding: 95px 25px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faff 100%
        );
}


.silaris-services-heading {
    margin-bottom: 50px;
}


.silaris-services-heading span {
    color: #102c68;

    font-size: 36px;

    font-weight: 800;

    letter-spacing: 0.4px;
}


.silaris-services-heading span::after {
    content: "";

    position: absolute;

    width: 55px;
    height: 4px;

    left: 50%;
    bottom: -15px;

    transform: translateX(-50%);

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #1756a9,
            #12cfff
        );
}


/* Grid */

.silaris-services-grid {
    gap: 22px;
}


/* Cards */

.silaris-service-card {
    min-height: 185px;

    padding: 28px 25px;

    border-radius: 16px;

    border: 1px solid #e5ebf5;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8fbff
        );

    box-shadow:
        0 8px 25px rgba(22,67,125,0.07);

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1),
        box-shadow .4s ease,
        border-color .4s ease;
}


/* Glow */

.silaris-service-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background:
        rgba(20,150,255,0.08);

    filter: blur(20px);

    transition:
        transform .5s ease;
}


.silaris-service-card::before {
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #1756a9,
            #11cfff
        );
}


.silaris-service-card:hover {
    transform:
        translateY(-10px)
        scale(1.015);

    border-color:
        #cbdcf5;

    box-shadow:
        0 20px 45px rgba(20,76,150,0.14);
}


.silaris-service-card:hover::after {
    transform: scale(2);
}


/* Icon */

.silaris-service-icon {
    width: 58px;
    height: 58px;

    margin-right: 20px;

    border-radius: 14px;

    color: #1761b2;

    font-size: 25px;

    background:
        linear-gradient(
            135deg,
            #eef6ff,
            #dfeeff
        );

    box-shadow:
        inset 0 1px 0 #ffffff;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.silaris-service-card:hover
.silaris-service-icon {
    transform:
        translateY(-4px)
        rotate(-4deg);

    box-shadow:
        0 10px 25px rgba(23,86,169,0.16);
}


/* Content */

.silaris-service-content h3 {
    font-size: 22px;

    color: #132f5b;
}


.silaris-service-content p {
    font-size: 16px;

    color: #68778e;

    line-height: 1.55;
}


.silaris-service-content a {
    font-size: 14px;
}


/* =========================================================
   WHY CHOOSE
========================================================= */

.silaris-why-section {
    padding: 100px 25px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(44,108,255,0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(0,212,255,0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #081442,
            #112c7b 52%,
            #09194f
        );
}


/* Floating glow */

.silaris-why-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -250px;
    bottom: -250px;

    border-radius: 50%;

    background:
        rgba(0,196,255,0.10);

    filter: blur(60px);

    animation:
        whyGlow 7s ease-in-out infinite alternate;
}


.silaris-why-heading {
    margin-bottom: 55px;
}


.silaris-why-heading span {
    font-size: 36px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


.silaris-why-heading span::after {
    content: "";

    display: block;

    width: 60px;
    height: 4px;

    margin: 17px auto 0;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #13d4ff
        );
}


/* Grid */

.silaris-why-grid {
    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


/* Items */

.silaris-why-item {
    min-height: 190px;

    margin: 0;

    padding: 30px 20px;

    border-radius: 16px;

    border: 1px solid
        rgba(255,255,255,0.13);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.025)
        );

    backdrop-filter: blur(12px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 12px 30px rgba(0,0,0,0.08);

    transition:
        transform .4s ease,
        border-color .4s ease,
        background .4s ease;
}


.silaris-why-item:hover {
    transform:
        translateY(-9px);

    border-color:
        rgba(60,205,255,0.45);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.12),
            rgba(255,255,255,0.045)
        );
}


.silaris-why-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 15px;

    font-size: 22px;

    border:
        1px solid rgba(255,255,255,0.30);

    background:
        rgba(255,255,255,0.06);

    box-shadow:
        0 0 0 7px rgba(255,255,255,0.025);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.silaris-why-item:hover
.silaris-why-icon {
    transform:
        scale(1.12)
        rotate(5deg);

    box-shadow:
        0 0 0 8px rgba(0,200,255,0.06),
        0 0 25px rgba(0,200,255,0.20);
}


.silaris-why-item h3 {
    font-size: 19px;

    white-space: normal;
}


.silaris-why-item p {
    font-size: 15px;

    line-height: 1.55;
}


/* =========================================================
   TECHNOLOGY
========================================================= */

.silaris-tech-section {
    padding: 90px 25px;

    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #ffffff
        );
}


.silaris-tech-heading {
    margin-bottom: 50px;

    color: #102d67;

    font-size: 36px;

    font-weight: 800;
}


.silaris-tech-heading::after {
    content: "";

    display: block;

    width: 60px;
    height: 4px;

    margin: 17px auto 0;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #1756a9,
            #12cfff
        );
}


.silaris-tech-grid {
    gap: 0;
}


.silaris-tech-item {
    min-height: 145px;

    padding: 20px;

    border-radius: 12px;

    transition:
        transform .4s ease,
        background .4s ease;
}


.silaris-tech-item:hover {
    transform:
        translateY(-8px);

    background:
        linear-gradient(
            145deg,
            #f5f9ff,
            #ffffff
        );

    box-shadow:
        0 12px 30px rgba(23,86,169,0.08);
}


.silaris-tech-item:not(:last-child)::after {
    top: 15px;
    height: calc(100% - 30px);

    background:
        #dbe4f0;
}


.silaris-tech-icon {
    width: 64px;
    height: 64px;

    margin-bottom: 12px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #eef6ff,
            #e2efff
        );

    box-shadow:
        0 7px 18px rgba(23,86,169,0.08);

    color: #1559aa;

    font-size: 28px;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.silaris-tech-item:hover
.silaris-tech-icon {
    transform:
        scale(1.08)
        rotate(-4deg);

    box-shadow:
        0 12px 25px rgba(23,86,169,0.15);
}


.silaris-tech-item h3 {
    font-size: 18px;

    line-height: 1.35;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.silaris-industries-section {
    padding: 100px 25px;

    background:
        #f7faff;
}


.silaris-industries-heading {
    margin-bottom: 45px;
}


.silaris-industries-heading span {
    font-size: 36px;

    color: #102d67;

    font-weight: 800;
}


.silaris-industries-heading span::after {
    content: "";

    display: block;

    width: 60px;
    height: 4px;

    margin: 17px auto 0;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #1756a9,
            #12cfff
        );
}


.silaris-industry-card {
    height: 430px;

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(15,43,91,0.12);

    transition:
        transform .5s cubic-bezier(.2,.8,.2,1),
        box-shadow .5s ease;
}


.silaris-industry-card:hover {
    transform:
        translateY(-12px);

    box-shadow:
        0 25px 55px rgba(15,43,91,0.22);
}


.silaris-industry-image {
    transition:
        transform .8s cubic-bezier(.2,.8,.2,1);
}


.silaris-industry-card:hover
.silaris-industry-image {
    transform:
        scale(1.12);
}


.silaris-industry-overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(4,21,53,0.02) 0%,
            rgba(4,21,53,0.30) 35%,
            rgba(4,21,53,0.96) 100%
        );
}


.silaris-industry-content {
    bottom: 25px;

    padding: 25px;
}


.silaris-industry-icon {
    width: 60px;
    height: 60px;

    margin-bottom: 14px;

    font-size: 27px;

    border-radius: 16px;

    background:
        rgba(255,255,255,0.10);

    backdrop-filter: blur(8px);

    transition:
        transform .4s ease,
        background .4s ease;
}


.silaris-industry-card:hover
.silaris-industry-icon {
    transform:
        translateY(-5px)
        rotate(-4deg);

    background:
        rgba(255,255,255,0.18);
}


.silaris-industry-content h3 {
    font-size: 25px;
}


.silaris-industry-content p {
    font-size: 16px;

    line-height: 1.55;
}


/* =========================================================
   CAREER SECTION
========================================================= */

.silaris-career-section {
    margin-bottom: 0;

    background:
        #29267e;
}


.silaris-career-wrapper {
    min-height: 340px;

    grid-template-columns:
        31%
        37%
        32%;

    background:
        linear-gradient(
            110deg,
            #211e68,
            #332d91,
            #252277
        );
}


.silaris-career-image {
    height: 340px;
}


.silaris-career-image img {
    transition:
        transform 1s ease;
}


.silaris-career-wrapper:hover
.silaris-career-image img {
    transform:
        scale(1.08);
}


.silaris-career-image-gradient {
    width: 75%;
}


.silaris-career-content {
    padding: 40px 45px;

    background:
        linear-gradient(
            90deg,
            rgba(45,40,126,0.75),
            rgba(47,43,132,1)
        );
}


.silaris-career-content h2 {
    font-size: 36px;
}


.silaris-career-content p {
    max-width: 520px;

    font-size: 16px;

    line-height: 1.6;
}


.silaris-career-btn {
    min-height: 44px;

    padding: 10px 18px;

    border-radius: 8px;

    font-size: 15px;
}


.silaris-career-benefits {
    gap: 18px;

    padding: 30px 45px;

    background:
        linear-gradient(
            90deg,
            rgba(44,39,124,0.98),
            #252277
        );
}


.silaris-career-benefit {
    padding: 8px;

    border-radius: 12px;

    transition:
        background .3s ease,
        transform .3s ease;
}


.silaris-career-benefit:hover {
    background:
        rgba(255,255,255,0.06);

    transform:
        translateX(7px);
}


.silaris-career-benefit-icon {
    flex-basis: 58px;

    width: 58px;
    height: 58px;

    font-size: 24px;
}


.silaris-career-benefit-content h3 {
    font-size: 19px;
}


.silaris-career-benefit-content p {
    font-size: 14px;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.silaris-contact-section {
    padding: 75px 0;

    background:
        linear-gradient(
            180deg,
            #f5f8fd,
            #ffffff
        );
}


/* Left */

.silaris-contact-intro {
    padding: 30px 55px;

    border-right:
        1px solid #e1e7f0;
}


.silaris-contact-label {
    position: relative;

    margin-bottom: 18px;

    color: #1756a9;

    font-size: 15px;

    letter-spacing: 1.2px;
}


.silaris-contact-label::before {
    content: "";

    display: inline-block;

    width: 32px;
    height: 3px;

    margin-right: 10px;

    vertical-align: middle;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #1756a9,
            #12cfff
        );
}


.silaris-contact-intro h2 {
    margin-bottom: 15px;

    font-size: 32px;
}


.silaris-contact-description {
    max-width: 350px;

    margin-bottom: 25px;

    font-size: 16px;
}


/* Contact details */

.silaris-contact-detail {
    gap: 12px;

    margin-bottom: 13px;
}


.silaris-contact-detail-icon {
    width: 38px;
    height: 38px;

    border-radius: 10px;

    background:
        #edf5ff;

    color: #1756a9;

    box-shadow:
        0 5px 15px rgba(23,86,169,0.08);
}


.silaris-contact-detail a {
    font-size: 16px;

    color: #42546e;
}


/* FORM */

.silaris-enquiry-wrapper {
    padding: 25px 35px;
}


.silaris-enquiry-form {
    padding: 28px;

    border-radius: 16px;

    background:
        #ffffff;

    border:
        1px solid #e5ebf3;

    box-shadow:
        0 15px 40px rgba(30,70,120,0.08);
}


.silaris-form-control {
    min-height: 48px;

    padding: 11px 13px;

    border-radius: 8px;

    border-color:
        #dce4ef;

    font-size: 15px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


.silaris-form-control:hover {
    border-color:
        #b9cae1;
}


.silaris-form-control:focus {
    border-color:
        #2872c7;

    transform:
        translateY(-1px);

    box-shadow:
        0 0 0 4px rgba(40,114,199,0.08);
}


.silaris-form-textarea {
    height: 115px;
}


.silaris-submit-btn {
    min-height: 45px;

    padding: 10px 20px;

    border-radius: 8px;

    font-size: 15px;

    background:
        linear-gradient(
            135deg,
            #1756a9,
            #0a78c9
        );

    box-shadow:
        0 8px 20px rgba(23,86,169,0.20);
}


.silaris-submit-btn:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 12px 28px rgba(23,86,169,0.28);
}


/* LOCATIONS */

.silaris-locations-wrapper {
    padding: 25px 45px;

    border-left:
        1px solid #e1e7f0;
}


.silaris-locations-wrapper > h3 {
    margin-bottom: 20px;

    font-size: 28px;
}


.silaris-location-item {
    padding: 12px;

    margin-bottom: 10px;

    border-radius: 12px;

    transition:
        background .3s ease,
        transform .3s ease;
}


.silaris-location-item:hover {
    background:
        #f4f8fd;

    transform:
        translateX(5px);
}


.silaris-location-icon {
    width: 36px;
    height: 36px;

    flex-basis: 36px;

    border-radius: 9px;

    background:
        #edf5ff;

    color: #1756a9;

    font-size: 17px;
}


.silaris-location-content h4 {
    font-size: 17px;
}


.silaris-location-content p {
    font-size: 14px;

    line-height: 1.5;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes deliveryGlow {

    from {
        transform: translateX(-30px);
        opacity: .4;
    }

    to {
        transform: translateX(80px);
        opacity: 1;
    }

}


@keyframes deliveryPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(22,201,255,.25);
    }

    70% {
        box-shadow:
            0 0 0 12px rgba(22,201,255,0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(22,201,255,0);
    }

}


@keyframes whyGlow {

    from {
        transform: translate(0,0);
        opacity: .35;
    }

    to {
        transform: translate(-70px,-60px);
        opacity: .8;
    }

}


@keyframes sdgVisionFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

}


/* =========================================================
   SCROLL REVEAL - CSS ONLY
========================================================= */

@media (prefers-reduced-motion: no-preference) {

    .silaris-service-card,
    .silaris-why-item,
    .silaris-tech-item,
    .silaris-industry-card,
    .silaris-career-benefit,
    .silaris-location-item {
        will-change: transform;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .sdg-hero-title {
        font-size: 3rem;
    }

    .sdg-hero-content {
        padding:
            45px 35px !important;
    }

    .silaris-services-grid {
        gap: 18px;
    }

    .silaris-why-grid {
        grid-template-columns:
            repeat(3,1fr);
    }

    .silaris-industry-card {
        height: 360px;
    }

    .silaris-career-wrapper {
        grid-template-columns:
            32% 38% 30%;
    }

    .silaris-career-content {
        padding: 30px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    /* HERO */

    .sdg-hero-section {
        min-height: auto;
    }

    .sdg-hero-content {
        min-height: auto;

        padding:
            55px 35px !important;
    }

    .sdg-hero-title {
        font-size: 3rem;
    }

    .sdg-hero-description {
        font-size: 16px !important;
    }

    .sdg-hero-visual,
    .sdg-hero-image {
        min-height: 400px;
    }


    /* DELIVERY */

    .sdg-delivery-heading {
        min-width: 100%;

        justify-content: center;
    }


    /* SERVICES */

    .silaris-services-section {
        padding: 70px 20px;
    }

    .silaris-services-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    /* WHY */

    .silaris-why-grid {
        grid-template-columns:
            repeat(2,1fr);

        gap: 18px;
    }


    /* TECHNOLOGY */

    .silaris-tech-grid {
        grid-template-columns:
            repeat(3,1fr);
    }


    /* CAREER */

    .silaris-career-wrapper {
        grid-template-columns:
            38% 62%;
    }

    .silaris-career-benefits {
        grid-column:
            1 / -1;
    }


    /* CONTACT */

    .silaris-contact-intro {
        border-right: 0;

        border-bottom:
            1px solid #e1e7f0;
    }

    .silaris-locations-wrapper {
        border-left: 0;

        border-top:
            1px solid #e1e7f0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    /* HERO */

    .sdg-hero-content {
        padding:
            45px 20px !important;
    }

    .sdg-hero-title {
        font-size: 2.35rem;

        letter-spacing: -0.8px;
    }

    .sdg-hero-description {
        font-size: 15px !important;

        line-height: 1.65;
    }

    .sdg-hero-content .d-flex.align-items-start {
        padding: 12px;

        align-items: center !important;
    }

    .sdg-hero-content .d-flex.align-items-start .text-white {
        font-size: 13px !important;
    }

    .sdg-hero-buttons {
        display: flex;

        flex-direction: column;

        align-items: stretch;
    }

    .sdg-hero-btn {
        width: 100%;
    }

    .sdg-hero-visual,
    .sdg-hero-image {
        min-height: 280px;
    }


    /* DELIVERY */

    .sdg-delivery-section {
        padding: 15px;
    }

    .sdg-delivery-heading {
        padding: 14px 18px;
    }

    .sdg-delivery-city {
        min-height: 60px;

        font-size: 14px;

        flex: 1 1 50%;
    }


    /* SERVICES */

    .silaris-services-section {
        padding: 60px 15px;
    }

    .silaris-services-heading span {
        font-size: 27px;
    }

    .silaris-services-grid {
        grid-template-columns: 1fr;
    }

    .silaris-service-card {
        min-height: 150px;

        padding: 22px;
    }

    .silaris-service-content h3 {
        font-size: 20px;
    }

    .silaris-service-content p {
        font-size: 15px;
    }


    /* WHY */

    .silaris-why-section {
        padding: 65px 15px;
    }

    .silaris-why-heading span {
        font-size: 27px;
    }

    .silaris-why-grid {
        grid-template-columns:
            repeat(2,1fr);

        gap: 12px;
    }

    .silaris-why-item {
        min-height: 175px;

        padding: 22px 12px;
    }

    .silaris-why-icon {
        width: 52px;
        height: 52px;

        font-size: 19px;
    }

    .silaris-why-item h3 {
        font-size: 16px;
    }

    .silaris-why-item p {
        font-size: 14px;
    }


    /* TECHNOLOGY */

    .silaris-tech-section {
        padding: 65px 15px;
    }

    .silaris-tech-heading {
        font-size: 27px;
    }

    .silaris-tech-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .silaris-tech-item {
        min-height: 125px;

        padding: 15px 8px;
    }

    .silaris-tech-item h3 {
        font-size: 15px;
    }


    /* INDUSTRIES */

    .silaris-industries-section {
        padding: 65px 15px;
    }

    .silaris-industries-heading span {
        font-size: 27px;
    }

    .silaris-industry-card {
        height: 310px;
    }

    .silaris-industry-content {
        padding: 20px;
    }

    .silaris-industry-content h3 {
        font-size: 22px;
    }

    .silaris-industry-content p {
        font-size: 14px;
    }


    /* CAREER */

    .silaris-career-image {
        height: 220px;
    }

    .silaris-career-content {
        padding: 30px 20px;
    }

    .silaris-career-content h2 {
        font-size: 27px;
    }

    .silaris-career-content p {
        font-size: 15px;
    }

    .silaris-career-benefits {
        padding: 25px 18px;
    }


    /* CONTACT */

    .silaris-contact-section {
        padding: 55px 0;
    }

    .silaris-contact-intro {
        padding:
            20px;
    }

    .silaris-contact-intro h2 {
        font-size: 27px;
    }

    .silaris-enquiry-wrapper {
        padding:
            25px 15px;
    }

    .silaris-enquiry-form {
        padding: 20px 15px;
    }

    .silaris-locations-wrapper {
        padding: 25px 20px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .sdg-hero-title {
        font-size: 2rem;
    }

    .silaris-why-grid,
    .silaris-tech-grid {
        grid-template-columns: 1fr;
    }

    .silaris-why-item {
        min-height: auto;
    }

}

.silaris-hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}