*{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    html{
      scrollbar-gutter:stable;
      overflow-x:clip;
      max-width:100%;
    }

    body{
      font-family: Arial, sans-serif;
      padding-top:var(--site-header-height, 130px);
      overflow-x:clip;
      max-width:100%;
    }

    img,
    video,
    svg{
      max-width:100%;
      height:auto;
    }

    @media (max-width:991.98px){
      html{
        scrollbar-gutter:auto;
      }
    }

    /* STICKY SITE HEADER */
    .site-header{
      position:fixed;
      top:0;
      left:0;
      right:0;
      width:100%;
      max-width:100%;
      overflow:visible;
      z-index:1030;
      background:transparent;
    }

    /* TOP BAR */
    .top-bar{
      background:#012560;
      color:#fff;
      padding:10px 0;
      font-size:14px;
      transition:background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
    }

    .top-bar i{
      margin-right:6px;
    }

    .social-icons i{
      margin-left:15px;
      cursor:pointer;
    }

    .top-bar .col-md-8 span{
      display:inline-block;
      margin-bottom:4px;
      overflow-wrap:anywhere;
      word-break:break-word;
    }

    @media (max-width:767.98px){
      .top-bar{
        padding:5px 0;
        font-size:11px;
        line-height:1.3;
      }

      .top-bar .container{
        padding-left:12px;
        padding-right:12px;
      }

      .top-bar .row{
        display:flex;
        flex-wrap:nowrap;
        align-items:center;
        justify-content:space-between;
        gap:8px;
        margin:0;
      }

      .top-bar .col-md-8{
        display:flex;
        flex:1 1 auto;
        flex-wrap:wrap;
        align-items:center;
        gap:4px 10px;
        width:auto !important;
        max-width:none;
        min-width:0;
        padding:0;
      }

      .top-bar .col-md-8 span{
        display:inline-flex;
        align-items:center;
        margin-right:0 !important;
        margin-bottom:0 !important;
        max-width:100%;
        white-space:nowrap;
      }

      .top-bar .col-md-8 span:nth-child(2){
        overflow:hidden;
        text-overflow:ellipsis;
        max-width:min(148px, 38vw);
      }

      .top-bar .col-md-4{
        flex:0 0 auto;
        width:auto !important;
        max-width:none;
        margin-top:0 !important;
        padding:0;
        text-align:right !important;
      }

      .social-icons{
        display:flex;
        flex-wrap:nowrap;
        align-items:center;
        gap:10px;
      }

      .social-icons i{
        margin-left:0;
        font-size:12px;
      }
    }

    /* NAVBAR */
    .navbar{
      background:#fff;
      padding:10px 0;
      box-shadow:0 2px 10px rgba(0,0,0,0.08);
      width:100%;
    }

    .navbar-brand{
      font-size:32px;
      font-weight:bold;
      color:#013795;
      padding:0;
      margin:0;
      line-height:1;
    }

    .navbar-brand img{
      width:auto;
      height:110px;
      max-width:200px;
      object-fit:contain;
      display:block;
    }

    .navbar-brand span{
      color:#013795;
    }

    .navbar-toggler{
      border:1px solid rgba(1,55,149,0.25);
      padding:8px 10px;
      width:44px;
      height:44px;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .navbar-toggler:focus{
      box-shadow:0 0 0 0.2rem rgba(1,55,149,0.2);
    }

    .navbar-toggler-icon{
      background-image:none !important;
      width:22px;
      height:2px;
      background-color:#343a40;
      display:block;
      position:relative;
      transition:background-color 0.2s ease;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after{
      content:"";
      position:absolute;
      left:0;
      width:100%;
      height:2px;
      background-color:#343a40;
      transition:transform 0.2s ease, top 0.2s ease;
    }

    .navbar-toggler-icon::before{
      top:-7px;
    }

    .navbar-toggler-icon::after{
      top:7px;
    }

    .navbar-toggler.is-open .navbar-toggler-icon,
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon{
      background-color:transparent;
    }

    .navbar-toggler.is-open .navbar-toggler-icon::before,
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before{
      top:0;
      transform:rotate(45deg);
    }

    .navbar-toggler.is-open .navbar-toggler-icon::after,
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after{
      top:0;
      transform:rotate(-45deg);
    }

    .navbar .nav-link{
      color:#013795 !important;
      font-weight:600;
      font-size:15px;
      padding:8px 12px !important;
      transition:color 0.2s ease;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link:focus{
      color:#b819a2 !important;
    }

    .navbar .nav-link.active{
      color:#ef1f42 !important;
      font-weight:700;
    }

    .quote-btn{
      background:#b819a2;
      color:#fff !important;
      padding:12px 25px;
      border:none;
      font-weight:bold;
      transition:0.3s;
      display:inline-block;
      text-decoration:none;
      white-space:nowrap;
      text-align:center;
    }

    .quote-btn:hover{
      background:#012d72;
      color:#fff !important;
    }

    @media (min-width:992px){
      .navbar .navbar-nav{
        flex-wrap:nowrap;
      }
    }

    @media (max-width:991.98px){
      body{
        padding-top:var(--site-header-height, 104px);
      }

      .site-header{
        position:fixed;
        top:0;
        left:0;
        right:0;
        overflow:visible;
      }

      .top-bar{
        position:relative;
        z-index:2;
        width:100%;
      }

      .navbar{
        position:relative;
        z-index:1;
        padding:8px 0;
        overflow:visible;
      }

      .navbar > .container{
        position:relative;
        display:flex;
        align-items:center;
        justify-content:space-between;
      }

      .navbar-brand{
        margin-right:12px;
      }

      .navbar-brand img{
        width:auto;
        height:88px;
        max-width:160px;
        object-fit:contain;
      }

      .navbar-toggler{
        padding:8px 10px;
        min-width:44px;
        min-height:44px;
        flex-shrink:0;
        position:relative;
        z-index:3;
      }

      .navbar-collapse{
        position:absolute;
        top:100%;
        left:0;
        right:0;
        width:100%;
        margin-top:0;
        padding:10px 16px 16px;
        border-top:1px solid rgba(1,55,149,0.1);
        background:#fff;
        box-shadow:0 10px 24px rgba(0,0,0,0.08);
        z-index:4;
        transition:none !important;
      }

      .navbar-collapse.collapsing{
        transition:none !important;
      }

      .navbar-nav{
        align-items:stretch !important;
        gap:2px;
      }

      .navbar .nav-item{
        width:100%;
      }

      .navbar .nav-link{
        padding:10px 4px !important;
        margin:0;
        font-size:15px;
      }

      .navbar .nav-item.ms-lg-3{
        margin-left:0 !important;
        margin-top:8px;
        padding-top:8px;
        border-top:1px solid rgba(1,55,149,0.1);
      }

      .navbar .quote-btn{
        display:block;
        width:100%;
        padding:12px 25px;
        font-size:15px;
      }
    }

    /* HERO SECTION */
    .hero{
      height:90vh;
      background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('./images/photo-1504307651254-35680f356dfd.jfif');
      background-size:cover;
      background-position:center;
      display:flex;
      align-items:center;
      color:#fff;
      position:relative;
    }

    .hero-content h5{
      color: #fff;
      font-size:22px;
      font-weight:700;
      margin-bottom:15px;
    }

    .hero-content h1{
      font-size:72px;
      font-weight:800;
      line-height:1.1;
      margin-bottom:25px;
    }
    .hero-content span{
      color: #fff;
    }

    .hero-content p{
      font-size:20px;
      max-width:750px;
      margin-bottom:30px;
    }

    .project-btn{
      background:#b819a3;
      color:#fff;
      border:none;
      padding:16px 35px;
      font-size:18px;
      font-weight:bold;
      transition:all 0.3s ease;
      display:inline-block;
      text-decoration:none;
      text-align:center;
    }

    .project-btn:hover{
      background:#013795;
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 10px 25px rgba(30,8,118,0.35);
    }

    .project-btn--outline{
      background:transparent;
      border:2px solid #fff;
      color:#fff;
    }

    .project-btn--outline:hover{
      background:#fff;
      color:#013795;
      box-shadow:0 10px 25px rgba(0,0,0,0.15);
    }

    .hero-content .project-btn{
      margin-top:8px;
    }

    .home-trust-section{
      padding:56px 0;
    }

    /* =========================
   FEATURES
========================= */

.features{
  margin-top:40px;
  position:relative;
  z-index:5;
}

/* FEATURE BOX */
.feature-box{
  background:#FFFFFF;
  color:#fff;
  border:1px solid #ECEBFF;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
  padding:10px 20px;
  height:100%;
  transition:0.3s ease;
  position:relative;
  overflow:hidden;
}

/* TOP BORDER */
.feature-box::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
 background:#013795;
}

/* HOVER */
.feature-box:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* TITLE ROW */
.feature-title{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:20px;
}

/* ICON */
.feature-title i{
  font-size:42px;
  color: #fc7228;
  background: none;
  padding: 5px;
  flex-shrink:0;
}

/* HEADING */
.feature-title h3{
  font-size:26px;
  color:#230074;
  font-weight:700;
  margin:0;
  line-height:1.4;
}

/* TEXT */
.feature-box p{
  font-size:16px;
  line-height:1.8;
  color:#5F6475;
  margin:0;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .features{
    margin-top:-50px;
  }

  .feature-box{
    padding:35px 28px;
  }

  .feature-title h3{
    font-size:24px;
  }
}

@media(max-width:768px){

  .features{
    margin-top:0;
    padding-top:50px;
  }

  .feature-box{
    padding:35px 25px;
  }

  .feature-title{
    gap:14px;
  }

  .feature-title i{
    font-size:36px;
  }

  .feature-title h3{
    font-size:22px;
  }

  .feature-box p{
    font-size:15px;
  }
}

/* HERO CAROUSEL */
.hero-carousel{
  position:relative;
  overflow:hidden;
  max-width:100%;
}

.hero-content h1,
.hero-content h5,
.hero-content p{
  overflow-wrap:break-word;
  word-wrap:break-word;
}

.hero-slide{
  /* height: 90vh; */
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  padding: 10rem 5%;
}

.hero-slide::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-slide .container{
  position: relative;
  z-index: 2;
}

.slide-1{
  background:
    url('./images/photo-1504307651254-35680f356dfd.jfif');
  background-size: cover;
  background-position: center;
}

.slide-2{
  background:
    url('./images/photo-1541888946425-d81bb19240f5.jfif');
  background-size: cover;
  background-position: center;
}

.slide-3{
  background:
    url('./images/photo-1503387762-592deb58ef4e.jfif');
  background-size: cover;
  background-position: center;
}

/* HERO CONTENT */
.hero-content h5{
  color: #fff;
  font-size:28px;
  font-weight:700;
  margin-bottom:15px;
}

.hero-content h1{
  font-size:60px;
  font-weight:800;
  line-height:1.1;
  margin-bottom:25px;
}

.hero-content p{
  font-size:17px;
  max-width:700px;
  margin-bottom:30px;
}

.project-btn{
  background: #b819a3;
  
  color:#FFFFFF;
  border:none;
  transition: all 0.4s ease;
  
  
  border:none;
  transition: all 0.4s ease;

  border:none;
  padding:15px 35px;
  font-size:20px;
  font-weight:bold;
  
}

.project-btn:hover{
 background: #013795;

  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30,8,118,0.35);
}

/* Carousel Buttons */
.carousel-control-prev,
.carousel-control-next{
  width: 70px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
  background-color:#013795;
  

color:#FFFFFF;
  padding:25px;
  border-radius:5px;
}

/* Indicators */
.carousel-indicators [data-bs-target]{
  width:14px;
  height:14px;
  border-radius:50%;
  background-color:#013795;
  color:#FFFFFF;

}

@media(max-width:768px){

  .hero-slide{
    padding:24px 0;
  }

  .hero-content h1{
    font-size:34px;
    line-height:1.2;
  }

  .hero-content h5{
    font-size:18px;
  }

  .hero-content p{
    font-size:16px;
    margin-bottom:0;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next{
    display:none;
  }
}

@media (max-width:991.98px){
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item{
    height:calc(100vh - var(--site-header-height, 104px));
    height:calc(100dvh - var(--site-header-height, 104px));
  }

  .hero-slide{
    height:100%;
    min-height:100%;
    padding:24px 0;
    box-sizing:border-box;
    overflow:hidden;
  }

  .hero-slide .container{
    display:flex;
    align-items:center;
    height:100%;
  }
}
/* =========================================
   ABOUT SECTION
========================================= */

.about-section{
  padding:80px 0;
  background:#f5f5f5;
}

.about-section .row{
  align-items:center;
}

/* =========================================
   LEFT IMAGE AREA
========================================= */

.about-images{
  position:relative;
  min-height:540px;
}

/* MAIN IMAGE */

.main-img{
  width:72%;
}

.main-img img{
  width:100%;
  height:460px;
  object-fit:cover;
  border-radius:12px;
}

/* SMALL IMAGE */

.small-img{
  position:absolute;
  right:0;
  bottom:25px;

  width:50%;

  border:8px solid #fff;
  border-radius:12px;

  overflow:hidden;

  box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.small-img img{
  width:100%;
  height:280px;
  object-fit:cover;
}

/* =========================================
   EXPERIENCE BOX
========================================= */

.experience-box{
  position:absolute;
  top:110px;
  right:90px;

  width:120px;
  height:120px;

  background:#f5af1b;
  border:5px solid #fff;

  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;

  transform:rotate(45deg);

  z-index:5;

  box-shadow:0 10px 25px rgba(0,0,0,0.18);
}

.experience-box-inner{
  transform:rotate(-45deg);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  width:100%;
}

.experience-box h2,
.experience-box p{
  color:#fff;
  text-align:center;
  width:100%;
}

.experience-box h2{
  font-size:30px;
  font-weight:800;
  line-height:1;
  margin:0 0 4px;
}

.experience-box p{
  font-size:12px;
  line-height:1.3;
  font-weight:700;
  margin:0;
}

/* =========================================
   RIGHT CONTENT
========================================= */

.about-content{
  padding-left:30px;
}

/* SMALL TITLE */

.about-content h5{
  color:#cc1137;

  font-size:19px;
  font-weight:700;

  text-transform:uppercase;
  letter-spacing:1px;

  margin-bottom:8px;
}

/* MAIN TITLE */

.about-content h2{
  font-size:36px;
  line-height:1.3;
  font-weight:800;

  color:#013795;

  margin-bottom:14px;
}

/* TITLE LINE */

.title-line{
  width:80px;
  height:3px;

  background:#013795;

  border-radius:30px;

  margin-bottom:18px;
}

/* PARAGRAPH */

.about-text{
  font-size:15px;
  line-height:1.8;

  color:#5F6475;

  margin-bottom:14px;
}

/* Learn More button (about section) */
.learn-btn{
  background:#b819a2;
  color:#fff;
  border:none;
  padding:12px 28px;
  font-size:14px;
  font-weight:700;
  margin-top:15px;
  transition:0.3s ease;
  cursor:pointer;
  display:inline-block;
  text-decoration:none;
}

.learn-btn:hover{
  background:#012d72;
  color:#fff;
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(30,8,118,0.25);
}

/* =========================================
   SERVICE ITEMS
========================================= */

.service-item{
  display:flex;
  align-items:flex-start;

  gap:14px;

  margin-top:22px;
}

/* ICON */

.service-icon{
  width:50px;
  height:50px;
  min-width:50px;

  background:#fc7228;
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:8px;

  font-size:18px;
}

/* CONTENT */

.service-item h4{
  font-size:18px;
  line-height:1.4;
  font-weight:700;

  color:#013795;

  margin-bottom:5px;
}

.service-item p{
  font-size:13px;
  line-height:1.7;

  color:#5F6475;
}

/* =========================================
   BOTTOM SERVICES
========================================= */

.bottom-services{
  margin-top:30px;

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:16px;
}

/* CARD */

.bottom-service-card{
  background:#fff;

  border-radius:10px;

  padding:16px;

  display:flex;
  align-items:flex-start;

  gap:12px;

  border:1px solid #ececec;

  min-height:135px;

  transition:0.3s;
}

.bottom-service-card:hover{
  transform:translateY(-4px);

  box-shadow:0 12px 25px rgba(0,0,0,0.08);
}

/* ICON */

.bottom-icon{
  width:45px;
  height:45px;
  min-width:45px;

  background:#013795;
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:6px;

  font-size:16px;
}

/* CONTENT */

.bottom-service-card-content{
  flex:1;
}

.bottom-service-card h4{
  font-size:15px;
  line-height:1.5;
  font-weight:700;

  color:#013795;

  margin-bottom:6px;
}

.bottom-service-card p{
  font-size:12px;
  line-height:1.7;

  color:#5F6475;

  margin:0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1199px){

  .bottom-services{
    grid-template-columns:repeat(2,1fr);
  }

  .about-content h2{
    font-size:32px;
  }
}

@media(max-width:991px){

  .about-section{
    padding:60px 0;
  }

  .about-images{
    min-height:auto;
    margin-bottom:40px;
  }

  .main-img{
    width:100%;
  }

  .main-img img{
    height:420px;
  }

  .small-img{
    width:75%;
    position:relative;

    margin:-80px auto 0;

    right:auto;
    bottom:auto;
  }

  .experience-box{
    top:20px;
    right:20px;

    width:100px;
    height:100px;
  }

  .experience-box h2{
    font-size:26px;
  }

  .experience-box p{
    font-size:11px;
  }

  .about-content{
    padding-left:0;
  }

  .bottom-services{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){

  .about-section{
    padding:50px 0;
  }

  .about-content h2{
    font-size:28px;
  }

  .about-text{
    font-size:13px;
  }

  .service-item{
    flex-direction:column;
  }

  .main-img img{
    height:320px;
  }

  .small-img img{
    height:220px;
  }
}

/* =========================
   SERVICES SECTION
========================= */

.services-section{
  background:#F5F5F5;
  padding:55px 0;
  position:relative;
}

/* TITLE */
.section-title{
  margin-bottom:35px;
}

.section-title h5{
  color:#cc1137;
  font-size:14px;
  font-weight:700;
  margin-bottom:6px;
}

.section-title h2{
  color:#230074;
  font-size:28px;
  font-weight:700;
}

/* CAROUSEL */
#servicesCarousel{
  position:relative;
  padding:0 30px;
}

/* CARD */
.service-card{
  background:#FFFFFF;
  position:relative;
  overflow:hidden;
  transition:0.3s;
  box-shadow:0 3px 12px rgba(0,0,0,0.05);
  margin-bottom:20px;
  border-radius:8px;
  height:100%;
  display:flex;
  /*border: 2px solid #ECEBFF;*/
  flex-direction:column;
}

.service-card:hover{
  transform:translateY(-4px);
}

/* IMAGE */
.service-img{
  overflow:hidden;
}

.service-img img{
  width:100%;
  height:170px;
  object-fit:cover;
  transition:0.4s;
}

.service-card:hover .service-img img{
  transform:scale(1.04);
}

/* ICON BOX */
.service-icon-box{
  width:55px;
  height:55px;
 background:#fc7228;
  position:absolute;
  top:142px;
  left:50%;
  transform:translateX(-50%) rotate(45deg);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}

.service-icon-box i{
  color:#fff;
  font-size:18px;
  transform:rotate(-45deg);
}

/* CONTENT */
.service-content{
  padding:45px 18px 20px;
  
  flex:1;
  display:flex;
  flex-direction:column;
}

.service-content h3{
  color:#230074;
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
  line-height:1.4;
  min-height:45px;
  text-align:center;

}

.service-content p{
  color:#666;
  font-size:13px;
  line-height:1.6;
  margin-bottom:0;
}

/* CAROUSEL CONTROLS */
#servicesCarousel .carousel-control-prev,
#servicesCarousel .carousel-control-next{
  width:38px;
  height:38px;
  top:50%;
  transform:translateY(-50%);
  opacity:1;
}

#servicesCarousel .carousel-control-prev{
  left:-5px;
}

#servicesCarousel .carousel-control-next{
  right:-5px;
}

#servicesCarousel .carousel-control-prev-icon,
#servicesCarousel .carousel-control-next-icon{
  background-color:#013795;
  border-radius:5px;
  padding:12px;
  background-size:50%;
  display: none;
}

