:root{
    --color-primary:#0d467b;
    --color-black:#242424;
    --color-white:#fff;
    --color-bg:#f5f6f7;
    --color-text:#535353;
}
.section-heading{
    padding-bottom:25px;
}
.section-heading h1,
.section-heading h2{
    font-size:35px;
    line-height:45px;
    color:var(--color-black);
    position:relative;
    font-weight:900;
}
.section-heading p{
    font-size:16px;
    line-height:24px;
    color:var(--color-text);
    font-weight: 500;
    margin-top:5px;
}
.services-section{
    paddin:60px 0;
}
.services-top{
    background-color: var(--color-bg);
    background-image: url(../images/h2-banner-bg.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    padding:60px 0;
}
.section-heading h1 span,
.section-heading h2 span{
    color:var(--color-primary);
}
.services-top .section-head {
    text-align: left;
}
.services-top .section-head h1{
    font-size:35px;
    line-height:45px;
    color:var(--color-black);
    position:relative;
    padding-bottom:15px;
}
.services-top .section-head h1:before{
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 50px;
    height: 3px;
    background: var(--color-primary);
}
.services-top .section-head h1:after{
    position: absolute;
    bottom: 0;
    left: 50px;
    content: "";
    width: 50px;
    height: 3px;
    background: #999;
}
.services-top .section-head h1 span{
    color:var(--color-primary);
}
.services-top .section-content p{
    font-size:16px;
    line-height:24px;
    text-align:justify;
    margin-bottom:10px;
    color:var(--color-text);
}
.services-top .section-content p:last-child{
    margin-bottom:0px;
}
.service-content h1,
.service-content h2{
    font-size:35px;
    line-height:45px;
    color:var(--color-black);
    position:relative;
    padding-bottom:15px;
    font-weight:900;
}
.service-content h1 span,
.service-content h2 span{
    color:var(--color-primary);
}
.service-content p{
    font-size:16px;
    line-height:24px;
    text-align:justify;
    margin-bottom:10px;
    color:var(--color-text)
}
.service-content p:last-child{
    margin-bottom:0px;
}
.service-content ul li {
    color: #333;
    padding: 5px 15px;
    position: relative;
    list-style: none;
    letter-spacing: 0px;
}
.service-content ul li::before {
        position: absolute;
    content: "\f00c ";
    left: -20px;
    top:5px;
    font-family: FontAwesome;
    width: 25px;
    height: 25px;
    background: #0d467b;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
    color: #fff;
}
.custom-service-content {
    padding-top: 10px;
}
.custom-service-content h3{
    font-size:20px;
    font-weight:900;
    line-height:30px;
    padding-bottom:20px;
    color:var(--color-primary);
}
.custom-service-block {
    background: var(--color-bg);
    padding: 10px;
    border: 1px dashed #ccc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
}
.custom-service-block .service-block-icon{
    width: 50px;
    border-right:1px solid #ccc;
    display:block;
    background: var(--color-primary);
    height: 50px;
    border-radius:15px;
    text-align: center;
    line-height: 45px;
}
.custom-service-block .service-block-content{
    font-size:16px;
    line-height:24px;
    color:var(--color-black);
    font-weight:500;
    width: 80%;
    letter-spacing:0;
}
.custom-service-block .service-block-icon img {
    width: 35px;
    height: 35px;
}
.web-service-section{
    position:relative;
    background:var(--color-bg);
    padding:60px 0;
}
.web-service-section .tab-wrapper {
  text-align: center;
  display: block;
  margin: auto;
  width:100%;
}

.web-service-section .tabs {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.web-service-section .tab-link {
  margin: 0 5px;
  list-style: none;
  padding: 5px 5px 5px 15px;
  color: var(--color-black);
  cursor: pointer;
  transition: all ease 0.5s;
  display:flex;
  align-items:center;
  background:var(--color-white);
  border:1px solid #ccc;
  border-radius:50px;
  letter-spacing:0;
}
.web-service-section .tab-link span{
    font-size:16px;
    line-height:24px;
    font-weight:600;
}
.web-service-section .tab-link img {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    margin-left: 10px;
}
.web-service-section .tab-link:hover {
  background:var(--color-primary);
  border:1px solid var(--color-primary);
}

.web-service-section .tab-link.active {
  background:var(--color-primary);
  border:1px solid var(--color-primary);
}
.web-service-section .tab-link:hover span,
.web-service-section .tab-link.active span{
    color:var(--color-white);
}
.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.5s ease 1 forwards;
}
.content-wrapper {
    margin-top: 30px;
}
.tab-con {
    display: flex;
    background: var(--color-white);
    border: 1px solid #d4dadb;
    border-radius: 50px;
    height:100%;
}
.box-pad{
    padding-left:5px;
}
.tab-con .tab-img{
    width:45%;
}
.tab-con .tab-img img{
    border-radius:50px 0 0 50px;
    height: 100%;
    object-fit: cover;
}
.tab-con .tab-inner-con{
    width:55%;
    padding: 20px 40px;
}
.tab-content.active {
  display: block;
}
.tab-inner-con h3 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 900;
    color: var(--color-primary);
    padding-bottom:5px;
}
.tab-inner-con p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing:0;
    margin-bottom:10px;
}
.tab-inner-con p a{
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing:0;
    text-decoration:underline;
}
.tab-inner-con p a:hover{
    color: var(--color-primary);
}
.tab-inner-con ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}
.tab-inner-con ul li{
    font-size: 16px;
    color:var(--color-text);
    line-height: 24px;
    padding: 2px 0;
    font-weight: 500;
    letter-spacing: 0;
}
.tab-inner-con ul li::before {
  content: "✓ ";
  color: var(--color-primary);
  margin-right: 10px;
  font-weight: 900;
}
@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: none;
  }
}
.technology-section{
    position:relative;
    padding:60px 0;
}
.tech-marquee{
    width:100%;
    overflow:visible;
    position:relative;
    padding:10px 0;
    overflow-x: clip;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #181818 5%, #181818 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #181818 5%, #181818 95%, transparent 100%);
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}
.tech-track{
    display:flex;
    width:max-content;
}
.tech-item{
    flex-shrink: 0;
    margin-right: 10px;
    padding: 8px 25px;
    border-radius: 10px;
    background: #f5f5f5;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--color-primary);
}
.left-scroll{
    animation:leftMarquee 20s linear infinite;
}
.right-scroll{
    animation:rightMarquee 20s linear infinite;
}
.tech-marquee:hover .tech-track{
    animation-play-state: paused;
}
@keyframes leftMarquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@keyframes rightMarquee{
    from{
        transform:translateX(-50%);
    }
    to{
        transform:translateX(0);
    }
}
.why-dev-section{
    position:relative;
    padding:60px 0;
    background:#f5f5f5;
}
.why-dev-block {
    background: var(--color-white);
    padding: 15px 5px;
    border-radius:15px;
    margin-bottom:15px;
}
.why-dev-block .why-block-img{
    width:100%;
    height:100%;
    overflow:hidden;
    border-radius:15px;
}
.why-dev-block .why-block-img img{
    width:100%;
    min-height:195px;
    object-fit:cover;
    transition:.5s ease;
}
.why-dev-block:hover .why-block-img img{
    transform:scale(1.1);
}
.why-dev-block:hover {
    background:#e9e9e9;
}
.why-block-content h3{
    font-size:20px;
    line-height:28px;
    color:var(--color-primary);
    font-weight:900;
    margin-bottom:5px;
}
.why-block-content p{
    font-size:16px;
    line-height:24px;
    color:var(--color-text);
    text-align:justify;
    font-weight:500;
    margin-bottom:5px
}
.why-block-content ul{
    display:flex;
    padding:0;
    gap:10px;
    flex-wrap:wrap;
    list-style:none;
    margin-bottom:5px;
}
.why-block-content ul li{
    position:relative;
    background:#f5f5f5;
    padding:5px 10px 8px 25px;
    font-size:16px;
    line-height:1;
    letter-spacing:0;
    color:var(--color-black);
    border:1px dashed var(--color-primary);
    border-radius:10px;
    font-weight:600;
}
.why-block-content ul li:before{
    position:absolute;
    content:"";
    width:8px;
    height:8px;
    background:var(--color-primary);
    left:10px;
    border-radius:50px;
    top:10px;
}
.dev-banner-section {
    position:relative;
    padding: 60px 0;
}
.dev-banner-section .dev-banner {
    position: relative;
    background: url(../images/web-bg.jpg);
    width: 100%;
    height: 283px;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 25px;
    padding: 0 40px;
    display: flex;
    align-items: center;
}
.dev-banner-content h2 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 900;
    color: var(--color-black);
    margin-bottom:5px;
}
.dev-banner-content h2 span{
    color:var(--color-primary);
}
.dev-banner-content p{
    font-size:16px;
    line-height:24px;
    text-align:justify;
    margin-bottom:5px;
    color:var(--color-text);
    font-weight:500;
}
.process-section{
    position:relative;
    padding:60px 0;
    background:#f5f5f5;
}
.benefits-section{
    position:relative;
    padding:60px 0;
}
.faq-section{
    position:relative;
    padding:60px 0;
    background:#f5f5f5;
}
.faq-item{
      background:#fff;
      border-radius:15px;
      margin-bottom:15px;
      overflow:hidden;
      transition:0.3s;
      border:1px solid #ebebeb;
    }
