/********** Template CSS **********/
:root {
    --primary: #2124B1;
    --secondary: #4777F5;
    --light: #F7FAFF;
    --dark: #1D1D27;
}
/* =========================
   GLOBAL FONT
========================= */

body{

    font-family: 'Outfit', sans-serif;

    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;
}


/* =========================
   NAVBAR
========================= */
.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: 82px;
}

.logo-blue {
    max-height: 58px;
    width: auto;
    object-fit: contain;
}

.navbar-collapse {
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.navbar-light .navbar-nav .nav-link {
    padding: 12px 22px !important;
    margin: 0 !important;
    border-radius: 16px;
    color: #1f2b4d !important;
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover {
    background: #4777f5;
    color: #ffffff !important;
}

@media(max-width:991px){
    .navbar{
        height: auto;
        min-height: 78px;
    }

    .navbar-collapse{
        background: #ffffff;
        margin-top: 12px;
        padding: 15px;
        border-radius: 18px;
    }

    .navbar-nav{
        gap: 8px;
    }

    .navbar-light .navbar-nav .nav-link{
        width: 100%;
        text-align: center;
    }
}

.navbar-light .navbar-nav .nav-link{

    font-family: 'Outfit', sans-serif;

    font-size: 17px;

    font-weight: 600;

    letter-spacing: 0.3px;
}


/* =========================
   SMALL TITLE
========================= */

.ami-small-title{

    font-family: 'Outfit', sans-serif;

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #4777f5;
}


/* =========================
   HERO TITLE
========================= */

.ami-hero-title{

    font-family: 'Outfit', sans-serif;

    font-size: 76px;

    font-weight: 900;

    line-height: 1.08;

    letter-spacing: -2px;

    color: #1f2b4d;
}


/* Typing Text */

.typing-text{

    font-weight: 800;

    color: #4777f5;
}


/* =========================
   HERO DESCRIPTION
========================= */

.ami-hero-text{

    font-family: 'Outfit', sans-serif;

    font-size: 21px;

    font-weight: 400;

    line-height: 1.9;

    color: #5f6b82;
}


/* =========================
   BUTTON
========================= */

.ami-hero-btn{

    font-family: 'Outfit', sans-serif;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 0.4px;
}


/* =========================
   SECTION TITLES
========================= */

.section-title h2{

    font-family: 'Outfit', sans-serif;

    font-size: 52px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -1px;

    color: #1f2b4d;
}


.section-title h6{

    font-family: 'Outfit', sans-serif;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================
   CARD TITLES
========================= */

.feature-box h5,
.service-item h5,
.stage-card h4,
.why-box h5{

    font-family: 'Outfit', sans-serif;

    font-size: 22px;

    font-weight: 800;

    letter-spacing: -0.3px;

    color: #24324a;
}


/* =========================
   PARAGRAPHS
========================= */

.feature-box p,
.service-item p,
.stage-card p,
.why-box p{

    font-family: 'Outfit', sans-serif;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.8;

    color: #666;
}


/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .ami-hero-title{

        font-size: 48px;

        letter-spacing: -1px;
    }

    .section-title h2{

        font-size: 38px;
    }

}


@media(max-width:576px){

    .ami-hero-title{

        font-size: 36px;

        line-height: 1.15;
    }

    .section-title h2{

        font-size: 30px;
    }

    .ami-hero-text{

        font-size: 16px;
    }

}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

/*** Navbar ***/
/* =========================
   NAVBAR
========================= */

/* =========================
   NAVBAR WRAPPER
========================= */

.nav-wrapper{
    background:#ffffff;
    box-shadow:0 2px 18px rgba(0,0,0,0.05);
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition:0.4s ease;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    min-height:78px;
    padding:0 40px !important;
    display:flex;
    align-items:center;
}

/* =========================
   LOGO
========================= */

.navbar-brand{
    display:flex;
    align-items:center;
    padding:0;
    margin:0;
}

.navbar-brand img{
    height:48px;
    width:auto;
    object-fit:contain;
}

/* =========================
   MENU
========================= */

.navbar-collapse{
    justify-content:center;
}

.navbar-nav{
    display:flex;
    align-items:center;
    gap:14px;
}

/* =========================
   NAV LINKS
========================= */

.navbar-light .navbar-nav .nav-link{
    position:relative;
    height:48px;
    padding:0 26px !important;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;

    color:#2f3b52 !important;

    font-size:17px;
    font-weight:700;

    transition:0.4s ease;

    overflow:hidden;
}

/* Hover */

.navbar-light .navbar-nav .nav-link:hover{
    background:rgba(71,119,245,0.10);
    color:#4777f5 !important;
    transform:translateY(-2px);
}

/* Active */

.navbar-light .navbar-nav .nav-link.active{
    color:#4777f5 !important;
    background:transparent;
}

.navbar-light .navbar-nav .nav-link:hover{
    color:#4777f5 !important;
    background:transparent;
}

/* Glow Effect */



/* =========================
   MOBILE NAVBAR
========================= */

@media(max-width:991px){

    .navbar{
        min-height:74px;
        padding:10px 18px !important;
    }

    .navbar-brand img{
        height:42px;
    }

    .navbar-toggler{
        border:2px solid #e5e7eb;
        border-radius:14px;
        padding:7px 11px;
        background:#ffffff;
        box-shadow:none !important;
        margin-left:auto;
    }

    .navbar-toggler:focus{
        box-shadow:none !important;
    }

    .navbar-collapse{
        background:#ffffff;
        margin-top:14px;
        padding:18px;
        border-radius:24px;
        box-shadow:0 15px 40px rgba(0,0,0,0.08);
        width:100%;
    }

    .navbar-nav{
        width:100%;
        gap:10px;
    }

    .navbar-light .navbar-nav .nav-link{
        width:100%;
        height:50px;
        padding:0 16px !important;
        font-size:16px;
        text-align:center;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:576px){

    .nav-wrapper,
    .navbar{
        padding-left:14px !important;
        padding-right:14px !important;
    }

    .navbar{
        min-height:70px;
    }

    .navbar-brand img{
        height:38px;
    }

    .navbar-collapse{
        padding:16px;
        margin-top:12px;
        border-radius:22px;
    }

    .navbar-light .navbar-nav .nav-link{
        height:46px;
        font-size:15px;
        border-radius:14px;
    }
}


/*** Hero Header ***/
/*** Hero Header ***/
.hero-header {
    background:
        url(../img/bg-dot.png),
        url(../img/bg-dot.png),
        url(../img/bg-round.png),
        url(../img/bg-tree.png),
        url(../img/bg-bottom-hero.png),
        linear-gradient(135deg, #2323b8, #3434d8);
    background-position:
        10px 10px,
        bottom 190px right 10px,
        left 55% top -1px,
        left 45% bottom -1px,
        center bottom -1px,
        center;
    background-repeat: no-repeat;
    background-size:
        auto,
        auto,
        auto,
        auto,
        100% auto,
        cover;
    overflow: hidden;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.25;
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
}

.hero-img {
    width: 430px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-img {
        width: 300px;
        margin-top: 35px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-img {
        width: 260px;
    }
}
/* =========================
   AMI HUB FEATURE SERVICES
========================= */

.ami-feature-services{
    background: #f8f9ff;
    overflow: hidden;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}


/* =========================
   SUBTITLE
========================= */

.services-feature-subtitle{
    max-width: 650px;
    margin: 12px auto 0;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}


/* =========================
   GRID
========================= */

.ami-feature-grid{
    display: grid;
    grid-template-columns: 1fr 520px 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}


/* =========================
   LEFT & RIGHT COLUMNS
========================= */

.feature-column{
    height: 700px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


/* =========================
   FEATURE CARD
========================= */

.feature-box{
    background: #ffffff;

    border-radius: 24px;

    padding: 22px 24px;

    height: 165px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border: 1px solid #eeeeee;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.04);

    transition: 0.4s;
}


/* Hover */

.feature-box:hover{

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.08);
}


/* =========================
   ICON
========================= */

.feature-icon{

    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}


/* Real Icon */

.feature-icon img{

    width: 54px;
    height: 54px;

    object-fit: contain;

    transition: .4s;

    filter:
        drop-shadow(0 10px 18px rgba(0,0,0,0.10));
}


/* Hover Animation */

.feature-box:hover .feature-icon img{

    transform: translateY(-5px) scale(1.08);
}


/* =========================
   TEXT
========================= */

.feature-box h5{

    font-size: 19px;

    font-weight: 800;

    color: #24324a;

    margin-bottom: 8px;

    line-height: 1.4;
}


.feature-box p{

    font-size: 14px;

    color: #666;

    line-height: 1.6;

    margin: 0;
}


/* =========================
   CENTER IMAGE
========================= */

.feature-center{

    height: 700px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* Center Image */

.feature-center img{

    width: 100%;

    max-width: 420px;

    height: 700px;

    object-fit: contain;

    animation: floatImage 4s ease-in-out infinite;
}


/* =========================
   FLOAT ANIMATION
========================= */

@keyframes floatImage{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-14px);
    }

    100%{
        transform: translateY(0px);
    }

}


/* =========================
   LARGE LAPTOP
========================= */

@media(max-width:1400px){

    .ami-feature-grid{

        grid-template-columns: 1fr 420px 1fr;

        gap: 30px;
    }

    .feature-column{

        height: 650px;
    }

    .feature-center{

        height: 650px;
    }

    .feature-center img{

        max-width: 400px;

        height: 650px;
    }

    .feature-box{

        height: 150px;
    }

}


/* =========================
   TABLET
========================= */

@media(max-width:1200px){

    .ami-feature-grid{

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .feature-center{

        order: -1;

        height: auto;
    }

    .feature-center img{

        max-width: 380px;

        height: auto;

        margin-bottom: 10px;
    }

    .feature-column{

        height: auto;

        gap: 25px;
    }

    .feature-box{

        height: auto;

        min-height: 160px;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .ami-feature-services{

        padding-top: 60px;

        padding-bottom: 60px;
    }

    .feature-center img{

        max-width: 300px;
    }

    .feature-box{

        padding: 22px 20px;

        border-radius: 22px;

        min-height: auto;
    }

    .feature-box h5{

        font-size: 18px;
    }

    .feature-box p{

        font-size: 14px;
    }

    .feature-icon img{

        width: 50px;
        height: 50px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width:576px){

    .ami-feature-services{

        padding-left: 10px;

        padding-right: 10px;
    }

    .feature-center img{

        max-width: 260px;
    }

}
/*** Project Portfolio ***/
.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: .5s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}


/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* why choose us  *
/* =========================
   WHY CHOOSE US
========================= */

/* =========================
   WHY CHOOSE US
========================= */

.why-choose-section{
    background: #f8f9ff;
}


/* Floating Image */

.why-img{
    animation: floatImage 4s ease-in-out infinite;
}


/* Why Box */

.why-box{

    background: #ffffff;

    padding: 25px;

    border-radius: 20px;

    box-shadow:
        0 5px 20px rgba(0,0,0,0.05);

    transition: 0.4s;
}


/* Hover */

.why-box:hover{
    transform: translateY(-8px);
}


/* =========================
   WHY ICON
========================= */

.why-icon{

    width: 75px;
    height: 75px;
    min-width: 75px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Flat Real Icon */

.why-icon img{

    width: 58px;
    height: 58px;

    object-fit: contain;

    transition: 0.4s;
}


/* Hover */

.why-box:hover .why-icon img{
    transform: translateY(-6px) scale(1.08);
}


/* =========================
   TITLE
========================= */

.why-box h5{

    font-weight: 700;

    margin-bottom: 10px;
}


/* =========================
   TEXT
========================= */

.why-box p{

    color: #666;

    line-height: 1.7;
}


/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .why-img{
        margin-bottom: 40px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width:576px){

    .why-choose-section{
        padding-left: 10px;
        padding-right: 10px;
    }

    .why-box{
        padding: 20px;
        border-radius: 18px;
    }

    .why-icon{

        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .why-icon img{

        width: 46px;
        height: 46px;
    }

    .why-box h5{
        font-size: 18px;
    }

    .why-box p{
        font-size: 14px;
    }

}

/* production stage starts  */

/* =========================
   PRODUCT STAGES SECTION
========================= */

.product-stage-section{
    background: linear-gradient(180deg,#f8f9ff,#ffffff);
}


/* Subtitle */

.stage-subtitle{
    max-width: 700px;
    margin: 15px auto 0;
    color: #666;
    line-height: 1.8;
    font-size: 17px;
}


/* Grid */

.stage-wrapper{

    display: grid;

    grid-template-columns: repeat(5,1fr);

    gap: 60px 30px;

    margin-top: 60px;
}


/* Card */

.stage-card{

    text-align: center;

    transition: 0.4s;
}


/* Hover */

.stage-card:hover{
    transform: translateY(-8px);
}


/* Icon */

.stage-icon{

    width: 85px;
    height: 85px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Image */

.stage-icon img{

    width: 58px;
    height: 58px;

    object-fit: contain;

    transition: 0.4s;
}


/* Hover */

.stage-card:hover .stage-icon img{
    transform: scale(1.1);
}


/* Title */

.stage-card h4{

    font-size: 23px;
    font-weight: 700;

    color: #2f3b4f;

    line-height: 1.4;

    margin-bottom: 0;
}


/* =========================
   TABLET
========================= */

@media(max-width:1200px){

    .stage-wrapper{
        grid-template-columns: repeat(3,1fr);
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .stage-wrapper{

        grid-template-columns: repeat(2,1fr);

        gap: 45px 20px;
    }

    .stage-card h4{
        font-size: 19px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width:576px){

    .product-stage-section{
        padding-left: 10px;
        padding-right: 10px;
    }

    .stage-wrapper{

        grid-template-columns: repeat(2,1fr);

        gap: 35px 15px;
    }

    .stage-icon{

        width: 70px;
        height: 70px;

        margin-bottom: 15px;
    }

    .stage-icon img{

        width: 48px;
        height: 48px;
    }

    .stage-card h4{

        font-size: 15px;

        line-height: 1.5;
    }

    .stage-subtitle{

        font-size: 15px;

        padding: 0 10px;
    }

}

/* tech stack  */

/* =========================
   TECHNOLOGY STACKS
========================= */

.tech-stack-section{
    background:
        linear-gradient(180deg,#ffffff,#f7f9ff);
    position: relative;
    overflow: hidden;
}


/* Subtitle */

.tech-subtitle{
    max-width: 700px;
    margin: 15px auto 0;
    color: #666;
    line-height: 1.8;
    font-size: 17px;
}


/* Tech Card */

.tech-card{

    position: relative;

    background: #ffffff;

    border-radius: 28px;

    padding: 35px 20px;

    text-align: center;

    overflow: hidden;

    transition: 0.4s;

    height: 100%;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);
}


/* Hover */

.tech-card:hover{
    transform: translateY(-10px);
}


/* Top Glow */

.tech-card::before{

    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    background: rgba(71,119,245,0.08);

    border-radius: 50%;

    top: -50px;
    right: -50px;
}


/* Icon */

.tech-card img{

    width: 75px;
    height: 75px;

    object-fit: contain;

    margin-bottom: 20px;

    transition: 0.4s;
}


/* Hover Rotate */

.tech-card:hover img{
    transform: scale(1.1) rotate(5deg);
}


/* Title */

.tech-card h5{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}


/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .tech-card{
        padding: 30px 18px;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:576px){

    .tech-stack-section{
        padding-left: 10px;
        padding-right: 10px;
    }

    .tech-card{
        border-radius: 22px;
        padding: 25px 15px;
    }

    .tech-card img{
        width: 60px;
        height: 60px;
    }

    .tech-card h5{
        font-size: 17px;
    }

    .tech-subtitle{
        font-size: 15px;
        padding: 0 10px;
    }

}

/* stest  */
/* =========================
   AMI HUB STATS SECTION
========================= */

.stats-section{
    background: #ffffff;
    overflow: hidden;
}

.stats-logo{
    width: 58px;
    height: auto;
    margin-bottom: 25px;
    animation: floatImage 4s ease-in-out infinite;
}

.stats-title{
    max-width: 850px;
    margin: auto;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.35;
    color: #2f3b4f;
}

.stats-box{
    padding: 20px 10px;
    transition: 0.4s;
}

.stats-box:hover{
    transform: translateY(-8px);
}

.stats-box h3{
    font-size: 58px;
    font-weight: 800;
    color: #4777f5;
    margin-bottom: 8px;
}

.stats-box p{
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 0;
}

/* Mobile */
@media(max-width:991px){

    .stats-title{
        font-size: 34px;
    }

    .stats-box h3{
        font-size: 44px;
    }

}

@media(max-width:576px){

    .stats-section{
        padding-left: 10px;
        padding-right: 10px;
    }

    .stats-logo{
        width: 48px;
        margin-bottom: 18px;
    }

    .stats-title{
        font-size: 26px;
        line-height: 1.45;
    }

    .stats-box h3{
        font-size: 36px;
    }

    .stats-box p{
        font-size: 14px;
    }

}

/* about us  */

/* =========================
   ABOUT SECTION
========================= */

.ami-about-section{
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: transparent;
}


/* REMOVE OLD GLOW */
.about-glow{
    display: none;
}


/* =========================
   BADGE
========================= */

.about-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(47,71,255,0.08);
    color: #2f47ff;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 22px;
}

.about-badge span{
    width: 10px;
    height: 10px;
    background: #2f47ff;
    border-radius: 50%;
}


/* =========================
   TITLE
========================= */

.about-title{
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #101828;
    margin-bottom: 20px;
    max-width: 700px;
}

.about-title span{
    background: linear-gradient(90deg,#2f47ff,#00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================
   TEXT
========================= */

.about-text{
    font-size: 17px;
    line-height: 1.9;
    color: #667085;
    max-width: 600px;
    margin-bottom: 35px;
}


/* =========================
   FEATURES
========================= */

.about-features{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.feature-card{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.feature-card:hover{
    transform: none;
    box-shadow: none;
}


/* REMOVE BLUE BOX */
.feature-icon{
    min-width: auto;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i{
    font-size: 24px;
    color: #2f47ff;
}


/* TEXT */
.feature-card h5{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #111827;
}

.feature-card p{
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}


/* =========================
   BUTTONS
========================= */

.about-buttons{
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.about-btn{
    padding: 15px 34px;
    border-radius: 60px;
    background: linear-gradient(90deg,#2f47ff,#00c6ff);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s ease;
    border: none;
}

.about-btn:hover{
    color: #fff;
    transform: translateY(-3px);
}


/* =========================
   SOCIAL ICONS
========================= */

.social-links{
    display: flex;
    gap: 12px;
}

.social-links a{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(47,71,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f47ff;
    background: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.4s ease;
}

.social-links a:hover{
    background: #2f47ff;
    color: #fff;
    transform: translateY(-5px);
}


/* =========================
   IMAGE
========================= */

.about-image-wrapper{
    position: relative;
    text-align: center;
}

.main-about-image{
    max-width: 100%;
    animation: floatImage 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}


/* REMOVE FLOATING CARDS */
.floating-card{
    display: none;
}


/* =========================
   ANIMATION
========================= */

@keyframes floatImage{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-14px);
    }
    100%{
        transform: translateY(0px);
    }
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .about-title{
        font-size: 40px;
    }

    .about-features{
        grid-template-columns: 1fr;
    }

}

@media(max-width:576px){

    .ami-about-section{
        padding: 80px 0;
    }

    .about-title{
        font-size: 31px;
    }

    .about-text{
        font-size: 15px;
    }

    .feature-card h5{
        font-size: 16px;
    }

}

/* =========================
   TABLET RESPONSIVE
========================= */

@media (max-width: 991px){

    .ami-about-section{
        padding: 90px 28px;
    }

    .about-title{
        font-size: 40px;
        line-height: 1.3;
    }

    .about-text{
        font-size: 16px;
        line-height: 1.8;
        max-width: 100%;
    }

    .about-features{
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .feature-card{
        gap: 12px;
    }

    .feature-card h5{
        font-size: 16px;
    }

    .feature-card p{
        font-size: 13px;
    }

    .about-buttons{
        gap: 18px;
    }

    .about-btn{
        padding: 14px 30px;
        font-size: 15px;
    }

    .social-links a{
        width: 46px;
        height: 46px;
        font-size: 17px;
    }

    .about-image-wrapper{
        margin-top: 40px;
    }

    .main-about-image{
        max-width: 85%;
    }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 767px){

    .ami-about-section{
        padding: 75px 18px;
    }

    .about-badge{
        font-size: 12px;
        padding: 8px 15px;
    }

    .about-title{
        font-size: 30px;
        line-height: 1.35;
        margin-bottom: 18px;
    }

    .about-text{
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 28px;
    }

    .about-features{
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .feature-card{
        align-items: flex-start;
        gap: 14px;
    }

    .feature-icon i{
        font-size: 22px;
    }

    .feature-card h5{
        font-size: 16px;
        margin-bottom: 3px;
    }

    .feature-card p{
        font-size: 13px;
        line-height: 1.6;
    }

    .about-buttons{
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .about-btn{
        width: 100%;
        text-align: center;
        padding: 15px 24px;
        font-size: 15px;
    }

    .social-links{
        gap: 10px;
    }

    .social-links a{
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .about-image-wrapper{
        margin-top: 35px;
    }

    .main-about-image{
        max-width: 100%;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px){

    .ami-about-section{
        padding: 65px 14px;
    }

    .about-title{
        font-size: 26px;
    }

    .about-text{
        font-size: 14px;
    }

    .about-btn{
        padding: 14px 20px;
        font-size: 14px;
    }

    .social-links a{
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

}

/* =========================
   AMI HUB HEADER
========================= */
/* =========================
   AMI HUB HERO SECTION
========================= */

.ami-hero-section{

    background: transparent;

    padding: 130px 0 80px;

    overflow: hidden;

    position: relative;
}


/* =========================
   SMALL TITLE
========================= */

.ami-small-title{

    color: #4777f5;

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 20px;
}


/* =========================
   HERO TITLE
========================= */

.ami-hero-title{

    min-height: 170px;

    font-size: 72px;

    font-weight: 800;

    line-height: 1.15;

    color: #1f2b4d;

    margin-bottom: 30px;

    max-width: 720px;
}


/* Static Text */

.typing-static{

    color: #1f2b4d;
}


/* Typing Text */
.typing-text{

    display: inline;

    color: #4777f5;

    position: relative;
}


/* Cursor */

.typing-text::after{

    content: "|";

    position: relative;

    margin-left: 4px;

    color: #4777f5;

    animation: blinkCursor .7s infinite;
}


/* Blink */

@keyframes blinkCursor{

    0%{
        opacity: 1;
    }

    50%{
        opacity: 0;
    }

    100%{
        opacity: 1;
    }

}


/* Cursor Blink */

@keyframes blinkCursor{

    0%{
        border-color: #4777f5;
    }

    50%{
        border-color: transparent;
    }

    100%{
        border-color: #4777f5;
    }

}


/* =========================
   HERO DESCRIPTION
========================= */

.ami-hero-text{

    max-width: 620px;

    font-size: 21px;

    line-height: 1.9;

    color: #5f6b82;

    margin-bottom: 40px;
}


/* =========================
   BUTTON
========================= */

.ami-hero-btn{

    background: linear-gradient(135deg,#4777f5,#6d8cff);

    color: #ffffff;

    border-radius: 50px;

    padding: 18px 42px;

    font-size: 18px;

    font-weight: 700;

    border: none;

    transition: 0.4s;
}


/* Hover */

.ami-hero-btn:hover{

    transform: translateY(-6px);

    box-shadow:
        0 18px 35px rgba(71,119,245,0.35);

    color: #ffffff;
}


/* =========================
   HERO IMAGE
========================= */

.ami-hero-image{

    background: transparent;

    border-radius: 28px;

    padding: 0;

    box-shadow: none;

    text-align: center;

    animation: floatImage 4s ease-in-out infinite;
}


/* Image */

.ami-hero-image img{

    width: 100%;

    max-width: 500px;

    object-fit: contain;
}


/* =========================
   FLOAT ANIMATION
========================= */

@keyframes floatImage{

    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-14px);
    }

    100%{
        transform: translateY(0);
    }

}


/* =========================
   COUNTER SECTION
========================= */

.ami-hero-counter{

    text-align: center;

    margin-top: 90px;
}


/* Counter Number */

.ami-hero-counter h2{

    font-size: 78px;

    font-weight: 800;

    color: #4777f5;

    margin-bottom: 12px;
}


/* Counter Text */

.ami-hero-counter h3{

    font-size: 38px;

    font-weight: 800;

    color: #1f2b4d;

    line-height: 1.3;
}


/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .ami-hero-section{

        padding: 110px 0 60px;

        text-align: center;
    }

    .ami-small-title{

        font-size: 15px;
    }

    .ami-hero-title{

        font-size: 46px;

        min-height: 120px;
    }

    .typing-text{

        min-height: 55px;
    }

    .ami-hero-text{

        margin-left: auto;

        margin-right: auto;

        font-size: 17px;
    }

    .ami-hero-image{

        margin-top: 25px;
    }

    .ami-hero-image img{

        max-width: 380px;
    }

    .ami-hero-counter{

        margin-top: 70px;
    }

    .ami-hero-counter h2{

        font-size: 56px;
    }

    .ami-hero-counter h3{

        font-size: 28px;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:576px){

    .ami-hero-section{

        padding-left: 10px;

        padding-right: 10px;
    }

    .ami-small-title{

        font-size: 14px;

        margin-bottom: 15px;
    }

    .ami-hero-title{

        font-size: 34px;

        min-height: 95px;

        line-height: 1.2;
    }

    .typing-text{

        min-height: 42px;

        border-right: 4px solid #4777f5;
    }

    .ami-hero-text{

        font-size: 15px;

        line-height: 1.8;
    }

    .ami-hero-btn{

        padding: 15px 32px;

        font-size: 16px;
    }

    .ami-hero-image img{

        max-width: 270px;
    }

    .ami-hero-counter{

        margin-top: 55px;
    }

    .ami-hero-counter h2{

        font-size: 44px;
    }

    .ami-hero-counter h3{

        font-size: 22px;
    }

}

/* =========================
   PRICING SECTION
========================= */

.ami-pricing-section{
    background: #f8f9ff;
    overflow: hidden;
}


/* Titles */

.pricing-small-title{
    color: #4777f5;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pricing-main-title{
    font-size: 46px;
    font-weight: 800;
    color: #24324a;
    margin-bottom: 18px;
}

.pricing-subtitle{
    max-width: 680px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 17px;
}


/* =========================
   CARD
========================= */

.pricing-card{

    position: relative;

    background: #ffffff;

    border-radius: 30px;

    padding: 45px 35px;

    border: 1px solid #eeeeee;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.05);

    transition: .4s;

    height: 100%;
}


.pricing-card:hover{

    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(0,0,0,0.10);
}


/* Popular */

.pricing-popular{

    background:
        linear-gradient(
            180deg,
            #4777f5,
            #5d87ff
        );

    color: #ffffff;

    transform: scale(1.03);
}


.popular-badge{

    position: absolute;

    top: -14px;
    right: 30px;

    background: #24324a;

    color: #ffffff;

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;
}


/* Tag */

.pricing-tag{

    display: inline-block;

    background: rgba(71,119,245,0.10);

    color: #4777f5;

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 22px;
}

.pricing-popular .pricing-tag{

    background: rgba(255,255,255,0.16);

    color: #ffffff;
}


/* Heading */

.pricing-card h3{

    font-size: 30px;

    font-weight: 800;

    margin-bottom: 18px;
}


/* Price */

.pricing-price{

    font-size: 54px;

    font-weight: 900;

    line-height: 1;

    margin-bottom: 22px;

    color: #4777f5;
}

.pricing-popular .pricing-price{
    color: #ffffff;
}


/* Text */

.pricing-text{

    color: #666;

    line-height: 1.8;

    margin-bottom: 28px;
}

.pricing-popular .pricing-text{
    color: rgba(255,255,255,0.85);
}


/* List */

.pricing-list{
    padding: 0;
    margin: 0 0 35px;
    list-style: none;
}

.pricing-list li{

    margin-bottom: 16px;

    font-size: 16px;

    color: #444;
}

.pricing-popular .pricing-list li{
    color: #ffffff;
}


/* Button */

.pricing-btn{

    background: #4777f5;

    color: #ffffff;

    border-radius: 40px;

    padding: 15px 34px;

    font-weight: 700;

    transition: .4s;
}

.pricing-btn:hover{

    background: #24324a;

    color: #ffffff;

    transform: translateY(-4px);
}

.pricing-popular .pricing-btn{

    background: #ffffff;

    color: #4777f5;
}

.pricing-popular .pricing-btn:hover{

    background: #24324a;

    color: #ffffff;
}


/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .pricing-main-title{
        font-size: 36px;
    }

    .pricing-card{
        padding: 40px 28px;
    }

    .pricing-price{
        font-size: 46px;
    }
}

@media(max-width:576px){

    .ami-pricing-section{
        padding-left: 10px;
        padding-right: 10px;
    }

    .pricing-main-title{
        font-size: 30px;
    }

    .pricing-subtitle{
        font-size: 15px;
    }

    .pricing-card{
        border-radius: 24px;
        padding: 34px 24px;
    }

    .pricing-card h3{
        font-size: 24px;
    }

    .pricing-price{
        font-size: 40px;
    }
}

/* =========================
   TESTIMONIAL SECTION
========================= */

.ami-testimonial-section{
    background: #ffffff;
    overflow: hidden;
}


/* Titles */

.testimonial-small-title{
    color: #4777f5;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.testimonial-main-title{
    font-size: 46px;
    font-weight: 800;
    color: #24324a;
    margin-bottom: 18px;
}

.testimonial-subtitle{
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 17px;
}


/* =========================
   SLIDER
========================= */

.testimonial-slider{
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-track{

    display: flex;

    width: calc(350px * 6);

    animation: scrollTestimonials 30s linear infinite;

    gap: 25px;
}


/* Moving Animation */

@keyframes scrollTestimonials{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(calc(-350px * 3));
    }
}


/* =========================
   CARD
========================= */

.testimonial-card{

    min-width: 350px;

    background: #f8f9ff;

    border-radius: 28px;

    padding: 30px;

    border: 1px solid #eeeeee;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.04);

    transition: .4s;
}


.testimonial-card:hover{

    transform: translateY(-10px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.08);
}


/* Top */

.testimonial-top{

    display: flex;

    align-items: center;

    margin-bottom: 20px;
}


.testimonial-top img{

    width: 68px;

    height: 68px;

    border-radius: 50%;

    object-fit: cover;

    margin-right: 16px;
}


/* Name */

.testimonial-top h5{

    margin: 0;

    font-size: 20px;

    font-weight: 800;

    color: #24324a;
}


.testimonial-top span{

    color: #4777f5;

    font-size: 14px;

    font-weight: 600;
}


/* Text */

.testimonial-card p{

    color: #666;

    line-height: 1.9;

    font-size: 15px;

    margin-bottom: 20px;
}


/* Stars */

.testimonial-stars{

    color: #ffb400;

    font-size: 20px;

    letter-spacing: 2px;
}


/* Pause On Hover */

.testimonial-slider:hover .testimonial-track{
    animation-play-state: paused;
}


/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .testimonial-main-title{
        font-size: 36px;
    }

    .testimonial-card{
        min-width: 300px;
    }

    .testimonial-track{
        width: calc(300px * 6);
    }

    @keyframes scrollTestimonials{

        0%{
            transform: translateX(0);
        }

        100%{
            transform: translateX(calc(-300px * 3));
        }
    }
}


@media(max-width:576px){

    .ami-testimonial-section{
        padding-left: 10px;
        padding-right: 10px;
    }

    .testimonial-main-title{
        font-size: 30px;
    }

    .testimonial-subtitle{
        font-size: 15px;
    }

    .testimonial-card{
        min-width: 260px;
        padding: 24px;
        border-radius: 22px;
    }

    .testimonial-top img{
        width: 58px;
        height: 58px;
    }

    .testimonial-top h5{
        font-size: 18px;
    }
}

/* =========================
   AMI HUB ANIMATED JOURNEY
========================= */

.ami-journey-flow{
  position:relative;
  padding:100px 0;
  background:linear-gradient(180deg,#ffffff 0%,#f5f8ff 100%);
  overflow:hidden;
}

.ami-journey-flow::before{
  content:'';
  position:absolute;
  width:420px;
  height:420px;
  background:rgba(71,111,243,0.10);
  border-radius:50%;
  top:-170px;
  right:-140px;
  filter:blur(35px);
  animation:journeyGlow 6s infinite alternate;
}

.ami-journey-flow::after{
  content:'';
  position:absolute;
  width:260px;
  height:260px;
  background:rgba(127,92,255,0.10);
  border-radius:50%;
  bottom:-100px;
  left:-80px;
  filter:blur(25px);
  animation:journeyGlow 7s infinite alternate-reverse;
}

@keyframes journeyGlow{
  from{
    transform:scale(1) translateY(0);
  }
  to{
    transform:scale(1.15) translateY(25px);
  }
}

.journey-flow-title{
  position:relative;
  z-index:2;
  max-width:760px;
  margin:0 auto 65px;
}

.journey-flow-title span{
  width:62px;
  height:62px;
  margin:0 auto 18px;
  border-radius:20px;
  background:rgba(71,111,243,0.12);
  color:#476ff3;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  animation:iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-10px);
  }
}

.journey-flow-title h6{
  color:#476ff3;
  font-size:17px;
  font-weight:800;
  margin-bottom:12px;
}

.journey-flow-title h2{
  color:#2f3b52;
  font-size:50px;
  line-height:1.25;
  font-weight:800;
  margin-bottom:18px;
}

.journey-flow-title p{
  color:#64748b;
  font-size:18px;
  line-height:1.8;
  margin:0;
}

.journey-flow-wrapper{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.journey-flow-card{
  position:relative;
  background:#ffffff;
  padding:42px 30px;
  border-radius:30px;
  border:1px solid rgba(71,111,243,0.10);
  box-shadow:0 20px 55px rgba(47,59,82,0.08);
  transition:0.45s ease;
  overflow:hidden;
  animation:cardFloat 4s ease-in-out infinite;
}

.journey-flow-card:nth-child(2){
  animation-delay:0.4s;
  margin-top:35px;
}

.journey-flow-card:nth-child(3){
  animation-delay:0.8s;
}

@keyframes cardFloat{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-14px);
  }
}

.journey-flow-card::before{
  content:'';
  position:absolute;
  width:170px;
  height:170px;
  background:rgba(71,111,243,0.07);
  border-radius:50%;
  right:-70px;
  top:-70px;
}

.journey-number{
  position:absolute;
  top:22px;
  right:28px;
  font-size:48px;
  font-weight:900;
  color:rgba(71,111,243,0.10);
}

.journey-flow-icon{
  width:76px;
  height:76px;
  border-radius:24px;
  background:linear-gradient(135deg,#476ff3,#7f5cff);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin-bottom:25px;
  box-shadow:0 14px 32px rgba(71,111,243,0.28);
}

.journey-flow-card h4{
  color:#2f3b52;
  font-size:25px;
  font-weight:800;
  margin-bottom:15px;
}

.journey-flow-card p{
  color:#64748b;
  font-size:16px;
  line-height:1.8;
  margin:0;
}

.journey-flow-card:hover{
  transform:translateY(-18px) scale(1.02);
  box-shadow:0 30px 75px rgba(71,111,243,0.18);
}

.active-card{
  background:linear-gradient(135deg,#476ff3,#7f5cff);
}

.active-card h4,
.active-card p{
  color:#ffffff;
}

.active-card .journey-number{
  color:rgba(255,255,255,0.16);
}

.active-card .journey-flow-icon{
  background:#ffffff;
  color:#476ff3;
}

/* Tablet */
@media(max-width:991px){
  .journey-flow-wrapper{
    grid-template-columns:1fr;
  }

  .journey-flow-card:nth-child(2){
    margin-top:0;
  }

  .journey-flow-title h2{
    font-size:40px;
  }
}

/* Mobile */
@media(max-width:576px){
  .ami-journey-flow{
    padding:70px 0;
  }

  .journey-flow-title{
    margin-bottom:40px;
  }

  .journey-flow-title h2{
    font-size:30px;
  }

  .journey-flow-title p{
    font-size:15px;
  }

  .journey-flow-card{
    padding:34px 24px;
    border-radius:24px;
  }

  .journey-flow-card h4{
    font-size:22px;
  }
}

/* =========================
   OUR PROCESS SECTION
========================= */

.ami-process-section{
  position:relative;
  padding:100px 0;
  background:
  linear-gradient(
    180deg,
    #ffffff 0%,
    #f6f8ff 100%
  );
  overflow:hidden;
}

/* Glow */

.ami-process-section::before{
  content:'';
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(71,111,243,0.08);
  border-radius:50%;
  top:-180px;
  right:-100px;
  filter:blur(35px);
}

/* Title */

.process-title{
  position:relative;
  z-index:2;
  max-width:760px;
  margin:auto;
  margin-bottom:70px;
}

.process-icon{
  width:65px;
  height:65px;
  margin:auto;
  margin-bottom:22px;
  border-radius:20px;
  background:rgba(71,111,243,0.10);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#476ff3;
  font-size:28px;
}

.process-title h6{
  color:#476ff3;
  font-size:17px;
  font-weight:800;
  margin-bottom:14px;
}

.process-title h2{
  color:#2f3b52;
  font-size:50px;
  line-height:1.3;
  font-weight:800;
  margin-bottom:18px;
}

.process-title p{
  color:#64748b;
  font-size:18px;
  line-height:1.8;
}

/* Cards */

.process-card{
  position:relative;
  background:#fff;
  padding:45px 28px;
  border-radius:28px;
  overflow:hidden;
  transition:0.4s;
  border:1px solid rgba(71,111,243,0.08);
  box-shadow:0 18px 45px rgba(47,59,82,0.08);
  height:100%;
}

.process-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 70px rgba(71,111,243,0.18);
}

.process-card::before{
  content:'';
  position:absolute;
  width:180px;
  height:180px;
  background:rgba(71,111,243,0.05);
  border-radius:50%;
  top:-80px;
  right:-80px;
}

/* Number */

.process-number{
  position:absolute;
  top:18px;
  right:25px;
  font-size:50px;
  font-weight:900;
  color:rgba(71,111,243,0.08);
}

/* Icon */

.process-card-icon{
  width:78px;
  height:78px;
  border-radius:24px;
  background:
  linear-gradient(
    135deg,
    #476ff3,
    #7f5cff
  );
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:30px;
  margin-bottom:25px;
  box-shadow:0 14px 35px rgba(71,111,243,0.25);
}

/* Text */

.process-card h4{
  color:#2f3b52;
  font-size:26px;
  font-weight:800;
  margin-bottom:15px;
}

.process-card p{
  color:#64748b;
  line-height:1.8;
  margin:0;
}

/* Active Card */

.active-process{
  background:
  linear-gradient(
    135deg,
    #476ff3,
    #7f5cff
  );
}

.active-process h4,
.active-process p{
  color:#fff;
}

.active-process .process-card-icon{
  background:#fff;
  color:#476ff3;
}

.active-process .process-number{
  color:rgba(255,255,255,0.14);
}

/* Tablet */

@media(max-width:991px){

.process-title h2{
  font-size:40px;
}

}

/* Mobile */

@media(max-width:576px){

.ami-process-section{
  padding:70px 0;
}

.process-title{
  margin-bottom:45px;
}

.process-title h2{
  font-size:32px;
}

.process-title p{
  font-size:15px;
}

.process-card{
  padding:35px 24px;
  border-radius:24px;
}

.process-card h4{
  font-size:22px;
}

}
/* =========================
   OUR PROJECTS SECTION
========================= */

.ami-project-section{
  position:relative;
  padding:100px 0;
  background:linear-gradient(180deg,#ffffff 0%,#f5f8ff 100%);
  overflow:hidden;
}

.ami-project-section::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-140px;
  top:-160px;
  background:rgba(71,111,243,0.10);
  border-radius:50%;
  filter:blur(35px);
  animation:projectGlow 6s infinite alternate;
}

@keyframes projectGlow{
  from{transform:scale(1);}
  to{transform:scale(1.15) translateY(25px);}
}

.ami-project-title{
  position:relative;
  z-index:2;
  max-width:760px;
  margin:0 auto 60px;
}

.ami-project-title span{
  width:64px;
  height:64px;
  margin:0 auto 18px;
  border-radius:20px;
  background:rgba(71,111,243,0.12);
  color:#476ff3;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  animation:projectFloat 3s ease-in-out infinite;
}

@keyframes projectFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}

.ami-project-title h6{
  color:#476ff3;
  font-size:17px;
  font-weight:800;
}

.ami-project-title h2{
  color:#2f3b52;
  font-size:50px;
  font-weight:800;
  line-height:1.25;
}

.ami-project-title p{
  color:#64748b;
  font-size:18px;
}

.project-card{
  position:relative;
  display:block;
  height:100%;
  padding:38px 30px;
  border-radius:30px;
  background:#ffffff;
  text-decoration:none;
  border:1px solid rgba(71,111,243,0.10);
  box-shadow:0 18px 45px rgba(47,59,82,0.08);
  overflow:hidden;
  transition:0.4s ease;
  animation:cardUp 4s ease-in-out infinite;
}

.project-card:nth-child(even){
  animation-delay:0.4s;
}

@keyframes cardUp{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-8px);}
}

.project-card::before{
  content:"";
  position:absolute;
  width:170px;
  height:170px;
  right:-70px;
  top:-70px;
  background:rgba(71,111,243,0.07);
  border-radius:50%;
}

.project-card:hover{
  transform:translateY(-15px) scale(1.02);
  box-shadow:0 30px 75px rgba(71,111,243,0.18);
  background:linear-gradient(135deg,#476ff3,#7f5cff);
}

.project-icon{
  width:76px;
  height:76px;
  border-radius:24px;
  background:linear-gradient(135deg,#476ff3,#7f5cff);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin-bottom:24px;
  box-shadow:0 14px 32px rgba(71,111,243,0.28);
}

.project-card h4{
  color:#2f3b52;
  font-size:24px;
  font-weight:800;
  margin-bottom:14px;
}

.project-card p{
  color:#64748b;
  font-size:16px;
  line-height:1.8;
  margin-bottom:22px;
}

.project-card span{
  color:#476ff3;
  font-weight:800;
}

.project-card:hover h4,
.project-card:hover p,
.project-card:hover span{
  color:#ffffff;
}

.project-card:hover .project-icon{
  background:#ffffff;
  color:#476ff3;
}

/* Mobile */
@media(max-width:576px){
  .ami-project-section{
    padding:70px 0;
  }

  .ami-project-title h2{
    font-size:32px;
  }

  .ami-project-title p{
    font-size:15px;
  }

  .project-card{
    padding:32px 24px;
    border-radius:24px;
  }

  .project-card h4{
    font-size:22px;
  }
}
html{
  scroll-behavior:smooth;
}

section,
.container-fluid{
  scroll-margin-top:90px;
}

.navbar-nav .nav-link.active{
    color:#476ff3 !important;
    font-weight:800;
}

.navbar-nav .nav-link.active::after{
    width:100%;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f5f8ff 100%
    );
}

.contact-subtitle{
    color:#64748b;
    max-width:700px;
    margin:auto;
}

.contact-form-box,
.contact-map-box{
    background:#fff;
    padding:35px;
    border-radius:30px;
    height:100%;
    border:1px solid rgba(71,111,243,0.08);
    box-shadow:0 20px 55px rgba(47,59,82,0.08);
}

.contact-form-box .form-control{
    border-radius:18px;
    border:1px solid rgba(71,111,243,0.15);
    box-shadow:none;
}

.contact-form-box .form-control:focus{
    border-color:#476ff3;
}

.contact-btn{
    background:linear-gradient(
        135deg,
        #476ff3,
        #7f5cff
    );
    border:none;
    color:#fff;
    border-radius:18px;
    font-weight:700;
    transition:0.4s;
}

.contact-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

.contact-info{
    margin-bottom:25px;
}

.contact-info-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:22px;
}

.contact-info-item i{
    width:55px;
    height:55px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        #476ff3,
        #7f5cff
    );
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-info-item h5{
    font-weight:700;
    color:#2f3b52;
    margin-bottom:5px;
}

.contact-info-item p{
    margin:0;
    color:#64748b;
}

.map-container{
    overflow:hidden;
    border-radius:25px;
    height:320px;
}

.map-container iframe{
    width:100%;
    height:100%;
}

/* Mobile */

@media(max-width:576px){

.contact-form-box,
.contact-map-box{
    padding:25px;
    border-radius:24px;
}

.map-container{
    height:250px;
}

}
/* =========================
   AMI HUB FOOTER
========================= */

.ami-footer{
    position:relative;
    background:
    linear-gradient(
        135deg,
        #0f172a,
        #1e293b
    );
    padding-top:90px;
    overflow:hidden;
}

.ami-footer::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(71,111,243,0.12);
    border-radius:50%;
    top:-180px;
    right:-120px;
    filter:blur(40px);
}

.footer-brand img{
    height:60px;
    margin-bottom:25px;
}

.footer-brand p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:25px;
}

.footer-social{
    display:flex;
    gap:14px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.08);
    color:#fff;
    text-decoration:none;
    transition:0.4s;
}

.footer-social a:hover{
    background:#476ff3;
    transform:translateY(-5px);
}

.footer-title{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:28px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.footer-links a{
    color:#cbd5e1;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#476ff3;
    padding-left:6px;
}

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
}

.footer-contact-item i{
    width:42px;
    height:42px;
    border-radius:14px;
    background:
    linear-gradient(
        135deg,
        #476ff3,
        #7f5cff
    );
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.footer-contact-item span{
    color:#cbd5e1;
    line-height:1.8;
}

.footer-bottom{
    margin-top:70px;
    border-top:1px solid rgba(255,255,255,0.08);
    padding:25px 0;
}

.footer-bottom p{
    color:#cbd5e1;
    margin:0;
}

.footer-bottom-links{
    display:flex;
    justify-content:end;
    gap:22px;
}

.footer-bottom-links a{
    color:#cbd5e1;
    text-decoration:none;
    transition:0.3s;
}

.footer-bottom-links a:hover{
    color:#476ff3;
}

/* Mobile */

@media(max-width:768px){

.footer-bottom-links{
    justify-content:center;
    margin-top:15px;
}

.footer-title{
    margin-top:15px;
}

.ami-footer{
    padding-top:70px;
}

}