/* REMOVE INDICATORS */
.services-indicators{
  display:none;
}

/* RESPONSIVE */
@media(max-width:991px){

  #servicesCarousel{
    padding:0;
  }

  .section-title h2{
    font-size:24px;
  }

  .service-content h3{
    font-size:17px;
    min-height:auto;
  }

  #servicesCarousel .carousel-control-prev,
  #servicesCarousel .carousel-control-next{
    display:none;
  }
}

@media(max-width:768px){

  .services-section{
    padding:45px 0;
  }

  .section-title h2{
    font-size:22px;
  }

  .service-img img{
    height:160px;
  }

  .service-icon-box{
    width:50px;
    height:50px;
    top:135px;
  }

  .service-icon-box i{
    font-size:16px;
  }

  .service-content{
    padding:40px 15px 18px;
  }

  .service-content h3{
    font-size:16px;
  }

  .service-content p{
    font-size:12px;
  }
}


/* =========================
   COUNTER SECTION
========================= */

.counter-section{
  position:relative;
  background:url('./images/photo-1484154218962-a197022b5858.jfif');
  background-size:cover;
  background-position:center;
  height:300px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.counter-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.2);
}

/* BOX */
.counter-box{
  position:relative;
  z-index:2;
  color:#fff;
  text-align:center;
}