.faq-question{
  width:100%;
  padding:15px;
  border:none;
  outline:none;
  background:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
  transition:0.3s;
  color:var(--color-black);
}
.faq-question:hover,
.faq-item.active .faq-question{
  background:var(--color-primary);
  color:var(--color-white);
}
.arrow{
background: #f5f5f5;
width: 35px;
height: 35px;
border-radius: 50px;
border: 1px solid #ebebeb;
line-height:32px;
}
.arrow svg {
width: 18px;
height: 18px;
fill: var(--color-text);
transition: 0.3s ease;
}
.faq-question:hover .arrow,
.faq-item.active .faq-question .arrow{
    background:var(--color-white);
}
.faq-question:hover .arrow svg{
  transform:rotate(-45deg);
  fill:var(--color-primary);
}
.faq-item.active .arrow svg{
  transform:rotate(-45deg);
  fill:var(--color-primary);
}
.faq-answer{
  animation:fade 0.3s ease;
  display:none;
  padding:15px;
  background:#fff;
}
.faq-answer p{
  padding-bottom:0px;
  color:var(--color-text);
  font-size:16px;
  text-align:justify;
  line-height:24px;
}
.faq-item.active .faq-answer{
  display:block;
}
.faq-answer ul {
    margin: 5px 0;
}
.faq-answer ul li{
    font-size:16px;
    line-height:24px;
    font-weight:500;
    color:var(--color-text);
    letter-spacing:0;
    list-style:circle;
}

