
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&family=Lato&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    background-color: var(--primary-color);
}
/***** navbar banner css****/
.header-and-banner-con{
    background: rgb(33,30,57);
    overflow: hidden;
}
.header-con{
    padding-top: 30px;
    padding-bottom: 30px;
}
.header-con .nav-item{
    padding: 0 18px;
    font-size: 20px;
}
.banner-main-con{
    padding-top: 20px;
}
.banner-main-con2 {
    padding-top: 130px;
}
.navbar-nav .nav-item:last-child{
    padding-right: 50px;
}
.header-con .nav-item a:hover{
    color: var(--accent) !important;
}
.header-con .nav-item a{
    color: var(--secondary-color) !important;
}
.header-con .nav-item .is-active{
    color: var(--accent) !important;
}
.banner-heading h2{
    color: var(--accent);
    font-weight: 600;
}
.banner-heading h1{
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 6px;
}
.banner-heading p{
    color: var(--secondary-color);
    margin-bottom: 26px;
    font-family: 'Lato', sans-serif;
}
.See-btn{
    margin-left: 28px;
    font-size: 20px;
    line-height: 20px;
    color: var(--accent);
    padding-bottom: 6px;
    border-bottom: 2px solid var(--accent);
}
.See-btn:hover{
    color: var(--light-purple-color);
}
.banner-con a{
    text-decoration: none;
}
.best-award-con{
    background: var(--white-color);
    padding: 24px 33px;
    position: absolute;
    top: 40%;
    left: -74px;
    opacity: 1;
    border-radius: 17px;
}
.best-award-con:hover figure{
    transform: translateY(-8px);
}
.happy-con{
    padding: 15px 33px;
}
.best-award-inner-con figure{
    position: absolute;
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out;
}
.best-award-title p{
    line-height: 28px;
}
.best-award-title{
    margin-left: 70px;
}
.happy-con figure{
    position: relative;
    margin-bottom: 8px;
}
.happy-con{
    right: -42%;
    left: initial;
    top: 20%;
}
.best-award-title span{
    font-size: 14px;
    color: var(--text-color);
    line-height: 14px;
    font-family: 'Lato', sans-serif;
}
.banner-right-con::before{
    content: "";
    width: 36px;
    height: 36px;
    position: absolute;
    top: 25%;
    left: 0;
    background: url(../image/curn-icon.png) no-repeat top left;
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
.banner-right-con::after{
    content: "";
    width: 35px;
    height: 38px;
    position: absolute;
    bottom:100px;
    right: -58%;
    background: url(../image/triangle-icon.png) no-repeat top left;
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 2s infinite  alternate;
}
.happy-con::before{
    content: "";
    width:52px;
    height: 59px;
    position: absolute;
    top: -131px;
    left: 0;
    background: url(../image/half-circle.png) no-repeat top left;
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1.5s infinite  alternate;
}
.banner-social-icon{
    position: absolute;
    left: 88px;
    top: 43%;
}
.banner-social-icon ul li a i{
    width: 48px !important;
    height: 48px !important;
}
/***** navbar banner css****/

/***** service section css *****/
.generic-title h6 {
    font-weight: 600;
    margin-bottom: 14px;
  }
  .generic-title h2 {
    font-weight: 700;
  }
  .generic-title {
    margin-bottom: 46px;
  }
  .service-con::before {
    content: "";
    width: 127px;
    height: 404px;
    position: absolute;
    top: 207px;
    left: 0;
    background: url(../image/circle-bg-left-img.png) no-repeat top left;
    animation: right-mover 1s infinite alternate;
  }
  .service-con::after {
    content: "";
    width: 52px;
    height: 59px;
    position: absolute;
    top: 154px;
    left: 72px;
    background: url(../image/half-circle-left-icon.png) no-repeat top left;
    animation: mover 1s infinite alternate;
  }
  .service-inner-con:after {
    content: "";
    width: 35px;
    height: 38px;
    position: absolute;
    bottom: 190px;
    right: -116px;
    background: url(../image/corn-left-icon.png) no-repeat top left;
    animation: mover 1s infinite alternate;
  }
  .service-inner-con h2 {
    color: var(--white-color);
  }
  .service-box {
    perspective: 100px;
  }
  
  /* Box Style */
  .service-box-item {
    background: #211e39;
    border: 1px solid transparent;
    padding: 40px 36px;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Hover Effects */
  .service-box-item:hover {
    border-color: var(--accent);
  }
  .service-box-item:hover .service-box-item-content h4 {
    color: var(--accent);
  }
  
  /* Icon */
  .service-box-item figure {
    width: 130px;
    height: 130px;
    background: #2a2645;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .service-box-item figure img {
    transition: transform 0.3s ease;
  }
  .service-box-item:hover figure img {
    transform: translateY(-8px);
  }
  
  /* Content */
  .service-box-item-content {
    margin: 0;
  }
  .service-box-item-content h4 {
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .service-box-item-content p {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
  }
  .service-box-item-content a {
    font-size: 18px;
    color: var(--accent);
    padding-bottom: 5px;
    position: relative;
    border-bottom: 2px solid var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .service-box-item-content a:hover {
    color: var(--light-purple-color);
  }
  .service-box-item-content a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--light-purple-color);
    transition: width 0.3s ease;
  }
  .service-box-item-content a:hover::after {
    width: 100%;
  }
  
  /* Container Spacing */
  .service-box .row:first-child {
    margin-bottom: 30px;
  }
  .service-box .row:last-child {
    margin-bottom: 40px;
  }
  
  /* Responsive Fix */
  @media (max-width: 767px) {
    .service-box-item {
      padding: 30px 20px;
    }
  
    .service-box-item figure {
      margin-bottom: 20px;
    }
  
    .service-box-item-content h4,
    .service-box-item-content p,
    .service-box-item-content a {
      text-align: center;
    }
  }
  
/***** service section css****/




/*******portfolio section******/
.portfolio-con{
    height: 544px;
    position: relative;
    background: var(--primary-color);
}
.portfolio-body-con{
    overflow: hidden;
}

.filterDiv {
    float: left;
    width: 100px;
    text-align: center;
    display: none;
}  
.filterDiv.show{
    display: block;
}
#myBtnContainer{
      margin-bottom: 45px;
}
#myBtnContainer button{
    border: none;
    color: var(--white-color);
    background: transparent;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;   
    display: inline-block;
    margin: 0 25px;
}
  #myBtnContainer button.active_button{
    border-bottom: 4px solid var(--accent);
    color: var(--accent);
}

