.navbar{
    background-color: #fff;
    height: 80px;
    top: 20px;
    left: 20px;
    right: 20px;
    margin: 0;  
    border-radius: 16px;
    padding: 0.5rem;
}

.navbar-brand{
    padding: 0;
    margin: 0;
    font-weight: 500;
    color: #2563EB;
    font-size: 24px;
    transition: 0.3s color;
}

.navbar-brand img{
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: 0.3s ease;
}

.contact-button {
    background-color: #2563EB;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s background-color;
}

.contact-button:hover {
    background-color: #2563EB;
}

.navbar-toggler {
    border: none;
    font-size: 1.25rem;
}

.navbar-toggler:focus,
.btn-close:focus {
    box-shadow: none;
    outline: none;
}

.nav-link {
    color: #2563EB;
    font-weight: 500;
    position: relative;
}

.nav-link:hover,
.nav-link:active {
    color: #2563EB;
}

@media (min-width: 991px){
    .nav-link:before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: #2563EB;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }
    
    .nav-link:hover::before, .nav-link.active::before{
        width: 100%;
        visibility: visible;
    }
}

.hero-section{
    background: url(img/DSC03491_\(1\).png) no-repeat center;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
}

.hero-section::before{
    background-color: rgba(0,0,0,0.6);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero-section .container{
    min-height: 100vh;
    z-index: 1;
    position: relative;
    text-align: center;
}

.hero-section h1{
    padding-top: 110px;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: 3.2rem;
}

.hero-section-second{
    color: #2563EB;
}

.hero-section p{
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 1.2rem;
    color: #fff;
}

.hero-section h2{
    padding-top: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 1.1rem;
}

.hero-section img{
    width: 100%;
}

.btn-hero{
    margin-top: 10px;
    background-color: #2563EB;
    color: #FFF;
    padding: 5px 50px;
    font-size: 1.5rem;
    border-radius: 50px;
}

.btn-hero:hover{
    border-color: #2563EB;
    color: #2563EB;
    background-color: #F6F5F5;
}

.why-us{
  background: #f5f5f5;
}

/* IMAGE */
.image-wrapper{
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 24px;
}

.image-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* STATS */
.stats-box{
  background: #5f86ff;
  border-radius: 20px;

  display: flex;
  justify-content: space-around;
  align-items: center;

  padding: 24px;
}

.stat-item{
  text-align: center;
  color: white;
}

.stat-item h3{
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-item h3{
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    transition: transform .3s ease;
}

.stat-item:hover h3{
    transform: scale(1.05);
}

.stat-item p{
  margin: 0;
  font-size: 18px;
}

/* RIGHT CONTENT */
.badge-custom{
  background: #5f86ff;
  color: white;

  padding: 10px 18px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;
}

.main-title{
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  color: #2d2d2d;
}

.description{
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 991px){

  .main-title{
    font-size: 40px;
  }

  .image-wrapper{
    height: 320px;
  }

}

@media (max-width: 768px){

  .stats-box{
    flex-direction: column;
    gap: 20px;
  }

  .main-title{
    font-size: 32px;
  }

  .description{
    font-size: 16px;
  }

  .image-wrapper{
    height: 260px;
  }

}

.about-us-section {
  background-color: #f5f5f5;
}

/* BADGE */
.about-us-badge {
  background-color: #4f7cff;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

/* TITLE */
.about-us-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #2d2d2d;
}

.about-us-title span {
  color: #4f7cff;
}

/* DESCRIPTION */
.about-us-description {
  font-size: 24px;
  line-height: 1.6;
  color: #555;
  max-width: 600px;
}

/* CARD */
.about-us-card {
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
}

.about-us-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* TABLET */
@media (max-width: 991px) {

  .about-us-title {
    font-size: 48px;
  }

  .about-us-description {
    font-size: 20px;
  }

  .about-us-card img {
    height: 400px;
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .about-us-title {
    font-size: 36px;
  }

  .about-us-description {
    font-size: 16px;
  }

  .about-us-card img {
    height: 300px;
  }

  .about-us-badge {
    font-size: 12px;
    padding: 8px 16px;
  }
}

.our-service-badge{
  background-color: #4f7cff;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

.service-section{
    background: #f5f5f5;
}

.ss-tabs{
  display: flex;
  justify-content: center;
  gap: 40px;

  margin-bottom: 50px;
  flex-wrap: wrap;
}

.ss-title{
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: #2d2d2d;
}

.ss-tab{
  border: none;
  background: transparent;

  font-size: 18px;
  font-weight: 500;

  transition: .3s ease;
  position: relative;
}

.ss-tab.active{
  color: #2f6bff;
}

.ss-tab.active::after{
  content: '';

  width: 100%;
  height: 3px;

  background: #2f6bff;

  position: absolute;
  left: 0;
  bottom: -8px;
}

.ss-content{
  transition: opacity .4s ease;
}

.fade-out{
  opacity: 0;
}

.fade-in{
  opacity: 1;
}

.ss-card{
  text-align: center;
}

.ss-image{
  width: 100%;
  height: 260px;

  overflow: hidden;
  border-radius: 24px;

  margin-bottom: 20px;
}

.ss-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTION */
.loc-section{
  background: #f5f5f5;
}

/* MAP */
.loc-map{
  width: 100%;
  height: 100%;
  min-height: 620px;

  border-radius: 24px;
  overflow: hidden;

  box-shadow:
  0 4px 20px rgba(0,0,0,0.08);
}

.loc-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* RIGHT SIDE */
.loc-info-wrapper{
  display: flex;
  flex-direction: column;
  gap: 24px;

  height: 100%;
}

/* CARD */
.loc-card{
  background: white;

  border-radius: 24px;

  padding: 35px;

  box-shadow:
  0 4px 20px rgba(0,0,0,0.12);

  transition: .3s ease;

  flex: 1;
}

.loc-card:hover{
  transform: translateY(-5px);
}

/* TITLE */
.loc-card h3{
  font-size: 36px;
  font-weight: 700;

  color: #2f6bff;

  margin-bottom: 16px;
}

/* TEXT */
.loc-card p{
  font-size: 20px;
  line-height: 1.8;

  color: #333;

  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 992px){

  .loc-map{
    min-height: 450px;
  }

  .loc-card h3{
    font-size: 30px;
  }

  .loc-card p{
    font-size: 18px;
  }

}

@media (max-width: 768px){

  .loc-map{
    min-height: 320px;
  }

  .loc-card{
    padding: 25px;
  }

  .loc-card h3{
    font-size: 24px;
  }

  .loc-card p{
    font-size: 16px;
  }

}

/* SECTION */
.ts-section{
  background: #f5f5f5;
}

/* BADGE */
.ts-badge{
  background: #5f86ff;
  color: white;

  padding: 10px 22px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;
}

/* TITLE */
.ts-title{
  font-size: 56px;
  line-height: 1.15;
  font-weight: 700;

  color: #2d2d2d;
}

/* DESCRIPTION */
.ts-description{
  font-size: 20px;
  line-height: 1.8;

  color: #555;

  margin-bottom: 28px;
}

/* IMAGE */
.ts-image-wrapper{
  width: 100%;
  height: 700px;

  border-radius: 28px;

  overflow: hidden;

  position: relative;
}

/* IMAGE TAG */
.ts-image-wrapper img{
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* RESPONSIVE */
@media (max-width: 1200px){

  .ts-title{
    font-size: 54px;
  }

}

@media (max-width: 992px){

  .ts-title{
    font-size: 42px;
  }

  .ts-description{
    font-size: 18px;
  }

  .ts-image-wrapper{
    height: 500px;
  }

}

@media (max-width: 768px){

  .ts-title{
    font-size: 34px;
  }

  .ts-description{
    font-size: 16px;
    line-height: 1.7;
  }

  .ts-image-wrapper{
    height: 350px;
  }

}

/* SECTION */
.hd-section{
  background: #f5f5f5;
}

/* BADGE */
.hd-badge{
  background: #5f86ff;
  color: white;

  padding: 10px 22px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;
}

/* TITLE */
.hd-title{
  font-size: 64px;
  line-height: 1.15;
  font-weight: 700;

  color: #2d2d2d;
}

/* CARD */
.hd-card{
  position: relative;

  height: 620px;

  border-radius: 28px;

  overflow: hidden;

  display: flex;
  align-items: flex-end;

  transition: .4s ease;
}

/* HOVER */
.hd-card:hover{
  transform: translateY(-8px);
}

/* IMAGE */
.hd-card img{
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* DARK OVERLAY */
.hd-overlay{
  position: absolute;
  inset: 0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0.10) 65%,
    rgba(0,0,0,0) 100%
  );

  z-index: 1;
}

/* CONTENT */
.hd-content{
  position: relative;
  z-index: 2;

  padding: 35px;

  color: white;

  width: 100%;
}

/* TITLE */
.hd-content h3{
  font-size: 58px;
  line-height: 1.05;
  font-weight: 700;

  margin-bottom: 25px;
}

/* LIST */
.hd-content ul{
  padding-left: 18px;
  margin: 0;
}

.hd-content li{
  font-size: 18px;
  line-height: 1.8;

  margin-bottom: 6px;

  color: rgba(255,255,255,0.92);
}

/* RESPONSIVE */
@media (max-width: 1200px){

  .hd-title{
    font-size: 52px;
  }

  .hd-content h3{
    font-size: 48px;
  }

}

@media (max-width: 992px){

  .hd-card{
    height: 520px;
  }

  .hd-title{
    font-size: 42px;
  }

  .hd-content h3{
    font-size: 38px;
  }

  .hd-content li{
    font-size: 16px;
  }

}

@media (max-width: 768px){

  .hd-title{
    font-size: 34px;
  }

  .hd-card{
    height: 420px;
  }

  .hd-content{
    padding: 25px;
  }

  .hd-content h3{
    font-size: 30px;
  }

}

/* SECTION */
.sp-section{
  background: #f5f5f5;
}

/* BADGE */
.sp-badge{
  background: #5f86ff;
  color: white;

  padding: 10px 22px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;
}

/* TITLE */
.sp-title{
  font-size: 64px;
  line-height: 1.15;
  font-weight: 700;

  color: #2d2d2d;
}

/* DESCRIPTION */
.sp-description{
  font-size: 20px;
  line-height: 1.8;

  color: #555;
}

/* CARD WRAPPER */
.sp-card-wrapper{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* CARD */
.sp-card{
  position: relative;

  height: 220px;

  border-radius: 28px;

  overflow: hidden;

  display: flex;
  align-items: flex-end;

  transition: .4s ease;
}

/* IMAGE */
.sp-card img{
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: .6s ease;
}

/* OVERLAY */
.sp-overlay{
  position: absolute;
  inset: 0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.15) 75%,
    rgba(0,0,0,0) 100%
  );

  z-index: 1;
}

/* CONTENT */
.sp-content{
  position: relative;
  z-index: 2;

  padding: 28px;

  width: 100%;
}

/* TITLE */
.sp-content h3{
  font-size: 52px;
  line-height: 1;
  font-weight: 700;

  color: white;

  margin-bottom: 12px;
}

/* TEXT */
.sp-content p{
  font-size: 16px;
  line-height: 1.7;

  color: rgba(255,255,255,0.92);

  margin-bottom: 0;

  max-width: 90%;
}

/* HOVER */
.sp-card:hover{
  transform: translateY(-6px);
}

.sp-card:hover img{
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1200px){

  .sp-title{
    font-size: 54px;
  }

  .sp-content h3{
    font-size: 42px;
  }

}

@media (max-width: 992px){

  .sp-title{
    font-size: 42px;
  }

  .sp-description{
    font-size: 18px;
  }

  .sp-card{
    height: 200px;
  }

  .sp-content h3{
    font-size: 34px;
  }

}

@media (max-width: 768px){

  .sp-title{
    font-size: 34px;
  }

  .sp-description{
    font-size: 16px;
    line-height: 1.7;
  }

  .sp-card{
    height: 180px;
    border-radius: 22px;
  }

  .sp-content{
    padding: 22px;
  }

  .sp-content h3{
    font-size: 28px;
  }

  .sp-content p{
    font-size: 14px;
    max-width: 100%;
  }

}

.ps-section{
    padding: 100px 0;
    background: #f5f5f5;
}

.ps-badge{
    background: #2563EB;
    color: #fff;
    padding: 10px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.ps-title{
    font-size: clamp(2rem,4vw,3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 20px;
}

.ps-description{
    max-width: 700px;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.8;
}

.ps-card{
    position: relative;
    overflow: hidden;

    background: #fff;
    border-radius: 24px;

    height: 100%;

    transition: all .6s ease;

    box-shadow:
        0 10px 20px rgba(0,0,0,.05),
        0 5px 10px rgba(0,0,0,.03);
}

.ps-card::before{
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        #4F86FF 0%,
        #2563EB 100%
    );

    transform: translateY(100%);
    transition: .6s ease;

    z-index: 1;
}

.ps-card:hover::before{
    transform: translateY(0);
}

.ps-card::after{
    content: "";

    position: absolute;
    top: 0;
    left: -120%;

    width: 50%;
    height: 100%;

    background: rgba(255,255,255,.15);

    transform: skewX(-25deg);

    transition: .8s ease;

    z-index: 2;
}

.ps-card:hover::after{
    left: 150%;
}

.ps-image{
    position: relative;
    z-index: 3;

    overflow: hidden;

    border-radius: 24px 24px 0 0;
}

.ps-image img{
    width: 100%;
    height: 260px;

    object-fit: cover;
    display: block;

    transition: transform .6s ease;
}

.ps-card:hover .ps-image img{
    transform: scale(1.08);
}

.ps-content{
    position: relative;
    z-index: 3;

    padding: 28px;
}

.ps-content h3{
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;

    margin-bottom: 18px;

    transition: .4s ease;
}

.ps-content ul{
    padding-left: 18px;
    margin: 0;
}

.ps-content li{
    margin-bottom: 10px;
    color: #475569;

    transition: .4s ease;
}

.ps-card:hover h3,
.ps-card:hover li{
    color: #fff;
}

.ps-card:hover{
    transform: translateY(-12px);

    box-shadow:
        0 25px 50px rgba(37,99,235,.25),
        0 10px 20px rgba(37,99,235,.15);
}