.faq-answer ul li::marker{
    color:var(--color-primary);
    font-size:22px;
}
.web-bottom-section{
    position:relative;
    padding:60px 0;
    background:url(../images/web-bottom-bg.jpg);
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;
    min-height:350px;
}
.web-bottom-content h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: 0;
    margin-bottom: 10px;
}
.web-bottom-content p{
    font-size:16px;
    line-height:24px;
    font-weight:500;
    text-align:justify;
    color:var(--color-white);
}
.web-button {
    background: transparent;
    border: 2px solid var(--color-white);
    border-radius: 10px;
    padding: 8px 25px 10px;
    font-size: 16px;
    color: var(--color-white);
    letter-spacing: 0;
    line-height: 24px;
    margin-top: 15px;
    display: inline-block;
}
.web-button:hover{
    background:var(--color-white);
    color:var(--color-primary);
}
.flip-card{
      width:100%;
      height:300px;
      margin-bottom:15px;
    }

    .flip-card-inner{
      width:100%;
      height:100%;
      position:relative;
      transform-style:preserve-3d;
      transition:transform 0.7s;
    }

    .flip-card:hover .flip-card-inner{
      transform:rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back{
      position:absolute;
      width:100%;
      height:100%;
      border-radius:15px;
      overflow:hidden;
      backface-visibility:hidden;
      box-shadow:0 5px 15px rgba(0,0,0,0.2);
    }

    /* Front Side */
    .flip-card-front{
      background:#fff;
    }

    .flip-card-front img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .name{
      position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(24, 67, 113, 0.8);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    }

    /* Back Side */
    .flip-card-back{
      background:var(--color-primary);
      color:white;
      transform:rotateY(180deg);
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:start;
      padding:20px;
    }

    .flip-card-back h2{
      margin-bottom:10px;
      font-size:25px;
      line-height:35px;
      font-weight:900;
      color:var(--color-white);
    }

    .flip-card-back p{
      font-size:16px;
      line-height:24px;
      color:var(--color-white);
    }
    .flip-card-back ul {
    margin: 5px 0;
}
.flip-card-back ul li{
    font-size:16px;
    line-height:24px;
    font-weight:500;
    color:var(--color-white);
    letter-spacing:0;
    list-style:circle;
}

.flip-card-back ul li::marker{
    color:var(--color-white);
    font-size:22px;
}
@keyframes fade{
  from{
    opacity:0;
    transform:translateY(-5px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}


























@media (min-width:200px) and (max-width:768px){
    .services-top,
    .web-service-section,
    .technology-section,
    .faq-section,
    .web-bottom-section,
    .benefits-section{
        padding:40px 0;
    }
    .services-top .section-head h1,
    .service-content h1,
    .section-heading h1,
    .web-bottom-content h1{
        font-size: 25px;
        line-height: 35px;
    }
    .section-content{
        margin-bottom:20px;
    }
    .web-service-section .tabs{
        display:block;
        
    }
    .web-service-section .tabs li{
        margin-bottom:10px;
        justify-content: space-between;
    }
    .tab-con{
        flex-direction:column;
    }
    .tab-con .tab-img,
    .tab-con .tab-inner-con{
    width: 100%;
    }
    .tab-con .tab-inner-con{
        padding: 20px;
    }
    .tab-con .tab-img img {
    border-radius: 50px 50px 0 0px;
    }
    .why-dev-section .col-md-3{
        display:none;
    }
    .why-dev-section .why-dev-block .col-md-3{
        display:block;
    }
    .why-dev-section{
        padding:40px 15px;
    }
    .why-block-content {
    margin-top: 10px;
}
.dev-banner-section .dev-banner{
    background:none;
    padding: 0px;
        height: 100%;
}
.dev-banner-content h2{
    font-size:25px;
    line-height:35px;
}
.dev-banner-section{
    padding:40px 0;
}
.faq-question{
    text-align: left;
    line-height: 24px;
}
.arrow{
    text-align:center;
}
.dev-banner .col-md-5{
    display:none;
}
}