#myBtnContainer button:focus{
      outline: none;
}
  .portfolio-img-con{
      margin: 0 -15px;
}
.portfolio-img-con .filterDiv:first-child{
      width: 33.33333%;
      padding: 0 15px;
}
.portfolio-img-con .filterDiv:nth-child(2){
      margin-bottom: 13px;
}
.portfolio-img-con .filterDiv:nth-child(2),
.portfolio-img-con .filterDiv:nth-child(3),
.portfolio-img-con .filterDiv:nth-child(4),
.portfolio-img-con .filterDiv:last-child{
    width: 33.33333%;
    padding: 0 15px;
}
.portfolio-img-content{
    position: absolute;
    bottom: 30px;
    width: 100%;
    padding: 0 48px 0 20px;
}
.portfolio-img-title h4{
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0;
    font-size: 18px;
    line-height: 18px;
}
.portfolio-img-title p{
    color: var(--white-color);
    font-size: 16px;
    margin-bottom: 0;
    line-height: 22px;
    font-family: 'Lato', sans-serif;
}
.portfolio-img-content a i{
    background: var(--accent);
    color: var(--white-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-weight: 300;
    font-size: 20px;
}
.portfolio-img-content a{
    text-decoration: none;
}
.portfolio-img figure:after{
    content: "";
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.0032387955182072714) 0%, rgba(17,19,43,0.6755077030812324) 70%); 
    position: absolute;
    top: 0;
    border-radius: 19px;
    width:100%;
    height: 321px;
    left: 0;
    display: none;
}
.portfolio-img figure{
    display: inline-block;
}
.portfolio-img-con .filterDiv:first-child .portfolio-img figure:after{
    width: 100%;
    height: 322px;
    left: 0;
}
.portfolio-img-content{
    display: none;
}
.portfolio-img-con .filterDiv:hover .portfolio-img-content,
.portfolio-img-con .filterDiv:hover .portfolio-img figure:after{
    display: block;
}
.portfolio-body-con{
    margin-top: -207px;
}
.portfolio-img-con:after {
    content: "";
    width: 35px;
    height: 38px;
    position: absolute;
    bottom: 64px;
    right: -116px;
    background: url(../image/corn-left-icon.png) no-repeat top left;
    animation: mover 1s infinite alternate;
    -webkit-animation: mover 1s infinite alternate;
}
.portfolio-btn {
    margin-top: 26px;
}
/*******portfolio section******/
/***** skill section css****/
.skill-con{
    background: rgb(33,30,57);
    overflow: hidden;
}

