/**********************************
***********************************
Nav-menu widget 
***********************************
**********************************/

.custom-menu-wrapper .custom-menu{
    display: flex;
    list-style-type: none;
    padding: 0;
    margin:0;
}
.custom-menu-wrapper{
    background-color: #fff;
    border-radius: 50px;
}

body.menu-open {
  overflow-y: hidden !important;
  height: 100vh; /* prevent mobile bounce scroll */
}

.layout-horizontal{
    padding: 0 45px 0 45px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

.layout-horizontal .custom-menu{
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    padding:14px 0;
}

.layout-vertical .custom-menu{
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.custom-menu li a {
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    color:#3C3E49;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
}


/* Default link style */
.custom-menu li a {
    color: #131e49;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect */
.desktop-menu .custom-menu li a:hover {
    color: #3763EB;
}

/* Active top-level link */
.desktop-menu .custom-menu .current-menu-item > a,
.desktop-menu .custom-menu .current_page_item > a,
.desktop-menu .custom-menu .current-menu-ancestor > a,
.desktop-menu .custom-menu .current-menu-parent > a {
    color: #3763EB;
    font-weight: 700;
}

/* Active submenu link */
.desktop-menu .custom-menu .sub-menu .current-menu-item > a,
.desktop-menu .custom-menu .sub-menu .current_page_item > a {
    color: #3763EB;
    font-weight: 700;
}

/* Normal submenu links */
.custom-menu .sub-menu li a {
    color: #131e49;
    font-weight: 400;
}

/* Hover on submenu links */
.custom-menu .sub-menu li a:hover {
    color: #3763EB;
    font-weight: 600;
}

.layout-vertical .menu-item{
    padding: 7px 0px;
}

.layout-horizontal .custom-menu li a {
    padding:0 10px;
}

.desktop-menu .custom-menu li a{
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.desktop-menu .custom-menu li{
    position:relative;
 }

.desktop-menu .custom-menu .menu-item-has-children .sub-menu{
    width:320px;
 }
 
.pointer-line .desktop-menu .custom-menu li::after {
    content: '';
    position: absolute;
    top:20px;
    left:0;
    right:0;
    margin: auto;
    bottom: 0;
    width:0;
    height: 2px;
    background: #3763EB;
}
.pointer-line .desktop-menu .custom-menu li:hover::after,
.pointer-line .desktop-menu .custom-menu li.current-menu-item::after {
    width: 22%;
}

.pointer-underline .desktop-menu .custom-menu li::after {
    content: "";
    position: absolute;
    top:23px;
    left: 0;
    right:0;
    margin:auto;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #3763EB;
    transition: width 0.3s ease;
}
.pointer-underline .desktop-menu .custom-menu li:hover::after,
.pointer-underline .desktop-menu .custom-menu li.current-menu-item::after {
    width: 80%;
}

/* Overline */
.pointer-overline .desktop-menu .custom-menu li::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 0;
    height: 2px;
    background: #3763EB;
    transition: width 0.3s ease;
}
.pointer-overline .desktop-menu .custom-menu li:hover::before,
.pointer-overline .desktop-menu .custom-menu li.current-menu-item::before {
    width: 100%;
}

/* Double line */
.pointer-double .desktop-menu .custom-menu li::before,
.pointer-double .desktop-menu .custom-menu li::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    background: #3763EB;
    transition: width 0.3s ease;
}
.pointer-double .desktop-menu .custom-menu li::before {
    top: -3px;
}
.pointer-double .desktop-menu .custom-menu li::after {
    bottom: -3px;
}
.pointer-double .desktop-menu .custom-menu li:hover::before,
.pointer-double .desktop-menu .custom-menu li:hover::after,
.pointer-double .desktop-menu .custom-menu li.current-menu-item::before,
.pointer-double .desktop-menu .custom-menu li.current-menu-item::after {
    width: 100%;
}

/* Background highlight */
.pointer-background .desktop-menu .custom-menu li {
    transition: background-color 0.3s ease, color 0.3s ease;
}
.pointer-background .desktop-menu .custom-menu li:hover,
.pointer-background .desktop-menu .custom-menu li.current-menu-item {
    background-color: #3C3E49;
    color: #fff;
}

.custom-menu-container svg{
    height: 16px;
    width: 16px;
    margin-left: 5px;
}

body.mobile-menu-mode .custom-menu .sub-menu {
  position: relative; /* or static */
  display: none;      /* still hidden initially */
}

.menu-item-has-children .sub-menu{
    display: none;
    position: relative;
    border-radius: 16px !important;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #E8E8E8;
    background: #f6f6f7 !important;
    margin: 5PX 15px !important;
    transform: translateY(12px);
}
.sub-menu .menu-item{
    padding: 10px 10px;
}
.menu-item a::after{
    display: none;
}

.menu-item-has-children:hover .sub-menu, .menu-item-has-children.active > .sub-menu{
    display: block;
    position: absolute;
    z-index: 3;
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin:0;
    transform: translateY(0);
}

.custom-menu .menu-item-has-children svg{
    fill:#3763EB;
    height:16px;
    width:16px;
}



.custom-menu-toggle {
  display: none; /* Hide by default */
}

.menu-toggle-icon svg{
  width:24px;
}
.contact-us-mobile{
    display: none;
}





@media (max-width:1200px){
    .layout-horizontal {
    padding: 0 10px 0 10px;
}
}

@media (max-width:1024px){
    .contact-us-mobile{
        display: block;
    }
    .contact-us-mobile a{
        display: inline-block !important;
        padding: 11px 25px;
        font-size: 16px;
        font-weight: 500;
        color: #fff !important;
        background: linear-gradient(360deg, #3763EB, #5980F8);
        border: none;
        border-radius: 50px;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(55, 99, 235, 0.3);
        overflow: hidden;
        z-index: 1;
        transition: all .45s;
        margin-left: 20px !important;
    }
    .custom-menu-wrapper {
        background-color: transparent !important;
        border-radius: 0px !important;
    }
}


/**********************************
***********************************
hero-headings widget 
***********************************
**********************************/


.demo1-hero-headings{
        display: flex;
        flex-direction: column;
    }

.demo1-hero-headings .hero-top{
        font-weight: 500;
        font-size: 16px;
        line-height: 26px;
        color:#3C3E49;
        margin-bottom:30px;
        background-color: #3763EB1A;
        border-radius: 80px;
        padding: 12px 18px 12px 18px;
        width: fit-content;
    }

.demo1-hero-headings .hero-title{
        font-weight: 700;
        color:#262935;
        margin-bottom:25px;
    }

.demo1-hero-headings .hero-desc{
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        color:#3C3E49;
    }
.demo1-hero-headings .hero-heading{
        color:#3763EB;
    }
/* Common animation base */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Title animation */
.demo1-hero-headings .hero-top {
  animation: fadeUp 1s ease-out 0.3s both;
}

/* Subtitle animation */
.demo1-hero-headings .hero-title {
  animation: fadeUp 1.2s ease-out 0.6s both;
}

/* Description animation */
.demo1-hero-headings .hero-desc {
  animation: fadeUp 1.4s ease-out 0.9s both;
}


/* Headings */
.demo1-hero-headings h1 { font-size: 52px; line-height: 72px; }
.demo1-hero-headings h2 { font-size: 42px; line-height: 60px; }
.demo1-hero-headings h3 { font-size: 32px; line-height: 48px; }
.demo1-hero-headings h4 { font-size: 26px; line-height: 36px; }
.demo1-hero-headings h5 { font-size: 20px; line-height: 28px; }
.demo1-hero-headings h6 { font-size: 18px; line-height: 26px; }
.demo1-hero-headings p,
.demo1-hero-headings div { font-size: 16px; line-height: 24px; }

/* Responsive Style Start */
@media (max-width: 1400px) {
.demo1-hero-headings .hero-title {
    font-size: 40px;
    line-height: 50px;
}
}

@media (max-width: 991px) {
.demo1-hero-headings .hero-title {
    font-size: 32px;
    line-height: 42px;
    
}
}

@media (max-width: 767px) {
.demo1-hero-headings .hero-title {
    font-size: 28px;
    line-height: 38px;
    text-align: center !important;
    
}
.demo1-hero-headings .hero-top{
    margin: 0 auto 30px;

}

.demo1-hero-headings .hero-desc{
    text-align: center !important;
}
.demo1-hero-headings .hero-top{
    text-align: center;
    font-size: 12px;
}
}

/**********************************
***********************************
button widget 
***********************************
**********************************/

.demo1-button-wrapper .starbiz-button{
  position: relative;
  display: inline-block;
  padding: 11px 25px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(360deg, #3763EB, #5980F8);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(55, 99, 235, 0.3);
  overflow: hidden;
  z-index: 1;
  transition: all .45s;
}

.demo1-button-wrapper .starbiz-button .btn-overlay {
    position: absolute;
    width: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0, 0);
    transition: transform 0.45s cubic-bezier(0.75, 0.1, 0.25, 0.9);
}

.demo1-button-wrapper .starbiz-button .btn-overlay::after {
    background-color: #000;
}

.demo1-button-wrapper .starbiz-button:hover{
   box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.73);
}

.demo1-button-wrapper .starbiz-button:hover .btn-overlay {
    transform: translate(-50%, -50%) scale(1, 1);
}

.demo1-button-wrapper .starbiz-button .btn-overlay::after {
    position: relative;
    content: "";
    display: block;
    padding-top: 100%;
    border-radius: 50%;
}

.demo1-button-wrapper .starbiz-button .icon svg{
    width: 30px;
    height: 15px;
    fill: #fff;
}

.demo1-button-wrapper .starbiz-button .text , .starbiz-button .icon{
   position: relative;
   color: #fff;
   z-index: 999 !important;
}

@media (max-width: 1024px) {
.demo1-button-wrapper{
    text-align: center;
}
}


/**********************************
***********************************
hero-image widget 
***********************************
**********************************/

.demo1-hero-banner .image-wrapper{
    position: relative;
    text-align: center;
}

.bg-img{
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: -18px;
    z-index: -1;
    opacity: 0;
   transform: scale(1.1);
   animation: bgFadeZoom 2s ease-out forwards, bgFloat 6s ease-in-out 2s infinite alternate;
}

/* Main image (person) fade + slide-up animation */
.main-img {
  position: relative;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: mainAppear 1.2s cubic-bezier(.25,.9,.3,1.1) 0.5s forwards, mainFloat 6s ease-in-out 2s infinite alternate;
}

/* Keyframes for background */
/* Keyframes for background */
@keyframes bgFadeZoom {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Soft floating movement for background */
@keyframes bgFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-12px) scale(1.03); }
}

