@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "Urbanist", serif;
    scroll-behavior: smooth;
}

main,header,footer{
  font-size: 17px;
}

:root {
    --pc: #0E76B7;
    --sc: #7BAB2D;
    --gradient: linear-gradient(90deg, #0A1E46 0%, #014C71 100%);
    --black: #000;
    --white:#fff;
    --txt-color:#303031;
    --light-white:#ced4da;
    --gradient-col: #242627;
    --fw-2:500;
    --fw-3:600;
    --fw-4:700;
      /* Size */
    --fs-20: 20px;
    --fs-18: 18px;
    --fs-17: 17px;
    --fs-30:30px;
    --transition: 0.3s all;
}


/* heading start */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  line-height: 1.5;
  color: var(--black);
  font-weight: var(--fw-4);
}

    h1,
    .h1 {
    font-size: clamp(1.625rem, 1rem + 1.6667vw, 2.5rem);
    line-height: 1.4;
    }

    .all-page h2,
    .h2 {
    font-size: clamp(1.625rem, 1.3846rem + 0.9615vw, 2.25rem) !important;
    }

    .all-page h3,
    .h3 {
    font-size: clamp(1.5rem, 1.2321rem + 0.7143vw, 1.875rem);
    }

    .all-page h4,
    .h4 {
    font-size: clamp(1.25rem, 0.9821rem + 0.7143vw, 1.625rem);
    }

    .all-page h5,
    .h5 {
    font-size: clamp(1.25rem, 1.1607rem + 0.2381vw, 1.375rem);
    }

    .all-page h6,
    .h6 {
    font-size:18px;
    }
/* heading end */

a {
    transition: var(--transition);
    text-decoration: none;
    color: var(--pc);
}

p {
    color: var(--txt-color);
    font-size: 17px;
    line-height: 1.8;
    font-weight: var(--fw-2);
    letter-spacing: .5px;
}


.text-white{
  --black:var(--white);
  --txt-color:var(--light-white);
}

/* common componet */

/* button */
        [class^="btn"] {
            border-radius: 100px;
            font-weight: var(--fw-2);
            display: flex;
            align-items: center;
            transition: var(--transition);
            letter-spacing: .5px;
        }

        .btn-fill, .btn-light {
            color: var(--white);
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .btn-fill{
          background: var(--pc);
        }
        .btn-light{
           background:var(--sc);
        }

        .btn-fill::after{
          background: var(--sc);
        }
        .btn-light::after{
          background: var(--pc);
        }

        .btn-fill::after, .btn-light::after, .btn-outline::after{
          content: "";
          position: absolute;
          z-index: -1;
          top: 0;
          right: 0;
          left: auto;
          bottom: 0;
          width: 0;
          transition: all 0.3s ease;
        }
        .btn-fill:hover::after,.btn-light:hover::after, .btn-outline:hover:after{
          width: 100%;
          left: 0;
          right: auto;
        }

        /* btn effect */

        /* btn effect */

        .btn-light {
            background: var(--sc);
            color: var(--white);
        }

        .btn-fill svg{
            margin-left: 10px;
        }
        

        .btn-outline{
        border: 2px solid var(--sc);
        color: var(--sc);
        position: relative;
        z-index: 1;
        overflow: hidden;
        }

        .btn-outline::after{
          background:var(--sc);
        }

        .w-btn{
            --sc:#fff;
        }
/* button */


/* button hover effect */
.btn-outline:hover{
  color: var(--white);
  }

  .btn-light:hover {
    background-color: var(--pc);
}

.btn-light.dark{
--pc:var(--white);
}
.btn-light.dark:hover{
  color: #13264c;
}

.w-btn:hover{
  color: var(--pc);
}
/* button hover effect */

.sub-heading{
    text-transform: uppercase;
    color: var(--pc);
    font-weight: var(--fw-3);
    margin-bottom: 12px;
}

.sec-heading{
    font-size: clamp(1.875rem, 1.2054rem + 1.7857vw, 2.8125rem);
    font-weight: var(--fw-4);
/*    text-transform: uppercase;*/
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--black);
    text-transform: uppercase;
}

/* common componet */



/* header start \\\\\\\\\ */
.topbar {
    background: var(--sc);
    padding: 10px;
}
.info span {
    height: 25px;
    width: 25px;
}
.info span {
    background: var(--pc);
}
header {
    background-color: var(--white);
    transition: all 0.5s ease-in-out;
}

header.scrolled{
  height: 70px;
}

header.scrolled .site-logo img{
  transform: scale(0.9);
  transition: all 0.5s ease-in-out;
}

header nav ul li a {
    color: var(--black);
    font-weight: var(--fw-2);
    line-height: 1.6;
    text-transform: uppercase;
    font-size: 15px;
}

header nav ul li a:hover{
  color: var(--pc);
}