.skill-con .myskils{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.skill-con:after {
    content: "";
    width: 127px;
    height: 404px;
    position: absolute;
    top: 207px;
    right: 0;
    background: url(../image/circle-bg-img.png) no-repeat top right;
    animation: left-mover 1s infinite alternate;
    -webkit-animation: left-mover 1s infinite alternate;
}
.skill-con::before {
    content: "";
    width: 52px;
    height: 59px;
    position: absolute;
    top: 154px;
    right:72px;
    background: url(../image/half-circle-right-icon.png) no-repeat top left;
    animation: mover 1s infinite alternate;
    -webkit-animation: mover 1s infinite alternate;
}

.skill-inner-con::before {
    content: "";
    width: 35px;
    height: 38px;
    position: absolute;
    bottom: 26px;
    left: -116px;
    background: url(../image/triangle-icon.png) no-repeat top left;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

.service-skill-sttaf-item-heading p{
    color: #fff;
}
.download-bnt a{
    padding: 20px 32px 19px;
}
.skill-inner-con{
    z-index: 1;
}
.skill-right-con{
    padding-left: 40px;
}
.skill-right-con h6{
    font-weight: 600;
    margin-bottom: 15px;
}
.skill-right-con h2{
    font-weight: 700;
    color: var(--white-color); 
    margin-bottom: 11px;   
}
.skill-right-con p{
    font-family: 'Lato', sans-serif;
    color: var(--white-color);
    margin-bottom: 15px;
    font-size: 20px;
}
.skill-right-con p:nth-child(4){
    margin-bottom: 30px;
}
.circle-wrap {
    width: 140px;
    height: 140px;
    border: 4px solid rgba(160, 156, 187, 0.2);
    border-radius: 50%;
    margin: 0 auto 18px;
}

  .circle-wrap .circle .mask,
  .circle-wrap .circle .fill {
      width: 140px;
      height: 140px;
      position: absolute;
      border-radius: 50%;
      top: inherit;
  }
  .service-skill-sttaf-item-title {
    width: 140px;
    height: 140px;
}
  .circle-wrap .circle .mask {
      clip: rect(0px, 150px, 150px, 74px);
  }
  .circle-wrap .circle .mask .fill {
      clip: rect(0px, 75px, 150px, 0px);
      border:4px solid var(--accent);
  }
  .circle-wrap.firstPercentage .circle .mask.full,
  .circle-wrap.firstPercentage .circle .fill {
      animation: firstPercentage ease-in-out 4s forwards;
  }
  .circle-wrap.secondPercentage .circle .mask.full,
  .circle-wrap.secondPercentage .circle .fill {
      animation: secondPercentage ease-in-out 4s forwards;
  }
  .circle{
      margin-top: -6px;
      margin-left: -6px;
  }
  .circle-wrap.thirdPercentage .circle .mask.full,
  .circle-wrap.thirdPercentage .circle .fill {
      animation: thirdPercentage ease-in-out 4s forwards;
  }
  .circle-wrap.fourPercentage .circle .mask.full,
  .circle-wrap.fourPercentage .circle .fill {
      animation: fourPercentage ease-in-out 4s forwards;
  }
  .secondPercentage .circle .mask .fill{
    border: 4px solid var(--accent);
  }
  .secondPercentage h4{
      color: var(--white-color) !important;
  }  
  .secondPercentage span{
    color: var(--white-color);
}
.thirdPercentage .circle .mask .fill{
    border: 4px solid var(--accent);
  }
  .thirdPercentage h4{
      color: var(--white-color) !important;
  }  
  .thirdPercentage span{
    color: var(--white-color);
}
.fourPercentage .circle .mask .fill{
    border: 4px solid var(--accent);
}
.fourPercentage h4{
    color: var(--white-color) !important;
}
.fourPercentage span{
    color: var(--white-color);
}
  @keyframes firstPercentage {
      0% {
          transform: rotate(0deg);
      }
      100% {
          transform: rotate(135deg);
      }
  }

  @keyframes secondPercentage {
      0% {
          transform: rotate(0deg);
      }
      100% {
          transform: rotate(170deg);
      }
  }

  @keyframes thirdPercentage {
      0% {
          transform: rotate(0deg);
      }
      100% {
          transform: rotate(150deg);
      }
  }
  @keyframes fourPercentage {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(140deg);
    }
}

  @keyframes fadeIn {
      0% {
          opacity: 0;
      }
      100% {
          opacity: 1;
      }
  }
.static-txt{
    font-size: 22px;
    top: -5px;
    right: -8px;
    line-height: 22px;
}
.static-txt2{
    font-size: 42px;
    font-weight: 700;
    color: var(--white-color);
}
.skill-left-con .skill-left-item-con{
    background: var(--primary-color);
    padding: 33px 28px 35px;
    border-radius: 20px;
}
.service-skill-sttaf-con:first-child{
    margin-bottom: 30px;
}
.service-skill-sttaf-item-heading p{
    font-weight: 600;
    font-size: 20px;
}
.service-skill-sttaf-item-title h4{
    font-size: 42px;
    color: var(--white-color);
    font-weight: 700;
}
.service-skill-sttaf-con .col-lg-6:first-child .skill-left-item-con{
    margin-top: -27px;
}
/***** skill section css****/
/******blog section****/
.blog-con{
    background: var(--light-grey-color);
    overflow: hidden;
}
.blog-box-item:hover .blog-img img{
    transition: ease-in-out 0.5s;
}
.blog-box-item{
    overflow: hidden;
}
.blog-box-item:hover .blog-img img{
    transform: scale(1.1);
}
.blog-box-item{
    background: var(--primary-color);
    border-radius: 20px;
}
.blog-content {
    padding: 27px 27px 30px;
}
.blog-auteher-title {
    margin-bottom: 16px;
}
.blog-auteher-title span{
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    color: var(--accent);
}
.blog-auteher-title span:last-child{
    color: var(--text-color);
}
.blog-content h4 {
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 11px;
}
.blog-content p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 28px;
    margin-bottom: 12px;
    font-family: 'Lato', sans-serif;
}
.blog-content a{
    color: var(--accent);
    /* border-bottom: 2px solid var(--accent); */
    font-size: 18px;
    padding-bottom: 6px;
    text-decoration: none;
    position: relative;
}
.blog-content a:hover{
    color: var(--light-purple-color);
    /* border-color: var(--light-purple-color); */
}
.blog-content a:hover::after {
    width: 100%;
}
.blog-content a::after {
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    content: '';
    position: absolute;
    background: var(--light-purple-color);
    transition: ease-in-out 0.3s;
}
.blog-inner-con::before{
    content: "";
    width: 35px;
    height: 38px;
    position: absolute;
    bottom: 26px;
    left: -116px;
    background: url(../image/triangle-icon.png) no-repeat top left;
    animation: mover 1s infinite alternate;
    -webkit-animation: mover 1s infinite alternate;
}
.blog-inner-con h2{
    color: var(--white-color);
}
.blog-con:after{
    content: "";
    width: 127px;
    height: 404px;
    position: absolute;
    top: 207px;
    right: -6px;
    background: url(../image/circle-bg-img.png) no-repeat top right;
    animation: left-mover 1s infinite alternate;
    -webkit-animation: left-mover 1s infinite alternate;
}
.blog-con::before {
    content: "";
    width: 52px;
    height: 59px;
    position: absolute;
    top: 154px;
    right: 72px;
    background: url(../image/half-circle-right-icon.png) no-repeat top left;
    animation: mover 1s infinite alternate;
    -webkit-animation: mover 1s infinite alternate;
}
/******blog section****/
/******form section******/
.form-main-con{
    overflow: hidden;
}
.form-main-inner-con h2{
    color: var(--white-color);
}
#form_result{
    margin-bottom: 15px;
}
#form_result span{
    color: var(--text-color);
    margin-bottom: 15px;
}
.contact-information{
    background: var(--light-purple-color);
    border-radius: 28px;
    padding: 70px 40px 50px;
}
.contact-information li figure{
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
}










