/*
Theme Name: Websolex Theme
Author: Harsh
Version: 1.0
*/

:root {
    --primary-color: #54A2D9;
    --secondary-color: #000000;
    --text-primary-color: #54A2D9;
    --text-secondary-color: #53575C;
    --white-color: #ffffff;
    --bg-color:#000000;
    --bg-light-color:#EDF7FF6B;
    --taxt-color-desc:#4B5563;
  
    --font-primary: 'DM Sans', sans-serif;
    --font-secondary: 'Rubik', sans-serif;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: var(--font-primary);
    background: var(--white-color);
    color: var(--text-secondary-color);
    }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
  }

  .container {
    max-width: 1420px;
    margin: 0 auto;
  }

 /* TOP BAR */
.top-bar {
    background: var(--bg-color);
    color: var(--white-color);
    text-align: end;
    padding: 13px 0;
    font-size: 13px;
    letter-spacing: 0.2px;
  }
  
  /* HEADER */
  .main-header {
    background:var(--bg-light-color);
  }
  
  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 0px !important;
  }
  
  /* LOGO */
  .logo img {
    height: 76px;
    width: auto;
    display: block;
  }
  
  /* TOGGLE ICON */
.menu-toggle {
  font-size: 26px;
  cursor: pointer;
  display: none;
  z-index: 999;
}

.close-icon {
  display: none;
}

  .navbtn{
    display: flex;
    align-items: center;
    gap: 30px;
  }
  /* MENU */
  .nav-menu {
    display: flex;
    align-items: center;
    margin-right: 0;
  }
  
  .nav-menu ul {
    display: flex !important;
    gap: 50px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .nav-menu ul li {
    list-style: none !important;
  }
  
  .nav-menu ul li a {
    text-decoration: none !important;
    color: #000 !important;
    font-weight: 500 !important;
    font-family: var(--font-primary);
    font-size: 18px;
    letter-spacing: 0.5px;
  }
  
  .nav-menu ul li.current-menu-item a {
    color: var(--primary-color) !important;
  }
  
  .nav-menu ul li a:hover {
    color: var(--primary-color);
  }

  /* BUTTON */
  .header-btn {
    display: flex;
    align-items: center;
  }
  .btn-primary {
    background: var(--primary-color);
    padding: 16px 30px;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    transition: 0.5s;
    text-decoration: none;
  }
  .btn-primary:hover {
    background: #3b8ac4;
  }


  /* Hero section */

  .hero {
    text-align: center;
    padding: 100px 0;
    background-image: url("http://localhost/websolexinfotech/wp-content/uploads/2026/06/Hiro-1.png");
    background-repeat: no-repeat;
    position:relative;
    overflow:hidden;
  }
  
  .scroll-down
{
    position: absolute;
    top: 50%;
    left: 95%;
    transform: translate(-50%,-50%) !important;
    animation: bounce 1.5s infinite;
    border: 2px solid #54A2D9;
    width: 30px;
    height: 63px;
    border-radius: 100px;
    align-items: center;


}
.scroll-down span:nth-child(2)
{
    animation-delay: -0.2s;
}
.scroll-down span:nth-child(3)
{
    animation-delay: -0.4s;
}
.scroll-down span
{
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid #54A2D9;
    border-right: 2px solid #54A2D9;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
    left: 15px;
}
@keyframes animate
{
    0%
  {
        opacity: 0;
        transform: rotate(45deg) translate(-20px,-20px);
    }
    50%
  {
        opacity: 1;
    }
    100%
  {
        opacity: 0;
        transform: rotate(45deg) translate(20px,20px);
    }
}
  .hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.1px;
  }
  
  .hero-title {
    margin: 20px 0;
    line-height: 1.3;
    text-align: center;
  }

  .hero-title .line1 {
    display: block;
    font-size: 50px;
    font-weight: 400;
    color: var(--secondary-color);
    font-family: "Poiret One", cursive;
    -webkit-text-stroke: 0.2px var(--primary-color);
    line-height: 143%;
  }

  .hero-title .line2 {
    display: flex;
    font-size: 50px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    line-height: 143%;
  }
  
  .static-text {
    margin-right: 6px;
    white-space: nowrap;
  }

  .typing-text {
    color: var(--primary-color);
    min-width: 200px; 
    text-align: left;
    display: inline-block;
  }
  
  .hero-title .highlight {
    color: var(--primary-color);
  }
  
  .hero-title span {
    color: var(--secondary-color);

  }
  
  .hero-desc {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
    line-height: 151%;
  }
  
  .hero-btns {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .btn-dark {
    background: #000;
    color: #fff;
    padding: 16px 30px;
    border-radius: 30px;
    transition: 0.3s ease;
    text-decoration: none;
  }
  
  .btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  
  .btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 16px 30px;
    border-radius: 30px;
    transition: 0.3s;
    text-decoration: none;
  }


.btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
}
  
  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 130px;
    margin-top: 50px;
  }
  
  .hero-stats h3 {
    color: var(--primary-color);
    font-size: 40px;
    font-family: var(--font-secondary);
    font-weight: 500;
  }

  .hero-stats div {
    text-align: center;
  }
  
  @keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
  }

  /* ABOUT SECTION */
.about-section {
  padding: 80px 0;
  /* background-image: url("http://localhost/websolexinfotech/wp-content/uploads/2026/06/Group-733.png"); */
  background-image: linear-gradient(to bottom, rgba(84, 162, 217, 0.06), rgba(84, 162, 217, 0.06)), 
  url('http://localhost/websolexinfotech/wp-content/uploads/2026/06/Group-733.png');  
  background-repeat: no-repeat;
  background-position-y: 113%;
    background-position-x: 16%;
}

.about-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.about-left {
  width: 45%;

}

.about-badge,.why-badge,.sec-badge,.process-badge,.innovation-badge,.testimonial-tag,.blog-badge {
  background: var(--primary-color);
  color: #fff;
  padding: 11px 27px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

.about-title,.why-title,.sec-title,.process-title,.innovation-heading h2,.testimonial-head h2,.blog-heading h2 {
  font-size: 40px;
  color: var(--secondary-color);
  line-height: 140%;
}

.about-title .light-text {
  display: block; 
  font-weight: 400;
}

.about-title .bold-text {
  display: block;
  font-weight: 600;
}

/* RIGHT */
.about-right {
  width: 50%;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li,.why-desc,.sec-desc {
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--text-secondary-color);
  position: relative;
  padding-left: 20px;
}

/* bullet */
.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* bottom text */
.about-bottom {
  margin-top: 50px;
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 500;

}

.why-section {
  padding: 100px 0;
  text-align: center;
  background: #ffffff;
}

.why-title, .sec-title {
  font-size: 55px !important;
  margin-top: 25px;
  font-weight: 500;
}

.timeline {
  position: relative;
  margin-top: 150px;
  height: 500px;
}


.curve {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.curve path {
  fill: none;
  stroke: #2b2b2b;
  stroke-width: 1.5;
}


.item {
  position: absolute;
  width: 260px;
  z-index: 2;
}


.icon {
  width: 86px;
  height: 86px;
  background: #eef6fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: all 0.4s ease;
  position: relative;
}

.icon-inner {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #519fd8 0%, #2f7cb7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(47, 124, 183, 0.2);
  transition: transform 0.4s ease;
}

.icon-inner img {
  width: 28px;
  height: auto;
  filter: brightness(0) invert(1);
}

.item:hover .icon-inner {
  transform: rotate(360deg) scale(1.05);
}

.item:hover .icon {
  box-shadow: 0 0 20px rgba(81, 159, 216, 0.4);
}

.content {
  position: absolute;
  width: 320px;
  text-align: left; 
}

.text-wrapper {
  position: relative;
  padding-top: 80px;
  left: -35%;
}


.content.top {
  bottom: 149px;
  left: 95px;
}

.content.bottom {
  top: 135px;
  left: 95px;
}

.bg-number {
  font-size: 190px;
  font-weight: 600;
  line-height: 0.7;
  position: absolute;
  
  top: -11px;
  right: 7px;
  
  z-index: -1;
  
  background: linear-gradient(to bottom, rgba(81, 159, 216, 0.4) 0%, rgba(81, 159, 216, 0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  pointer-events: none;
  font-family: var(--font-secondary);
}

.content_title {
  font-size: 24px;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.content_desc {
  font-size: 14px;
  color: var(--text-color-desc);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

.item-1 { left: 4%; top: 90px; }
.item-2 { left: 24%; top: 156px; }
.item-3 { left: 44%; top: 106px; }
.item-4 { left: 64%; top: 137px; }
.item-5 { left: 84%; top: 61px; }

.item::after, .item::before {
  display: none !important;
}
.client-logos {
  padding: 40px 0;
  overflow: hidden;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  padding-top: 100px;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE CONTROL (IMPORTANT) */
.logo-item img {
  height: 40px;      
  width: auto;       
  object-fit: contain;  
  transition: 0.3s;
}

/* HOVER EFFECT */
.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* INFINITE SMOOTH SCROLL */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================
   SERVICES SECTION
========================== */

.services-sec{
  position:relative;
  padding:80px 0;
  overflow:hidden;
  background:#fff;
}

.services-header{
  text-align:center;
  max-width:900px;
  margin:0 auto 100px;
}

/* ==========================
 TIMELINE WRAPPER
========================== */

.services-timeline-wrapper{
  position:relative;
  width:100%;
}

.timeline-progress-line{
  width:100%;
  max-width:none;
}

.timeline-track{

  display:flex;
  align-items:center;

  gap:120px;

  width:max-content;

  position:relative;

  padding-left:70vw;
  padding-right:40vw;
}

/* ==========================
 LINE
========================== */

.timeline-line{

  position:absolute;

  left:0;
  right:0;

  top:50%;

  transform:translateY(-50%);

  height:2px;

  background:#D8D8D8;

  z-index:1;
}

.timeline-progress{

  width:0%;

  height:100%;

  background:#54A2D9;

  transition:.4s ease;
}

/* ==========================
 ITEM
========================== */

.timeline-item{

  position:relative;

  width:420px;

  flex-shrink:0;

  display:flex;

  flex-direction:column;

  align-items:center;

  z-index:3;
}

/* ==========================
 TOP CARD
========================== */

.timeline-item.top{

  margin-top:-250px;
}

/* ==========================
 BOTTOM CARD
========================== */

.timeline-item.bottom{

  margin-top:250px;
}

/* ==========================
 NUMBER
========================== */

.timeline-number-first,.timeline-number-second{

  position:fixed;
  left:44%;
  transform:translateX(-50%);

  width:52px;
  height:52px;

  border-radius:50%;

  background:#fff;
  border:1px solid #cfcfcf;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:20px;
  font-weight:700;

  z-index:5;
}


.timeline-number-first{
  top:-30% !important;
}
.timeline-number-second{
  top:128% !important;
}

/* ACTIVE */

.timeline-item.active .timeline-number-first,.timeline-item.active .timeline-number-second{

  background:#54A2D9;

  border-color:#54A2D9;

  color:#fff;

  transform:translateY(-50%) scale(1.1);
}

/* ==========================
 CARD
========================== */

.timeline-card{

  background:#fff;

  text-align:center;

  opacity:.15;

  transform:scale(.9);

  transition:.5s ease;
}

.timeline-item.active .timeline-card{

  opacity:1;

  transform:scale(1);
}

/* TITLE */

.timeline-card h3{

  font-size:24px;

  font-weight:600;

  color:var(--secondary-color);

  margin-bottom:25px;

  line-height:1.2;
}

/* TAGS */

.service-tags{

  display:flex;

  flex-wrap:wrap;

  justify-content:center;

  gap:12px;
}

.service-tags span{

  padding:12px 18px;

  border:1px solid #D8D8D8;

  border-radius:8px;

  font-size:15px;

  background:#fff;

  transition:.3s;
}

.service-tags span:hover{

  background:#54A2D9;

  color:#fff;

  border-color:#54A2D9;
}

/* ==========================
 SERVICE 5
========================== */

.service-five{

  opacity:.6;
}

/* ==========================
 RESPONSIVE
========================== */

@media(max-width:991px){

  .timeline-track{

      width:100%;

      display:flex;

      flex-direction:column;

      gap:60px;

      padding:0;
  }

  .timeline-line{
      display:none;
  }

  .timeline-item,
  .timeline-item.top,
  .timeline-item.bottom{

      width:100%;

      margin:0;
  }

  .timeline-number-first,.timeline-number-second{

      position:relative;

      top:auto;

      transform:none;

      margin-bottom:20px;
  }

  .timeline-card{

      opacity:1;

      transform:none;
  }

  .timeline-card h3{

      font-size:32px;
  }

}

.founder-testimonial{
  background: linear-gradient(to bottom,  
        rgba(84, 162, 217, 0.2) 10%, 
        rgba(255, 255, 255, 1) 100%
    );
  padding:80px 0;
  overflow:hidden;
  position: relative;

}

.founder-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.founder-left{
  width:65%;
}

.quote-icon{
  width:30px;
  margin-bottom:25px;
}

.founder-text{
  font-size:36px;
  line-height:1.3;
  font-weight:500;
  color:#111;
  /* max-width:650px; */
}

.founder-right{
  width:50%;
  position:relative;
  text-align:center;
}

.bg-name{
  position:absolute;
  top:50px;
  left:50%;
  transform:translateX(-50%);

  font-size:60px;
  font-weight:700;
  white-space:nowrap;

  color:transparent;
  -webkit-text-stroke:1px #8bc4f1;

  opacity:.6;
  z-index:1;
}

.founder-image{
  max-width:420px;
  position:relative;
  z-index:2;
}

.linear-line {
  width: 100%;
  height: 20px; /* Tamari jorurat mujab unchai badlo */
  background: linear-gradient(to bottom, #ffffff, #7cb3e6);
}

.founder-info{
  margin-top: -5px;
  padding-top:10px;
  position:relative;
  display: inline-block;
  z-index:3;
  position: relative;
}
.founder-info::before{
  position: absolute;
  content: " ";
  width: 1427px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(to right, #ffffff 0%, #54a2d9 100%);
  left: -545%;
  top:-12%;
}

.founder-name{
  font-weight:700;
  color:#000;
  font-size:20px;
  text-transform: uppercase; 
}

.founder-designation{
  font-size:14px;
  color:#000;
  margin-left:5px;
}


@media(max-width:991px){

  .founder-inner{
      flex-direction:column;
      text-align:center;
  }

  .founder-left,
  .founder-right{
      width:100%;
  }

  .founder-text{
      font-size:24px;
  }

  .bg-name{
      font-size:34px;
      top:30px;
  }

  .founder-image{
      max-width:280px;
  }

}
/* SECTION */
.process-section{
  padding:120px 0;
  background:#edf7ff;
  position:relative;
  overflow:hidden;
  background-image: url("http://localhost/websolexinfotech/wp-content/uploads/2026/05/Vector-3.png");
  background-repeat: no-repeat;
  background-position: center;
  background-position-y: 211%;
}

/* TOP */
.process-top{
  text-align:center;
  margin-bottom:80px;
}



.process-top h2{
  font-size:48px;
  font-weight:700;
  margin-bottom:15px;
}

.process-top p,.innovation-heading p,.testimonial-head p,.blog-heading p{
  max-width:700px;
  margin:auto;
  color:#666;
  line-height:1.8;
}

/* WRAPPER */
.process-wrapper{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:40px;
}

/* CARD */
.process-card{
  width:75%;
  background:#fff;
  border:1px solid #b7d9f3;
  border-radius:24px;
  padding:35px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  position:relative;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.4s;
}

/* LEFT RIGHT */
.process-card.left{
  margin-right:auto;
  flex-direction:row;
}

.process-card.right{
  margin-left:auto;
  flex-direction:row-reverse;
  text-align:right;
}

/* HOVER */
.process-card:hover{
  transform:translateY(-8px);
}

/* ICON */
.process-icon{
  min-width:148px;
  height:148px;
  border:2px solid #5aa2d9;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.process-icon img{
  width:54px;
}

/* NUMBER */
.process-icon span{
  position:absolute;
  top:-8px;
  right:-8px;
  width:66px;
  height:66px;
  background:#5aa2d9;
  color:#fff;
  border-radius:50%;
  font-size:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
}

.process-content{
  text-align: left;
}

/* CONTENT */
.process-content h3{
  font-size:24px;
  margin-bottom:12px;
  font-family: var(--font-secondary);
  font-weight: 400;
  color: var(--secondary-color);
}

.process-content p{
  color:#666;
  line-height:1.8;
  font-size: 18px;
}

/* SCROLL ANIMATION */
.reveal{
  opacity:0;
  transform:translateY(80px);
  transition:all 1s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

.innovation-section{

  padding:80px 0;
  
  }
  
  .innovation-heading{
  
  text-align:center;
  
  max-width:800px;
  
  margin:auto;
  
  }
  
  
  .innovation-wrapper{
  
  display:grid;
  
  grid-template-columns:1fr 1.1fr;
  
  gap:60px;
  
  align-items:center;
  
  margin-top:90px;
  
  }
  
  
  .innovation-content h3{
  
  font-size:40px;
  
  font-weight:500;
  
  line-height:1.3;
  
  margin-bottom:30px;

  color: var(--bg-color);
  
  }
  
  
  .innovation-content p{
  
  font-size:18px;
  
  line-height:1.9;
  
  margin-bottom:25px;
  
  color:var(--text-secondary-color);
  
  }
  
  
  .innovation-grid{
  
  display:grid;
  
  grid-template-columns:repeat(2,1fr);
  
  gap:25px;
  
  }
  
  
  .innovation-box{
  
  padding:15px;
  
  border-radius: 16px;
  border-top: 1px solid #54A2D9;
  border-left: 1px solid #54a2d980;
  border-right: 1px solid #54a2d980;
  border-bottom: 1px solid #54a2d900;

  background: linear-gradient(0deg, rgba(84, 162, 217, 0.2) 0%, rgba(84, 162, 217, 0) 100%);
  transition:.4s;
  
  position:relative;
    
  overflow:hidden;
  
  } 
  
  
  .innovation-box:hover{
  
  transform:translateY(-10px);
  
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  
  }
  
  
  .innovation-icon{
  
  width:45px;
  
  height:45px;
    
  display:flex;
  
  align-items:center;
  
  justify-content:center;
  
  margin-bottom:25px;
  
  
  }
  
  
  
  .innovation-icon img{
  
  width:35px;
  
  position:relative;
  
  z-index:2;
  
  }
  
  
  .innovation-box h4{
  
  font-size:24px;
  
  margin-bottom:15px;

  color: var(--bg-color);

  font-weight: 500;
  
  }
  
  
  .innovation-box p{
  
  color:var(--text-secondary-color);
  font-size: 16px;
  
  line-height:1.8;
  
  }
  
  
  @keyframes pulseIcon{
  
  0%{
  
  transform:scale(1);
  
  opacity:.25;
  
  }
  
  100%{
  
  transform:scale(1.5);
  
  opacity:0;
  
  }
  
  }
  .testimonial-area{

    padding:80px 0;
    
    overflow:hidden;
    
    }
    
    .testimonial-head{
    
    text-align:center;
    
    max-width:800px;
    
    margin:auto;
    
    margin-bottom:60px;
    
    }
    
    
    .testimonial-head p{
    
    color:#666;
    
    }
    
    .testimonial-box{
    
      background: linear-gradient(170deg, #B6D2E6 -25%, #FFFFFF 40%);

      box-shadow: 0px 4px 250px 0px rgb(0 0 0 / 11%);

    border-radius:20px;
    
    padding:40px;
    
    display: flex;
    flex-direction: column;
    height: 100%;
    
    }

    .swiper-slide{
      height: auto !important;
      display: flex;
  }
  
  .swiper-slide .testimonial-box{
      width: 100%;
  }
    
    .testimonial-stars{
    
    font-size:18px;
    
    margin-bottom:20px;
    
    }
    
    .testimonial-review{
    
    font-size:20px;
    
    line-height:1.8;
    
    margin-bottom:60px;
    
    color: var(--secondary-color);

    font-family: var(--font-primary);
    
    }
    
    .testimonial-user{
    
    display:flex;
    
    align-items:center;
    
    gap:15px;
    
    }
    
    .testimonial-user img{
    
    width:65px;
    
    height:65px;
    
    border-radius:50%;
    
    object-fit:cover;
    
    }
    
    .testimonial-user h4{
    
    font-size:24px;

    font-weight: 400;
    font-family: var(--font-secondary);   
    color:#54A2D9;
    
    margin-bottom:4px;
    
    }
    
    .testimonial-bottom{
    
    text-align:center;
    
    margin-top:60px;
    
    }
    
    .testimonial-bottom h3{
    
    margin-bottom:25px;
    
    font-size:18px;

    color: #4B5563;

    font-family: var(--font-primary);

    font-weight: 500;
    
    }
    
    .testimonial-buttons{
    
    display:flex;
    
    justify-content:center;
    
    gap:15px;
    
    }
    
    @media(max-width:768px){
    
    .testimonial-head h2{
    
    font-size:38px;
    
    }
    
    .testimonial-buttons{
    
    flex-direction:column;
    
    align-items:center;
    
    }
    
    }
    .swiper{
      overflow: visible;
    }

    .blog-section{

      padding:80px 0;
      
      }
      
      .blog-heading{
      
      text-align:center;
      
      max-width:800px;
      
      margin:auto;
      
      margin-bottom:60px;
      
      }
      
      .blog-grid{
      
      display:grid;
      
      grid-template-columns:repeat(3,1fr);
      
      gap:30px;
      
      }
      
      .blog-card{
      
      background:#fff;
      
      border-radius:20px;
      
      overflow:hidden;
      
      box-shadow:0 10px 30px rgba(0,0,0,.05);
      
      transition:.4s;

      padding: 15px;
      
      }
      
      .blog-card:hover{
      
      transform:translateY(-10px);
      
      }
      
      .blog-image{
      
      display:block;
      
      position:relative;
      
      height:250px;
      
      overflow:hidden;
      
      }
      
      .blog-image img{
      
      width:100%;
      
      height:100%;
      
      object-fit:cover;
      
      transition:.5s;

      border-radius: 14px;
      
      }
      
      .blog-card:hover .blog-image img{
      
      transform:scale(1.08);
      
      }
      
      .blog-date{
      
      position:absolute;
      
      top:15px;
      
      right:15px;
      
      background:#54A2D9;
      
      color:#fff;
      
      padding:10px 18px;
      
      border-radius:30px;
      
      font-size:13px;
      
      font-weight:600;
      
      }
      
      .blog-content h3{
      
      font-size:32px;
      
      margin-bottom:15px;
      
      }
      
      .blog-content h3 a{
      
      text-decoration:none;
      
      color:var(--secondary-color);

      font-size: 24px;

      font-family: var(--font-secondary);

      font-weight: 500;

      margin-top: 10px;
      
      }

      .blog-content{
        padding-top: 10px;
      }
      
      .blog-content p{
      
      color:#666;
      
      line-height:1.8;
      
      margin-bottom:10px;
      
      }
      
      .blog-link{
      
      color:#54A2D9;
      
      font-weight:600;
      
      text-decoration:none;
      
      }
      
      .blog-link:hover{
      
      padding-left:5px;
      
      }
      
      @media(max-width:991px){
      
      .blog-grid{
      
      grid-template-columns:1fr;
      
      }
      
      .blog-heading h2{
      
      font-size:40px;
      
      }
      
      }
  

/* CTA SECTION */ /* .cta-section { padding: 80px 0; } */ /* BOX */ .cta-box { background: linear-gradient(to bottom, #549ad5 0%, #4088c5 100%); border-radius: 30px; padding: 70px 20px; text-align: center; position: relative; overflow: hidden; margin: 30px;; } /* TITLE */ .cta-title { font-size: 55px; font-weight: 500; color: #fff; margin-bottom: 15px; line-height: 1.2; } /* DESC */ .cta-desc { color: rgba(255,255,255,0.9); font-size: 20px; font-weight: 400; margin-bottom: 35px; } /* BUTTON WRAP */ .cta-btns { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; } /* BUTTON */ .cta-btn { padding: 16px 32px; border-radius: 50px; text-decoration: none; font-weight: 500; transition: 0.3s ease; display: inline-flex; align-items: center; gap: 10px; } /* WHITE BTN */ .white-btn,.outline-btn { background: #fff; color: #000; } /* OUTLINE BTN */ /* .outline-btn { border: 2px solid #fff; color: #fff; } */ /* HOVER */ .white-btn:hover { transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); } .outline-btn:hover { background: #fff; color: #000; transform: translateY(-4px); } /* RESPONSIVE */ @media(max-width:768px){ .cta-box { padding: 50px 20px; border-radius: 20px; } .cta-title { font-size: 34px; } .cta-desc { font-size: 15px; } .cta-btn { width: 100%; justify-content: center; } }


/* =========================
   WEBSOLEX FOOTER
========================= */
.custom-footer{
  background:#000;
  color:#fff;
  padding:60px 0 20px;
  }
  
  .footer-top{
  display:flex;
  justify-content:space-between;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.1);
  }
  
  .footer-logo img{
  max-width:180px;
  }
  
  .footer-desc{
  color:#b8b8b8;
  max-width:400px;
  margin-top:20px;
  line-height:1.8;
  }
  
  .footer-contact{
  display:flex;
  gap:40px;
  }
  
  .contact-box h4{
  color:#55a3dd;
  margin-bottom:15px;
  }
  
  .contact-box p{
  margin:5px 0;
  color:#d8d8d8;
  }
  
  .footer-social{
  display:flex;
  gap:12px;
  }
  
  .footer-social a{
  width:40px;
  height:40px;
  background:#55a3dd;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  }
  
  .footer-main{
  display:flex;
  justify-content:space-between;
  margin-top:40px;
  gap:50px;
  }
  
  .footer-links{
  flex:1;
  }
  
  .footer-row{
  padding:25px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
  }
  
  .footer-row h4{
  margin-bottom:15px;
  font-size:20px;
  }
  
  .footer-row a{
  color:#b8b8b8;
  text-decoration:none;
  margin-right:18px;
  display:inline-block;
  margin-bottom:10px;
  }
  
  .footer-row a:after{
  content:"|";
  margin-left:18px;
  color:#666;
  }
  
  .footer-recognition{
  width:260px;
  text-align:center;
  }
  
  .footer-recognition h4{
  color:#55a3dd;
  margin-bottom:25px;
  }
  
  .footer-recognition img{
  max-width:170px;
  display:block;
  margin:0 auto 25px;
  }
  
  .footer-bottom{
  text-align:center;
  margin-top:35px;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,.1);
  color:#b8b8b8;
  }
  
  @media(max-width:991px){
  
  .footer-top,
  .footer-main{
  flex-direction:column;
  }
  
  .footer-contact{
  flex-direction:column;
  }
  
  .footer-recognition{
  width:100%;
  }
  
  }


































  /* RESPONSIVE */


/* MOBILE MENU */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .navbtn {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
    z-index: 998;
  }

  .navbtn.active {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column !important;
    gap: 25px !important;
    text-align: center;
  }

  .nav-menu ul li a {
    font-size: 18px;
  }

  .header-btn {
    margin-top: 20px;
  }

  /* ICON SWITCH */
  .menu-toggle.active .open-icon {
    display: none;
  }

  .menu-toggle.active .close-icon {
    display: block;
  }
}

@media (max-width:768px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-btns {
    flex-direction: column;
  }
}
@media(max-width:991px){
  
  .about-wrapper{
  
  grid-template-columns:1fr;
  
  }
  
  .about-right{
  
  grid-template-columns:1fr;
  
  }
  
  .about-left h3{
  
  font-size:42px;
  
  }
  
  .about-top h2{
  
  font-size:42px;
  
  }
  
  }
/* RESPONSIVE */
@media(max-width:992px){

  .process-card{
    width:100%;
    padding:30px;
  }

}

@media(max-width:768px){

  .process-card{
    flex-direction:column;
    text-align:center;
  }

  .process-top h2{
    font-size:36px;
  }

}
/* Responsive */
  
@media(max-width:1100px){
  
  .innovation-wrapper{
  
  grid-template-columns:1fr;
  
  gap:60px;
  
  }
  
  }
  
  
  @media(max-width:768px){
  
  .innovation-heading h2{
  
  font-size:40px;
  
  }
  
  .innovation-content h3{
  
  font-size:40px;
  
  }
  
  .innovation-grid{
  
  grid-template-columns:1fr;
  
  }
  
  .innovation-box{
  
  padding:28px;
  
  }
  
  }
  
  @media(max-width:480px){
  
  .innovation-section{
  
  padding:80px 0;
  
  }
  
  .innovation-heading h2{
  
  font-size:32px;
  
  }
  
  .innovation-content h3{
  
  font-size:32px;
  
  }
  
  }