/* Keyframes for main image appearance */
@keyframes mainAppear {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Floating animation for main image (gentle up/down) */
@keyframes mainFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-8px) scale(1.01); }
}

.icon-img{
    position: absolute;
    top: 0;
    left: 0;
     animation-fill-mode: forwards;
      animation:
    iconAppear 1.2s ease-out 0.3s forwards,
    iconFloat 4s ease-in-out 1.6s infinite alternate;
}
.team-img {
    position: absolute;
    top: 16%;
    right: -16%;
     animation-fill-mode: forwards;
       animation:
    teamAppear 1.3s ease-out 0.5s forwards,
    teamFloat 5s ease-in-out 1.8s infinite alternate;
}
.business-img{
    position: absolute;
    bottom: -15%;
    left: -15%;
     animation-fill-mode: forwards;
      animation:
    businessAppear 1.4s ease-out 0.7s forwards,
    businessFloat 6s ease-in-out 2s infinite alternate;
}




/* ====== Appear Animations ====== */
@keyframes iconAppear {
  0% {
    opacity: 0;
    transform: translate(-40px, -40px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes teamAppear {
  0% {
    opacity: 0;
    transform: translate(40px, -40px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes businessAppear {
  0% {
    opacity: 0;
    transform: translate(-40px, 40px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

/* ====== Floating Animations (Continuous Movement) ====== */
@keyframes iconFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes teamFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(10px) rotate(-2deg); }
}

@keyframes businessFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(2deg); }
}






/* ====== Base Setup ====== */
.icon-img,
.team-img,
.business-img {
  position: absolute;
  opacity: 0;
  animation-fill-mode: forwards;
  max-width: 100%;
  height: auto;
  transition: all 0.4s ease;
}

/* ====== ICON IMAGE (top-left) ====== */
.icon-img {
  top: 0;
  left: 0;
  animation:
    iconAppear 1.2s ease-out 0.3s forwards,
    iconFloat 4s ease-in-out 1.6s infinite alternate;
}

/* ====== TEAM IMAGE (top-right) ====== */
.team-img {
  top: 16%;
  right: -16%;
  animation:
    teamAppear 1.3s ease-out 0.5s forwards,
    teamFloat 5s ease-in-out 1.8s infinite alternate;
}

/* ====== BUSINESS IMAGE (bottom-left) ====== */
.business-img {
  bottom: -15%;
  left: -15%;
  animation:
    businessAppear 1.4s ease-out 0.7s forwards,
    businessFloat 6s ease-in-out 2s infinite alternate;
}

/* ====== Appear Animations ====== */
@keyframes iconAppear {
  0% {
    opacity: 0;
    transform: translate(-40px, -40px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes teamAppear {
  0% {
    opacity: 0;
    transform: translate(40px, -40px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes businessAppear {
  0% {
    opacity: 0;
    transform: translate(-40px, 40px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

/* ====== Floating Animations ====== */
@keyframes iconFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes teamFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(10px) rotate(-2deg); }
}

@keyframes businessFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(2deg); }
}

/* ====== Mobile Responsive Styles ====== */



@media (max-width: 1300px) {
.team-img {
    width: 40%;
    top: 21%;
    right: 0;
}
}

@media (max-width: 1024px) {
  .icon-img {
    width: 90px;
    top: 5%;
    left: 2%;
  }
    .team-img {
        width: 30%;
        top: 20%;
        right: 10%;
    }
    .business-img {
        width: 30%;
        bottom: -10%;
        left: 10%;
    }
}

@media (max-width: 768px) {
  .main-img{
    width: 100%;
    max-width: 250px !important;
  }
  .bg-img{
        width: 100%;
    max-width: 335px !important;
  }
}

@media (max-width: 480px) {
      .business-img {
        width: 57%;
        bottom: -20%;
        left: -8%;
    }
        .team-img {
        width: 50%;
        top: 22%;
        right: 0%;
    }
}


/**********************************
***********************************
headings widget 
***********************************
**********************************/


.demo1-headings{
        display: flex;
        flex-direction: column;
}

.demo1-headings .hero-top{
        font-weight: 600;
        font-size: 20px;
        line-height: 20px;
        margin-bottom:15px;
}

.demo1-headings .hero-heading{
        font-weight: 700;
        margin-bottom:15px;
}

.demo1-headings .hero-desc{
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
}

/* color option for both style */
.demo1-headings .hero-top-style1{
        color:#3763EB;
}

.demo1-headings .hero-top-style2{
        color:#5F82EF;
}

.demo1-headings .hero-heading-style1{
        color:#262935;
}

.demo1-headings .hero-heading-style2{
        color:#EBEFFD;
}

.demo1-headings .hero-desc-style1{
        color:#3C3E49;
}

.demo1-headings .hero-desc-style2{
        color:#D4D4D7;
}


.demo1-headings .hero-heading.h1 { font-size: 48px; line-height: 64px; }
.demo1-headings .hero-heading.h2 { font-size: 40px; line-height: 56px; }
.demo1-headings .hero-heading.h3 { font-size: 32px; line-height: 48px; }
.demo1-headings .hero-heading.h4 { font-size: 26px; line-height: 36px; }
.demo1-headings .hero-heading.h5 { font-size: 20px; line-height: 28px; }
.demo1-headings .hero-heading.h6 { font-size: 16px; line-height: 24px; }
.demo1-headings .hero-heading.div,
.demo1-headings .hero-heading.p { font-size: 16px; line-height: 24px; }


/**********************************
***********************************
subscribe-form widget 
***********************************
**********************************/

.demo1-subscribe {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    max-width: 470px;
    margin: 0 auto;
}

.demo1-subscribe .subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 100%;
    background: transparent;
    overflow: hidden;
    gap:30px;
}


.demo1-subscribe .subscribe-mail {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 25px;
    width: 100%;
    border-radius: 50px;
    border:1px solid #51545D;
}

.demo1-subscribe .subscribe-mail i,
.demo1-subscribe .subscribe-mail svg {
    width:26px;
    fill:#BEBFC2;
}
 .footer-btn .demo1-button-wrapper .starbiz-button {
    background: #FFFFFF !important;
}
.demo1-subscribe .subscribe-mail input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 17px 10px;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color:#BEBFC2;
}

.demo1-subscribe .subscribe-btn button{
  position: relative;
  display: inline-block;
  padding: 11px 25px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(360deg, #3763EB, #5980F8);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(55, 99, 235, 0.3);
  overflow: hidden;
  z-index: 1;
  transition: all .45s;
}

.demo1-subscribe .subscribe-btn button .btn-overlay {
    position: absolute;
    width: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0, 0);
    transition: transform 0.45s cubic-bezier(0.75, 0.1, 0.25, 0.9);
}

.demo1-subscribe .subscribe-btn button .btn-overlay::after {
    background-color: #000;
}

.demo1-subscribe .subscribe-btn button:hover{
   box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.73);
}

.demo1-subscribe .subscribe-btn button:hover .btn-overlay {
    transform: translate(-50%, -50%) scale(1, 1);
}

.demo1-subscribe .subscribe-btn button .btn-overlay::after {
    position: relative;
    content: "";
    display: block;
    padding-top: 100%;
    border-radius: 50%;
}

.demo1-subscribe .subscribe-btn button .icon svg{
    width: 18px;
    height: 15px;
    fill: #fff;
}

.demo1-subscribe .subscribe-btn button .text , .demo1-subscribe .subscribe-btn button .icon{
   position: relative;
   color: #fff;
   z-index: 999 !important;
}


/**********************************
***********************************
service-box widget 
***********************************
**********************************/

.demo1-service-wrapper{
    width: 100%;
}
.demo1-service-wrapper .services-row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.demo1-service-box .service-icons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.demo1-service-box .arrow-img {
    border: 1px solid #3763EB;
    padding: 6px;
    border-radius: 6px;
}
.demo1-service-box .arrow-img:hover {
    border: 1px solid #3763EB;
    background-color: #fff;
    padding: 6px;
    border-radius: 6px;
}
/* ****** */
.demo1-service-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px 120px 15px 15px;
    padding: 40px 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), 
              0 0 10px rgba(0, 0, 0, 0.05); /* all side subtle shadow */
}
.demo1-service-box::before{
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    border-bottom: 4px solid #3763EB;
    left: 0;
    right: 0;
}
/* Circle styling (initially bottom-right and slightly hidden) */
.demo1-service-box::after {
  content: "";
  position: absolute;
  bottom: -110px; /* partially hidden */
  right: -110px;  /* adjust based on design */
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, #EBEFFD, #EBEFFD);
    border-radius: 50%;
    opacity: 0.3;
    transform: translateY(0);
    transition: all 0.6s ease-in-out;
    z-index: -2;
}

/* Hover animation - circle moves upward and becomes fully visible */
.demo1-service-box:hover::after {
    bottom: 0;
    right: 0;
    opacity: 0.8;
    transform: translateY(0px);
    width: 100%;
    height: 100%;
    border-radius: 0;
}
.service-content a h4{
    color: #262935;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-top: 40px;
}
.service-desc{
    color: #3C3E49;
    font-size: 16px;
    font-weight: 400;
    margin-top: px;
}

.demo1-service-box .service-content{
    display: flex;
    flex-direction: column;
}


@media (max-width: 991px) {
.demo1-service-wrapper .services-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

}

@media (max-width: 767px) {
.demo1-service-wrapper .services-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}
.service-content a h4 {
    font-size: 18px;
    line-height: 28px;
}
}


/**********************************
***********************************
icon-box widget 
***********************************
**********************************/

.demo1-icon-box .icon svg{
    width: 63px;
    height:63px;
}

.demo1-icon-box{
    background-color: #2f323d;
    padding: 25px 30px ;
    border-radius: 16px ;
    border: 1px solid #545763;
    display: flex;
}

.demo1-icon-box .icon-content{
    display: flex;
    flex-direction: column;
}

.icon-content h4{
    margin-top: 20px;
    font-size: 20px;
    line-height: 30px;
    color: #EBEFFD;
    font-weight: 600;
}

.icon-desc{
    font-size: 16px;
    line-height: 26px;
    color: #E9EAEB;
    font-weight: 400;
    margin-bottom: 0;
}



.demo1-icon-box .icon svg,
.demo1-icon-box .icon-title,
.demo1-icon-box .icon-desc {
  transition: all 0.3s ease;
}


/* Hover effect */
.demo1-icon-box:hover {
  background-color: #ffffff;
  border-color: #007bff;
}

/* Change SVG colors on hover (targeting circle and paths inside SVG) */
.demo1-icon-box:hover .icon svg {
  fill: #007bff;
}

.demo1-icon-box:hover .icon svg {
  fill: #ffffff;
}

/* Change text colors */
.demo1-icon-box:hover .icon-title {
  color: #1a1a1a;
}

.demo1-icon-box:hover .icon-desc {
  color: #555555;
}


/**********************************
***********************************
image-box widget 
***********************************
**********************************/

.demo1-image-box{
    background-color: #fff;
    padding:0px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 16px;

}

.demo1-image-box .image-content{
    display: flex;
    flex-direction: column;
}

.image-content h4{
    font-size: 18px;
    line-height: 30px;
    color: #000;
    font-weight: 500;
}

.image-desc{
    font-size: 16px;
    line-height: 26px;
    color: #000;
    font-weight: 400;
    margin-bottom: 0;
}
.image-box-img{
    background-color: #ebeffd;
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}


/**********************************
***********************************
counter widget 
***********************************
**********************************/

.demo1-counter-widget {
    display: flex;
    color: #E9EAEB;
    align-items: center;
    gap: 20px;
}

.demo1-counter-widget .demo1-counter-inner{
    display: flex;
    flex-direction: column;
}

.demo1-counter-prefix,
.demo1-counter-value,
.demo1-counter-suffix {
  display: inline;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.demo1-counter-number {
    font-size: 36px;
    font-weight:600;
    line-height: 46px;
    color: #E9EAEB;
}

.demo1-counter-title {
    font-size: 16px;
    font-weight:400;
    line-height: 26px;
    color: #E9EAEB;
}

.counter-img{
    
    background: linear-gradient(135deg, #3763EB, #5980F8);
    padding: 20px;
    border-radius: 50px;
     transition: 
    background-position 0.5s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease,
    filter 0.3s ease;
}
.counter-img img:hover {
 background-position: right center;
  transform: scale(1.1) rotate(1deg);
  box-shadow: 0 12px 24px rgba(55, 99, 235, 0.4);
  filter: brightness(1.1);
}


@media (max-width:991px){
    .demo1-counter-number {
    font-size: 28px;
    line-height: 30px;
}
.counter-img img{
    padding: 10px;
}
.demo1-counter-title {
    font-size: 14px;
    line-height: 20px;
}
.counter-img {
    padding: 10px;
}
}

@media (max-width:991px){
    .counter-img{
        padding: 2px;
    }
}


/**********************************
***********************************
contact-form widget 
***********************************
**********************************/

/* Input & Textarea Styles */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 15px;
  box-sizing: border-box;
  transition: border 0.3s;
}

.wpcf7 textarea {
  height: 120px;
  min-height: 60px;
  resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #4d90fe;
  outline: none;
}

/* Form Row (Two Columns for Full/Last Name) */
.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
}

.form-full {
  width: 100%;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
  background: linear-gradient(135deg, #4d90fe, #5c6df8);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(77,144,254,0.3);
}

.wpcf7 input[type="submit"]:hover {
  background: linear-gradient(135deg, #3c7ef8, #4d5ff8);
}

@media (max-width:767px) {
  .form-row {
    display: flex;
    flex-direction: column;
    gap: 0;
}
}


/**********************************
***********************************
team widget 
***********************************
**********************************/

.demo1-team-wrapper .team-row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:45px;
}

.demo1-team-card{
    width: fit-content !important;
}

.demo1-team-card:nth-child(odd) .team-image-box {
    position: relative;
    border-radius: 10px 10px 177px 172px !important;
    clip-path: ellipse(90% 72% at 69% 47%) !important;
    overflow: hidden;
    border: none;
    box-shadow: 0 12px 24px rgba(222, 223, 226, 0.4);
}
.demo1-team-card:nth-child(even) .team-image-box{
    position: relative;
    border-top-right-radius: 49%;
    border-top-left-radius: 49%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0 12px 24px rgba(222, 223, 226, 0.4);
}
.demo1-team-card .team-image-box .starbiz-social-icons{
    display: flex;
    justify-items: center;
}

.demo1-team-card .social-icon svg{
    width:38px;
    fill: #3763EB;
}

.demo1-team-card .team-content {
    text-align: center;
    position: absolute;
    bottom: 0px;
    margin: auto;
    left: 0;
    right: 0;
    background: #fff;
    transition: all 0.6s ease-in-out;
}

.demo1-team-card .starbiz-social-icons {
    justify-content: center;
    position: absolute;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    transform: translatey(0px);
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
    opacity: 0;
}

.demo1-team-card:hover .starbiz-social-icons{
    transform: translatey(-120px);
    opacity: 1;
}

.demo1-team-card:hover .team-content{
    background: #3763EB;
}

.demo1-team-card:hover .team-name ,.demo1-team-card:hover .team-des{
    color: #fff;
}

.demo1-team-card .team-name{
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    color: #3763EB;
}

.demo1-team-card .team-des{
    margin-bottom: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #51545D;
}

.demo1-team-card .team-content {
    padding: 27px 0 34px;
}

.demo1-team-card .starbiz-social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.demo1-team-card .starbiz-social-icons.shape-rounded .social-icon,
.demo1-team-card .icon-bg.shape-rounded {
    border-radius: 8px;
}

.demo1-team-card .starbiz-social-icons.shape-square .social-icon,
.demo1-team-card .icon-bg.shape-square {
    border-radius: 0;
}

.demo1-team-card .starbiz-social-icons.shape-circle .social-icon,
.demo1-team-card .icon-bg.shape-circle {
    border-radius: 50%;
}

.demo1-team-card .icon-bg {
    padding: 10px;
    background: #fff;
}

.demo1-team-card .starbiz-social-icons .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    fill: #fff;
    font-size: 18px;
}

@media (max-width:991px){
    .demo1-team-wrapper .team-row{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap:45px;
    }
}
@media (max-width:767px){
    .demo1-team-wrapper .team-row{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap:45px;
    }
}


/**********************************
***********************************
post-widget widget 
***********************************
**********************************/

.post-button-wrapper .post-btn{
  position: relative;
  display: inline-block;
  padding: 11px 25px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(360deg, #3763EB, #5980F8);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(55, 99, 235, 0.3);
  overflow: hidden;
  z-index: 1;
  transition: all .45s;
}

.post-button-wrapper .post-btn .post-btn-overlay {
    position: absolute;
    width: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0, 0);
    transition: transform 0.45s cubic-bezier(0.75, 0.1, 0.25, 0.9);
}

.post-button-wrapper .post-btn .post-btn-overlay::after {
    background-color: #000;
}

.post-button-wrapper .post-btn:hover{
   box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.73);
}

.post-button-wrapper .post-btn:hover .post-btn-overlay {
    transform: translate(-50%, -50%) scale(1, 1);
}

.post-button-wrapper .post-btn .post-btn-overlay::after {
    position: relative;
    content: "";
    display: block;
    padding-top: 100%;
    border-radius: 50%;
}

.post-button-wrapper .post-btn .post-btn-icon svg{
    width: 30px;
    height: 15px;
    fill: #fff;
}

.post-button-wrapper .post-btn .post-btn-text , .post-btn .post-btn-icon{
   position: relative;
   color: #fff;
   z-index: 999 !important;
}




/* ******* */
.demo1-post-card {
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(0);
  animation: floatUp 0.6s ease forwards;
  z-index: 1;
}

/* Entrance animation */
@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover motion */
.demo1-post-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Image styling */
.demo1-post-card .post-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 16px;
  overflow: hidden;
}

/* Image zoom effect on hover */
.demo1-post-card:hover .post-image img {
  transform: scale(1.1);
  border-radius: 16px;
}
.post-image{
    overflow: hidden;
    border-radius: 16px;
    z-index:1;
}

/* Content section */
.demo1-post-card .post-content {
    margin: -50px auto 15px auto;
    z-index: 9;
    background: #fff;
    width: 90%;
    border-radius: 15px;
    border-radius: 16px;
    padding: 22px 24px 28px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 4px -4px 25px rgba(0, 0, 0, 0.08);
}
.post-button-wrapper .post-btn .post-btn-icon svg {
    width: 12px !important;
    height: auto !important;
}   
/* Date style */
.demo1-post-card .post-date {
  display: block;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
}

/* Title */
.demo1-post-card .demo1-post-title{
    font-size: 16px;
    font-weight: 400;
    color: #676972;
    line-height: 24px;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}
.demo1-post-card .demo1-post-title a{
    color: #676972;
}
.demo1-post-card:hover .demo1-post-title {
  color: #676972;
}

/* Read More button */
.demo1-post-card .post-button-wrapper a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #3763EB, #5980F8);
  color: #fff;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.demo1-post-card .post-button-wrapper a:hover {
  background: linear-gradient(90deg, #1e40af, #2563eb);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Optional subtle glow on hover */
.demo1-post-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.demo1-post-card:hover::after {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
/* .demo1-post-card .post-content{
    width: 250px;
} */
}
@media (max-width: 768px) {
  .demo1-post-card {
    margin-bottom: 25px;
  }
  .demo1-post-card .post-content {
    padding: 18px;
  }
  .demo1-post-card .demo1-post-title {
    font-size: 17px;
  }
}



/**********************************
***********************************
fancy-box widget 
***********************************
**********************************/

.demo1-fancy-box{
    position: relative;
    display: flex;
}

/* Initial bottom border */
.demo1-fancy-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 0 0 16px 16px;
  background-color: #3763EB;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

/* On hover - fill the bottom area fully */
.demo1-fancy-box:hover::before {
  transform: scaleX(1);
  bottom:100%
}

/* Change background color to blue on hover to fill bottom */
.demo1-fancy-box:hover {
    transition: transform 0.4s ease;
  /* background-color: #3763EB; */
   background: linear-gradient(135deg, var(--theme-color, #007bff), #3763EB);
  color: #fff;
}

/* Change text color on hover */
.demo1-fancy-box:hover .fancy-title,
.demo1-fancy-box:hover .fancy-desc {
  color: #fff;
}

/* Optional: Make sure icons also invert or turn white */
.demo1-fancy-box:hover .fancy-box-img i,
.demo1-fancy-box:hover .fancy-box-img svg,
.demo1-fancy-box:hover .fancy-box-img img {
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

.fancy-content {
    display: flex;
    flex-direction: column;
}




















.demo1-fancy-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
     transition: all 0.6s ease;
}
.fancy-title {
    color: #262935;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

.fancy-desc {
    color: #3C3E49;
    font-size: 16px;
    font-weight: 400;
    margin-top: px;
}


/* Hover animation */
.demo1-fancy-box:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.demo1-fancy-box:hover::before {
  opacity: 1;
}


/**********************************
***********************************
accordion widget 
***********************************
**********************************/

.theme-accordion .accordion-item {
        margin-bottom: 25px;
    }
    .theme-accordion .accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 18px 25px;
         background-color: #fff;
        border-radius: 12px;
        box-shadow: 3px 1px 8px rgb(58 58 58 / 12%);
        margin-bottom: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .theme-accordion .accordion-header.active {
        background: #fff;

    }
    .theme-accordion .accordion-title {
        font-weight: 500;
        font-size: 18px;
        line-height: 28px;

    }
    .theme-accordion .accordion-icon i {
        display: none;
        font-size: 14px;
        background-color: #ebeffd;
        padding: 8px;
        border-radius: 50px;
        color: #3763EB;
    }
    .theme-accordion .accordion-header .expand-icon {
        display: inline-block;
    }
    .theme-accordion .accordion-header.active .expand-icon {
        display: none;
    }
    .theme-accordion .accordion-header.active .collapse-icon {
        display: inline-block;
        background-color: #ebeffd;
        padding: 8px;
        border-radius: 50px;
        color: #3763EB;
        font-size: 14px;
    }
    .theme-accordion .accordion-content {
        padding:  15px 15px 0;
        display: none;
        background: #fff;
    }

    @media (max-width:991px){
    .theme-accordion .accordion-title {
        font-size: 16px;
        line-height: 26px;

    }
}


/**********************************
***********************************
images widget 
***********************************
**********************************/

/* Wrapper for the images */
.demo1-single-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Big Image Animation (Main Image) */
.single-image-wrap {
    animation: slideFromTop 2s ease-out;
    opacity: 0; /* Make image invisible initially */
    animation-fill-mode: forwards;
    width: 100%;
    margin-left: 30px;
    margin-bottom: -41px;
}
.single-image-wrap img{
    border-radius: 16px !important;
 }
/* Top-to-Bottom Animation for Main Image */
@keyframes slideFromTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Dots Image Animation */
.service-dots-img {
    animation: zoomInOut 4s infinite alternate ease-in-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Zoom-In and Zoom-Out Animation for Dots Image */
@keyframes zoomInOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}



/**********************************
***********************************
multiple-images widget 
***********************************
**********************************/

.multi-image {
  position: relative;
}

.multi-main-img{
  border-radius: 16px !important;
}

.multi-second-img{
  position: absolute;
  right: 0;
  bottom: 0px;
  border-radius: 16px !important;  
}



.round-img{
  animation: animName 5s linear infinite;
  margin:20px;
  position: absolute;
  right: -89px;
  top: 14px;
}

@keyframes animName {
0%{
  transform: rotate(0deg);
  }
100%{
  transform: rotate(360deg);
  }
}



.dots-img{
    animation: dots-img 5s ease-out infinite;
    margin-left: 101px;
    margin-top: 37px;
}

@keyframes dots-img {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.7, 0.7);
  }
  100% {
    transform: scale(1, 1);
  }
}









/* 🔹 Main Image - Top Left to Bottom Right + Infinite Float */
.multi-main-img {
  opacity: 0;
  transform: translate(-80px, -80px);
  animation: slideTopLeftToBottomRight 1.8s ease-out forwards,
             floatMain 5s ease-in-out infinite;
  animation-delay: 0s, 1.8s; /* float starts after reveal */
}

@keyframes slideTopLeftToBottomRight {
  0% {
    opacity: 0;
    transform: translate(-80px, -80px);
    clip-path: inset(0 100% 100% 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
    clip-path: inset(0 0 0 0);
  }
}

/* subtle continuous float motion */
@keyframes floatMain {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 10px);
  }
}

/* 🔹 Second Image - Bottom Right to Top Left + Infinite Float */
.multi-second-img {
  opacity: 0;
  transform: translate(80px, 80px);
  animation: slideBottomRightToTopLeft 1.8s ease-out forwards,
             floatSecond 6s ease-in-out infinite;
  animation-delay: 0.3s, 2.1s; /* float starts after reveal */
}

@keyframes slideBottomRightToTopLeft {
  0% {
    opacity: 0;
    transform: translate(80px, 80px);
    clip-path: inset(100% 0 0 100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
    clip-path: inset(0 0 0 0);
  }
}

/* subtle continuous float motion */
@keyframes floatSecond {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -10px);
  }
}



@media (max-width:1200px){
  .round-img {
    animation: animName 5s linear infinit100;
    margin: 0px;
    position: absolute;
    right: 0px;
    top: 66px;
    width: 144px;
}
.multi-second-img {
    position: absolute;
    right: 60px;
    bottom: 0px;
    border-radius: 16px !important;
    width: 198px;
}
}

@media (max-width:1024px){
  .demo1-multi-images{
    width: 80%;
    margin: auto;
  }
}

@media (max-width:570px){
  .demo1-multi-images{
    width: 100%;
    margin: auto;
  }

      .round-img {
        animation: animName 5s linear infinit100 ;
        margin: 0px;
        position: absolute;
        right: 0px;
        top: 93%;
        width: 118px;
    }

    .dots-img {
    animation: dots-img 5s 
ease-out infinite;
    margin-left: 0;
    margin-top: 90px;
}
}


/**********************************
***********************************
mission-images widget 
***********************************
**********************************/

.mission-image {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px; /* spacing between images */
  position: relative;
  overflow: hidden;
}

/* Common image styling */
.mission-image img {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: border-radius 0.3s ease; /* smooth radius feel */
}

/* First image: slide in from LEFT to RIGHT */
.first-img {
    margin-bottom: 70px;
  animation: slideLeftToRight 1.5s ease-out forwards;
  border-radius: 150px 16px 16px 16px !important;

}

@keyframes slideLeftToRight {
  0% {
    opacity: 0;
    transform: translateX(-100px);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

/* Second image: slide in from RIGHT to LEFT */
.second-img {
    margin-top: 70px;
  border-radius: 16px 16px 150px 16px !important; 
  animation: slideRightToLeft 1.5s ease-out forwards;
  animation-delay: 0.3s; /* optional delay for nice sequence */
}

@keyframes slideRightToLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

/* Optional subtle infinite floating motion after reveal */
.first-img,
.second-img {
  animation-iteration-count: 1;
}

.first-img.reveal-done,
.second-img.reveal-done {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}


@media (max-width:450px){
    .first-img {
    margin-bottom: 0px;
    text-align: center;
}
.second-img {
    margin-top: 20px;
    text-align: center;
}
   .mission-image {
    display: block;
    margin: auto;
    text-align: center;
}
}


/**********************************
***********************************
iconlist widget 
***********************************
**********************************/

.demo1-iconlist-wrapper .iconlist{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding:16px 20px;
}

.demo1-iconlist-wrapper .iconlist-text{
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color:#000000;
}

.demo1-iconlist-wrapper .iconlist-icon svg{
    height:18px;
    width: 18px;
    fill:#fff;
}


/**********************************
***********************************
case-studies widget 
***********************************
**********************************/

.demo1-case-studies .case-studies-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    column-gap: 60px;
}

.demo1-case-studies .case-card{
    width: auto;
    max-width: 560px;
}
.case-study-card{
	transition: all 0.3s ease;
	padding:10px;
}
.case-card:hover .case-study-card{
	box-shadow: 1px 1px 24px rgb(142 146 158 / 25%);
	padding:10px;
	border-radius:10px;
}
.case-category{
    font-size: 18px;
    line-height: 28px;
    color: #676972;
    margin-bottom: 10px !important;
    margin-top: 30px;
}

.case-title a{
    color: #262935;
    font-size: 26px;
    line-height: 26px;
    font-weight: 600;
}

@media (max-width:991px) {
    .demo1-case-studies .case-studies-wrapper{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        column-gap: 60px;
    }
    .case-category{
    font-size: 16px;
    line-height: 26px;
}

.case-title a{
    font-size: 18px;
    line-height: 28px;
}
.demo1-case-studies .case-card {
    width: auto;
    max-width: 560px;
    margin: auto;
}
}


/**********************************
***********************************
single-case-study widget 
***********************************
**********************************/

.demo1-case-single-widget{
    max-width:1170px;
}

.demo1-case-single-widget .case-single-image{
    margin-bottom:30px;
}

.demo1-case-single-widget .case-single-image img{
    width:100%; 
    border-radius:12px;
}

.case-single-meta{
    margin-bottom:20px; 
    color:#676972; 
    font-size:18px;
    line-height: 18px;
    font-weight: 400;
}

.case-single-title{
    font-size:26px;
    line-height: 26px; 
    font-weight: 600;
    margin-bottom:20px; 
    color:#262935;
}

.case-single-desc{
    font-size:16px;
    line-height: 26px; 
    font-weight: 400;
    color:#676972; 
    margin-bottom:25px; 
}

.case-single-info{
    display:flex; 
    gap:12px;
    justify-content:space-between; 
    border-top:1px solid #D4D4D7; 
    padding-top:25px;
}

.case-single-info .case-client h6, .case-single-info .case-date h6{
    color:#3763EB;
    font-size:18px;
    line-height: 18px;
    font-weight: 600;
}

.case-single-info .case-client p, .case-single-info .case-date p{
    color:#3C3E49;
    font-size:16px;
    line-height: 16px;
    font-weight: 400;
}


/**********************************
***********************************
testimonial-slider widget 
***********************************
**********************************/

.demo1-testimonial-slider .swiper-slide{
    max-width:750px;
}

.demo1-testimonial-slider .demo1-testimonial-card {
    max-width:750px;
    background-color: #2d303b;
    padding: 80px 30px 30px 30px;
    border-radius: 12px;
    color: #fff;
    position: relative;
    transition: 0.3s;
    margin-top: 35px;
    border: 2px solid transparent;
    background-image: linear-gradient(#2d303b, #2d303b), linear-gradient(1deg, #ffffff00, #3763EB99);
    background-origin: border-box;
    background-clip: content-box, border-box;
    background-clip: padding-box, border-box;
}

.demo1-testimonial-slider .quote-icon {
    position: absolute;
    top: -26px;
    z-index: 999;
}

.demo1-testimonial-slider .testimonial-content {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color:#E9EAEB;
}

.demo1-testimonial-slider .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 25px;
    gap: 15px;
}

.demo1-testimonial-slider .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.demo1-testimonial-slider .author-info .name {
    font-weight: 600;
    font-size: 16px;
    font-family: 16px;
    color:#EBEFFD;
}

.demo1-testimonial-slider .author-info .designation {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color:#D4D4D7;
}

.demo1-testimonial-slider .swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.demo1-testimonial-slider .swiper-button-prev, .demo1-testimonial-slider .swiper-button-next{
    background-color: #fff;
    padding: 18px;
    height: 20px;
    width: 20px;
}

.demo1-testimonial-slider .swiper-button-prev::after, .demo1-testimonial-slider .swiper-button-next::after{
    font-size: 20px;
}

.demo1-testimonial-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #555;
    opacity: 0.4;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.demo1-testimonial-slider .swiper-pagination-bullet-active {
    background-color: #3b82f6;
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}


.demo1-testimonial-slider .testimonial-section {
  position: relative;
  background-color: #0f172a; 
}

/* Common styles for both sides */
.testimonial-section::before,
.testimonial-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 400px; /* Adjust as needed */
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Left gradient */
.testimonial-section::before {
  left: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0));
}

/* Right gradient */
.testimonial-section::after {
  right: 0;
  background: linear-gradient(to left, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0));
}

.testimonial-section {
  background-color: #2563eb; /* your background color */
  animation: bgColorRevealFromTop 1.8s cubic-bezier(.77, 0, .175, 1) forwards;
  overflow: hidden;
}

/* Keyframes for top-to-bottom reveal */
@keyframes bgColorRevealFromTop {
  0% {
    clip-path: inset(100% 0 0 0); /* hidden from top */
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    clip-path: inset(0 0 0 0); /* fully revealed */
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width:767px){
    .testimonial-section::before,.testimonial-section::after {
        content: none;
    }
 
}