/* Base dark mode styles (shared) */
.contact-information-content {
    margin-left: 80px;
    margin-right: 40px;
}

/* Arabic-specific overrides */
html[lang="ar"] .contact-information-content {
    margin-right: 80px;
    margin-left: 40px;
    text-align: right;
}

html[lang="ar"] .contact-form input,
html[lang="ar"] .contact-form textarea {
    text-align: right;
    direction: rtl;
}

html[lang="ar"] .contact-information li figure {
    right: 27px;
    left: auto;
}

/* English-specific overrides */
html[lang="en"] .contact-information-content {
    margin-left: 80px;
    margin-right: 40px;
    text-align: left;
}
















.contact-information-content h5{
    font-size: 20px;
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-information-content p{
    font-size: 16px;
    line-height: 22px;
    color: var(--white-color);
    font-family: 'Lato', sans-serif;
}
.contact-information ul li{
    margin-bottom: 32px;
}
.contact-information ul li img{
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out;
}
.contact-information ul li:hover img{
    transform: translateY(-8px);
}
.contact-form input,
.contact-form textarea{
    background: #211e39;
    border: none;
    font-size: 16px;
    color: var(--text-color);
    padding: 17px 30px;
    border-radius: 30px;
    width: 100%;
    font-family: 'Lato', sans-serif;
    margin-bottom: 23px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: var(--text-color);
    font-size: 16px;
    font-family: 'Lato', sans-serif;
}
.contact-form input:focus,
.contact-form textarea:focus{
    outline: 1px solid #6f34fe;
    box-shadow: 0 0 85px 0 #211e39;
}
.contact-form textarea{
    height: 148px;
    resize: none;
    margin-bottom: 29px;
}
.contact-form button{
    border: none;
    padding: 19px 64px 18px;
    background: var(--accent);
    color: var(--white-color);
    font-size: 20px;
    line-height: 22px;
    border-radius: 36px;
    cursor: pointer;
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out;
    border: 1px solid transparent;
}
.contact-form button:hover{
    border-color: var(--light-purple-color);
    background: var(--light-purple-color);
    transform: translateY(-8px);
}
.form-main-inner-con:after{
    content: "";
    width: 35px;
    height: 38px;
    position: absolute;
    bottom: 140px;
    right: -116px;
    background: url(../image/corn-left-icon.png) no-repeat top left;
    animation: mover 1s infinite alternate;
    -webkit-animation: mover 1s infinite alternate;
}
/******form section******/
/******footer section*******/
.weight-footer-con{
    padding-top: 68px;
    padding-bottom: 20px;
    background: #211e39;
}
.footer-navbar ul li{
    padding: 0 18px;
    border-left: 2px solid #4f4b73;
    line-height: 18px;
}
.footer-navbar ul li a{
    text-decoration: none;
    color: #9692b0;
    font-family: 'Lato', sans-serif;
    position: relative;
}
.footer-navbar ul li a:hover{
    color: var(--accent);
}
.weight-footer-content figure{
    margin-bottom: 38px;
}
.footer-social-icon ul li a {
    text-decoration: none;
}
.footer-social-icon ul li a i{
    background: var(--blue-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--white-color);
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out;
}
.footer-social-icon ul li a i:hover{
    color: var(--white-color);
    background-color:#255afc ;
    transform: translateY(-8px);
}
.footer-social-icon ul li:nth-child(2) a i{
    background: #f45089;
    margin-left: 11px;
    margin-right: 11px;
}
.footer-social-icon ul li:nth-child(2) a i:hover{
    background: #f45089;
    color: var(--white-color);
    transform: translateY(-8px);
}
.footer-social-icon ul li:last-child a i{
    background: #1d74b1;
}
.footer-social-icon ul li:last-child a i:hover{
    color: var(--white-color);
    background: #1d74b1;
    transform: translateY(-8px);
}
.footer-navbar ul{
    margin-bottom: 36px;
}
.footer-social-icon{
    margin-bottom: 70px;
}
.copy-right-content{
    border-top: 1px solid #38354d;
}
.copy-right-content p{
    font-size: 14px;
    color: #9692b0;
    padding-top: 26px;
    font-family: 'Lato', sans-serif;
}
.weight-footer-con::before{
    content: "";
    width: 286px;
    height: 288px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../image/footer-left-dotted-img.png) no-repeat top left;
}
.weight-footer-con:after{
    content: "";
    width: 286px;
    height: 288px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(../image/footer-dotted-right-img.png) no-repeat top right;
}
/******footer section*******/
/**** tastimonials section****/
.tastimonials-con{
    overflow: hidden;
}
.testimonials-content h6{
    font-weight: 600;
    margin-bottom: 14px;
}
.testimonials-content figure{
    position: absolute;
    margin-top: 9px;
}
.testimonials-inner-content{
    margin-left: 52px;
}
.testimonials-content h2{
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: 12px;
}
.testimonials-content p{
    font-size: 20px;
    line-height: 33px;
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
}
.carousel-control-prev {
    left: 47px;
}
.testimonials-inner-content span:last-child{
    font-size: 16px;
    line-height: 16px;
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
}
.auther-name{
    color: var(--accent) !important;
    font-size: 20px;
    line-height: 22px;
    margin-bottom:6px;
    font-weight: 600;
    letter-spacing: 0.2px;
}
.carousel-control-next, .carousel-control-prev{
    opacity: 1;
    top: inherit;
    bottom: -86px;
    width: auto;
}
.carousel-control-next:hover, .carousel-control-prev:hover{
    opacity: 1;
}
.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-image: none;
}
.carousel-control-prev:hover{
    
    left: 37px;
}
.carousel-control-next:hover{
    padding-left: 10px;
}
.carousel-control-next,
.carousel-control-prev{
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: ease-out;
}
.carousel-control-prev i,
.carousel-control-next i{
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--accent);
    font-size: 24px;
    font-weight: 300;
}
.carousel-control-prev i:hover,
.carousel-control-next i:hover{
    background: var(--light-purple-color);
}
.carousel-control-next {
    left: 114px;
    right: initial;
}
.tastimonials-con::after{
    content: "";
    width: 52px;
    height: 59px;
    position: absolute;
    top: 115px;
    left: 72px;
    background: url(../image/half-circle-left-icon.png) no-repeat top left;
    animation: mover 1s infinite alternate;
    -webkit-animation: mover 1s infinite alternate;
}
.tastimonials-con::before {
    content: "";
    width: 127px;
    height: 404px;
    position: absolute;
    top: 132px;
    left: 0;
    background: url(../image/circle-bg-left-img.png) no-repeat top left;
    animation: right-mover 1s infinite alternate;
    -webkit-animation: right-mover 1s infinite alternate;
}
/**** tastimonials section****/
/***********/
#button {
    display: inline-block;
    background-color: #FF9800;
    width: 82px;
    height: 82px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 57px;
    right: 113px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;    
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;   
}
@-webkit-keyframes spineer {
    from {
    box-shadow: 0 0 0 0 rgba(255, 161, 34, .99)
    }
    to {
    box-shadow: 0 0 0 45px rgba(255, 161, 34, .01)
    }
    }    
    
    @keyframes spineer {
    from {
    box-shadow: 0 0 0 0 rgba(255, 161, 34, .99)
    }
    to {
    box-shadow: 0 0 0 45px rgba(255, 161, 34, .01)
    }
    }

  #button::after {
    content: "\f062";
    font-family: "Font Awesome 5 pro";
    font-weight: 300;
    font-size: 26px;
    line-height: 50px;
    color: #fff;
  }
  #button:hover {
    cursor: pointer;
  }
  #button:active {
    background-color: #555;
  }
  #button.show {
    opacity: 1;
    visibility: visible;
  }
  .modal-dialog {
    max-width: 48%;
}
.modal-header button{
    background: var(--accent);
    opacity: 1;
    position: absolute;
    right: 7px;
    top: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    
    justify-content: center;
}
.modal-header{
    border-bottom:none;
}
.modal-header button i{
    color: var(--white-color);
    font-weight: 300;
    font-size: 18px;
}
.close:focus, .close:hover{
    opacity: 1;
}
.modal-header button:focus{
    outline: none;
}
.service-model-content h4 {
    color: var(--white-color);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 20px;
}
.service-model-content p{
    font-size: 18px;
    line-height: 28px;
    color: var( --text-color);
    font-family: 'Lato', sans-serif;
}
/***********/
.fixed-header {
    background: #14213d;
    z-index: 3;
    transition: top 5s linear;
    padding: 0 !important;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slide-down 0.7s;
    box-shadow: 0 0 12px 0 #14213d;
}
.modal-body img {
    width: 100%;
}
.service-model-content{
    padding-bottom: 40px;
}
.blog-model-con .blog-box-item:hover .blog-img img{
    transform: scale(1);
}
.modal-body .blog-box-item{
    border-radius: 0;
}
.modal-body{
    padding-left: 30px;
    padding-right: 30px;
}
.See-btn{
    position: relative;
}
.footer-navbar ul li a::after,
.See-btn:after{
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    content: '';
    position: absolute;
    background: var(--light-purple-color);
    transition: ease-in-out 0.3s;
}
.See-btn:after{
    bottom: -2px;
}
.footer-navbar ul li a:hover::after,
.See-btn:hover:after{
    width: 100%;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
@-webkit-keyframes left-mover{
    0% { transform: translatex(0); }
    100% { transform: translatex(10px); }
}
@-webkit-keyframes right-mover{
    0% { transform: translatex(0); }
    100% { transform: translatex(-10px); }
}
.tastimonials-left-con img,
.skill-left-con .skill-left-item-con{
    transform: scale(1);
    transition: transform ease-in-out 0.5s;
}
.tastimonials-left-con img:hover,
.skill-left-con .skill-left-item-con:hover{
    transform: scale(1.1);
}
.skill-left-con .skill-left-item-con:hover{
    box-shadow: 0 0 85px 0 #2a2645;
}
/************/
  .cursor {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid var(--primary-color);
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    visibility: hidden;
    z-index: 9;
  }
  
  .cursor2 {
    width: 20px;
    height: 20px;
    visibility: hidden;
    border-radius: 100%;
    background-color: var(--accent);
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 9;
  }
  .hover {
    background-color: var(--primary-color);
    opacity: 0.8;
  }
  .cursorinnerhover {
    width: 50px;
    height: 50px;
    opacity: .5;
  }
  /******/
 .static-txt{
    color: #fff;
    font-size: 60px;
    font-weight: 400;
  }
 .dynamic-txts{
    height: 88px;
    overflow: hidden;
    margin: 0;
    display: inline-block;
  }
  .dynamic-txts li{
    list-style: none;
    animation: slide 12s steps(4) infinite;
  }
  @keyframes slide {
    100%{
      top: -360px;
    }
  }
  .dynamic-txts li h1{
    position: relative;
  }
  .dynamic-txts li h1::after{
    content: "";
    position: absolute;
    left: 0;
    height: 89%;
    width: 100%;
    background: rgba(33,30,57);
    border-left: 2px solid var(--accent);
    animation: typing 3s steps(10) infinite;
  }
  @keyframes typing {
    40%, 60%{
      left: calc(100% + 30px);
    }
    100%{
      left: 0;
    }
  }
.blog-content .footer-social-icon ul li a i{
      /* background: var(--primary-color); */
      color: var(--white-color);
      width: 40px;
      height: 40px;
      font-size: 16px;
}
.blog-model-con .contact-form{
    padding: 0 3px;
  }
.blog-model-con .contact-form input,.blog-model-con .contact-form textarea {
    box-shadow: 1px 6px 16px 0 #2a2645;
}
.blog-content h4:hover,
#myBtnContainer button:hover{
    color: var(--accent);
}
.model-list li{
    font-size: 18px;
    color: var(--text-color);
    margin-left: 28px;
    margin-bottom: 10px;
    position: relative;
}
.model-list li i{
    font-size: 18px;
    color: var(--accent);
    position: absolute;
    left: -28px;
    top: 2px;
}
.service-model-content{
    height: 800px;
    overflow-y: scroll;
}
.blog-model-form input{
    margin-bottom: 12px;
}
.blog-model-form textarea {
    height: 130px;
    margin-bottom: 20px;
}
.blog-model-form button {
    padding: 16px 52px;
}
.blog-model-con .modal-body{
    height: 900px;
    overflow-y: auto;
}
.blog-model-con h4:hover{
    color: var(--accent);
}
.comment-title {
    border-top: 1px solid var(--light-grey-color);
    margin-bottom: 30px !important;
    padding-top: 62px;
}
.blog-content .footer-social-icon ul li a .fab.fa-behance:hover{
    background-color: #255afc;
}
.banner-right-con img[alt="banner-right-img"]{
    animation: right-mover 1s ease-in-out infinite alternate;
}
.blog-model-con p{
    margin-bottom: 60px !important;
}


