/********** NEW PROJECRT CSS **********/


* {
    margin: 0px;
    padding: 0px;
    
}

:root {
    --font-primary: "Jost", sans-serif;
    --color-dk-navy-blue: #001118;
    --color-lg-blue-gary: #01131a;
    --color-white: #fff;
    --color-black: #000;
    --color-bg: #ffa500;
    --size: 420px;     /* overall widget size */
    --item-size: 60px; /* each item's size */
    --radius: calc((var(--size) - var(--item-size))/2);
    --transition: 700ms cubic-bezier(.22,.9,.32,1);
    

}
.section-body{
    background: linear-gradient(to right, #001118, #06242A);
    
}
.section-body::before {
    content: '';
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-image: url(../images/banner/Spd-icon.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: -1;
    opacity: .1;

}
a,
button {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    background-color: transparent;
    border: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0px;
    padding: 0px;
}




/* =================INDEX-PAGE============ */

/* section-hero-banner */



.hero-banner {
    
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 20px 0px;
    position: relative;
    z-index: 1;
    margin: 60px 0px 0px 0px;
}



/* section-new -project-header */

.new-project-header {
    padding: 20px;
}

.new-project-header-area {
    position: relative;
    height: auto;
}


.logo {
    background-color: var(--color-white);
    border: 5px solid var(--color-white);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50px;
    left: 50%;
    z-index: 99;
    transform: translate(-50%, -50%);
}

.logo a {
    color: var(--color-white);
    font-size: 30px;
    font-weight: 600;
    font-family: var(--font-primary);
    text-transform: uppercase;
}

.hero-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.hero-img-rotate {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

.logo-image {
    position: absolute;
}

.banner-md {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-right {
    max-width: 400px;
    border-radius: 10px;
    margin: 0px auto;
}

.banner-m-header {
    background: linear-gradient(to bottom, #006A78 0%, #00141A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-height: 90px;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.banner-m-header h2{
    color: var(--color-white);
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-primary);
}
.banner-title {
    position: absolute;
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 10px 20px;
    width: 150px;
    text-align: center;
    bottom: -24px;
}

.banner-title h5 {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-primary);

}

.banner-m-content {
    padding: 20px 15px;
    text-align: center;
    background-color: var(--color-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.banner-m-content p {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--font-primary);
    margin: 0px 0px 15px 0px;
}
.banner-m-content li{
    color: var(--color-black);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--font-primary);
    list-style: none;
}

.banner-m-header img {
    width: 70px;
    height: 70px;
}



.mnc {
    animation-name: rotate;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.stage{
      min-width:var(--size);
      height:var(--size);
      position:relative;
      perspective:1000px;
      overflow: hidden;
      margin: 10px auto 30px auto;
      padding: 0px 10px;
      min-height: 490px;
      display: flex;
      align-items: center;
      background-image: url('../../assets/images/banner/spider-we-icon_03.png');
      background-size: cover;
      background-repeat: no-repeat;
      background-size: 420px;
      background-repeat: no-repeat;
      background-position: center center;
    }
    .stage::after{

    }

    /* the ring that will rotate */
    .ring{
      width:100%;height:100%;
      transform: rotate(0deg);
      transition: transform var(--transition);
      transform-origin: center center;

    }

    /* center decorative circle */
    .center{
      position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
      width:70px;height:70px;border-radius:999px;background:linear-gradient(to bottom, #006A78 0%, #00141A 100%);
      display:grid;place-items:center;box-shadow:0 8px 20px rgba(0,0,0,.25);
    }
.center h3{
    font-size: 12px;
    color: var(--color-white);
    font-family: var(--font-primary);
}

    /* each item placed around the circle */
    .item{
      --angle: 0deg; /* overwritten inline for each item */
      position:absolute;left:50%;top:50%;
      width:var(--item-size);height:var(--item-size);
      margin-left:calc(-1*var(--item-size)/2);margin-top:calc(-1*var(--item-size)/2);
      transform: rotate(var(--angle)) translateY(calc(-1*var(--radius))) rotate(calc(-1*var(--angle)));
      transform-origin: center center;
      transition: transform 0s; /* immediate for placement - ring controls rotation */
      display:block;text-decoration:none;
      background:linear-gradient(to bottom, #006A78 0%, #00141A 100%);
      border-radius: 50% 50%;
      color: var(--color-white);
      font-family: var(--font-primary);

    }

    /* visual look for each tile (replace with <img> if you want images) */
    .tile{
      width:100%;height:100%;display:grid;place-items:center;
      box-shadow:0 1px 4px rgba(0,0,0,.14);font-weight:500;
      user-select:none;
      border-radius: 50%;
      border:solid 2px rgba(255,255,255,.2);
      background-color:transparent ;
      font-size: 12px;
      overflow: hidden;
    }

    /* highlight the front item when it is at top (we detect by adding .activeIndex on .ring) */
    .ring[data-active="0"] .item[data-index="0"] .tile,
    .ring[data-active="1"] .item[data-index="1"] .tile,
    .ring[data-active="2"] .item[data-index="2"] .tile,
    .ring[data-active="3"] .item[data-index="3"] .tile,
    .ring[data-active="4"] .item[data-index="4"] .tile,
    .ring[data-active="5"] .item[data-index="5"] .tile,
    .ring[data-active="6"] .item[data-index="6"] .tile,
    .ring[data-active="7"] .item[data-index="7"] .tile{
      transform: translateY(-6px) scale(1.06);
      background:linear-gradient(to bottom, #006A78 0%, #00141A 100%);
      color:#fff;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
      overflow: hidden;
    }

    /* small helper - keep tiles upright on small screens */
    @media (max-width:992px){

      :root{--size:380px;
        --item-size:60px
        }
        .section-body::before{
            display: none;
        }
        .stage{
            min-height: 390px;
            background-size: 355px ;
        }
        .center{
            width:60px;
            height: 60px;
        }
    }
    @media (max-width:767px){

      :root{--size:330px;
        --item-size:50px
        }
        .stage{
            min-height: 350px;
            background-size: 340px;
        }
        .center{
            width:60px;
            height: 60px;
        }
    }
    @media (max-width:520px){
      :root{--size:280px;
        --item-size:45px
    }
    .stage{
            background-size: 310px;
            min-height: 300px;
        }
        .tile{
            font-size: 10px;
        }
    .section-body::before{
        width: 100%;
    }
      .center{
        max-width: 50px;
        max-height: 50px;
      }
    }
      /* auto-rotate the full ring continuously */
    @keyframes autoSpin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .ring.auto-rotate {
      animation: autoSpin 10s linear infinite;
    }