@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #00060F;
    --color-secondary: #242834;
    --color-text: #F1F1F1;
    --color-accent: #242834;
    --color-white: #FFFFFF;
    --color-2: #242A5626;
    --color-3: #0F172A;
    --color-4: #454F5E;
    --color-5: #30AB54;
    --color-6: #020811;
    --color-7: #22222200;
    --color-8: #292728;
    --color-9: #222222;
    --color-black: #000000;
    --color-11: #3A6AFC;
    --color-12: #3A6AFD;
    --color-13: #CCCCCC;
    --color-14: #292929;
    --color-15: #30AB5124;
    --color-16: #30A94F;
    --color-17: #E6E6E691;
    --color-18: #555555;
    --menu-bg-color-19: #1B9C85;
}

/*************************************** HEADER SECTION ********************************************/

/* ============================================ */
/* AUTOLOGIC AI HEADER                           */
/* ============================================ */
.al-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.al-header-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    align-items: center;
}

/* ============================================ */
/* AI MENU CONTAINER                             */
/* Contains logo (left) + nav (right)            */
/* ============================================ */
.ai-menu-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ============================================ */
/* LOGO CONTAINER                                */
/* ============================================ */
.header-logo-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.al-logo {
    display: inline-flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.al-logo img {
    height: 100%;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ============================================ */
/* DESKTOP NAVIGATION - Black Pill               */
/* ============================================ */
.al-nav-desktop {
    padding-right: 10px;
}

.ai-nav-content-container {
    background: var(--color-9);
    border-radius: 50px;
    padding: 10px 15px;
}

@media (max-width: 1280px) {
    .ai-nav-content-container {
        padding: 0 15px;
    }
}

.al-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.al-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 25.6px;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.25s ease;
    background: transparent;
    border: none;
    cursor: pointer;
}

.al-nav-link:hover,
.al-nav-link.active {
    color: var(--color-5);
}

.al-dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.al-nav-item-dropdown:hover .al-dropdown-icon,
.al-nav-item-dropdown.active .al-dropdown-icon {
    transform: rotate(180deg);
}

/* ============================================ */
/* MEGA MENU DROPDOWN                            */
/* ============================================ */
.al-nav-item-dropdown {
    position: relative;
}

.al-mega-menu {
    position: fixed;
    top: 80px;
    left: 62%;
    transform: translateX(-50%) translateY(-10px);
    width: calc(100% - 40px);
    max-width: 1000px;
    background: #F5F5F5;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 100;
}

.al-nav-item-dropdown:hover .al-mega-menu,
.al-nav-item-dropdown.active .al-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-all-items {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--color-text);
    padding: 15px;
}

.mega-item-menus {
    padding: 15px 15px 5px 15px;
    width: 33.33%;
}

.mega-item-menus span {
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    line-height: 25.5px;
    letter-spacing: 0px;
    color: var(--color-18);
}

.mega-item-menus .al-mega-description {
    text-align: start;
    font-family: "Poppins", Sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.5px;
    letter-spacing: 0px;
    color: var(--color-18);
    margin-bottom: 14.4px;
}

.mega-item-menus ul {
    list-style: none;
}

.mega-item-menus .al-mega-item {
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 25.5px;
    letter-spacing: 0px;
    color: var(--color-18);
}

.mega-item-menus .al-mega-item:hover {
    color: var(--color-5);
}

.mega-item-menus .al-mega-item:active {
    color: var(--color-5);
}

.mega-item-menus .al-mega-cta {
    background-color: var(--color-5);
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 25.5px;
    letter-spacing: 0px;
    color: var(--color-white);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #CCCCCC;
    border-radius: 50px 50px 50px 50px;
    padding: 5px 15px 5px 15px;
}

/* ============================================ */
/* HAMBURGER BUTTON - Pure HTML/CSS              */
/* 3 lines that animate to X on active           */
/* ============================================ */
.al-hamburger {
    display: none;
    background: var(--color-black);
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: background 0.3s ease;
}

.al-hamburger:hover {
    background: #000;
}

/* Hamburger lines */
.al-hamburger-line {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        width 0.3s ease;
}

/* Active state - 3 lines transform into X */
/* Line 1 - rotates +45deg and moves down to center */
.al-hamburger.active .al-hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

/* Line 2 - middle line fades out */
.al-hamburger.active .al-hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

/* Line 3 - rotates -45deg and moves up to center */
.al-hamburger.active .al-hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================ */
/* MOBILE DRAWER OVERLAY                         */
/* ============================================ */
.al-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1100;
}

.al-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================ */
/* MOBILE DRAWER                                 */
/* ============================================ */
.al-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 460px;
    height: 100vh;
    background: var(--color-black);
    z-index: 1200;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.al-drawer.active {
    transform: translateX(0);
}

.al-drawer-top {
    display: flex;
    justify-content: flex-end;
    padding: 15px;
}

/* ============================================ */
/* DRAWER CLOSE BUTTON - X cross from 2 spans    */
/* ============================================ */
.al-drawer-close {
    background: transparent;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.al-drawer-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Close button lines - X shape */
.al-close-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.al-close-line:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.al-close-line:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hover par X thoda scale ho */
.al-drawer-close:hover .al-close-line:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg) scaleX(1.15);
}

.al-drawer-close:hover .al-close-line:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg) scaleX(1.15);
}

/* ============================================ */
/* DRAWER NAV                                    */
/* ============================================ */
.al-drawer-list {
    list-style: none;
    padding: 15px;
    margin-top: 15px;
}

.al-drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    line-height: 40px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0px;
    color: #ffffff;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.al-drawer-link:hover,
.al-drawer-link.active {
    color: var(--color-5);
}

.al-drawer-toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.al-drawer-item-dropdown.active .al-drawer-toggle-icon {
    transform: rotate(180deg);
}