.modal-content{
    background-color: var(--primary-color);
}

















/* Glass Toggle Styles - WORKING VERSION */
.glass-toggle-wrapper {
    display: flex;
    align-items: center;
    margin-left: 15px;
  }
  
  .glass-toggle {
    display: none;
  }
  
  .glass-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70px;
    height: 34px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0 10px;
    cursor: pointer;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
  }
  
  .glass-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
  }
  
  .glass-icon {
    font-size: 16px;
    z-index: 1;
    transition: all 0.4s ease;
    pointer-events: none;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
  }
  
  .glass-icon.sun {
    color: #FFD700;
    opacity: 1;
    transform: translateX(0);
  }
  
  .glass-icon.moon {
    color: #B0E0FF;
    opacity: 0;
    transform: translateX(20px);
  }
  
  /* Dark Mode State */
  #glass-theme-toggle:checked + .glass-slider {
    background: rgba(0, 0, 0, 0.2);
  }
  
  #glass-theme-toggle:checked + .glass-slider .glass-thumb {
    transform: translateX(36px);
    background: #e0e0e0;
  }
  
  #glass-theme-toggle:checked + .glass-slider .glass-icon.sun {
    opacity: 0;
    transform: translateX(-20px);
  }
  
  #glass-theme-toggle:checked + .glass-slider .glass-icon.moon {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Hover Effect */
  .glass-slider:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Fallback for browsers that don't support backdrop-filter */
  @supports not (backdrop-filter: blur(10px)) {
    .glass-slider {
      background: rgba(255, 255, 255, 0.9);
    }
    #glass-theme-toggle:checked + .glass-slider {
      background: rgba(0, 0, 0, 0.7);
    }
  }












  .language-widget {
    position: relative;
    display: inline-block;
  }
  
  .lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fca61f;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
  }
  
  .lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 140px;
    background: rgba(255, 255, 255, 0.039);
    border: 1px solid #dddddd32;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 5px 0;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .language-widget:hover .lang-dropdown,
  .lang-btn:focus + .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    color: #f7f7f7;
    text-decoration: none;
    transition: background 0.2s;
  }
  
  .lang-option:hover {
    background: #f5f5f5;
  }
  
  .lang-arrow {
    transition: transform 0.3s ease;
    margin-left: 4px;
  }
  
  .language-widget:hover .lang-arrow {
    transform: rotate(180deg);
  }








  