header ul .dropdown ul {
    background-color: var(--white);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: all 0.3s;
}

.dropdown::after,
.dropdown .dropdown::after {
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m4 5.588 4 4 4-4' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat;
  transition: var(--transition);
}


header nav .active {
    color: var(--pc);
    /* font-weight: var(--fw-4); */
}

.show-ul {
  overflow-y: auto;
  transform: translate(0);
}

header nav ul {
  align-items: center;
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.cancel-btn, .toggle-slide-btn{
  display: none;
}
.site-logo{
/*  width: 180px;*/
}

.site-logo img{
/*  width: 180px;*/
    transition: width 0.3s ease-in-out; 
}

/* header end \\\\\\\\\ */

/* hero header start \\\\\\\\ */
.hero-header {
    /*        background-color: var(--pc);*/
    position: relative;
    background: url(https://aaantechnologies.com/nortech/web/wp-content/uploads/2026/05/herobg.png) no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 70px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}
.hero-header > * {
    position: relative;
    z-index: 2;
}

    .hero-title {
      /* font-size: clamp(1.875rem, -1.2019rem + 4.8077vw, 3.125rem); */
      font-size: 60px;
      font-weight: var(--fw-4);
      color: var(--white);
      line-height: 1.3;
      text-transform: uppercase;
  }

    .hero-header p{
      font-size: var(--fs-20);
      color: var(--white);
      line-height: 1.6;
      font-weight: 400;
    }

    .hero-content{
        display: flex;
        flex-direction: column;
        gap: 30px;
        position: relative;
    }

    .hero-header img{
        margin-left: auto;
        display: block;
    }

    .hero-content:after{
        content: "";
        background: url(../img/rectangle-mark.svg) no-repeat;
        width: 70px;
        height: 70px;
        position: absolute;
        bottom: 0;
        right: 23%;
    }
    
    .hero-img{
      position: relative;
      width: fit-content;
    }

    .finger-print{
      right: 0;
      top: 52px;
    }

    .graph-card, .finger-print, .pie-chart{
      position: absolute;
    }

    .graph-card{
      right: 0;
      bottom: 0px;
    }

    .pie-chart{
      left:-12%;
      top: 26%;
    }

    /* .pie-chart img{
      width: 115px;
    } */

    /* floating animation start */
    @keyframes floatAnimation {
      0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
      100% {
        transform: translateY(0); 
      }
    }
    
    /* Applying animation to the image */
    .float-img {
      animation: floatAnimation 3s ease-in-out infinite;
      transition: transform 0.3s ease;
    }
    /* floating animation end */
    
/* hero header end \\\\\\\\ */


/* section 2 start */
.sec-sub-heading{
    font-size: clamp(1.5rem, 0.5769rem + 1.4423vw, 1.875rem);
    font-weight: var(--fw-4);
    text-align: center;
    width: 48%;
    margin-inline: auto;
    margin-bottom: 40px;
}
/* section 2 end */


/* section 3 start */
.service-marquee{
    padding: 25px 20px;
    background-color: var(--pc);
    font-size: var(--fs-20);
    color: var(--white);
    overflow: hidden;
}

.service-marquee, .service-marquee span{
    display:flex;
    align-items: center;
    gap:60px;
}
.service-marquee span{
    gap:10px;
    white-space: nowrap;
}
/* section 3 end */

/* section 4 start */
.bg-section{
    background: var(--pc) url(../img/work-bg.jpg) no-repeat;
    background-size: cover;
    padding: clamp(1.875rem, 0.9821rem + 2.381vw, 3.125rem);
    border-radius: 20px;
    background-position: center;
}

.year-of-exp .counter{
    font-size: 70px;
    font-weight: var(--fw-4);
}
.year-of-exp{
    display: inline-flex;
    align-items: center;
    color: var(--white);
    gap:20px;
    padding:20px;
    background-color: var(--sc);
    border-radius: 20px;
    margin-top: 30px;
    width: 100%;
    justify-content: center;
}

.year-of-exp p{
  color: var(--white);
}

.bg-section p{
    --txt-color:var(--light-white);
}
.bg-section .sec-heading{
    color: var(--white);
}
/* section 4 end */


/* section 5 start */
.center-heading{
    text-align: center;
    width: 61%;
    margin-inline: auto;
    margin-bottom: 50px;
}

.c-heading{
    font-size: var(--fs-20);
    font-weight: var(--fw-4);
    margin-bottom: 10px;
}

.counter-card{
    border-bottom: 4px solid var(--pc);
    padding-bottom: 16px;
}

.counter-sec{
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 30px;
    column-gap: 40px;
}

.counter-card .counter{
    font-size: clamp(2.8125rem, 1.6964rem + 2.9762vw, 4.375rem);
    font-weight: var(--fw-4);
    color:var(--sc);
    text-align: end;
    width: 200px;
    margin-left: auto;
}

/* number code start */
.accordions, .verticles-tab{
    counter-reset: section;
  }

  .verticles-h::before,.accordions summary::before{
    counter-increment: section;
    content: "0" counter(section) "";
  }

.accordions summary::before {
    width: 30px;
    height: 30px;
    background-color: #DDDDDD;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #2c2c2c;
    font-weight: var(--fw-3);
  }
  .accordions  details[open] summary::before{
    background-color: var(--pc);
    color: var(--white);
  }
/* number code end */
/* section 5 end */

.cta {
  background: var(--sc);
  border-radius: 30px;
  --black: var(--white);
  --txt-color: var(--light-white);
  position: relative;
  overflow: hidden;
}

.cta::before{
content: "";
background: url("https://aaantechnologies.com/nortech/web/wp-content/uploads/2026/05/net-image.png");
width: 100%;
height: 100%;
position: absolute;
top: 0;
z-index: 0;
mix-blend-mode: plus-lighter;
}

.cta-content{
    display: flex;
    gap: 16px;
    position: relative;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    padding: clamp(1.875rem, 0.9821rem + 2.381vw, 3.125rem);
}

.cta-content .title{
  text-transform: uppercase;
}

.bg-gradient{
    background: linear-gradient(180deg, #071A40 0%, #053E59 100%);
    border-radius: 30px;
    padding: clamp(1.875rem, -1.2019rem + 4.8077vw, 3.125rem);
}

.bg-gradient .center-heading{
    --black: var(--white);
    --txt-color: var(--light-white);
}

/* Accordians faq start */
  .accordions details {
      border-bottom: 1px solid #d3d3d3;
  }
  .accordions details summary {
      font-weight: var(--fw-2);
      color: var(--black);
      line-height: 1.8;
  }
  .accordions .content {
      border-top: 1px solid var(--border);
  }
  .accordions summary::after {
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.717 9.625a.966.966 0 0 1 0 1.367l-4.18 4.18a2.176 2.176 0 0 1-3.075 0l-4.179-4.18a.966.966 0 0 1 0-1.367l.342-.342a.966.966 0 0 1 1.367 0L12 13.292l4.009-4.009a.967.967 0 0 1 1.366 0z' fill='%23BBC4CD'/%3E%3C/svg%3E") no-repeat;
      background-size: contain;
  }
  /* Accordians faq end */
footer {
     background: #282828;
    padding-top: 40px;
    margin-top: 60px;
}

.footer-logo img {
  width: 108px;
  background: #fff;
  padding: 14px;
  border-radius: 100px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.newsletter-form input {
  width: 60%;
  padding: 10px 16px;
  border-radius: 45px;
  border: 1px solid #8A8A8A;
  background: #00000000;
  color: #FFFFFF;
}

  .footer-title {
    color: var(--sc);
    font-size:22px;
    font-weight: var(--fw-4);
    margin-bottom: 34px;
    position: relative;
}
.footer-title::before{
    content: "";
    position: absolute;
    width: 10%;
    height: 4px;
    background-color: #fff;
    bottom: -10px;
}

 .footer-list li {
    margin-bottom: 16px;
}

.footer-list li, .social-media{
    list-style: none;
}

.footer-list, .social-media {
    padding-left: 0;
}

footer li a {
   color: var(--light-white);
}
footer li a:hover{
   color: var(--pc);
}


footer .cta2{
    margin-top: -207px;
    margin-bottom:40px;
    background-color: #FAFAFA;
    border-radius: 30px;
    border: 1px solid rgb(228, 228, 228);
    position: relative;
}
footer .cta2::before{
    content: "";
    background: url(../img/abstract-2.svg) no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 85px;
    height: 77px;
}

footer .cta-content{
    padding: clamp(1.875rem, 0.9821rem + 2.381vw, 3.125rem);
}

footer .cta-image{
    width: 100%;
}

footer .cta-image img{
  margin-left: auto;
  margin-right: 50px;
  margin-top: -40px;
  width: 355px;
}

.newsletter{
    display: flex;
    gap: 16px 10px;
    flex-wrap: wrap;
}

.newsletter input{
    width: 290px;
    padding: 10px 16px;
    border-radius: 45px;
    border: 1px solid #79797c;
}
.newsletter input:focus{
  outline: none;
}

.newsletter button{
  white-space: nowrap;
}

.social-media li a {
/*    fill: var(--pc);*/
    background-color: var(--white);
    border: 1px solid var(--white);
    border-radius: 50%;
    align-items: center;
    display: flex;
    height: 30px;
    justify-content: center;
    width: 30px;
}
.social-media li a:hover {
    background-color: var(--pc);
    fill: var(--white);
}

.social-media {
    gap: 10px;
}

.get-in-touch{
    display: grid;
    gap:10px;
    --black:var(--white);
    margin-top: 30px;
}

.get-in-touch a{
    color: var(--white);
}


.location{
    background-color: #0000007a;
     padding-block: 30px;
    color:var(--light-white);
    --txt-color:var(--light-white);
    margin-top: 30px;
}
.location p{    
    font-size: 14px;
    padding-right: 10px;
}

.location-box span{
    font-size: 75px;
    font-weight: var(--fw-4);
    color: #fff;
}

.location-box{
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 20px; 
}

.bottom-footer{
    padding-block:20px;
    --txt-color:var(--light-white);
}
.brochure-link{
    gap:10px;
    --black: var(--light-white);
}
.brochure-link a{
    color: var(--light-white);
}

/* header end \\\\\\\\\ */

/* Rectangle 71 */

.pulse {
    margin: 60px 30px 0px 0px;
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--sc);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
    position: relative;
  }

  .pulse .user-img{
    border-radius: 50%;
    border: 7px solid #97959526;
  }


  .cta-image{
    display: flex;
  }
 
  .cta-image .pulse:nth-child(2){
    margin-top: 40%;
    width: 110px;
    height: 110px;
  }

  .cta-icon{
    position: absolute;
    top: -41px;
    right: -32px;
  }


  /* case study card start */
  .card-details{
    display: grid;
    grid-template-columns:auto 60%;
    gap: clamp(1rem, 0.8214rem + 0.4762vw, 1.25rem);
    align-items: center;
  }

  .card-details img{
    height:150px;
    object-fit: cover;
    border-radius: 20px;
  }

  .card-box{
    padding: clamp(1rem, 0rem + 2.0833vw, 1.875rem);
    background-color: var(--white);
    border-radius: 30px;
    display: grid;
    gap: clamp(1rem, 0.8214rem + 0.4762vw, 1.25rem);
    transform: var(--transition);
  }

  .circle-arrow{
    background-color: var(--pc);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card-des{
    display: flex;
    align-items: center;
    gap:20px;
  }

  .cat-btn {
    padding: 8px 16px;
    border: 1px solid var(--sc);
    border-radius: 50px;
    color: var(--sc);
    }

    .card-info{
        display: grid;
        gap: clamp(1rem, 0.8214rem + 0.4762vw, 1.25rem);
    }

    .grp-cat{
        display: flex;
        gap:10px;
        flex-wrap: wrap;
    }

    .card-box:hover .circle-arrow{
        rotate: 42deg;
        background-color: var(--sc);
    }
  /* case study card  end*/


  /* tab section start */
  .wave-bg{
    background: var(--pc) url(../img/wave-bg.webp) no-repeat;
    --black:var(--white);
    padding-block: 50px 150px;
    background-size: cover;
  }


  .tab {
    border: 1px solid #ccc;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    border-radius: 0px 30px 30px 0px;
    padding: clamp(1.875rem, -1.2019rem + 4.8077vw, 3.125rem);
    gap: 20px;
    position: relative;
    height: 630px;
  }

  .tab-sec{
    display: grid;
    grid-template-columns: 30% auto;
    gap: 60px;
  }

  .tabcontent{
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* padding-right: 30px; */
  }

  .tablinks{
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 36px;
    font-size: 20px;
    font-weight: var(--fw-2);
    background-color: #EBEBEB;
    gap:10px;
  }
  
  .tablinks.active{
    background-color: var(--sc);
    color: var(--white);
  }
  

  .tab span{
    width: 40px;
    height: 40px;
    display: inline-flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
  }
  .tablinks.active span{
    background: white;
  }

  .icon-box{
    display: flex;
    align-items: center;
    gap:20px;
    border: 1px solid #364350;
    padding: 15px;
    border-radius: 20px;
  }
  
  .icon-box span{
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    padding: 14px;
  }

  .vertical-rl{
    padding:26px 10px;
    background-color: var(--pc);
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translate(-0%, -50%);
    writing-mode: vertical-rl; 
    color: var(--white);
    white-space: nowrap;
    border-radius: 40px;
  }


  /* slider start */
  #slider2.slide-wrapper .carousel{
    grid-auto-columns: calc((100% / 3) - 12px);
    cursor: -webkit-grab; cursor: grab;
    user-select: none;
  }

  .slider-btn .arrow-btn{
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid #DCDCDC;
  }

  .slider-btn{
    margin-left: auto;
    width: fit-content;
    display: flex;
    gap: 10px;
  }
  /* slider end */

  .overlaycard{
    background: #c7c7c7;
    border-radius: 10px;
    height: 435px;
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  .overlaycard img {
    height: 435px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
    width: 100%;
}

.ovly-body{
    position: absolute;
    bottom: -100px;
    width: 100%;
    padding:20px;
    white-space: normal;
    --txt-color:var(--light-white);
    transition: var(--transition);
}

.overlaycard:hover .ovly-body{
    bottom: 0px;
}

.ovly-title{
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    color: var(--white);
}

.ovly-img::after {
  background: linear-gradient(rgb(0 0 0 / 0%) 0px, rgb(0 0 0 / 0%) 27%, rgba(0, 0, 0, 0.89) 90%);
  content: " ";
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 0;
}

.ovly-content{
    display: grid;
    grid-template-columns: auto 18%;
    align-items: center;
    border-bottom: 1px solid gray;
    padding-bottom: 16px;
    margin-bottom: 16px;
    gap:10px;
}
.number{
  color: var(--white);
  font-weight: var(--fw-3);
  font-size: 45px;
}

  @-webkit-keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgb(204, 169, 44);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
  }

  @keyframes pulse {
    0% {
      -moz-box-shadow: 0 0 0 0 rgb(255, 255, 255);
      box-shadow: 0 0 0 0 rgb(255, 255, 255);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
        box-shadow: 0 0 0 16px rgba(204,169,44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
    }
  }

  /* slider start */
  .slide-wrapper .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 4) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.indicator {
  width: 20px;
  height: 4px;
  margin: 0 6px;
  cursor: pointer;
  background: #b7b7b7;
}

.indicator.active {
  background: var(--pc);
}
  /* slider end */

/* marquee animation start */
.scroller {
  max-width: 100%;
}

.marquee-list .scroller__inner {
  display: flex;
  gap: 40px;
}

.tag-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scroller[data-animated="true"] {
  overflow: hidden;
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
    text-transform: uppercase;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

/* marquee animation end */

/* marquee my code */
.marquee-list {
  padding: 20px 20px;
  background-color: #ececec;
  font-size: var(--fs-18);
  color: #000;
  overflow: hidden;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .5px;
}

.enterprise-list .scroller__inner img{
  margin-right: 15px;
  padding: 20px;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
}
/* marquee my code */

/* vertical image animation sec start */
.verticles-tab li{
  display: flex;
  gap:40px;
}

.verticles-card .circle-arrow {
  rotate: 191deg;
  background-color: #7c7a7aaf;
  transition: var(--transition);
}

.verticles-card:hover .circle-arrow{
  background-color: var(--pc);
}
.verticles-card:hover .verticles-h{
  color: var(--sc);
}

.verticles-tab{
  margin-left: clamp(0rem, -1.4286rem + 2.9762vw, 1.25rem);
}

.verticles-tab ul{
  gap:30px;
}

.verticles-sticky{
  position: sticky;
  top: 108px;
}

.verticles-h::before{
  margin-right: 10px;
  /* font-size: 22px; */
}
.verticles-img{
  margin-top: 60px;
  background-color: var(--sc);
}
.verticles-img img{
  rotate: 353deg;
}

.verticles-content{
  border-bottom: 1px solid #D9D9D9;
}
/* vertical image animation sec end */


/* testimonial start */
.testimonial-card{
  border: 1px solid #DCDCDC;
  padding:35px;
  border-radius: 20px;
  gap:20px;
  height: 100%;
      background: #cccccc33;
}

.client img{
  border-radius: 50%;
  width: 65px;
  height: 65px;
  object-fit: cover;
  box-shadow: 0px 0px 0px 4px #adadad61;
}

.client{
  gap: 20px;
}

/* testimonial end */

.doc-overlay {
  bottom: 0;
  height: 100vh;
  opacity: .5;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 2;
  background: var(--black);
}

/* line ellipsis start*/
.ovly-body :is(p), .card-des p {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box!important;
  margin-bottom: 0!important;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line ellipsis start*/


/* top to bottom start */
#progress {
  border-radius: 50%;
  box-shadow: 0 0 10px rgb(0 0 0 / .2);
  bottom: 50px;
  cursor: pointer;
  display: none;
  place-items: center;
  position: fixed;
  right: 10px;
  z-index: 1;
  height: 50px;
  width: 50px;
}

#progress-value {
  background-color: var(--white);
  border-radius: 50%;
  display: block;
    display: grid;
    height: calc(100% - 10px);
    place-items: center;
    width: calc(100% - 10px);
}

/* top to bottom end */


/* why to choose */
ul.check-list{
  display: flex;
  flex-direction: column;
  gap:16px;
  margin-left:26px;
  margin-top: 16px;
}
.check-list li{
  list-style: none;
  position: relative;
  line-height: 1.6;
}
.check-list li::before{
  content: "";
  position: absolute;
  top: 0;
  left: -42px;
  background: url("../img/check.svg") no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
}

.why-choose-img{
  position: relative;
}

.why-choose-img::before{
  content: "";
  position: absolute;
  background: url("../img/Circle-CTA.png") no-repeat;
  width: 130px;
  height: 130px;
  background-size: contain;
  right: 0;
  bottom: 0;
  animation: rotateAnimation 17s linear infinite;
}
/* why to choose */

.service-bg {
  background: var(--sc) !important;
}

/* contact page start */
.pg-banner{
  height: clamp(15rem, 9.1964rem + 15.4762vw, 23.125rem);
  background-color: var(--gradient-col);
  --txt-color: var(--white);
  overflow: hidden;
  position: relative;
}

.pg-banner img{
  width: 100%;
  height:100%;
  object-fit: cover;
  opacity: 0.2;
}

.pg-banner p{
  font-weight: 600;
  font-size: clamp(1rem, 0.9107rem + 0.2381vw, 1.125rem);
}

.banner-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding-inline:15px;
  width: 70%;
  display: grid;
  gap: 10px;
}


.contact-content{
  background-color: #f1f0f5;
  padding:30px;
  border-radius: 30px 0 0 0;
  height: 100%;
}

.contact-box{
  display: grid;
  grid-template-columns: auto 1fr;
  gap:20px;
  align-items: center;
}

.icon-box-icon{
  background-color: var(--sc);
  width: 60px;
  height: 60px;
  border-radius: 50%;
/*  outline: 4px solid #00000040;*/
}
.contact-details{
  display: flex;
  flex-direction: column;
  gap:25px;
}

.icon-box-content a{
 font-weight: 600;
}

.contact-content .contact-details{
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #cdcdcd;
}

.contact-form{
  background-color: #000;
  padding:30px;
  border-radius: 0 30px 0 0;
}

.contact-form{
  --black:var(--white);
  --txt-color:var(--white);
  height: 100%;
}

.contact-form > p{
  margin-bottom: 30px;
  color:var(--light-white);
}

.contact-form label{
  color:var(--light-white);
  margin-bottom: 10px;
  display: inline-block;
}
.contact-form :is(input,textarea){
  width: 100%;
  padding:9px 10px;
  border-radius: 4px;
  outline: none;
}

.contact-form .row{
  row-gap: 20px;
}
.contact-form .btn-light{
 display: block;
 width: 100%;
 text-align: center;
}

.contact-form .social-media{
  margin-top: 30px;
  justify-content: center;
}
/* contact page end */

.btn-git .primary-btn {
    height: 50px;
    width: 50px;
    top: 10px;
    left: 23px;
}
.btn-git:before {
    content: "";
    position: absolute;
    background: url(https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjjhgdhvvplj1v9cddwts.png) no-repeat;
    width: 150px;
    height: 150px;
    background-size: contain;
    right: 0;
    bottom: -60px;
    animation: gitMove 12slinear infinite;
}

.rounded-circle {
    border-radius: 50% !important;
}
 @keyframes gitMove {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*[class*="-btn"] svg:not(span svg) {
    transition: all .3s;
    transform: rotate(-45deg);
}*/

.primary-btn {
    background: var(--pc);
    color: #fff;
    border: 1px solid transparent;
}
.position-relative {
    position: relative !important;
}


.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.d-grid {
    display: grid !important;
}

.justify-content-center {
    justify-content: center !important;
}
.gap-2 {
    gap: .5rem !important;
}
.playBtn {
    background: var(--sc);
    border-radius: 8px 0 0 8px;
    width: fit-content;
    position: absolute;
    left: -60px;
    bottom: 40px;
    height: 145px;
    align-items: center;
}
.flex-column {
    flex-direction: column !important;
}
.h-100 {
    height: 100% !important;
}
.border {
    border: 1px solid #dee2e6 !important;
}
.position-absolute {
    position: absolute !important;
}
.w-100 {
    width: 100% !important;
}
.bg-white {
    background-color: #fff !important;
}
.p-3 {
    padding: 1rem !important;
}
.img-card {
    bottom: 40px;
}
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

.text-center {
    text-align: center !important;
}

.wcu-card, .wcu-card .wc-icn {
    border-radius: 8px;
}
.why-choose {
  background:#cccccc3d;
  position: relative;
  z-index: 0;
}

.wcu-card .wc-icn {
    background: #fff;
    position: relative;
    z-index: 0;
}
.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}
.mt-5 {
    margin-top: 3rem !important;
}
.why-choose .site-logo {
  border-radius: 100px;
}

.p-4 {
    padding: 1.5rem !important;
}
.gap-3 {
    gap: 1rem !important;
}
.me-4 {
    margin-right: 1.5rem !important;
}
.why-choose .site-logo:after {
    content: '';
    position: absolute;
    height: 300px;
/*    width: 200px;*/
    background: url(https://aaantechnologies.com/nortech/web/wp-content/uploads/2026/05/why-choose-sepr.png) no-repeat center / cover;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: -1;
    filter: opacity(0.5);
}
/*.why-choose .site-logo img {
    height: 35px;
    width: auto;
}
*/
.wcu-card {
    background: #527B10;
}
.primary-text {
    color: #fff;
}

.insti-col {
    background: #fff;
}

.insti-col .icon {
    background: #f3f3f3;
    height: 80px;
    width: 80px;
}

.slider-badge {
  right: 0;
  bottom: 0;
  width: 12%;
  position: absolute;
  z-index: 9;
  padding: 10px;
}

.slider-badge {
  background: #f1f1f1;
  border-radius: 50%;
}
.slider-badge .flex-badge-text {
  position: relative;
  aspect-ratio: 1 / 1;
  align-items: center;
}

.slider-badge .flex-go-icon {
  background: var(--sc);
  border-radius: 50%;
}

.slider-badge .flex-go-icon {
  height: 55px;
  width: 55px;
  z-index: 99;
  align-items: center;
}

.slider-badge .flex-badge-text .text-layer {
  position: absolute;
  padding: 15px;
  overflow: visible;
  /* font-size: 20px; */
  letter-spacing: .5px;
}

.animate-spin {
	animation: counterclockwise 22s linear infinite;
}

@keyframes counterclockwise {
	0% {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(-1turn);
	}
}




@media (min-width: 1025px) {
  .dropdown {
      display: flex;
      align-items: center;
      gap: 6px;
      justify-content: space-between;
  }

  header ul .dropdown ul {
      left: -15px;
      top: 66px;
      white-space: nowrap;
  }

  .dropdown ul .dropdown ul {
      position: absolute;
      top: 10px;
      left: calc(100% + 15px);
  }

  header .dropdown:hover>ul {
      transform: scaleY(1);
      visibility: visible;
      opacity: 1;
  }

  .hero-img{
    margin-left: auto;
  }

  .why-choose-img{
  margin-right: 20px;
}
}


@media screen and (max-width: 1024px) {
  header nav ul {
    display: block;
    padding: 50px 30px 30px;
}
.slider-badge {
  display: none;
}
.abt-image {
  margin-bottom: 20px;
}

[class*="flex"] {
  flex-wrap: wrap;
}

  header nav {
      background: var(--white);
      height: 100vh;
      left: 0;
      position: absolute;
      top: 0;
      transform: translateX(-100%);
      transition: all .2s;
      width: 300px;
      z-index: 10;
  }

  header nav ul li {
    margin-bottom: 10px;
    padding: 10px 0 0;
}

header ul .dropdown ul {
  left: 0;
  top: 25px;
  width: 100%;
  background-color: var(--white);
    box-shadow: 0 0 30px rgb(127 137 161 / .25);
    transition: all .3s;
}
.dropdown .dropdown:after, .dropdown:after {
  float: right;
}

header ul li.showMenu>ul {
  display: block !important;
  margin-top: 15px;
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.cancel-btn {
  display: none;
  position: fixed;
  right: 7%;
  top: 14px;
  z-index: 100;
}

.toggle-slide-btn {
  display: block;
  order: 1;
  margin-left: 20px;
}

.sec-sub-heading{
  width: 60%;
}

.tab-sec{
  grid-template-columns: 36% auto;
  gap: 60px;
}

.center-heading{
  width: 100%;
}

.hero-header{
  padding: 30px 30px;
}

.testimonial-card{
  padding: 20px;
}

.card-details{
  grid-template-columns: auto;
}

.card-details img{
  height: auto;
}

.hero-header img{
  margin-inline: auto;
}

  .hero-img{
    margin-inline: auto;
  }
  .pie-chart {
    left: -5%;
  }
  .tab {
    height: 100%;
  }
}


@media screen and (min-width: 768px) and (max-width:1024px) {
  .pie-chart img{
    width: 108px;
  }
  footer .cta-image img{
    width: 277px;
    margin-top: auto;
  }
}


@media (max-width: 768px) {
  .verticles-img{
    display: none;
  }

  .counter-card .counter {
    text-align: start;
    width: 100%;
}
.slide-wrapper .carousel{
  grid-auto-columns: calc((100% / 2) - 12px) !important;
}

footer .cta-image, .cta2 .col-lg-4{
  display: none;
}

.tab-sec{
  grid-template-columns: auto;
}
.vertical-rl{
  display: none;
}

.cta-image {
  align-items: center;
  justify-content: space-around;
  padding: 0px 15px 15px 15px;
}

.cta-image .pulse:nth-child(2){
  margin-top: -18%;
}

.pulse{
  margin: 6px 30px 0px 0px;
}

.counter-card .counter {
  height: 58px;
  width: 147px;
}

.tab{
  flex-direction: row;
  overflow: scroll;
  border-radius: unset;
  background-color: transparent;
  border: unset;
}
.tablinks{
  white-space: nowrap;
  font-size:var(--fs-18);
  padding: 6px 10px;
}

.tab span{
  width: 34px;
  height: 34px;
  padding: 11px;
}

.pie-chart img{
  width: 91px;
}

}



@media screen and (max-width: 600px) {
  .group-btn [class^="btn"]{
    display: none;
  }

  .site-logo img{
    width: 160px;
  }

  .hero-title {
    font-size: 34px;
  }
  .hero-content h2 {
    font-size: 18px;
    font-weight: 400;
  }

  .mx-5 {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
}
.why-choose .site-logo {
    display: none;
}

.mob-none{
    display: none;
    
}

  header.scrolled{
    height: 60px;
  }
  
  .slide-wrapper .carousel {
    grid-auto-columns: calc((100% / 1) - 12px) !important;
  }

  .container-fluid {
    --bs-gutter-x: 1.5rem;
  }

  .sec-sub-heading{
    width: 100%;
  }

  .newsletter input{
    width: 100%;
  }

  .why-choose-img::before{
    right: 30px;
  }
    }


    /* button animation */
    .our-client{
      position: relative;
    }
    .our-client::after{
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      background-image: url(../img/Intersect.svg);
    }


    /* Rotate animation */
@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Applying animation to the element */
.rotate {
  animation: rotateAnimation 5s linear infinite;
}



/* new page design */
.banner-bg{
  background-image: url("assets/img/bg.jpg");
}
/* new page design */

.industries-grid {
            row-gap: 24px;
        }

        .industry-card {
            background: #f3f5f7;
            border: 1px solid #e4e7ec;
            border-radius: 12px;
            min-height: 130px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-align: center;
            padding: 18px 12px;
            transition: all 0.25s ease;
            height: 100%;
        }

        .industry-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
        }

        .industry-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            line-height: 1;
        }

        .industry-title {
            margin: 0;
            font-size: 18px;
            font-weight: 700;
            color: #101828;
            line-height: 1.25;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1.65fr 1fr 1fr 1fr;
            grid-template-rows: repeat(2, 1fr);
            gap: 2px;
            background: #d0d5dd;
            overflow: hidden;
        }

        .gallery-item {
            position: relative;
            min-height: 220px;
            overflow: hidden;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.06);
        }

        .gallery-item.main {
            grid-row: span 2;
            min-height: 444px;
        }

        .gallery-item.main::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.5);
            z-index: 1;
        }

        .gallery-plus {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            font-size: 48px;
            font-weight: 400;
            line-height: 1;
            z-index: 2;
            width: 76px;
            height: 76px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(1px);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.25s ease;
        }

        .gallery-item.main:hover .gallery-plus {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1.04);
        }

        .gallery-lightbox {
            position: fixed;
            inset: 0;
            z-index: 1200;
            background: rgba(2, 6, 23, 0.88);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 30px 16px;
        }

        .gallery-lightbox.show {
            display: flex;
        }

        .gallery-lightbox-content {
            width: min(100%, 980px);
            position: relative;
        }

        .gallery-lightbox img {
            width: 100%;
            max-height: 82vh;
            object-fit: contain;
            border-radius: 12px;
            background: #101828;
        }

        .lightbox-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 30px;
            line-height: 1;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-prev {
            left: 14px;
        }

        .lightbox-next {
            right: 14px;
        }

        .lightbox-close {
            position: absolute;
            top: -54px;
            right: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 26px;
            cursor: pointer;
        }

        .topbar.topbar-recycle {
            background: #294e07;
            padding: 7px 0;
        }

        .topbar-recycle .topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .topbar-recycle .topbar-message {
            margin: 0;
            color: #eef3e8;
            font-size: 16px;
            line-height: 1.2;
            white-space: nowrap;
        }

        .topbar-recycle .pickup-link {
            color: #c9e570;
            font-weight: 700;
            margin-left: 4px;
        }

        .topbar-recycle .pickup-link:hover {
            color: #e2f5a7;
        }

        .topbar-recycle .topbar-contact {
            display: flex;
            align-items: center;
            gap: 24px;
            white-space: nowrap;
        }

        .topbar-recycle .contact-item {
            color: #fff;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            line-height: 1;
        }

        .topbar-recycle .contact-item svg {
            width: 14px;
            height: 14px;
            stroke: #dce7bc;
        }

        @media (max-width: 767.98px) {
            .industry-card {
                min-height: 116px;
            }

            .industry-title {
                font-size: 16px;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
            }

            .gallery-item.main {
                grid-column: span 2;
                grid-row: span 1;
                min-height: 260px;
            }

            .gallery-item {
                min-height: 170px;
            }

            .gallery-plus {
                width: 62px;
                height: 62px;
                font-size: 40px;
            }

            .lightbox-btn {
                width: 40px;
                height: 40px;
                font-size: 26px;
            }

            .topbar.topbar-recycle {
                padding: 9px 0;
            }

            .topbar-recycle .topbar-message {
                font-size: 13px;
                text-align: center;
                white-space: normal;
            }

            .topbar-recycle .topbar-inner {
                justify-content: center;
            }

            .topbar-recycle .topbar-contact {
                display: none;
            }
        }