/* ============================================ */
/* DRAWER SUBMENU - FINAL CLEAN VERSION          */
/* ============================================ */
.al-drawer-submenu {
    background: #f5f5f5;
    margin-top: 0;
    padding-top: 0;
    padding-right: 15px;
    padding-bottom: 0;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition-property: max-height, padding-top, padding-bottom, margin-top, opacity;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.al-drawer-item-dropdown.active .al-drawer-submenu {
    max-height: 700px;
    opacity: 1;
    margin-top: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.al-drawer-submenu ul {
    list-style: none;
}

.al-drawer-submenu ul li {
    padding: 15px 15px 5px 15px;
}

.al-drawer-submenu ul li .al-drawer-sublink1 {
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    text-decoration: none;
    padding: 0 10px;
    letter-spacing: 0px;
    transition: all 0.2s ease;
    color: var(--color-black);
    text-transform: capitalize;
}

.al-drawer-submenu ul li .al-drawer-sublink {
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0px;
    transition: all 0.2s ease;
    padding: 0 10px;
    color: var(--color-black);
    text-transform: capitalize;
}
.al-drawer-submenu ul li .al-drawer-sublink:hover{
    color: var(--color-black);
}
.al-drawer-submenu ul li .al-drawer-sublink:active{
    color: var(--color-black);
}

@media (max-width: 480px) {
    .al-drawer-submenu ul li .al-drawer-sublink1 {
        padding: 0;
    }

    .al-drawer-submenu ul li .al-drawer-sublink {
        padding: 0;
    }
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Large desktop */
@media (max-width: 1280px) {
    .al-nav-link {
        padding: 10px 18px;
        font-size: 14px;
    }

    .al-nav-item-dropdown:hover .al-mega-menu,
    .al-nav-item-dropdown.active .al-mega-menu {
        transform: translateX(-60%) translateY(0);
    }
}

/* Tablet - hide desktop nav, show hamburger */
@media (max-width: 991px) {
    .al-nav-desktop {
        display: none;
    }

    .al-hamburger {
        display: flex;
        background: var(--menu-bg-color-19);
    }

    .al-hamburger:hover {
        background: var(--menu-bg-color-19);
    }

    .ai-menu-container {
        justify-content: flex-start;
    }

    .al-logo img {
        max-height: 50px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .al-logo img {
        max-height: 44px;
    }

    .al-hamburger {
        width: 42px;
        height: 42px;
        background: var(--color-black);
    }

    .al-hamburger:hover {
        background: var(--color-black);
    }

    /* Mobile par lines thodi chhoti */
    .al-hamburger-line {
        width: 20px;
    }

    .al-hamburger.active .al-hamburger-line:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .al-hamburger.active .al-hamburger-line:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .al-logo img {
        max-height: 38px;
    }

    .al-drawer {
        max-width: 300px;
    }
}

/*************************************** HEADER SECTION ********************************************/

/*************************************** FOOTER SECTION ********************************************/

/* ============================================ */
/* AUTOLOGIC AI FOOTER                           */
/* ============================================ */

.al-footer {
    width: 100%;
    background: var(--color-primary, #00060F);
    color: var(--color-white, #ffffff);
    border-top: 1px solid var(--color-17);
}

.al-footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 10px;
}

/* ============================================ */
/* FOOTER COLUMNS                                */
/* ============================================ */
.al-footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 0 10px;
}

/* ============================================ */
/* COLUMN HEADING                                */
/* ============================================ */
.al-footer-heading-container {
    margin-bottom: 22px;
}

.al-footer-heading {
    font-family: "Poppins", Sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 33px;
    letter-spacing: 0px;
    color: var(--color-white);
}

/* ============================================ */
/* COLUMN 1 - Get In Touch Text                  */
/* ============================================ */
.al-footer-text-container {
    margin-bottom: 24.5px;
}

.al-footer-text {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
}

/* ============================================ */
/* COLUMN 2 & 3 - Lists                          */
/* ============================================ */
.al-footer-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.al-footer-list li::marker {
    color: var(--color-white);
}

.al-footer-list li a {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.al-footer-list li a:hover {
    color: var(--color-5, #30AB54);
    padding-left: 4px;
}

.al-footer-list li a:active {
    color: var(--color-5, #30AB54);
}

/* ============================================ */
/* BOTTOM BAR - Copyright                        */
/* ============================================ */
.footer-copyright-bottom-container {
    background-color: var(--color-primary);
    border-top: 1px solid var(--color-17);
    padding: 20px 0;
}

.al-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.al-footer-bottom p {
    font-family: "Poppins", Sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
}

/* ============================================ */
/* SCROLL TO TOP BUTTON - Square Green           */
/* ============================================ */
.al-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--color-5, #30AB54);
    color: var(--color-white, #ffffff);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(48, 171, 84, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
    z-index: 999;
}

.al-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.al-scroll-top:hover {
    background: var(--color-16, #30A94F);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(48, 171, 84, 0.5);
}


/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Tablet */
@media (max-width: 991px) {
    .al-footer-columns {
        gap: 0;
    }
}

/* Mobile - 1 column */
@media (max-width: 767px) {
    .al-footer-wrapper {
        padding: 50px 30px 20px 30px;
    }

    .al-footer {
        padding: 0;
    }

    .al-scroll-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .footer-copyright-bottom-container {
        padding: 20px 30px;
    }
}

@media (max-width: 700px) {
    .al-footer-columns {
        grid-template-columns: 1fr;
        padding: 0;
    }

}

/*************************************** FOOTER SECTION ********************************************/

/*************************************** HERO SLIDER SECTION ********************************************/

/* ============================================ */
/* HERO SLIDER                                   */
/* ============================================ */

.al-hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--color-black);
}

/* ============================================ */
/* SLIDES CONTAINER                              */
/* ============================================ */
.al-hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* ============================================ */
/* INDIVIDUAL SLIDE                              */
/* ============================================ */

.al-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transform: translateX(0);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.al-hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

/* NEXT direction - current slide left jaye */

.al-hero-slide.exiting-left {
    opacity: 1;
    visibility: visible;
    transform: translateX(-100%);
    z-index: 1;
}

/* PREV direction - current slide right jaye */

.al-hero-slide.exiting-right {
    opacity: 1;
    visibility: visible;
    transform: translateX(100%);
    z-index: 1;
}

/* NEXT direction - new slide right se aaye */

.al-hero-slide.entering-right {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    z-index: 2;
    transition: none;
}

/* PREV direction - new slide left se aaye */

.al-hero-slide.entering-left {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    z-index: 2;
    transition: none;
}

/* Dark overlay for text readability */

.al-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 6, 15, 0.85) 0%,
            rgba(0, 6, 15, 0.55) 50%,
            rgba(0, 6, 15, 0.2) 100%);
    z-index: 1;
}

/* ============================================ */
/* CONTENT (text + button) - LEFT ALIGNED        */
/* ============================================ */
.al-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.al-hero-title-container {
    margin-bottom: 30px;
}

.al-hero-title {
    color: var(--color-white);
    font-family: "Poppins", Sans-serif;
    font-size: 42px;
    font-weight: 400;
    text-decoration: none;
    line-height: 55px;
    letter-spacing: 0px;
}

.al-hero-text {
    color: var(--color-white);
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    line-height: 30px;
    letter-spacing: 0px;
}

/* CTA Button - Green pill */
.al-hero-cta {
    display: inline-block;
    background-color: var(--color-5);
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 40px;
    letter-spacing: 0px;
    border: 3px solid var(--color-5);
    border-width: 3px;
    border-radius: 50px;
    color: var(--color-white);
    border-color: var(--color-5);
    padding: 0 22px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(48, 171, 84, 0.3);
}

.al-hero-cta:hover {
    background-color: #30AB5400;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(48, 171, 84, 0.5);
}

/* ============================================ */
/* NAVIGATION ARROWS                             */
/* ============================================ */
.al-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.al-hero-arrow:hover {
    background: var(--color-5, #30AB54);
    border-color: var(--color-5, #30AB54);
    transform: translateY(-50%) scale(1.1);
}

.al-hero-arrow-prev {
    left: 30px;
}

.al-hero-arrow-next {
    right: 30px;
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Large tablet */
@media (max-width: 1200px) {
    .al-hero-title {
        font-size: 35px;
        line-height: 45px;
    }

    .al-hero-text {
        font-size: 12px;
        line-height: 25px;
    }

    .al-hero-cta {
        font-size: 12px;
        line-height: 33px;
    }
}

@media (max-width: 1024px) {
    .al-hero-slider {
        height: 350px;
    }

    .al-hero-title {
        font-size: 26px;
        line-height: 34px;
    }
}

/* Tablet */
@media (max-width: 767px) {
    .al-hero-slider {
        height: 300px;
    }

    .al-hero-content {
        padding: 15px;
    }

    .al-hero-title {
        font-size: 17px;
        line-height: 17px;
    }

    .al-hero-text {
        line-height: 20px;
    }

    .al-hero-arrow {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .al-hero-arrow-prev {
        left: 16px;
    }

    .al-hero-arrow-next {
        right: 16px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    /* .al-hero-slider{
        height: 200px;
    }  */

    /* Overlay thoda zyada dark mobile pe */
    .al-hero-overlay {
        background: linear-gradient(90deg,
                rgba(0, 6, 15, 0.9) 0%,
                rgba(0, 6, 15, 0.7) 50%,
                rgba(0, 6, 15, 0.5) 100%);
    }

    .al-hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .al-hero-arrow-prev {
        left: 10px;
    }

    .al-hero-arrow-next {
        right: 10px;
    }
}

/* Very small mobile */
@media (max-width: 380px) {
    .al-hero-arrow {
        width: 34px;
        height: 34px;
    }
}

/*************************************** HERO SLIDER SECTION ********************************************/

/*************************************** FOSTERING STRATEGIC SECTION ********************************************/

.fostering-stratefic-section-container {
    background-color: var(--color-primary);
    padding: 30px 0 50px 0;
    border: none;
}

.fostering-stratefic-section-container1 {
    background-color: var(--color-primary);
    padding: 30px 0 50px 0;
}

.fostering-stratefic-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fostering-stratefic-content-container {
    padding: 10px;
    margin-top: 25px;
    display: flex;
}

.fostering-stratefic-content-1 {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fostering-stratefic-title-container h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 35px;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 40px;
    letter-spacing: 0px;
    color: var(--color-white);
}

.fostering-stratefic-info-container p {
    margin-bottom: 14.4px;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white)
}

.fostering-stratefic-content-2 {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fostering-stratefic-image-comtainer img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.14);
}

@media (max-width: 1025px) {
    .fostering-stratefic-content-container {
        padding: 10px 20px;
    }
}

@media (max-width: 1024px) {
    .fostering-stratefic-section-container {
        display: none;
    }
}

@media (max-width: 767px) {
    .fostering-stratefic-content-container {
        flex-direction: column;
    }

    .fostering-stratefic-content-1 {
        width: 100%;
        padding: 0;
    }

    .fostering-stratefic-content-2 {
        width: 100%;
    }
}

/*************************************** FOSTERING STRATEGIC SECTION ********************************************/

/*************************************** WE FOCUS SECTION ********************************************/

.we-focus-section-container {
    background-color: var(--color-secondary);
    border: none;
}

.we-focus-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0 20px 0;
}

.we-focus-container-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.we-focus-about-container h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
    text-align: center;
}

.we-focus-title-container h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 35px;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 45.5px;
    letter-spacing: 0px;
    color: var(--color-white);
    text-align: center;
}

.we-focus-info-container {
    width: 70%;
    margin: 0 auto;
    align-items: center;
}

.we-focus-info-container p {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
    text-align: center;
}

@media (max-width: 1024px) {
    .we-focus-container {
        padding: 50px 30px;
    }

    .we-focus-info-container {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .we-focus-container {
        padding: 50px 30px;
    }

    .we-focus-info-container {
        width: 100%;
    }
}

/*************************************** WE FOCUS SECTION ********************************************/

/*************************************** WE OFFER CARD SECTION ********************************************/

/* ============================================ */
/* SERVICE CARDS SECTION                         */
/* ============================================ */

.al-service-cards-section {
    width: 100%;
    padding: 0 0 50px;
    background-color: var(--color-secondary);
    /* border: none; */
}

.al-service-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ============================================ */
/* INDIVIDUAL CARD                               */
/* ============================================ */
.al-service-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white, #ffffff);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s ease;
}

/* Hover - lift effect */
.al-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* ============================================ */
/* CARD IMAGE - 4:3 aspect ratio                 */
/* ============================================ */
.al-service-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0f0f0;
}

.al-service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover - image zoom */
.al-service-card:hover .al-service-card-image img {
    transform: scale(1.08);
}

/* ============================================ */
/* CARD TITLE - White strip with dark text       */
/* ============================================ */
.al-service-card-title {
    padding: 20px 0;
    text-align: center;
    background: var(--color-white, #ffffff);
}

.al-service-card-title a {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-black);
    transition: color 0.3s ease;
}

/* Hover - title color change to brand green */
.al-service-card:hover .al-service-card-title a {
    color: var(--color-5, #30AB54);
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Tablet - 2 columns */
@media (max-width: 991px) {
    .al-service-cards-section {
        padding: 50px 0;
    }

    .al-service-cards-container {
        grid-template-columns: repeat(3, 1fr);
        padding: 15px;
    }
}

/* Mobile - 1 column */
@media (max-width: 600px) {
    .al-service-cards-section {
        padding: 20px 20px 40px 20px;
    }

    .al-service-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile par hover lift kam karo (touch devices) */
    .al-service-card:hover {
        transform: translateY(-4px);
    }
}

/* Small mobile */

@media (max-width: 480px) {
    .al-service-cards-container {
        grid-template-columns: 1fr;
    }
}

/*************************************** WE OFFER CARD SECTION ********************************************/

/*************************************** INFO CARDS SECTION ********************************************/

/* ============================================ */
/* INFO CARDS SECTION                            */
/* ============================================ */

.al-info-section {
    width: 100%;
    padding: 0 0 50px;
    background-color: #242834;
}

/* Default - hidden upar */
.al-fade-in-down {
    opacity: 0;
    transform: translateY(-100%);
}

/* Active - animation chale */
.al-fade-in-down.animate {
    animation-name: fadeInDown;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

/* Skip animation - directly visible (for already-passed sections) */
.al-fade-in-down.animate-skip {
    opacity: 1;
    transform: none;
    /* No animation - turant visible */
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .al-fade-in-down {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ============================================ */
/* CONTAINER                                     */
/* ============================================ */
.al-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* ============================================ */
/* INDIVIDUAL CARD                               */
/* ============================================ */
.al-info-card {
    padding: 15px 15px 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

/* ============================================ */
/* QUOTE PART - Green left border                */
/* ============================================ */
.al-info-quote {
    border-left: 5px solid var(--color-5, #30AB54);
    padding: 0 15px 0 25px;
    border-radius: 5px;
}

.al-info-quote p {
    font-family: "Poppins", Sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    margin-bottom: 14.4px;
    color: var(--color-white);
}

/* ============================================ */
/* BOTTOM PART - Image + Title                   */
/* ============================================ */
.al-info-card-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
}

.al-info-card-title-container {
    margin: 2px 0;
}

/* Thumbnail image */
.al-info-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.al-info-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 2px solid var(--color-white);
    border-radius: 10% 10% 10% 10%;
}

/* Title */
.al-info-card-title {
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
    flex: 1;
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Tablet - 2 columns */
@media (max-width: 991px) {
    .al-info-section {
        padding: 0 0 40px;
    }

    .al-info-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 24px;
    }

    .al-info-quote p {
        font-size: 14px;
        line-height: 1.65;
    }

    .al-info-card-title {
        font-size: 16px;
    }

    .al-info-thumb {
        width: 64px;
        height: 64px;
    }
}

/* Mobile - 1 column */
@media (max-width: 600px) {
    .al-info-section {
        padding: 0 0 30px;
    }

    .al-info-container {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 0 20px;
    }

    .al-info-card {
        gap: 18px;
    }

    .al-info-quote {
        padding: 4px 0 4px 18px;
        border-left-width: 3px;
    }

    .al-info-quote p {
        font-size: 14px;
        line-height: 1.6;
    }

    .al-info-card-bottom {
        gap: 14px;
    }

    .al-info-thumb {
        width: 60px;
        height: 60px;
    }

    .al-info-card-title {
        font-size: 15px;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    .al-info-container {
        padding: 0 16px;
    }

    .al-info-quote p {
        font-size: 13px;
    }

    .al-info-card-title {
        font-size: 14px;
    }

    .al-info-thumb {
        width: 54px;
        height: 54px;
    }
}


/*************************************** INFO CARDS SECTION ********************************************/

/*************************************** WHY AUTOLOGICAI SECTION ********************************************/

.why-autologic-ai-section {
    background-color: var(--color-primary);
}

.why-autologic-ai-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.why-autologic-ai-title-container h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 39px;
    letter-spacing: 0px;
    color: var(--color-white);
    text-align: center;
}

/*************************************** WHY AUTOLOGICAI SECTION ********************************************/

/*************************************** TIMELINE SECTION ********************************************/


/* ================================
   TIMELINE SECTION — style.css
================================ */

.timeline-section {
    background-color: #00060F;
    width: 100%;
    padding: 10px 0;
}

/* CONTAINER */
.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 0;
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

/* ================================
   NAV ARROWS
================================ */
.nav-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    padding: 0 16px;
    flex-shrink: 0;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    margin-top: 60px;
    user-select: none;
}

.nav-btn:hover {
    opacity: 1;
}

.nav-btn:disabled {
    opacity: 0.2;
    cursor: default;
}

/* ================================
   SLIDER WRAPPER
================================ */
.timeline-slider-wrapper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

/* ================================
   TIMELINE TRACK (line + circles)
================================ */
.timeline-track {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

/* Horizontal line — exactly at circle center */

.track-line {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #ffffff;
    z-index: 0;
}

/* Items row */
.track-items {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Each track item */
.track-item {
    flex: 0 0 33.333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Title above circle */
.track-title {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    line-height: 16px;
    letter-spacing: 0px;
    color: var(--color-white);
    opacity: 0.55;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.track-item.active .track-title {
    opacity: 1;
}

/* Circle with icon/image */
.track-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background-color: #00060F;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    opacity: 0.45;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
}


/* SVG inside circle */
.track-circle svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.track-item.active .track-circle {
    opacity: 1;
    background-color: #111827;
}

/* Arrow below circle */
.track-arrow {
    font-size: 20px;
    color: #ffffff;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.track-item.active .track-arrow {
    opacity: 1;
}

/* ================================
   DESCRIPTION CARDS
================================ */
.desc-slider {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    margin-top: 16px;
}

.desc-card {
    flex: 0 0 calc(33.333% - 15px);
    padding: 12px 12px 2px 12px;
    margin-right: 15px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.desc-card.active,
.desc-card.visible {
    opacity: 1;
}

.desc-card p {
    text-align: center;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    margin-bottom: 10px;
    color: var(--color-white);
}

/* ================================
   RESPONSIVE — TABLET (max 900px)
================================ */
@media (max-width: 900px) {
    .timeline-container {
        padding: 36px 0;
    }

    .track-title {
        font-size: 13px;
        white-space: normal;
        text-align: center;
        padding: 0 6px;
    }

    .nav-btn {
        padding: 0 10px;
        font-size: 28px;
    }
}

/* ================================
   RESPONSIVE — MOBILE (max 600px)
================================ */
@media (max-width: 600px) {
    .timeline-container {
        padding: 28px 0;
    }

    /* Show 1 item at a time on mobile */
    .track-item {
        flex: 0 0 100%;
    }

    .desc-card {
        flex: 0 0 100%;
    }


    .nav-btn {
        padding: 0 8px;
        font-size: 26px;
        margin-top: 40px;
    }
}


/*************************************** TIMELINE SECTION ********************************************/

/*************************************** STAFFING SECTION ********************************************/

/* ===========================
   fadeInDown ANIMATION
=========================== */

.staffing-section {
    width: 100%;
    background-color: var(--color-secondary);
}

.section-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* ===========================
   LEFT SIDE
=========================== */
.left {
    padding: 10px;
}

.heading {
    font-family: "Poppins", Sans-serif;
    font-size: 35px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 45.5px;
    letter-spacing: 0px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.description {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
    margin-bottom: 22.4px;
}

/* ===========================
   RIGHT: 2x2 STATS GRID
=========================== */
.right {
    padding: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.stat-card {
    padding: 40px 30px 30px 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: default;
    transition: background-color 0.25s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(20px);
}

.card-border {
    border-right: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

.border-card {
    border-top: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
}

.bg-card {
    background-color: transparent;
    background-image: linear-gradient(245deg, #30AB542E -150%, #FFFFFF26 100%);
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* .stat-card:hover {
    background-color: #323858;
} */

/* ===========================
   ICON
=========================== */
.icon-wrap {
    width: 52px;
    height: 52px;
    margin-right: 15px;
}

.icon-wrap img {
    width: 100%;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

/* ===========================
   STAT TEXT
=========================== */
.stat-text .number {
    font-family: "Poppins", Sans-serif;
    font-size: 42px;
    line-height: 54.6px;
    font-weight: 600;
    color: var(--color-white);
    transition: color 0.2s ease;
}

.stat-text .label {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    color: var(--color-white);
    margin-top: 6px;
    font-weight: 400;
    line-height: 25.6px;
}

/* ===========================
   RESPONSIVE — TABLET
=========================== */
@media (max-width: 770px) {
    .section-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
    }

}

/* ===========================
   RESPONSIVE — MOBILE
=========================== */
@media (max-width: 560px) {
    .section-wrapper {
        padding: 20px;
    }

    .stat-card {
        padding: 10px;
    }

    .icon-wrap {
        width: 25px;
        height: 25px;
    }

    .stat-text .number {
        font-size: 25px;
        line-height: 25px;
    }

    .stat-text .label {
        font-size: 13px;
    }
}

/*************************************** STAFF SECTION ********************************************/

/*************************************** REQUEST STAFF SECTION ********************************************/

.request-staff-section {
    background-color: var(--color-secondary);
}

.request-staff-section-container {
    max-width: 1220px;
    margin: 0 auto;
}

.request-staff-container {
    padding: 20px;
}

.request-staff-content-container {
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-top: -24px;
}

.request-staff-title-container {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.request-staff-title-container h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 21px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 27.3px;
    letter-spacing: 0px;
    color: var(--color-9);
    text-align: center;
}

.request-staff-btn-container {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-left: 30px;
}

.request-staff-btn-container span {
    display: flex;
    justify-content: flex-end;
}

.request-staff-btn-container a {
    background-color: var(--color-5);
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 15px;
    letter-spacing: 0px;
    color: var(--color-white);
    border: 2px solid var(--color-5);
    border-radius: 50px 50px 50px 50px;
    padding: 17px 35px 17px 35px;
    text-align: center;
}

@media (max-width: 991px) {
    .request-staff-section {
        padding: 50px 30px;
    }

    .request-staff-btn-container a {
        padding: 8px 16px;
    }

    .request-staff-content-container {
        margin-top: -50px;
    }
}

@media (max-width: 767px) {
    .request-staff-section {
        padding: 50px 30px;
    }

    .request-staff-btn-container a {
        padding: 8px 16px;
    }

    .request-staff-btn-container {
        width: 40%;
        margin-left: 0;
        justify-content: center;
    }

    .request-staff-title-container {
        width: 60%;
    }
}

@media (max-width: 600px) {
    .request-staff-content-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .request-staff-title-container {
        width: 100%;
    }

    .request-staff-btn-container {
        width: 100%;
        margin-left: 0;
    }

    .request-staff-btn-container span {
        justify-content: center;
    }
}


/*************************************** REQUEST STAFF SECTION ********************************************/


/*************************************** ABOUT US PAGE ********************************************/

/*---------------- DESIRE TO ACHIVE SECTION -------------------*/

.desire-to-achieve-section {
    background-color: var(--color-primary);
    padding: 20px 0;
}

.desire-to-achieve-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.desire-to-achieve-content-container {
    padding: 0 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.desire-to-achieve-content-1 {
    display: flex;
    flex-direction: column;
}

.desire-to-achieve-content-1 .desire-to-achieve-title {
    margin-bottom: 20px;
}

.desire-to-achieve-content-1 .desire-to-achieve-title h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 39px;
    text-transform: capitalize;
    text-decoration: none;
    color: var(--color-white);
}

.desire-to-achieve-content-1 .desire-to-achieve-info {
    margin: 20px 0;
}

.desire-to-achieve-content-1 .desire-to-achieve-info p {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
}

.desire-to-achieve-content-2 .desire-to-achieve-img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.desire-to-achieve-content-2 .desire-to-achieve-img-container img {
    width: 90%;
    margin: 0 auto;
    height: 315px;
    border-radius: 10% 10% 10% 10%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/*---------------- DESIRE TO ACHIVE INFO SECTION -------------------*/
.achieved-info-section {
    background-color: var(--color-secondary);
    padding: 20px 0;
}

.achieved-info-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.achieved-info-content-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 15px;
}

.achieved-info-content-1 {
    border-left: 5px solid var(--color-5);
    padding-left: 30px;
    padding-right: 20px;
}

.achieved-info-title {
    margin-bottom: 20px;
}

.achieved-info-title h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 26px;
    letter-spacing: 0px;
    color: var(--color-white);
}

.achieved-info-paragraph p {
    font-family: "Poppins", Sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
    margin-bottom: 14.4px;
}

/*---------------- ACHIEVE OUR CARD SECTION -------------------*/

.achieve-our-team-section {
    background-color: var(--color-primary);
    padding: 30px 0;
}

.achieve-our-team-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.achieve-our-team-content-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.achieve-our-team-content-Info p {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
}

.achieve-our-team-content-heading h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 39px;
    letter-spacing: 0px;
    color: var(--color-white);
}

.achieve-our-team-content-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
}

.achieve-our-team-content-card1 {
    margin: 20px;
    padding: 20px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.achieve-our-team-content-card-img {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px auto;
}

.achieve-our-team-content-card-img img {
    width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.achieve-our-team-content-card-content {
    margin-bottom: 6px;
}

.achieve-our-team-content-card-content h5 {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 19.2px;
    letter-spacing: 0px;
    color: var(--color-3);
    transition: color 0.3s ease;
}

.achieve-our-team-content-card1:hover .achieve-our-team-content-card-content h5{
    color: var(--color-5);
}

@media (max-width: 991px) {
    .desire-to-achieve-content-container {
        padding: 0 20px;
    }

    .achieve-our-team-section-container {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .achieved-info-content-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }

    .achieve-our-team-content-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .desire-to-achieve-content-2 .desire-to-achieve-img-container img{
        height: 250px;
    }
}

@media (max-width: 600px) {
    .achieved-info-content-container {
        grid-template-columns: 1fr;
    }

    .achieve-our-team-content-2 {
        grid-template-columns:  1fr;
    }
    .desire-to-achieve-content-container{
        grid-template-columns: 1fr;
    }
    .desire-to-achieve-content-2 .desire-to-achieve-img-container img{
        width: 100%;
        height: auto;
    }
}

/* ============================================ */
/* FADE IN UP - Section animation                */
/* ============================================ */

/* Default - hidden + niche shifted */
.al-fade-in-up {
    opacity: 0;
    /* transform: translateY(100%); */
    transform: translateY(80px);
}

/* When .animate added by JS - fade in up */
.al-fade-in-up.animate {
    animation-name: fadeInUp;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        /* transform: translateY(100%); */
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Skip animation for already-passed sections */
.al-fade-in-up.animate-skip {
    opacity: 1;
    transform: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .al-fade-in-up {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/*************************************** ABOUT US PAGE ********************************************/

/*************************************** CONTACT US PAGE ********************************************/

/*---------------- CONTACT DETAIL SECTION -------------------*/
.contact-detail-section {
    background-color: var(--color-primary);
    padding: 50px 0;
}

.contact-detail-content-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-detail-content1 img {
    width: 100%;
    height: auto;
}

.contact-detail-content2 {
    margin-top: 12px;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-title h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 39px;
    letter-spacing: 0px;
    color: var(--color-white);
}

.contact-detail-info {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-detail-address-cont {
    display: flex;
    flex-direction: column;
}

.contact-detail-address-cont .adderss-title {
    margin-bottom: 20px;
}

.contact-detail-address-cont .adderss-title h4 {
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 24px;
    letter-spacing: 0px;
    color: var(--color-white);
}

.contact-detail-address-cont .adderss-info p {
    text-align: start;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
    margin-bottom: 25.6px;
}

.contact-detail-email-cont {
    display: flex;
    flex-direction: column;
}

.contact-detail-email-cont .email-title {
    margin-bottom: 20px;
}

.contact-detail-email-cont .email-title h4 {
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: lowercase;
    text-decoration: none;
    line-height: 24px;
    letter-spacing: 0px;
    color: var(--color-white);
}

.contact-detail-email-cont .email-info p {
    margin-bottom: 25.6px;
}

.contact-detail-email-cont .email-info p a {
    text-align: start;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-5);
    display: block;
}

.contact-detail-email-cont .email-info p a:hover {
    color: var(--color-11);
}

.contact-detail-icon-title {
    margin: 30px 0 0 13px;
}

.contact-detail-icon-title h6 {
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    line-height: 18.8px;
    letter-spacing: 0px;
    color: var(--color-white);
}

.contact-detail-social-icon {
    margin-left: 13px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.contact-detail-social-icon span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.contact-detail-social-icon span a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.contact-detail-social-icon .fa-brands {
    font-size: 15px;
    color: #ffffff;
}

/* ================================
   SOCIAL ICON COLORS
================================ */
.social-icon-facebook {
    background-color: #1877F2;
}

.social-icon-twitter {
    background-color: #1DA1F2;
}

.social-icon-youtube {
    background-color: #FF0000;
}

/* ================================
   SOCIAL ICON HOVER
================================ */
.social-icon-facebook:hover {
    background-color: #0e5fc0;
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-icon-twitter:hover {
    background-color: #0d8dd9;
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-icon-youtube:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    opacity: 0.9;
}

/* ================================
   RESPONSIVE 
================================ */
@media (max-width: 991px) {
    .contact-detail-content2 {
        gap: 10px;
    }

    .contact-detail-info {
        gap: 0;
    }
}

@media (max-width: 768px) {
    .contact-detail-content2 {
        gap: 20px;
    }

    .contact-detail-info {
        gap: 20px;
    }

    .contact-detail-content-container {
        grid-template-columns: 1fr;
    }

    .contact-detail-content1 {
        margin-top: 0;
    }

    .contact-detail-content2 {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ================================
   RESPONSIVE — MOBILE (max 480px)
================================ */
@media (max-width: 480px) {
    .contact-detail-section {
        padding: 30px 0;
    }

    .contact-detail-info {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
    }

    .contact-detail-content2 {
        padding-left: 16px;
        padding-right: 16px;
        gap: 14px;
    }

    .contact-detail-title h3 {
        font-size: 24px;
    }

    .contact-detail-address-cont .adderss-title h4,
    .contact-detail-email-cont .email-title h4 {
        font-size: 16px;
    }

    .contact-detail-address-cont .adderss-info p,
    .contact-detail-email-cont .email-info p a {
        font-size: 14px;
    }
}

/*---------------- CONTACT FORM SECTION -------------------*/

/* ================================
   CONTACT SECTION
================================ */
.contact-section {
    background-color: #ffffff;
    width: 100%;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================================
   FORM BOX
================================ */
.contact-form-box {
    width: 100%;
    max-width: 780px;
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    border-radius: 25px;
    padding: 20px 30px 5px 30px;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.06);
}

/* ================================
   FORM GROUP
================================ */


/* ================================
   INPUTS & TEXTAREA
================================ */
.form-input {
    width: 100%;
    background-color: #fafafa;
    border: 1px solid #DDDDDD;
    padding: 10px 10px 10px 35px;
    font-family: "Poppins", Sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-black);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-input:focus {
    border-color: #30AB54;
    box-shadow: 0 0 0 3px rgba(48, 171, 84, 0.12);
    background-color: #ffffff;
}

/* Email — fully rounded (pill shape) */
.form-input.rounded {
    border-radius: 50px;
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 130px;
}

/* ================================
   ERROR MESSAGE
================================ */
.error-msg {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #ef4444;
    margin-top: 5px;
    margin-left: 4px;
    min-height: 16px;
}

/* Input error state */
.form-input.input-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ================================
   SUBMIT BUTTON
================================ */
.submit-btn {
    background-color: var(--color-5);
    color: var(--color-white);
    font-family: "Poppins", Sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1em;
    letter-spacing: 1px;
    border: 1px solid var(--color-5);
    border-radius: 6px;
    padding: 17px 35px 17px 35px;
    cursor: pointer;
    margin-bottom: 26px;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--color-5);
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ================================
   RESPONSIVE — TABLET
================================ */
@media (max-width: 768px) {
    .contact-form-box {
        padding: 28px 24px 32px 24px;
    }
}

/* ================================
   RESPONSIVE — MOBILE
================================ */
@media (max-width: 480px) {
    .contact-section {
        padding: 8px;
    }

    .contact-wrapper {
        margin-top: 12px;
    }

    .contact-form-box {
        padding: 20px 16px 24px 16px;
        border-radius: 14px;
    }

    .form-input {
        padding: 13px 16px;
        font-size: 13px;
    }

    .submit-btn {
        width: 100%;
        padding: 14px;
    }
}

/*************************************** CONTACT US PAGE ********************************************/

/*************************************** APPLICATION MODERNIZATION SERVICES PAGE ********************************************/

/* ============================================ */
/* SERVICES TABS SECTION                         */
/* ============================================ */

.al-tabs-section {
    width: 100%;
    background-color: #020811;
}

.al-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tab-main-container {
    padding: 30px 0 40px 0;
}

/* ============================================ */
/* TABS Hading                                 */
/* ============================================ */
.ai-tab-title-container {
    padding: 30px 0;
    text-align: center;
}

.ai-tab-title-container h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    text-decoration: none;
    line-height: 1.3em;
    letter-spacing: 0px;
    color: var(--color-white);
}


/* ============================================ */
/* TABS HEADER                                   */
/* ============================================ */
.al-tabs-header {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.al-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 16px 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.al-tab-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.al-tab-label {
    white-space: nowrap;
}

/* Active tab - white underline */
.al-tab.active {
    color: var(--color-5);
}

.al-tab.active .al-tab-icon {
    opacity: 1;
}

.al-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-5);
}

/* Hover */
.al-tab:hover {
    color: var(--color-5);
}

.al-tab:hover .al-tab-icon {
    opacity: 1;
}

/* Hover - GREEN underline (same as active but green) */
.al-tab:hover::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-5, #30AB54);
    /* green */
}

/* ============================================ */
/* TABS CONTENT                                  */
/* ============================================ */
.al-tabs-content {
    position: relative;
}

/* Default - panel hidden */
.al-tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Active panel - fade in */
.al-tab-panel.active {
    display: block;
    opacity: 1;
}

/* Panel during fade transition */
.al-tab-panel.fading {
    opacity: 0;
}

/* Description paragraph */
.al-tab-description {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 40px;
    max-width: 100%;
}

/* ============================================ */
/* CARDS GRID                                    */
/* ============================================ */
.al-tab-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Card */
.al-tab-card {
    background: var(--color-white, #ffffff);
    border-radius: 8px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.al-tab-card-icon {
    width: 56px;
    height: 56px;
}

.al-tab-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.al-tab-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-3, #0F172A);
    margin: 0;
}

.al-tab-card-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    color: var(--color-3, #0F172A);
    margin: 0;
}

/* ============================================ */
/* TABS CARDS - Continuous Floating Hover        */
/* Card upar-niche dheere se float kare          */
/* ============================================ */

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hover - continuous bounce floating */
.al-tab-card:hover {
    animation: cardFloat 1s ease-in-out infinite;
}

/* Accessibility - reduce motion */
@media (prefers-reduced-motion: reduce) {
    .al-tab-card:hover {
        animation: none;
    }
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Tablet - 2 tabs upar + 1 niche center */
@media (max-width: 991px) {
    .al-tabs-section {
        padding: 50px 0;
    }

    /* Tabs wrap karein - 2 upar, 1 niche center */
    .al-tabs-header {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 50px;
        border-bottom: none;
    }

    .al-tab {
        font-size: 16px;
    }

    /* Active state - GREEN underline (har tab pe individual) */
    .al-tab.active {
        color: var(--color-5);
    }

    .al-tab.active::after {
        background: var(--color-5, #30AB54);
        bottom: -4px;
        height: 2px;
    }

    /* Hover - GREEN color */
    .al-tab:hover {
        color: var(--color-5, #30AB54);
    }

    .al-tab:hover::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--color-5, #30AB54);
    }

    .al-tab-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .al-tab-card {
        padding: 26px 22px;
    }

    .al-tab-description {
        font-size: 14px;
        margin-bottom: 32px;
    }
}


/* Mobile - stack tabs vertically, 1 col cards */
/* Mobile - single column center aligned */
@media (max-width: 600px) {
    .al-tabs-section {
        padding: 40px 0;
    }

    .al-tabs-container {
        padding: 0 20px;
    }

    /* Tabs stacked vertically - CENTER aligned */
    .al-tabs-header {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 16px;
        align-items: center;
        border-bottom: none;
        margin-bottom: 30px;
    }

    .al-tab {
        padding: 12px 16px;
        font-size: 15px;
        justify-content: center;
        border-bottom: none;
    }

    /* Active - GREEN underline below */
    .al-tab.active {
        color: var(--color-5);
    }

    .al-tab.active::after {
        top: auto;
        bottom: -4px;
        left: 0;
        right: 0;
        width: auto;
        height: 2px;
        background: var(--color-5, #30AB54);
    }

    /* Hover - GREEN color + underline */
    .al-tab:hover {
        color: var(--color-5, #30AB54);
    }

    .al-tab:hover::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--color-5, #30AB54);
    }

    .al-tab-icon {
        width: 20px;
        height: 20px;
    }

    /* Cards - 1 column */
    .al-tab-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .al-tab-card {
        padding: 24px 20px;
        gap: 16px;
    }

    .al-tab-card-icon {
        width: 48px;
        height: 48px;
    }

    .al-tab-card-title {
        font-size: 18px;
    }

    .al-tab-card-text {
        font-size: 13px;
        line-height: 1.75;
    }

    .al-tab-description {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 28px;
    }
}

/* Very small mobile */
@media (max-width: 380px) {
    .al-tabs-container {
        padding: 0 16px;
    }

    .al-tab {
        font-size: 14px;
    }

    .al-tab-card-title {
        font-size: 17px;
    }
}

/*************************************** APPLICATION MODERNIZATION SERVICES PAGE ********************************************/

/*************************************** SERVICES PAGE ********************************************/

/*---------------- SERVICE ACHIEVE SECTION -------------------*/
.service-achieve-section {
    width: 100%;
    background-color: var(--color-primary);
    padding: 20px 0;
}

.service-achieve-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
}

.service-achieve-image-container img {
    width: 95%;
    height: auto;
    border-radius: 3% 3% 3% 40%;
    display: inline-block;
    vertical-align: middle;
}

.service-achieve-info-container {
    display: flex;
    flex-direction: column;
}

.service-achieve-title-container {
    margin-bottom: 20px;
}

.service-achieve-title-container h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 41.6px;
    color: var(--color-white);
}

.service-achieve-para-container {
    margin: -6px 0 20px 0;
}

.service-achieve-para-container p {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
    margin-bottom: 14.4px;
}

@media (max-width: 991px) {
    .service-achieve-section {
        padding: 20px;
    }

}

@media (max-width: 650px) {
    .service-achieve-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/*---------------- SERVICE ACHIEVE SECTION -------------------*/

/*---------------- SERVICE CARD SECTION -------------------*/

.al-services-grid-section {
    width: 100%;
    padding: 20px;
    background-color: #292728;
}

.al-services-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================ */
/* HEADING                                       */
/* ============================================ */

.al-services-grid-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.al-service-short-info-container {
    margin-bottom: 20px;
    padding-top: 9px;
}

.al-service-short-info-container p {
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
}

.al-service-title-container {
    margin-bottom: 20px;
}

.al-service-title-container h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 45.5px;
    letter-spacing: 0px;
    color: var(--color-white);
}


/* ============================================ */
/* CARDS GRID                                    */
/* ============================================ */

.al-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================ */
/* INDIVIDUAL CARD                               */
/* ============================================ */

.al-service-item {
    position: relative;
    margin: 5px;
    padding-bottom: 40px;
}

.al-service-item-cont {
    display: flex;
    flex-direction: column;
}

.al-service-item-info-container {
    margin-bottom: 20px;
    cursor: pointer;
}

.al-service-item-info-content {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    border-left: 5px solid var(--color-5, #30AB54);
    padding: 10px 15px 0 15px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover - sirf lift up, border same rahe */
.al-service-item-info-content:hover {
    transform: translateY(-8px);
}

/* Title */
.al-service-item-title {
    margin-bottom: 20px;
}

.al-service-item-title h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 19.5px;
    letter-spacing: 0px;
    color: var(--color-white);
}

/* Description text */
.al-service-item-text p {
    text-align: start;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
}

/* READ MORE button - green pill */
.al-service-items-btn-container {
    margin-left: 20px;
}

.al-service-item-btn {
    background: var(--color-5, #30AB54);
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 12px;
    letter-spacing: 0px;
    color: var(--color-white);
    border: 2px solid var(--color-5);
    border-radius: 50px 50px 50px 50px;
    padding: 12px;
    display: inline-block;
    align-self: flex-start;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.al-service-item-btn:hover {
    background: var(--color-white);
    color: var(--color-black);
    box-shadow: 0 6px 18px rgba(48, 171, 84, 0.4);
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Tablet - 2 columns */
@media (max-width: 991px) {
    .al-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 1 column */
@media (max-width: 600px) {
    .al-services-grid {
        grid-template-columns: 1fr;
    }

    .al-service-item {
        padding-bottom: 20px;
    }
}

/* ============================================ */
/* SERVICES GRID CARDS - Fade In Down Animation  */
/* ============================================ */

/* Default - card hidden + offset upar */
.al-services-grid-card-animate {
    opacity: 0;
    transform: translateY(-60px);
    transition: opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animate state - card visible */
.al-services-grid-card-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .al-services-grid-card-animate {
        opacity: 1;
        transform: none;
    }
}

/*---------------- SERVICE CARD SECTION -------------------*/

/*************************************** SERVICES PAGE ********************************************/

/*************************************** QUALITY ASSURANCE & ENGINEERING PAGE ********************************************/
.quality-assurance-section {
    background-color: var(--color-primary);
}

.quality-assurance-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

/*---------------- QUALITY ASSURANCE HEADING SECTION -------------------*/
.quality-assurance-container-content-1 {
    width: 540px;
    margin: 0 auto;
    padding: 30px 0;
}

.quality-assurance-title-container {
    text-align: center;
}

.quality-assurance-title-container h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-style: normal;
    text-decoration: none;
    line-height: 1.3em;
    letter-spacing: 0px;
    color: var(--color-white);
}

/*---------------- QUALITY ASSURANCE HEADING SECTION -------------------*/

/*---------------- QUALITY ASSURANCE INFO SECTION -------------------*/
.quality-assurance-container-content-2 {
    padding: 30px 0;
}

.quality-assurance-info-container {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quality-assurance-info-container p {
    text-align: center;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
    margin-bottom: 14.4px;
}

/*---------------- QUALITY ASSURANCE INFO SECTION -------------------*/

/*---------------- QUALITY ASSURANCE CARD SECTION -------------------*/
.quality-assurance-container-content-3 {
    padding: 10px;
}

.quality-assurance-card {
    padding-bottom: 50px;
}

/* ============================================ */
/* CARDS GRID                                    */
/* ============================================ */
.al-testing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* ============================================ */
/* INDIVIDUAL CARD                               */
/* ============================================ */
.al-testing-card {
    background-color: var(--color-white, #ffffff);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* height: 100%;   */
    height: 465px;
    /* fixed height for all cards */
    box-shadow: 0px 0px 40px 0px rgba(36, 41.999999999999964, 86, 0.15);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover - PRESS DOWN effect (niche jaana) */
.al-testing-card:hover {
    transform: translateY(20px);
}

/* ============================================ */
/* CARD IMAGE                                    */
/* ============================================ */
.al-testing-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f172a;
    flex-shrink: 1;
}

.al-testing-card-image img {
    width: 100%;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

/* ============================================ */
/* CARD CONTENT                                  */
/* ============================================ */

.al-testing-card-title {
    padding: 10px 10px 0 10px;
    text-align: center;
}

.al-testing-card-title h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 23.4px;
    letter-spacing: 0px;
    color: var(--color-3, #0F172A);
}

.al-testing-card-text {
    padding: 0 15px 15px 15px;
}

.al-testing-card-text p {
    text-align: center;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-4, #454F5E);
}


@media (prefers-reduced-motion: reduce) {
    .al-testing-card:hover {
        transform: none;
    }
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Tablet - 2 columns */
@media (max-width: 1200px) {
    .quality-assurance-container {
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .al-testing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 1 column */
@media (max-width: 600px) {
    .quality-assurance-container-content-1 {
        width: 100%;
    }

    .quality-assurance-container-content-3 {
        width: 85%;
        margin: 0 auto;
    }

    .al-testing-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .al-testing-card:hover {
        transform: translateY(12px);
    }

    .quality-assurance-container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .quality-assurance-container-content-3 {
        width: 100%;
    }
}

/*---------------- QUALITY ASSURANCE CARD SECTION -------------------*/

/*************************************** QUALITY ASSURANCE & ENGINEERING PAGE ********************************************/


/*************************************** CLOUD TRANSFORMATION PAGE ********************************************/
/*---------------- CLOUD TRANSFORMATION INFO SECTION -------------------*/
.cloud-transformation-section {
    background-color: var(--color-primary);
    margin-bottom: 20px;
}

.cloud-transformation-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cloud-transformation-title-container {
    padding: 30px 0;
    text-align: center;
    width: 540px;
    margin: 0 auto;
}

.cloud-transformation-title-container h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
    font-style: normal;
    text-decoration: none;
    line-height: 39px;
    letter-spacing: 0px;
    color: var(--color-text);
}

.cloud-transformation-content-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cloud-transformation-subtitle-container {
    text-align: center;
}

.cloud-transformation-subtitle-container h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: none;
    text-decoration: none;
    line-height: 40px;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.cloud-transformation-para-container p {
    text-align: center;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white)
}

/*---------------- CLOUD TRANSFORMATION INFO SECTION -------------------*/

/*---------------- CLOUD TRANSFORMATION IMAGE CONTAINER SECTION -------------------*/
.cloud-transformation-section-2 {
    background-color: var(--color-white, #ffffff);
    margin-bottom: 50px;
    padding: 0 20px;
}

.cloud-transformation-section-2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.cloud-transformation-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 50px;
    background-color: var(--color-white, #ffffff);  
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.cloud-transformation-image-container img {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: auto;
    border-radius: 50px;
}

@media (max-width: 600px) {
    .cloud-transformation-title-container {
        width: 100%;
        padding: 30px 20px;
    }
}

/*---------------- CLOUD TRANSFORMATION IMAGE CONTAINER SECTION -------------------*/

/*************************************** CLOUD TRANSFORMATION PAGE ********************************************/

/*************************************** CONSULTING STRATEGY SERVICE PAGE ********************************************/

/*---------------- CONSULTING STRATEGY SERVICE INFO SECTION -------------------*/
/* ============================================ */
/* CARDS GRID                                    */
/* ============================================ */
.al-consulting-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* ============================================ */
/* INDIVIDUAL CARD                               */
/* ============================================ */
.consulting-card {
    background-color: var(--color-white, #ffffff);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;  
    box-shadow: 0px 0px 40px 0px rgba(36, 41.999999999999964, 86, 0.15);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover - PRESS DOWN effect (niche jaana) */
.consulting-card:hover {
    transform: translateY(20px);
}

/* ============================================ */
/* CARD IMAGE                                    */
/* ============================================ */
.consulting-card-image {
    width: 100%;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: #0f172a;
    flex-shrink: 1;
}

.consulting-card-image img {
    width: 100%;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

/* ============================================ */
/* CARD CONTENT                                  */
/* ============================================ */

.consulting-card-title {
    padding: 10px 10px 0 10px;
}

.consulting-card-title h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 23.4px;
    letter-spacing: 0px;
    color: var(--color-3, #0F172A);
}

.consulting-card-text {
    padding: 0 15px 15px 15px;
}

.consulting-card-text p {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-4, #454F5E);
    margin-bottom: 14.4px;
}
@media (prefers-reduced-motion: reduce) {
    .consulting-card:hover {
        transform: none;
    }
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */
@media (max-width: 991px) {
    .al-consulting-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 1 column */
@media (max-width: 600px) {    
    .consulting-card:hover {
        transform: translateY(12px);
    }
    .al-consulting-cards-grid {
        grid-template-columns: 1fr;
    }
}

/*---------------- CONSULTING STRATEGY SERVICE INFO SECTION -------------------*/

/*************************************** CONSULTING STRATEGY SERVICE PAGE ********************************************/


/*************************************** MODERN OPERATION PAGE ********************************************/
/*---------------- MODERN OPERATION INFO CARD SECTION -------------------*/
.modern-opertion-section{
    background-color: var(--color-8);
    padding: 30px 0;
}

.modern-opertion-section-container{
    max-width: 1200px;
    margin: 0 auto;
}

.modern-opertion-info-container{
    padding: 10px;
}

.modern-operation-info-card{
    padding: 10px;
}

.modern-operation-info-card p{
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
}

.modern-operation-grid-card-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    padding: 15px;
}

/* ============================================ */
/* INDIVIDUAL CARD                               */
/* ============================================ */
.modern-operation-grid-card {
    background-color: var(--color-white, #ffffff);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;  
    box-shadow: 0px 0px 40px 0px rgba(36, 41.999999999999964, 86, 0.15);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover - PRESS DOWN effect (niche jaana) */
.modern-operation-grid-card:hover {
    transform: translateY(20px);
}

/* ============================================ */
/* CARD IMAGE                                    */
/* ============================================ */
.modern-operation-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f172a;
    flex-shrink: 1;
}

.modern-operation-card-image img {
    width: 100%;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.4s ease;
}

/* ============================================ */
/* CARD CONTENT                                  */
/* ============================================ */

.modern-operation-card-title {
    margin-top: -10px;
    padding: 10px 10px 30px 10px;
    text-align: center;
}

.modern-operation-card-title h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 23.4px;
    letter-spacing: 0px;
    color: var(--color-3, #0F172A);
    transition: color 0.3s ease;
}

.modern-operation-grid-card:hover .modern-operation-card-title h3 {
    color: var(--color-5, #30AB54);
}

.modern-operation-grid-card:hover img {
    transform: scale(1.05);   
}

@media (prefers-reduced-motion: reduce) {
    .modern-operation-card:hover {
        transform: none;
    }
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */
@media (max-width: 1025px) {
    .modern-operation-grid-card-container{
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .modern-operation-grid-card-container{
        grid-template-columns: repeat(2, 1fr);
        padding: 7px 30px;
    }
}

/* Mobile - 1 column */
@media (max-width: 600px) {    
    .modern-operation-grid-card:hover {
        transform: translateY(12px);
    }
    .modern-operation-grid-card-container{
        grid-template-columns: 1fr;
    }
    .modern-operation-info-card p{
        text-align: center;
    }
}

/*---------------- MODERN OPERATION INFO CARD SECTION -------------------*/

/*************************************** MODERN OPERATION PAGE ********************************************/


/*************************************** DATA ENGINEERING & ANALYTICS PAGE ********************************************/
/*---------------- DATA ENGINEERING & ANALYTICS INFO SECTION -------------------*/
.data-engineering-section{
    background-color: var(--color-primary);
}

.data-engineering-section-container{
    max-width: 1200px;
    margin: 0 auto;
}

.data-engineering-content-container{
    padding: 10px;
    display: flex;
    flex-direction: row;
}

.data-engineeing-info-content{
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.data-info-title-container h2{
    font-family: "Poppins", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 40px;
    letter-spacing: 0px;
    color: var(--color-white);
}

.data-engineeing-info-container p{
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-white);
    margin-bottom: 14.4px;
}

.data-engineeing-image-content{
    padding: 10px;
}

.data-engineeing-image-content img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 600px) {
    .data-engineering-content-container{
        flex-direction: column;
    }
}
/*---------------- DATA ENGINEERING & ANALYTICS GRID CARD SECTION -------------------*/


/*---------------- DATA ENGINEERING & ANALYTICS GRID CARD SECTION -------------------*/
/* ============================================ */
/* DATA SERVICES SECTION                         */
/* ============================================ */
.data-engineering-grid-card-section{
    background-color: var(--color-8, #292728);
    padding-top: 20px;
}
.data-engineering-grid-card-section-container{
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================ */
/* CARDS GRID                                    */
/* ============================================ */
.al-data-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    padding: 15px;
}

/* ============================================ */
/* INDIVIDUAL CARD                               */
/* ============================================ */
.al-data-service-card {
    background: var(--color-white, #ffffff);
    border-radius: 5px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid transparent;            
    box-shadow: 0px 0px 40px 0px rgba(36, 41.999999999999964, 86, 0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

/* ============================================ */
/* HOVER - ALL 3 EFFECTS COMBINED                */
/* ============================================ */
/* .al-data-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-5, #30AB54);
    box-shadow: 0 12px 30px rgba(48, 171, 84, 0.25);
} */


.al-data-service-card:hover {
    /* Effect 1: Card upar lift */
    transform: translateY(-8px);

    /* Effect 2: Background green */
    background-color: var(--color-5, #30AB54);
    border: 2px solid var(--color-5, #30AB54);

    /* Effect 3: Shadow glow */
    box-shadow: 0 12px 30px rgba(48, 171, 84, 0.35);
}

/* Icon - white + scale bounce */
.al-data-service-card:hover .al-data-service-icon {
    transform: scale(1.15);
    /* Icon color to WHITE */
    filter: brightness(0) invert(1);
}

/* Title text - white on hover */
.al-data-service-card:hover .al-data-service-title h3 {
    color: var(--color-white, #ffffff);
}

/* Description text - white on hover */
.al-data-service-card:hover .al-data-service-desc p {
    color: var(--color-white, #ffffff);
}

/* Details text - white on hover */
.al-data-service-card:hover .al-data-service-details p {
    color: var(--color-white, #ffffff);
}

/* ============================================ */
/* CARD ICON                                     */
/* ============================================ */
.al-data-service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-3, #0F172A);              
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                color 0.4s ease,
                filter 0.4s ease;
}

.al-data-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Effect 3: Icon bounce/scale on card hover */
/* .al-data-service-card:hover .al-data-service-icon {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%) invert(54%) sepia(74%) saturate(456%) hue-rotate(91deg) brightness(91%) contrast(87%);
} */

/* ============================================ */
/* CARD TITLE                                    */
/* ============================================ */
.al-data-service-title h3{
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    line-height: 23.4px;
    letter-spacing: 0px;
    color: var(--color-3, #0F172A);
}

/* ============================================ */
/* CARD DESCRIPTION (Bold)                       */
/* ============================================ */
.al-data-service-desc p{
    text-align: start;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-9, #222222);
    margin-bottom: 25.6px;
}

/* ============================================ */
/* CARD DETAILS (Gray text)                      */
/* ============================================ */
.al-data-service-details p{
    text-align: start;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    text-decoration: none;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--color-4, #454F5E);
   margin-bottom: 25.6px;                        
}

.al-data-service-icon1 img{
    display: none;
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */

/* Tablet - 2 columns */
@media (max-width: 991px) {
    .al-data-services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 5px 30px;
    }
}

/* Mobile - 1 column */
@media (max-width: 650px) {
    .al-data-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .al-data-service-icon {
        width: 46px;
        height: 46px;
    }

    /* Lighter hover on mobile */
    .al-data-service-card:hover {
        transform: translateY(-4px);
    }

    .al-data-service-card:hover .al-data-service-icon {
        transform: scale(1.1);
    }
}

/*---------------- DATA ENGINEERING & ANALYTICS INFO SECTION -------------------*/

/*************************************** DATA ENGINEERING & ANALYTICS PAGE ********************************************/