/* ====================================== */
/* === Responsive Language Mobile Fix === */
/* ====================================== */

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 8px;
        position: relative;
    }

    .language-button {
        padding: 8px 12px;
        height: 40px;
    }

    .language-options {
        position: relative;
        top: 100%;
        bottom: auto;
        left: auto;
        right: 0;
        width: auto;
        max-height: 60vh;
        border-radius: 8px;
        transform: translateY(-10px);
        margin-top: 5px;
    }

    .language-switcher[data-open] .language-options {
        transform: translateY(0);
    }

    .language-option {
        padding: 10px 16px;
        font-size: 15px;
    }

    .flag-icon {
        width: 20px;
        height: 15px;
    }

    .language-options {
        max-height: 50vh;
        overflow-y: auto;
    }
}


/* ========================= */
/* === Dark Mode Styles === */
/* ========================= */

.dark-mode .language-button {
    background: linear-gradient(145deg, #333, #444);
    color: #fff;
}

.dark-mode .language-options {
    background: #444;
}

.dark-mode .language-option {
    color: #eee;
}

.dark-mode .language-option:hover,
.dark-mode .language-option:focus {
    background: #555;
}


/* ===================== */
/* === Popup Styles  === */
/* ===================== */

.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
    background: linear-gradient(145deg, #1e1e2f, #2a2a40);
    margin: 10% auto;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 500px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #fff;
    animation: slideDown 0.5s ease-in-out;
}

.popup-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00ffcc;
}