/* ICON */
.counter-icon{
  width:28px;
  height:28px;
  background:#013795;
  margin:0 auto 5px;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:rotate(45deg);
}

.counter-icon i{
  font-size:9px;
  color:#fff;
  transform:rotate(-45deg);
}

/* NUMBER */
.counter-box h2{
  font-size:22px;
  font-weight:700;
  margin-bottom:2px;
  line-height:1;
  color: #cc1137;
}

/* TITLE */
.counter-box h4{
  font-size:8px;
  font-weight:500;
  margin-bottom:5px;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* LINE */
.counter-line{
  width:18px;
  height:1px;
background:rgba(255,255,255,0.15);  margin:auto;
}

/* MOBILE */
@media(max-width:768px){

  .counter-section{
    height:auto;
    padding:25px 0;
  }

  .counter-box{
    margin-bottom:15px;
  }
}



/* =========================
   WHY CHOOSE US SECTION
========================= */

.why-section{
  background:#F5F5F5;
  padding:60px 0;
  overflow:hidden;
}

/* LEFT CONTENT */
.why-content h5{
 color:#cc1137;
  font-size:19px;
  font-weight:700;
  margin-bottom:8px;
}

.why-content h2{
  color:#230074;
  font-size:34px;
  font-weight:800;
  line-height:1.3;
  margin-bottom:16px;
  max-width:500px;
}

.why-line-about {
    width:110px;
  height:2px;
background:#013795;  margin-bottom:20px;
  position:relative;
}

.why-line-about::before,
.why-line-about::after{
  content:"";
  width:6px;
  height:6px;
 background:#013795;
  border-radius:50%;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.why-line-about::before{
  left:0;
}

.why-line-about::after{
  right:0;
}


.why-line{
  width:130px;
  height:2px;
background:#013795;  margin-bottom:20px;
  position:relative;
}

.why-line::before,
.why-line::after{
  content:"";
  width:6px;
  height:6px;
 background:#013795;
  border-radius:50%;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.why-line::before{
  left:0;
}

.why-line::after{
  right:0;
}

.why-content p{
color:#5F6475;
  font-size:15px;
  line-height:1.8;
  margin-bottom:22px;
  max-width:520px;
}

/* LIST */
.why-list{
  padding:0;
  margin:0;
}

.why-list li{
color:#4B5563;
  font-size:14px;
  margin-bottom:12px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  line-height:1.6;
}

.why-list li i{
color:#013795;
  font-size:14px;
  margin-top:4px;
}

/* BUTTON (why section – matches learn-btn) */
.why-btn{
  background:#b819a3;
  color:#fff;
  border:none;
  padding:12px 28px;
  font-size:14px;
  font-weight:700;
  margin-top:18px;
  transition:0.3s ease;
  cursor:pointer;
  display:inline-block;
  text-decoration:none;
}

.why-btn:hover{
  background:#012d72;
  color:#fff;
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(30,8,118,0.25);
}

/* IMAGE AREA */
.why-image{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
}

.image-bg{
  position:absolute;
  width:18%;
  height:108%;
  background:#013795;
border-radius:22px;
box-shadow:
   0 15px 35px rgba(0,0,0,0.08);
  right:0;
  top:-15px;
}

.why-image img{
  position:relative;
  width:88%;
  height:380px;
  object-fit:cover;
  z-index:2;
}

/* =========================
   LARGE SCREEN
========================= */
@media(max-width:1200px){

  .why-content h2{
    font-size:30px;
  }

  .why-image img{
    height:340px;
  }
}

/* =========================
   TABLET
========================= */
@media(max-width:991px){

  .why-section{
    padding:50px 0;
  }

  .why-content{
    margin-bottom:35px;
    text-align:center;
  }

  .why-content h2{
    font-size:28px;
    max-width:100%;
  }

  .why-line{
    margin:0 auto 20px;
  }

  .why-content p{
    max-width:100%;
    font-size:13px;
  }

  .why-list{
    display:inline-block;
    text-align:left;
  }

  .why-list li{
    font-size:13px;
  }

  .why-image{
    margin-top:10px;
  }

  .why-image img{
    width:100%;
    height:320px;
  }

  .image-bg{
    width:20%;
    height:105%;
    right:-10px;
    top:-12px;
  }
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

  .why-section{
    padding:40px 0;
  }

  .why-content h5{
    font-size:13px;
  }

  .why-content h2{
    font-size:24px;
    line-height:1.4;
  }

  .why-content p{
    font-size:12px;
    line-height:1.7;
  }

  .why-list li{
    font-size:12px;
    margin-bottom:10px;
    gap:8px;
  }

  .why-list li i{
    font-size:12px;
  }

  .learn-btn,
  .why-btn{
    padding:10px 22px;
    font-size:13px;
  }

  .why-image img{
    width:100%;
    height:240px;
  }

  .image-bg{
    width:22%;
    height:104%;
    right:-5px;
    top:-10px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media(max-width:480px){

  .why-content h2{
    font-size:20px;
  }

  .why-content p,
  .why-list li{
    font-size:11px;
  }

  .why-image img{
    height:200px;
  }

  .image-bg{
    width:24%;
    height:102%;
  }
}


/* =========================
   WORK PROCESS SECTION
========================= */
/* =========================
   WORK PROCESS SECTION
========================= */

.work-process-section{
  background:#FFFFFF;
  padding:70px 0;
}

/* LEFT CONTENT */
.process-content h5{
color:#013795;  font-size:18px;
  font-weight:700;
  margin-bottom:12px;
}

.process-content h2{
  color:#013795;
  font-size:42px;
  font-weight:800;
  line-height:1.3;
  margin-bottom:22px;
}

.process-content p{
color:#5F6475;
  font-size:26px;
  line-height:1.8;
  margin-bottom:28px;
}

/* BUTTON */
.process-btn{
background:#013795;

color:#FFFFFF;
  border:none;
  padding:14px 30px;
  font-size:16px;
  font-weight:600;
  border-radius:5px;
  transition:0.3s;
}

.process-btn:hover{
 background:#013795;

box-shadow:
   0 15px 35px rgba(30,8,118,0.25);
}

/* PROCESS BOX */
.process-box{
  background:#FFFFFF;

border:1px solid #ECEBFF;

box-shadow:
   0 8px 25px rgba(0,0,0,0.05);
  padding:28px;
  height:100%;
  position:relative;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
  border-bottom:4px solid #013795;   
  border-radius:8px;
  transition:0.3s;
}

.process-box:hover{
  transform:translateY(-5px);
}

/* TOP AREA */
.process-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:22px;
}

.process-top i{
  font-size:36px;
  color:#fc7228;
}

.process-top span{
  width:48px;
  height:52px;
  background:#cc1137;

color:#FFFFFF;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  font-size:20px;
  font-weight:700;
}

/* TITLE */
.process-box h3{
 color:#013795;
  font-size:24px;
  font-weight:700;
  margin-bottom:12px;
  line-height:1.4;
}

/* TEXT */
.process-box p{
color:#5F6475;
  font-size:14px;
  line-height:1.7;
  margin-bottom:0;
}

/* RESPONSIVE */
@media(max-width:991px){

  .process-content{
    margin-bottom:35px;
  }

  .process-content h2{
    font-size:34px;
  }

  .process-box h3{
    font-size:20px;
  }
}

@media(max-width:768px){

  .work-process-section{
    padding:50px 0;
  }

  .process-content h5{
    font-size:16px;
  }

  .process-content h2{
    font-size:28px;
  }

  .process-content p{
    font-size:14px;
  }

  .process-btn{
    font-size:15px;
    padding:12px 24px;
  }

  .process-box{
    padding:22px;
  }

  .process-top i{
    font-size:30px;
  }

  .process-top span{
    width:42px;
    height:42px;
    font-size:18px;
  }

  .process-box h3{
    font-size:19px;
  }

  .process-box p{
    font-size:13px;
  }
}

/* =========================
   TEAM SECTION
========================= */

.team-section{
  background:#F5F5F5;
  padding:70px 0;
}

/* TITLE */
.section-title{
  margin-bottom:45px;
}

.section-title h5{
  color:#cc1137; 
  font-size:18px;
  font-weight:700;
  margin-bottom:8px;
}

.section-title h2{
  color:#230074;
  font-size:42px;
  font-weight:800;
  margin-bottom:15px;
}

.title-line{
  width:120px;
  height:3px;
  background:#013795;
  margin:auto;
  position:relative;
}

.title-line::before,
.title-line::after{
  content:"";
  width:8px;
  height:8px;
 background:#013795;
  border-radius:50%;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.title-line::before{
  left:0;
}

.title-line::after{
  right:0;
}

/* TEAM CARD */
.team-card{
  background:#fff;
  overflow:hidden;
  transition:0.3s;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
  border-radius:8px;
  height:100%;
}

.team-card:hover{
  transform:translateY(-5px);
}

/* IMAGE */
.team-img{
  position:relative;
  overflow:hidden;
  border-radius:18px 18px 0 0;
}

.team-img img{
  width:100%;
  /*height:300px;*/ 
  object-fit:cover;
  transition:0.4s;
}

.team-card:hover .team-img img{
  transform:scale(1.05);
}

/* SOCIAL ICONS */
.team-social{
  position:absolute;
  top:18px;
  right:-55px;
  display:flex;
  flex-direction:column;
  gap:15px;
  transition:0.4s;
}

.team-card:hover .team-social{
  right:18px;
}

.team-social a{
  width:42px;
  height:42px;
  background:#013795;

color:#FFFFFF;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:16px;
  transform:rotate(45deg);
  transition:0.3s;
  border-radius:4px;
}

.team-social a:hover{
  background:#013795;
}

.team-social a i{
  transform:rotate(-45deg);
}

/* CONTENT */
.team-content{
  padding:20px 15px;
  text-align:center;
  background:#FFFFFF;

border:1px solid #ECEBFF;

box-shadow:
   0 8px 25px rgba(0,0,0,0.05);
}

.team-content h3{
  color:#013795;
  font-size:22px;
  font-weight:700;
  margin-bottom:6px;
}

.team-content span{
  color:#013795;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* RESPONSIVE */
@media(max-width:991px){

  .section-title h2{
    font-size:34px;
  }

  .team-content h3{
    font-size:20px;
  }

  .team-img img{
    height:260px;
  }
}

@media(max-width:768px){

  .team-section{
    padding:50px 0;
  }

  .section-title{
    margin-bottom:35px;
  }

  .section-title h5{
    font-size:16px;
  }

  .section-title h2{
    font-size:28px;
  }

  .title-line{
    width:100px;
  }

  .team-img img{
    height:240px;
  }

  .team-content h3{
    font-size:18px;
  }

  .team-content span{
    font-size:12px;
  }

  .team-social a{
    width:38px;
    height:38px;
    font-size:14px;
  }
}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section{
  position:relative;
  background:
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=1600');
  background-size:cover;
  background-position:center;
  padding:70px 0;
  overflow:hidden;
}

/* OVERLAY */
.testimonial-overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.75);
}

/* TITLE */
.section-title{
  position:relative;
  z-index:2;
  margin-bottom:45px;
}

.section-title h5{
  color:#cc1137;
  font-size:18px;
  font-weight:700;
  margin-bottom:8px;
}

.section-title h2{
  color:#230074;
  font-size:40px;
  font-weight:800;
  margin-bottom:15px;
}

.title-line{
  width:120px;
  height:3px;
 background:#013795;
  margin:auto;
  position:relative;
}

.title-line::before,
.title-line::after{
  content:"";
  width:8px;
  height:8px;
background:#013795;
  border-radius:50%;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.title-line::before{
  left:0;
}

.title-line::after{
  right:0;
}

/* CARD */
.testimonial-card{
 background: rgba(255,255,255,0.96);

backdrop-filter: blur(10px);

border:1px solid rgba(255,255,255,0.4);
  padding:25px;
  position:relative;
  height:100%;
  border-radius:8px;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);

  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* CLIENT IMAGE */
.client-img{
  position:relative;
  width:75px;
  height:75px;
}

.client-img img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  border:4px solid #013795;
}

.client-img span{
  position:absolute;
  bottom:0;
  right:-4px;
  width:28px;
  height:28px;
  background:#00135d;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:rotate(45deg);
  border-radius:4px;
}

.client-img span i{
  transform:rotate(-45deg);
  font-size:11px;
}

/* TEXT */
.testimonial-text{
  color:#666;
  font-size:20px;
  line-height:1.7;
  margin:22px 0;
  min-height:120px;
}

/* INFO */
.testimonial-info{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-top:auto;
}

.testimonial-info h3{
color:#013795;
  font-size:22px;
  font-weight:700;
  margin-bottom:5px;
}

.testimonial-info h5{
color:#013795;  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* QUOTE ICON */
.quote-icon{
  color:#fc7228;
  font-size:45px;
  opacity:0.9;
}

/* INDICATORS */
.testimonial-indicators{
  bottom:-50px;
}

.testimonial-indicators [data-bs-target]{
  width:28px;
  height:8px;
  border:none;
  border-radius:20px;
  background:#fff;
  opacity:0.6;
}

.testimonial-indicators .active{
  background:#013795;
  opacity:1;
}

/* RESPONSIVE */
@media(max-width:991px){

  .section-title h2{
    font-size:34px;
  }

  .testimonial-info h3{
    font-size:20px;
  }

  .testimonial-text{
    font-size:13px;
    min-height:auto;
  }

  .quote-icon{
    font-size:38px;
  }
}

@media(max-width:768px){

  .testimonial-section{
    padding:50px 0 80px;
  }

  .section-title{
    margin-bottom:35px;
  }

  .section-title h5{
    font-size:16px;
  }

  .section-title h2{
    font-size:28px;
  }

  .title-line{
    width:100px;
  }

  .testimonial-card{
    padding:20px;
  }

  .testimonial-text{
    font-size:13px;
  }

  .testimonial-info{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }

  .testimonial-info h3{
    font-size:18px;
  }

  .testimonial-info h5{
    font-size:12px;
  }

  .quote-icon{
    font-size:34px;
  }
}

/* =========================
   CTA SECTION
========================= */

.cta-section{
  position:relative;
  background:
    url('./images/Banner.jpg');
  background-size:cover;
  background-position:center;
  padding:3rem 5%;
  overflow:hidden;
}

/* OVERLAY */
.cta-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

/* CONTENT */
.cta-content{
  position:relative;
  z-index:2;
  max-width:850px;
}

/* SUBTITLE */
.cta-content h5{
    color: #013795;
      font-size:22px;
  font-weight:700;
  margin-bottom:20px;
}

/* TITLE */
.cta-content h2{
  color:#fff;
  font-size:50px;
  line-height:1.15;
  font-weight:800;
  margin-bottom:45px;
}

/* BUTTON */
.cta-btn{
  display:inline-block;
    background: #b819a3;
    color: #FFFFFF;
  text-decoration:none;
  padding:15px 30px;
  font-size:20px;
  font-weight:700;
  transition:0.3s;
}

.cta-btn:hover{
 background: #013795;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(1, 55, 149, 0.25);

}

/* RESPONSIVE */
@media(max-width:991px){

  .cta-section{
    padding:100px 0;
  }

  .cta-content h5{
    font-size:28px;
  }

  .cta-content h2{
    font-size:60px;
  }

  .cta-btn{
    font-size:22px;
    padding:18px 40px;
  }
}

@media(max-width:768px){

  .cta-section{
    padding:80px 0;
  }

  .cta-content h5{
    font-size:22px;
  }

  .cta-content h2{
    font-size:40px;
  }

  .cta-btn{
    font-size:18px;
    padding:15px 30px;
  }
}


/* =========================
   COUNTER PARALLAX SECTION
========================= */

.counter-section{
  position:relative;

  /* PARALLAX EFFECT */
  background:
    linear-gradient(rgba(30,8,118,0.88), rgba(30,8,118,0.88)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600');

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-attachment:fixed;

  padding:120px 0;
  overflow:hidden;
}

/* DARK OVERLAY */
.counter-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

/* COUNTER BOX */
.counter-box{
  position:relative;
  z-index:2;
}

/* ICON DIAMOND */
.counter-icon{
     width: 75px;
    height: 75px;
  background:#0290ea;
  margin:0 auto 40px;
  transform:rotate(45deg);

  display:flex;
  align-items:center;
  justify-content:center;

  transition:0.4s;
}

.counter-box:hover .counter-icon{
  transform:rotate(45deg) scale(1.08);
  color:#FFFFFF;
}

/* ICON */
.counter-icon i{
  color:#fff;
  font-size:52px;
  transform:rotate(-45deg);
}

/* NUMBER */
.counter-number{
  color:#fff;
  font-size:72px;
  font-weight:800;
  margin-bottom:10px;
}

/* TITLE */
.counter-box h4{
 color:#E9E9FF;
  font-size:20px;
  font-weight:700;
  margin-bottom:20px;
}

/* SMALL LINE */
.counter-line{
  width:80px;
  height:4px;
background:rgba(255,255,255,0.15);
  margin:auto;
}

/* RESPONSIVE */
@media(max-width:991px){

  .counter-section{
    padding:90px 0;
    background-attachment:scroll;
  }

  .counter-icon{
    width:110px;
    height:110px;
  }

  .counter-icon i{
    font-size:42px;
  }

  .counter-number{
    font-size:56px;
  }

  .counter-box h4{
    font-size:32px;
  }
}

@media(max-width:768px){

  .counter-section{
    padding:70px 0;
  }

  .counter-box{
    margin-bottom:30px;
  }

  .counter-icon{
    width:90px;
    height:90px;
    margin-bottom:30px;
  }

  .counter-icon i{
    font-size:34px;
  }

  .counter-number{
    font-size:42px;
  }

  .counter-box h4{
    font-size:24px;
  }

  .counter-line{
    width:60px;
  }
}


/* =========================
   PROJECTS SECTION
========================= */

.projects-section{
  background:#F5F5F5; 
  padding:50px 0;
}

/* TITLE */
.section-title{
  margin-bottom:40px;
}

.section-title h5{
  color:#cc1137;
  font-size:18px;
  font-weight:700;
  margin-bottom:8px;
}

.section-title h2{
  color:#230074;
  font-size:42px;
  font-weight:800;
  margin-bottom:14px;
}

.title-line{
  width:120px;
  height:3px;
background:#013795;
  margin:auto;
  position:relative;
}

.title-line::before,
.title-line::after{
  content:"";
  width:7px;
  height:7px;
 background:#013795;
  border-radius:50%;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.title-line::before{
  left:0;
}

.title-line::after{
  right:0;
}

/* FILTER */
.project-filter{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:35px;
}

.filter-btn{
  border:none;
background:#FFFFFF;

border:1px solid #ECEBFF;

color:#013795;
  padding:12px 28px;
  font-size:14px;
  font-weight:700;
  transition:0.3s;
}

.filter-btn.active,
.filter-btn:hover{
 background:#013795;

color:#FFFFFF;
}

/* CARD */
.project-card{
  position:relative;
  overflow:hidden;
}

.project-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:0.4s;
  border-radius:18px;
}

.project-card:hover img{
 transform:scale(1.08);
}

/* OVERLAY */
.project-overlay{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,0.82);
  backdrop-filter:blur(3px);
  padding:22px 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-radius:8px;
}

/* TEXT */
.project-overlay span{
color:#013795;
  font-size:16px;
  font-weight:700;
  display:block;
  margin-bottom:6px;
}

.project-overlay h3{
color:#230074;
  font-size:25px;
  font-weight:800;
  margin:0;
  line-height:1.2;
}

/* ICON BOX */
.project-overlay a{
  min-width:72px;
  height:72px;
  background:#fc7228;

color:#FFFFFF;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:26px;
  border-radius:16px;
  transition:0.3s;
}

.project-overlay a:hover{
  background:#013795;
}

/* RESPONSIVE */
@media(max-width:991px){

  .section-title h2{
    font-size:34px;
  }

  .project-overlay h3{
    font-size:26px;
  }

  .project-card img{
    height:240px;
  }

  .project-overlay a{
    min-width:60px;
    height:60px;
    font-size:22px;
  }
}

@media(max-width:768px){

  .projects-section{
    padding:50px 0;
  }

  .section-title h5{
    font-size:16px;
  }

  .section-title h2{
    font-size:28px;
  }

  .filter-btn{
    padding:10px 18px;
    font-size:12px;
  }

  .project-card img{
    height:220px;
  }

  .project-overlay{
    left:12px;
    right:12px;
    bottom:12px;
    padding:16px 18px;
  }

  .project-overlay span{
    font-size:13px;
  }

  .project-overlay h3{
    font-size:20px;
  }

  .project-overlay a{
    min-width:50px;
    height:50px;
    font-size:18px;
    border-radius:12px;
  }
}

/* =========================
   BLOG SECTION
========================= */

.blog-section{
  background:#F5F5F5;
  padding:40px 0;
}

/* TITLE */
.section-title{
  margin-bottom:50px;
}

.section-title h5{
  color:#cc1137;
  font-size:18px;
  font-weight:500;
  margin-bottom:8px;
}

.section-title h2{
  color:#230074;
  font-size:34px;
  font-weight:700;
  margin-bottom:15px;
}

.title-line{
  width:120px;
  height:3px;
background:#013795;
  margin:auto;
  position:relative;
}

.title-line::before,
.title-line::after{
  content:"";
  width:8px;
  height:8px;
background:#013795;
  border-radius:50%;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.title-line::before{
  left:0;
}

.title-line::after{
  right:0;
}

/* BLOG CARD */
.blog-card{
  background:#FFFFFF;

border:1px solid #ECEBFF;

box-shadow:
   0 8px 25px rgba(0,0,0,0.05);
  overflow:hidden;
  transition:0.3s;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
  height:100%;
}

.blog-card:hover{
  transform:translateY(-10px);

box-shadow:
   0 20px 40px rgba(30,8,118,0.18);
}

/* IMAGE */
.blog-img{
  position:relative;
  overflow:hidden;
  border-radius:18px 18px 0 0;
}

.blog-img img{
  width:100%;
  height:210px;
  object-fit:cover;
  transition:0.4s;
}

.blog-card:hover .blog-img img{
  transform:scale(1.08);
}

/* DATE BOX */
.blog-date{
  width:75px;
  height:75px;
  background:#f5af1b;

color:#FFFFFF;
  position:absolute;
  top:18px;
  left:18px;
  transform:rotate(45deg);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.blog-date span,
.blog-date p{
  transform:rotate(-45deg);
  color:#fff;
  font-weight:700;
}

.blog-date span{
  font-size:16px;
  line-height:1;
}

.blog-date p{
  font-size:14px;
  margin:0;
}

/* CONTENT */
.blog-content{
  padding:22px;
}

/* CATEGORY */
.blog-category{
  display:inline-block;
 background:#b819a3;

color:#FFFFFF;
  padding:7px 12px;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
  transition:0.3s;
}

.blog-category:hover{
  background:#013795;
}

/* TITLE */
.blog-content h3{
  margin-bottom:18px;
  border-bottom:1px solid #ddd;
  padding-bottom:18px;
}

.blog-content h3 a{
  color:#013795;
  text-decoration:none;
  font-size:20px;
  line-height:1.4;
  font-weight:600;
  transition:0.3s;
}

.blog-content h3 a:hover{
  color:#013795;
}

/* META */
.blog-meta{
  display:flex;
  align-items:center;
  gap:10px;
}

.blog-meta i{
color:#013795;
  font-size:18px;
}

.blog-meta span{
color:#5F6475;  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:991px){

  .section-title h2{
    font-size:30px;
  }

  .blog-content h3 a{
    font-size:18px;
  }
}

@media(max-width:768px){

  .blog-section{
    padding:50px 0;
  }

  .section-title{
    margin-bottom:35px;
  }

  .section-title h5{
    font-size:16px;
  }

  .section-title h2{
    font-size:26px;
  }

  .title-line{
    width:90px;
  }

  .blog-img img{
    height:190px;
  }

  .blog-date{
    width:65px;
    height:65px;
  }

  .blog-date span{
    font-size:14px;
  }

  .blog-date p{
    font-size:12px;
  }

  .blog-content{
    padding:18px;
  }

  .blog-content h3 a{
    font-size:17px;
  }

  .blog-category{
    font-size:12px;
    padding:6px 10px;
  }

  .blog-meta i{
    font-size:16px;
  }

  .blog-meta span{
    font-size:13px;
  }
}



    /* =========================================
   EXPERTISE SECTION
========================================= */

.expertise-section{
  padding:50px 0;
  background:#f5f5f5;
}

/* =========================================
   SECTION TITLE
========================================= */

.section-title{
  margin-bottom:20px;
}

.section-title h5{
  color:#cc1137;

  font-size:15px;
  font-weight:700;

  text-transform:uppercase;
  letter-spacing:1px;

  margin-bottom:8px;
}

.section-title h2{
  font-size:34px;
  line-height:1.3;
  font-weight:800;
  text-align: center;
  color:#230074;

  margin-bottom:12px;
}

.title-line{
  width:90px;
  height:4px;

  background:#013795;

  border-radius:30px;
}

/* =========================================
   TOP DESCRIPTION
========================================= */

.expertise-top{
  margin-bottom:20px;
  padding-right:10px;
}

.expertise-top p{
  font-size:15px;
  line-height:1.9;
  color:#5F6475;

  margin-bottom:10px;

  font-weight:400;
}

.expertise-top p strong{
  color:#013795;
  font-weight:700;
}

/* =========================================
   GRID
========================================= */

.expertise-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));

  gap:16px;

  align-items:start;
}

/* =========================================
   CARD
========================================= */

.expertise-card{
  background:#fff;

  border:1px solid #ececec;

  border-radius:6px;

  overflow:hidden;

  height:100%;

  box-shadow:0 2px 8px rgba(0,0,0,0.03);

  transition:0.3s;
}

.expertise-card:hover{
  transform:translateY(-4px);

  box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

/* =========================================
   HEADER
========================================= */

.expertise-header{
  background:#013795;
  color:#fff;

  padding:12px 16px;

  font-size:16px;
  line-height:1.5;
  font-weight:700;
}

/* =========================================
   LIST
========================================= */

.expertise-card ul{
  list-style:none;
  margin:0;
  padding:0;
}

.expertise-card ul li{
  position:relative;

  padding:10px 14px 10px 30px;

  border-bottom:1px solid #f3f3f3;

  font-size:14px;
  line-height:1.6;

  color:#5F6475;

  transition:0.3s;
}

.expertise-card ul li:last-child{
  border-bottom:none;
}

/* BULLET */

.expertise-card ul li::before{
  content:"\2022";

  position:absolute;

  left:12px;
  top:8px;

  color:#013795;

  font-size:18px;
  font-weight:700;
}

/* HOVER */

.expertise-card ul li:hover{
  background:#f8f8ff;

  padding-left:34px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

  .expertise-grid{
    grid-template-columns:minmax(0, 1fr);
  }
}

@media(max-width:768px){

  .expertise-section{
    padding:35px 0;
  }

  .section-title h2{
    font-size:28px;
  }

  .section-title h5{
    font-size:14px;
  }

  .expertise-top p{
    font-size:14px;
    line-height:1.8;
  }

  .expertise-header{
    font-size:15px;
  }

  .expertise-card ul li{
    font-size:13px;
  }
}
/* =========================
   CLIENTS SECTION
========================= */

.clients-section{
  background:#f4f4f4;
  padding:100px 0;
  overflow:hidden;
  max-width:100%;
}

/* TITLE */
.section-title{
  margin-bottom:70px;
}

.section-title h5{
  color:#cc1137;
  font-size:28px;
  font-weight:700;
  margin-bottom:10px;
}

.section-title h2{
  color:#230074;
  font-size:70px;
  font-weight:800;
  margin-bottom:20px;
  overflow-wrap:break-word;
  word-wrap:break-word;
}

.title-line{
  width:120px;
  height:3px;
background:#013795;  margin:auto;
  position:relative;
}

.title-line::before,
.title-line::after{
  content:"";
  width:10px;
  height:10px;
  background:#013795;
  border-radius:50%;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.title-line::before{
  left:0;
}

.title-line::after{
  right:0;
}

/* HOME CLIENTS CAROUSEL */
.home-clients-carousel{
  display:flex;
  flex-direction:column;
  gap:20px;
  max-width:100%;
  overflow:hidden;
}

.home-clients-marquee{
  position:relative;
  overflow:hidden;
  width:100%;
  mask-image:linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.home-clients-marquee:hover .home-clients-track{
  animation-play-state:paused;
}

.home-clients-track{
  display:flex;
  align-items:center;
  gap:22px;
  width:max-content;
  padding:4px 0;
  animation:homeClientsMarquee 42s linear infinite;
  will-change:transform;
}

.home-clients-track--reverse{
  animation-direction:reverse;
  animation-duration:48s;
}

.home-clients-marquee--static .home-clients-track{
  animation:none;
  flex-wrap:wrap;
  justify-content:center;
  width:100%;
  max-width:1100px;
  margin:0 auto;
  gap:16px;
}

@keyframes homeClientsMarquee{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

.home-clients-carousel .home-client-card{
  flex:0 0 auto;
  width:190px;
  min-height:120px;
  padding:20px 16px;
}

.home-clients-carousel .home-client-card img{
  max-height:64px;
}

/* HOME CLIENTS CARD */
.home-client-card{
  background:#fff;
  border-radius:12px;
  min-height:130px;
  padding:22px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  border:1px solid rgba(1,55,149,0.08);
  transition:transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-client-card:hover{
  transform:translateY(-8px);
  box-shadow:0 14px 32px rgba(1,55,149,0.12);
  border-color:rgba(1,55,149,0.18);
}

.home-client-card img{
  max-width:100%;
  max-height:72px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:grayscale(15%);
  transition:filter 0.3s ease, transform 0.3s ease;
}

.home-client-card:hover img{
  filter:grayscale(0%);
  transform:scale(1.05);
}

.home-clients-action{
  margin-top:40px;
}

.home-clients-more-btn{
  display:inline-block;
  background:#b819a2;
  color:#fff;
  padding:14px 36px;
  font-size:16px;
  font-weight:700;
  text-decoration:none;
  border:none;
  transition:background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.home-clients-more-btn:hover{
  background:#013795;
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(1,55,149,0.25);
}

/* SLIDER (legacy) */
.client-slider{
  overflow:hidden;
  position:relative;
}

/* TRACK */
.client-track{
  display:flex;
  width:calc(250px * 10);
  animation:scroll 20s linear infinite;
}

/* CLIENT BOX */
.client-box{
  width:250px;
  height:180px;
  background:#fff;
  margin:0 15px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s;
  flex-shrink:0;
}

.client-box:hover{
  transform:translateY(-8px);
}

.client-box img{
  
  max-width:150px;
  max-height:80px;
  object-fit:contain;
}

.client-box:hover img{
    transform:scale(1.05);

}

/* ANIMATION */
@keyframes scroll{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(calc(-250px * 5));
  }
}

/* RESPONSIVE */
@media(min-width:768px){
  .home-clients-carousel .home-client-card{
    width:210px;
    min-height:130px;
  }

  .home-clients-carousel .home-client-card img{
    max-height:70px;
  }
}

@media(max-width:575.98px){
  .home-clients-carousel{
    gap:14px;
  }

  .home-clients-carousel .home-client-card{
    width:160px;
    min-height:110px;
    padding:16px 12px;
  }

  .home-clients-track{
    gap:16px;
  }
}

@media (prefers-reduced-motion: reduce){
  .home-clients-track{
    animation:none !important;
  }
}

@media(max-width:991px){

  .section-title h2{
    font-size:52px;
  }

  .client-box{
    width:220px;
    height:150px;
  }

  .client-box img{
    max-width:135px;
  }
}

@media(max-width:768px){

  .clients-section{
    padding:70px 0;
  }

  .section-title{
    margin-bottom:50px;
  }

  .section-title h5{
    font-size:22px;
  }

  .section-title h2{
    font-size:40px;
  }

  .title-line{
    width:160px;
  }

  .client-box{
    width:180px;
    height:130px;
  }

  .client-box img{
    max-width:100px;
    max-height:55px;
  }
}

















/* =========================
   NEWSLETTER SECTION
========================= */

.newsletter-section{
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('./images/Subscribe.jpg');
  background-size:cover;
  background-position:center;
  padding:30px 67px;
}

.newsletter-content h2{
  color:#fff;
  font-size:30px;
  font-weight:800;
  margin-bottom:12px;
}

.newsletter-content p{
  color:#fff;
  font-size:16px;
}

/* FORM */
.newsletter-form{
  background:#fff;
  padding:5px;
  display:flex;
  align-items:center;
}

.newsletter-form input{
  width:100%;
  border:none;
  outline:none;
  padding:20px 25px;
  font-size:20px;
}

.newsletter-form button{
background:#013795;
  color:#fff;
  border:none;
  padding:15px 30px;
  font-size:20px;
  font-weight:700;
  transition:0.3s;
}

.newsletter-form button:hover{
  background: #013795;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(1, 55, 149, 0.25);
}

/* =========================
   FOOTER
========================= */

.footer-section{
  position:relative;
  background:#012560;
  color:#fff;
  padding-top:70px;
  overflow:hidden;
}

.footer-section::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg, #b819a2, #fc7228, #ffffff);
}

.footer-section .container{
  position:relative;
  z-index:1;
  padding-bottom:50px;
}

.footer-logo{
  display:inline-block;
  background:#fff;
  padding:14px 18px;
  border-radius:10px;
  margin-bottom:20px;
  box-shadow:0 4px 16px rgba(0, 0, 0, 0.12);
}

.footer-logo img{
  width:160px;
  margin-bottom:0;
  display:block;
  filter:none;
}

.footer-text{
  font-size:15px;
  line-height:1.85;
  margin-bottom:28px;
  color:rgba(255, 255, 255, 0.82);
  font-weight:400;
  max-width:320px;
}

.footer-social{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.footer-social a{
  width:42px;
  height:42px;
  background:rgba(255, 255, 255, 0.1);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  text-decoration:none;
  font-size:16px;
  border:1px solid rgba(255, 255, 255, 0.15);
  transition:background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.footer-social a:hover{
  background:#b819a2;
  border-color:#b819a2;
  color:#fff;
  transform:translateY(-4px);
  box-shadow:0 10px 24px rgba(184, 25, 162, 0.35);
}

.footer-widget h3{
  color:#fff;
  font-size:22px;
  font-weight:700;
  margin-bottom:30px;
  position:relative;
}

.footer-widget h3::after{
  content:"";
  width:56px;
  height:3px;
  background:linear-gradient(90deg, #b819a2, #fc7228);
  border-radius:2px;
  position:absolute;
  left:0;
  bottom:-10px;
}

.footer-widget ul{
  padding:0;
  margin:0;
  list-style:none;
}

.footer-widget ul li{
  margin-bottom:14px;
}

.footer-widget ul li a{
  color:rgba(255, 255, 255, 0.85);
  text-decoration:none;
  font-size:15px;
  font-weight:400;
  display:inline-flex;
  align-items:flex-start;
  gap:10px;
  line-height:1.5;
  transition:color 0.25s ease, padding-left 0.25s ease;
}

.footer-widget ul li a:hover{
  color:#fff;
  padding-left:6px;
}

.footer-widget ul li a i{
  background:rgba(255, 255, 255, 0.12);
  color:#fc7228;
  margin-right:0;
  width:22px;
  height:22px;
  min-width:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  font-size:12px;
  transition:background 0.25s ease, color 0.25s ease;
}

.footer-widget ul li a:hover i{
  background:#fc7228;
  color:#fff;
}

.contact-info{
  padding:0;
  margin:0;
  list-style:none;
}

.contact-info li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:15px;
  line-height:1.75;
  color:rgba(255, 255, 255, 0.82);
  margin-bottom:14px;
}

.contact-info li > div{
  display:flex;
  flex-direction:column;
  min-width:0;
  gap:6px;
}

.contact-info li > div a{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.contact-info li > div a i{
  margin-top:0;
}

.contact-info li i{
  color:#fc7228;
  margin-top:4px;
  min-width:18px;
  flex-shrink:0;
  transition:color 0.25s ease;
}

.contact-info li:hover i{
  color:#fff;
}

.footer-bottom{
  background:#012560;
  color:#fff;
  text-align:center;
  padding:10px 16px;
  border-top:1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p{
  color:rgba(255, 255, 255, 0.85);
  font-size:14px;
  margin:0;
  font-weight:400;
}

/* RESPONSIVE */
@media(max-width:991px){

  .footer-section{
    padding-top:60px;
  }

  .footer-widget{
    margin-bottom:30px;
  }

  .footer-widget h3{
    font-size:22px;
  }

  .footer-text{
    font-size:15px;
  }
}

@media(max-width:768px){

  .footer-section{
    text-align:left;
    padding-top:50px;
  }

  .footer-section .container{
    padding-bottom:30px;
  }

  .footer-widget{
    margin-bottom:40px;
  }

  .footer-widget h3{
    font-size:20px;
  }

  .footer-text,
  .footer-widget ul li a,
  .contact-info li{
    font-size:15px;
  }

  .footer-social a{
    width:40px;
    height:40px;
    font-size:15px;
  }

  .footer-bottom p{
    font-size:14px;
    line-height:1.6;
  }
}