.popup-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ccc;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.popup-btn {
    background: linear-gradient(145deg, #00ffcc, #00b3ff);
    border: none;
    padding: 10px 20px;
    color: #1e1e2f;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.4);
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #00ffcc;
}


/* ===================== */
/* === Animations     === */
/* ===================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


/* ============================== */
/* === Skills Section Styling === */
/* ============================== */

:root {
    --skill-title-color: #ffffff;
    --skill-icon-color: #fca61f;
    --skill-text-color: #fff;
    --skill-box-bg: #ffffff00;
    --skill-font-heading: 'Josefin Sans', sans-serif;
    --skill-font-body: 'Lato', sans-serif;
}

body.dark-theme {
    --skill-title-color: #ffffff;
    --skill-icon-color: #ffffff;
    --skill-text-color: #eeeeee;
    --skill-box-bg: #1f1f2e;
}

.skill-box-reset {
    text-align: left !important;
}

.skill-box-content {
    background: var(--skill-box-bg);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
}

.skill-box-title {
    color: var(--skill-title-color);
    font-size: 24px;
    font-weight: 700;
    font-family: var(--skill-font-heading);
    margin-bottom: 20px;
}

.skill-box-section {
    text-align: left;
    width: 100%;
}

.skill-box-section h5 {
    color: var(--skill-title-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--skill-font-heading);
}

.skill-box-icon {
    color: var(--skill-icon-color);
    margin-right: 8px;
}

.skill-box-text {
    color: var(--skill-text-color);
    font-size: 16px;
    font-family: var(--skill-font-body);
    line-height: 26px;
}










/* Layout and spacing */
.row {
  margin: 0 -15px;
}
.col-md-4 {
  padding: 0 15px;
}

/* Portfolio card layout */
.card-style-box {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #1c1818;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Hover effect */
.card-style-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Image wrapper */
.card-style-box .portfolio-img {
  overflow: hidden;
  border-radius: 0;
}
.card-style-box .portfolio-img figure {
  margin: 0;
}
.card-style-box .portfolio-img figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Content under image */
.card-style-box .portfolio-img-content {
  padding: 24px;
  background-color: rgb(33 29 57);
  border-top: 1px solid rgb(33 29 57);
  color: rgb(33 29 57);
}

/* Title & description */
.card-style-box .portfolio-img-title h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.card-style-box .portfolio-img-title p {
  font-size: 15px;
  color: #dbd2d2;
  line-height: 24px;
  margin-bottom: 10px;
}

/* Arrow icon link */
.card-style-box a i {
  width: 40px;
  height: 40px;
  background: var(--accent, #ffae00);
  color: #ffffff00;
  border-radius: 50%;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.card-style-box a:hover i {
  background: var(--light-purple-color, #7134fe15);
}

/* Reset hidden hover styles from original CSS */
.portfolio-img-content {
  display: block !important;
  position: static !important;
}
.portfolio-img figure::after {
  display: none !important;
}
