  :root{
      --primary:#0047AB;
      --secondary:#FF7A00;
      --dark:#0f172a;
      --light:#f8fafc;
    }

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Poppins',sans-serif;
      overflow-x:hidden;
      color:#333;
    }

    a{
      text-decoration:none;
    }

    section{
      padding:100px 0;
    }

    /* =========================
    HEADER
    ========================= */

    .header{
      position:fixed;
      top:0;
      width:100%;
      z-index:999;
      background:rgba(255,255,255,0.95);
      backdrop-filter:blur(12px);
      box-shadow:0 2px 15px rgba(0,0,0,0.05);
    }

    .logo img{
      height:55px;
    }

    .navbar-nav .nav-link{
      font-weight:600;
      color:#111;
      margin:0 10px;
    }

    .navbar-nav .nav-link:hover{
      color:var(--primary);
    }

    .btn-main{
      background:var(--secondary);
      color:#fff;
      padding:12px 28px;
      border-radius:50px;
      font-weight:600;
      transition:0.3s;
      display:inline-block;
    }

    .btn-main:hover{
      background:var(--primary);
      color:#fff;
    }

    /* =========================
    HERO
    ========================= */

    .hero-section{
      padding:0;
    }

    .hero-slide{
      position:relative;
      height:100vh;
      min-height:700px;
    }

    .hero-slide img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .overlay{
      position:absolute;
      inset:0;
      background:rgba(0,0,0,0.65);
      z-index:1;
    }

    .hero-content{
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%,-50%);
      z-index:2;
      text-align:center;
      color:#fff;
      width:100%;
      max-width:900px;
      padding:0 20px;
    }

    .hero-content h1{
      font-size:70px;
      font-weight:800;
      margin-bottom:25px;
    }

    .hero-content p{
      font-size:22px;
      line-height:1.8;
      margin-bottom:35px;
    }

    .hero-buttons{
      display:flex;
      justify-content:center;
      gap:15px;
      flex-wrap:wrap;
    }

    .btn-outline-custom{
      border:2px solid #fff;
      color:#fff;
      padding:12px 28px;
      border-radius:50px;
      font-weight:600;
    }

    .btn-outline-custom:hover{
      background:#fff;
      color:#000;
    }

    /* =========================
    SECTION TITLE
    ========================= */

    .section-title{
      text-align:center;
      margin-bottom:60px;
    }

    .section-title h2{
      color:var(--secondary);
      font-size:18px;
      text-transform:uppercase;
      font-weight:700;
      margin-bottom:10px;
    }

    .section-title p{
      font-size:42px;
      font-weight:800;
      color:var(--dark);
    }
/* =========================
SERVICES SECTION (POLISHED)
========================= */

.services-section{
  position:relative;
  padding:100px 0;

  background:var(--card);

  border-radius:32px;

  margin:60px auto;

  box-shadow:0 20px 60px rgba(0,0,0,0.08);

  overflow:hidden;
  z-index:1;
}

/* soft glow - top right */
.services-section::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;

  width:300px;
  height:300px;

  border-radius:50%;

  background:rgba(0,71,171,0.10);

  filter:blur(55px);

  z-index:0;
}

/* second glow - bottom left */
.services-section::after{
  content:"";
  position:absolute;
  bottom:-140px;
  left:-140px;

  width:320px;
  height:320px;

  border-radius:50%;

  background:rgba(255,122,0,0.08);

  filter:blur(65px);

  z-index:0;
}

/* content layer */
.services-section .container{
  position:relative;
  z-index:2;
}

/* =========================
SERVICE CATEGORY CARD
========================= */

.service-category{
  background:#fff;
  border-radius:24px;
  padding:35px;
  height:100%;
  position:relative;

  border:1px solid rgba(0,0,0,0.04);

  box-shadow:0 12px 35px rgba(0,0,0,0.06);

  transition:all 0.35s ease;
}

/* hover = smooth lift (like About/Why) */
.service-category:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 50px rgba(0,0,0,0.12);
}

/* top accent line */
.service-category::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;

  background:linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
  );

  border-radius:24px 24px 0 0;
}

/* =========================
HEADER
========================= */

.service-category-header{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:28px;
}

/* icon */
.service-category-icon{
  width:72px;
  height:72px;
  border-radius:18px;

  background:rgba(0,71,171,0.08);
  color:var(--primary);

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

  font-size:30px;

  transition:0.3s ease;
}

/* hover icon */
.service-category:hover .service-category-icon{
  background:var(--primary);
  color:#fff;
  transform:scale(1.05) rotate(-2deg);
}

.gov-icon{
  background:rgba(255,122,0,0.10);
  color:var(--secondary);
}

/* text */
.service-category-header h3{
  font-size:28px;
  font-weight:800;
  margin-bottom:6px;
  color:var(--dark);
}

.service-category-header p{
  margin:0;
  color:#666;
  line-height:1.6;
  font-size:14px;
}

/* =========================
SERVICE LIST
========================= */

.service-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* item */
.service-item{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:14px;

  padding:16px 18px;

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

  transition:0.3s ease;

  position:relative;
  overflow:hidden;
}

/* hover lift */
.service-item:hover{
  transform:translateX(6px);
  box-shadow:0 10px 22px rgba(0,0,0,0.08);
  border-color:rgba(0,71,171,0.15);
}

/* subtle hover glow */
.service-item::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:0;
  height:100%;

  background:linear-gradient(
    90deg,
    rgba(0,71,171,0.06),
    rgba(255,122,0,0.06)
  );

  transition:0.35s ease;
}

.service-item:hover::before{
  width:100%;
}

/* left content */
.service-left{
  display:flex;
  align-items:center;
  gap:12px;
  position:relative;
  z-index:2;
}

/* icon */
.service-left i{
  width:42px;
  height:42px;
  border-radius:12px;

  background:rgba(0,71,171,0.08);
  color:var(--primary);

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

  font-size:18px;

  transition:0.3s;
}

.service-item:hover .service-left i{
  background:var(--primary);
  color:#fff;
  transform:scale(1.1);
}

/* text */
.service-left span{
  font-size:15px;
  font-weight:600;
}

/* arrow */
.service-item > i{
  font-size:24px;
  color:var(--secondary);
  transition:0.3s;
  z-index:2;
}

.service-item:hover > i{
  transform:translateX(4px);
}

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

@media(max-width:991px){

  .service-category-header{
    flex-direction:column;
    text-align:center;
  }

  .service-category-header h3{
    font-size:24px;
  }

}
    /* =========================
ABOUT SECTION UPGRADE
========================= */

/* section container */
.about-section{
  position:relative;
  padding:100px 0;

  background:var(--card);

  border-radius:32px;

  margin:60px auto;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.08);

  overflow:hidden;
}

/* soft glow */
.about-section::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;

  width:280px;
  height:280px;

  border-radius:50%;

  background:
    rgba(0,71,171,0.08);

  filter:blur(40px);
}

/* image styling */
.about-image img{
  border-radius:28px !important;

  box-shadow:
    0 18px 45px rgba(0,0,0,0.18);

  transition:0.4s ease;
}

.about-image img:hover{
  transform:scale(1.03);
}

/* ABOUT CARDS */
.about-card{
  background:var(--card);

  border:1px solid var(--border);

  border-radius:18px;

  padding:16px 18px;

  display:flex;
  align-items:center;
  gap:12px;

  box-shadow:
    0 8px 22px rgba(0,0,0,0.06);

  transition:0.35s ease;
}

.about-card:hover{
  transform:translateY(-6px);

  background:
    linear-gradient(
      135deg,
      var(--primary),
      #0d6efd
    );

  color:#fff;
}

.about-card i{
  width:42px;
  height:42px;

  border-radius:12px;

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

  background:
    rgba(0,71,171,0.1);

  color:var(--primary);

  font-size:18px;

  transition:0.35s ease;
}

.about-card:hover i{
  background:#fff;
  color:var(--primary);
}

/* =========================
CONTACT BUTTON
========================= */

.about-content .btn-primary{

  background:
    linear-gradient(
      135deg,
      var(--primary),
      #0d6efd
    );

  border:none;

  padding:14px 34px;

  border-radius:50px;

  font-weight:600;

  letter-spacing:0.4px;

  box-shadow:
    0 10px 25px rgba(0,71,171,0.25);

  transition:0.35s ease;
}

/* hover */
.about-content .btn-primary:hover{

  background:
    linear-gradient(
      135deg,
      var(--secondary),
      #ff9800
    );

  transform:translateY(-4px);

  box-shadow:
    0 15px 30px rgba(255,122,0,0.3);
}

/* dark mode support */
body.dark-mode .about-section{
  background:var(--card);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.45);
}
    /* =========================
    STATS
    ========================= */

    .stats{
      background:linear-gradient(135deg,var(--primary),#01265e);
      color:#fff;
    }

   .stat-box{
  background:rgba(255,255,255,0.05);
  padding:40px 20px;
  border-radius:18px;
  transition:0.4s;
}

.stat-box:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.1);
}

.stat-icon{
  width:70px;
  height:70px;
  margin:0 auto 15px;
  border-radius:50%;
  background:rgba(255,255,255,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
}

.stat-icon i{
  font-size:28px;
  color:#fff;
}

.stat-box h2{
  font-size:45px;
  font-weight:800;
  margin:10px 0;
  color:#fff;
}

.stat-box p{
  margin:0;
  font-size:16px;
  color:#e5e5e5;
}
   /* =========================
PORTFOLIO SECTION
========================= */

#portfolioSlider{
  margin-top:40px;
}

/* section wrapper spacing consistency */
section{
  padding:100px 0;
}

/* =========================
PORTFOLIO ITEM CARD
========================= */

.portfolio-item{
  position:relative;
  overflow:hidden;
  border-radius:20px;

  height:280px;

  background:#fff;

  box-shadow:0 12px 35px rgba(0,0,0,0.08);

  transition:0.4s ease;
}

/* hover lift (same system as services/cards) */
.portfolio-item:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 50px rgba(0,0,0,0.15);
}

/* image fix */
.portfolio-item img{
  width:100%;
  height:100%;
  object-fit:cover;

  transition:0.6s ease;
}

/* zoom effect */
.portfolio-item:hover img{
  transform:scale(1.08);
}

/* =========================
OVERLAY
========================= */

.portfolio-overlay{
  position:absolute;
  inset:0;

  background:linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,71,171,0.35),
    rgba(255,122,0,0.15)
  );

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

  color:#fff;

  opacity:0;
  transition:0.4s ease;
  text-align:center;
  padding:20px;
}

/* show overlay on hover */
.portfolio-item:hover .portfolio-overlay{
  opacity:1;
}

/* overlay text */
.portfolio-overlay h4{
  font-size:20px;
  font-weight:800;
  margin-bottom:5px;
}

.portfolio-overlay p{
  font-size:14px;
  opacity:0.9;
}

/* =========================
CAROUSEL CONTROLS (MODERN TOUCH)
========================= */

.carousel-control-prev-icon,
.carousel-control-next-icon{
  background-color:rgba(0,0,0,0.3);
  border-radius:50%;
  padding:20px;
  backdrop-filter:blur(6px);
}

/* hover controls */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon{
  background-color:var(--primary);
}

/* =========================
SECTION TITLE (CONSISTENT)
========================= */

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title h2{
  font-size:18px;
  text-transform:uppercase;
  color:var(--secondary);
  font-weight:700;
}

.section-title p{
  font-size:40px;
  font-weight:800;
  color:var(--dark);
}

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

@media(max-width:991px){

  .portfolio-item{
    height:240px;
  }

  .section-title p{
    font-size:30px;
  }

}
 /* =========================
TESTIMONIALS SECTION
========================= */

.testimonials-section{
  position:relative;
  padding:110px 0;

  background:linear-gradient(
    135deg,
    #f8fafc 0%,
    #eef3ff 50%,
    #fff7f2 100%
  );

  border-radius:32px;

  margin:60px auto;

  overflow:hidden;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.08);

  z-index:1;
}

/* glow top right */
.testimonials-section::before{
  content:"";
  position:absolute;

  top:-140px;
  right:-140px;

  width:320px;
  height:320px;

  border-radius:50%;

  background:rgba(0,71,171,0.10);

  filter:blur(60px);

  z-index:0;
}

/* glow bottom left */
.testimonials-section::after{
  content:"";
  position:absolute;

  bottom:-150px;
  left:-150px;

  width:340px;
  height:340px;

  border-radius:50%;

  background:rgba(255,122,0,0.08);

  filter:blur(70px);

  z-index:0;
}

/* keep content above glows */
.testimonials-section .container{
  position:relative;
  z-index:2;
}

/* =========================
TESTIMONIAL BOX
========================= */

.testimonial-box{
  position:relative;

  background:linear-gradient(
    145deg,
    rgba(15,23,42,0.96),
    rgba(30,41,59,0.96)
  );

  padding:45px 35px;

  border-radius:28px;

  text-align:center;

  height:100%;

  min-height:320px;

  overflow:hidden;

  border:1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 15px 45px rgba(0,0,0,0.15);

  transition:0.45s ease;

  color:#fff;
}

/* hover effect */
.testimonial-box:hover{
  transform:translateY(-10px);

  box-shadow:
    0 22px 55px rgba(0,0,0,0.22);
}

/* soft hover glow */
.testimonial-box::before{
  content:"";

  position:absolute;

  top:-60px;
  right:-60px;

  width:160px;
  height:160px;

  border-radius:50%;

  background:rgba(0,71,171,0.18);

  filter:blur(45px);

  transition:0.4s;
}

.testimonial-box:hover::before{
  transform:scale(1.2);
}

/* image */
.testimonial-box img{
  width:90px;
  height:90px;

  border-radius:50%;

  object-fit:cover;

  margin-bottom:22px;

  border:4px solid rgba(255,255,255,0.15);

  box-shadow:
    0 10px 25px rgba(0,0,0,0.2);

  transition:0.4s;
}

.testimonial-box:hover img{
  transform:scale(1.08);
  border-color:var(--primary);
}

/* quote text */
.testimonial-box p{
  color:rgba(255,255,255,0.82);

  line-height:1.8;

  font-size:16px;

  margin-bottom:24px;
}

/* client name */
.testimonial-box h5{
  margin-bottom:6px;

  font-size:20px;

  font-weight:700;

  color:#fff;
}

/* role */
.testimonial-box span{
  color:rgba(255,255,255,0.65);

  font-size:14px;
}
    /* =========================
    CTA
    ========================= */

    .cta{
      background:linear-gradient(135deg,var(--primary),var(--secondary));
      color:#fff;
      text-align:center;
    }

    .cta h2{
      font-size:50px;
      font-weight:800;
      margin-bottom:20px;
    }

    /* =========================
    FOOTER
    ========================= */

    .footer{
  background:#0f172a;
  color:#ddd;
  padding:80px 0 20px;
}

/* Headings */
.footer h4{
  color:#fff;
  margin-bottom:20px;
  font-weight:700;
}

/* Links */
.footer ul{
  list-style:none;
  padding:0;
}

.footer ul li{
  margin-bottom:10px;
}

.footer ul li a{
  color:#bbb;
  transition:0.3s;
}

.footer ul li a:hover{
  color:#ff7a00;
  padding-left:5px;
}

/* Social icons */
.social-links a{
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#1e293b;
  color:#fff;
  border-radius:50%;
  margin-right:8px;
  transition:0.3s;
}

.social-links a:hover{
  background:#ff7a00;
  transform:translateY(-3px);
}

/* Newsletter */
.newsletter{
  display:flex;
  margin-top:10px;
  border-radius:30px;
  overflow:hidden;
}

.newsletter input{
  flex:1;
  padding:10px;
  border:none;
  outline:none;
}

.newsletter button{
  background:#ff7a00;
  border:none;
  color:#fff;
  padding:0 15px;
}

/* Divider */
.footer-line{
  border-color:#1e293b;
  margin:30px 0;
}

/* Copyright */
.copyright{
  font-size:14px;
  color:#aaa;
}

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

    @media(max-width:991px){

      .hero-content h1{
        font-size:42px;
      }

      .hero-content p{
        font-size:18px;
      }

      .section-title p{
        font-size:32px;
      }

      .cta h2{
        font-size:35px;
      }

    }
  /* STATS */
    .stats{
      background:linear-gradient(135deg,var(--primary),#01265e);
      color:#fff;
    }

    .stat-box{text-align:center;}
    .stat-box h2{font-size:55px;}

/* WRAPPER */
.whatsapp-wrapper{
  position:fixed;
  bottom:20px;
  right:20px;
  width:70px;
  height:70px;
  z-index:9999;
}

/* MAIN BUTTON */
.whatsapp{
  position:absolute;
  width:55px;
  height:55px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:28px;
  text-decoration:none;
  z-index:3;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* WAVES */
.whatsapp-wave{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:60px;
  height:60px;
  background:rgba(37,211,102,0.4);
  border-radius:50%;
  z-index:1;
  opacity:0;
  animation:wave 2.5s infinite;
}

/* second wave delay */
.wave2{
  animation-delay:1.2s;
}

/* WAVE ANIMATION */
@keyframes wave{
  0%{
    transform:translate(-50%,-50%) scale(1);
    opacity:0.6;
  }
  70%{
    opacity:0.2;
  }
  100%{
    transform:translate(-50%,-50%) scale(3);
    opacity:0;
  }
}
    .portfolio-item {
  transition: transform 0.4s ease;
}

.carousel-item {
  transition: transform 1s ease-in-out;
}
/* =========================
CONTACT SECTION
========================= */

.contact-section{
  position:relative;
  padding:110px 0;

  background:linear-gradient(
    135deg,
    #f8fafc 0%,
    #eef3ff 50%,
    #fff7f2 100%
  );

  border-radius:32px;

  margin:70px auto;

  overflow:hidden;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.08);

  z-index:1;
}

/* top glow */
.contact-section::before{
  content:"";

  position:absolute;

  top:-140px;
  right:-140px;

  width:320px;
  height:320px;

  border-radius:50%;

  background:rgba(0,71,171,0.10);

  filter:blur(60px);

  z-index:0;
}

/* bottom glow */
.contact-section::after{
  content:"";

  position:absolute;

  bottom:-160px;
  left:-160px;

  width:340px;
  height:340px;

  border-radius:50%;

  background:rgba(255,122,0,0.08);

  filter:blur(70px);

  z-index:0;
}

/* content above effects */
.contact-section .container{
  position:relative;
  z-index:2;
}

/* =========================
CONTACT BOXES
========================= */

.contact-box,
.contact-info-box{
  background:#fff;

  border-radius:30px;

  padding:40px;

  height:100%;

  position:relative;

  overflow:hidden;

  border:1px solid rgba(0,0,0,0.04);

  box-shadow:
    0 12px 40px rgba(0,0,0,0.08);

  transition:0.4s ease;
}

/* hover effect */
.contact-box:hover,
.contact-info-box:hover{
  transform:translateY(-6px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.14);
}

/* top gradient line */
.contact-box::before,
.contact-info-box::before{
  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:5px;

  background:linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
  );
}

/* =========================
FORM INPUTS
========================= */

.contact-box .form-control{
  border:none;

  background:#f5f7fb;

  border-radius:16px;

  padding:16px 18px;

  font-size:15px;

  color:#222;

  transition:0.3s ease;

  box-shadow:none;
}

/* focus */
.contact-box .form-control:focus{
  background:#fff;

  border:1px solid rgba(0,71,171,0.25);

  box-shadow:
    0 0 0 4px rgba(0,71,171,0.08);
}

/* textarea */
.contact-box textarea{
  resize:none;
}

/* placeholder */
.contact-box .form-control::placeholder{
  color:#888;
}

/* =========================
BUTTON
========================= */

.btn-main{
  border:none;

  border-radius:18px;

  background:linear-gradient(
    135deg,
    var(--primary),
    #005ce6
  );

  color:#fff;

  font-weight:700;

  font-size:16px;

  transition:0.35s ease;

  box-shadow:
    0 10px 25px rgba(0,71,171,0.25);
}

/* hover */
.btn-main:hover{
  transform:translateY(-3px);

  box-shadow:
    0 16px 35px rgba(0,71,171,0.35);

  color:#fff;
}

/* =========================
INFO BOX
========================= */

.contact-info-box h4{
  font-size:28px;

  font-weight:800;

  margin-bottom:18px;

  color:var(--dark);
}

.contact-info-box p{
  color:#666;

  line-height:1.8;

  margin-bottom:18px;
}

/* info items */
.contact-info-box p i{
  width:42px;
  height:42px;

  border-radius:14px;

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

  background:rgba(0,71,171,0.08);

  color:var(--primary);

  margin-right:12px;

  font-size:18px;
}

/* divider */
.contact-info-box hr{
  border-color:rgba(0,0,0,0.08);

  margin:28px 0;
}

/* whatsapp button */
.contact-info-box .btn-success{
  border:none;

  border-radius:18px;

  font-weight:700;

  transition:0.35s ease;

  box-shadow:
    0 10px 25px rgba(25,135,84,0.25);
}

/* hover */
.contact-info-box .btn-success:hover{
  transform:translateY(-3px);

  box-shadow:
    0 16px 35px rgba(25,135,84,0.35);
}

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

@media(max-width:991px){

  .contact-box,
  .contact-info-box{
    padding:30px;
  }

}

@media(max-width:768px){

  .contact-section{
    padding:80px 0;

    border-radius:24px;
  }

}
/* TOOLTIP */
.whatsapp-tooltip{
  position:absolute;
  right:75px;
  top:50%;
  transform:translateY(-50%);
  background:#111;
  color:#fff;
  padding:8px 12px;
  border-radius:8px;
  font-size:13px;
  white-space:nowrap;
  opacity:0;
  visibility:hidden;
  transition:0.3s ease;
  z-index:10;
}

/* small arrow */
.whatsapp-tooltip::after{
  content:"";
  position:absolute;
  right:-6px;
  top:50%;
  transform:translateY(-50%);
  border-width:6px;
  border-style:solid;
  border-color:transparent transparent transparent #111;
}

/* SHOW ON HOVER */
.whatsapp-wrapper:hover .whatsapp-tooltip{
  opacity:1;
  visibility:visible;
  right:85px;
}

/* optional smoother hover feel */
.whatsapp-wrapper:hover .whatsapp{
  transform:scale(1.08);
}
.blog-card{
  display:block;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.4s;
  height:100%;
}


.blog-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.blog-img{
  height:220px;
  overflow:hidden;
}

.blog-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

.blog-card:hover .blog-img img{
  transform:scale(1.1);
}

.blog-content{
  padding:20px;
}

.blog-tag{
  display:inline-block;
  background:var(--primary);
  color:#fff;
  padding:4px 10px;
  font-size:12px;
  border-radius:50px;
  margin-bottom:10px;
}

.blog-content h5{
  font-weight:700;
  margin-bottom:10px;
}

.blog-content p{
  font-size:14px;
  color:#666;
  margin-bottom:15px;
}

.blog-meta{
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color:#888;
}

.blog-meta i{
  margin-right:5px;
}
/* =========================
WHY CHOOSE US - MODERN UI
========================= */

.why-us{
  padding:100px 0;
  background:var(--bg);
  position:relative;
}

/* soft background glow */
.why-us::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,71,171,0.10), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(255,122,0,0.08), transparent 35%);
  pointer-events:none;
}

/* =========================
BADGE
========================= */

.why-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;

  background:var(--card);
  border:1px solid var(--border);

  padding:10px 18px;
  border-radius:50px;

  font-weight:600;
  font-size:14px;

  box-shadow:var(--shadow);
}

.why-badge i{
  color:var(--secondary);
}

/* =========================
TITLE
========================= */

.why-us-content h3{
  font-size:42px;
  font-weight:800;
  line-height:1.3;
  margin:18px 0;
  color:var(--text);
}

.why-us-content p{
  color:var(--text-light);
  line-height:1.9;
}

/* =========================
FEATURE BLOCKS
========================= */

.why-feature{
  display:flex;
  gap:18px;
  margin-top:25px;
  padding:18px;

  background:var(--card);
  border:1px solid var(--border);

  border-radius:18px;

  box-shadow:var(--shadow);

  transition:0.3s ease;
}

.why-feature:hover{
  transform:translateY(-6px);
}

.why-icon{
  min-width:55px;
  height:55px;

  border-radius:16px;

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

  background:rgba(0,71,171,0.1);
  color:var(--primary);

  font-size:22px;

  box-shadow:0 10px 25px rgba(0,71,171,0.15);
}

.why-feature h5{
  font-weight:700;
  margin-bottom:6px;
  color:var(--text);
}

.why-feature p{
  margin:0;
  font-size:14px;
  color:var(--text-light);
}

/* =========================
RIGHT SIDE CARDS
========================= */

.why-card{
  background:var(--card);
  border:1px solid var(--border);

  border-radius:22px;

  padding:28px;

  text-align:left;

  box-shadow:var(--shadow);

  transition:0.35s ease;

  height:100%;
}

.why-card:hover{
  transform:translateY(-10px);
}

/* ICON BOX */
.why-card-icon{
  width:70px;
  height:70px;

  border-radius:18px;

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

  background:rgba(255,122,0,0.12);
  color:var(--secondary);

  font-size:30px;

  margin-bottom:18px;

  transition:0.35s ease;
}

.why-card:hover .why-card-icon{
  background:var(--primary);
  color:#fff;
  transform:rotate(-8deg) scale(1.05);
}

/* TEXT */
.why-card h4{
  font-weight:800;
  margin-bottom:10px;
  color:var(--text);
}

.why-card p{
  color:var(--text-light);
  line-height:1.8;
}

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

@media(max-width:991px){

  .why-us-content h3{
    font-size:30px;
  }

}
/* VIEW MORE BUTTON */

.service-footer{
  margin-top:25px;
}

.view-more-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:linear-gradient(
    135deg,
    var(--primary),
    #0d6efd
  );
  color:#fff;
  padding:14px 20px;
  border-radius:16px;
  font-weight:600;
  transition:0.35s ease;
}

.view-more-btn:hover{
  background:linear-gradient(
    135deg,
    var(--secondary),
    #ff9800
  );

  color:#fff;
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.view-more-btn i{
  transition:0.3s;
}

.view-more-btn:hover i{
  transform:translateX(5px);
}
/* =========================
PROCESS SECTION (UPGRADED)
========================= */

.process-section{
  position:relative;
  padding:110px 0;

  /* soft modern gradient background */
  background:linear-gradient(
    135deg,
    #f8fafc 0%,
    #eef3ff 50%,
    #fff7f2 100%
  );

  border-radius:32px;
  margin:60px auto;

  box-shadow:0 20px 60px rgba(0,0,0,0.08);

  overflow:hidden;
  z-index:1;
}

/* soft glow top right */
.process-section::before{
  content:"";
  position:absolute;
  top:-140px;
  right:-140px;

  width:320px;
  height:320px;
  border-radius:50%;

  background:rgba(0,71,171,0.10);
  filter:blur(60px);
  z-index:0;
}

/* soft glow bottom left */
.process-section::after{
  content:"";
  position:absolute;
  bottom:-160px;
  left:-160px;

  width:340px;
  height:340px;
  border-radius:50%;

  background:rgba(255,122,0,0.08);
  filter:blur(70px);
  z-index:0;
}

/* keep content above glow */
.process-section .container{
  position:relative;
  z-index:2;
}

/* wrapper */
.process-wrapper{
  position:relative;
}

/* vertical line upgrade */
.process-line{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:3px;

  background:linear-gradient(
    to bottom,
    rgba(0,71,171,0.6),
    rgba(255,122,0,0.6)
  );

  opacity:0.25;
  border-radius:10px;
}

/* card upgrade to match About/Services */
.process-card{
  background:#fff;
  padding:45px 30px;
  border-radius:24px;

  text-align:center;

  box-shadow:0 10px 40px rgba(0,0,0,0.08);

  transition:0.4s ease;

  position:relative;
  overflow:hidden;

  border:1px solid rgba(0,0,0,0.04);
}

/* hover like other sections */
.process-card:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 55px rgba(0,0,0,0.15);
}

/* icon consistency */
.process-card i{
  font-size:48px;
  color:#0047ab;
  margin:15px 0;
  transition:0.3s;
}

.process-card:hover i{
  transform:scale(1.1);
  color:#ff7a00;
}

/* step circle polish */
.step-circle{
  position:absolute;
  top:15px;
  right:15px;

  width:45px;
  height:45px;
  border-radius:50%;

  background:linear-gradient(135deg,#0047ab,#ff7a00);
  color:#fff;

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

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

  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* light shine effect */
.process-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );

  transition:0.6s;
}

.process-card:hover::before{
  left:100%;
}
/* =========================
SAAS FAQ SECTION
========================= */

.faq-section{
  position:relative;

  background:
    radial-gradient(circle at top left,
      rgba(255,122,24,0.08),
      transparent 30%),

    radial-gradient(circle at bottom right,
      rgba(11,31,58,0.08),
      transparent 30%),

    #f8fbff;

  overflow:hidden;
}

/* title */
.faq-section .section-title h2{
  color:var(--secondary);

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

  text-transform:uppercase;
  letter-spacing:1px;
}

.faq-section .section-title p{
  font-size:40px;
  font-weight:800;

  color:#0b1f3a;

  margin-top:10px;
}

/* accordion */
.custom-faq{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* item */
.custom-faq .accordion-item{
  border:none;

  border-radius:22px !important;

  overflow:hidden;

  background:rgba(255,255,255,0.72);

  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.6);

  transition:0.35s ease;
}

.custom-faq .accordion-item:hover{
  transform:translateY(-4px);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.08);
}

/* button */
.custom-faq .accordion-button{
  background:transparent;

  border:none;
  box-shadow:none !important;

  padding:24px 28px;

  font-size:17px;
  font-weight:600;

  color:#0b1f3a;
}

/* active */
.custom-faq .accordion-button:not(.collapsed){
  background:linear-gradient(
    135deg,
    rgba(11,31,58,0.05),
    rgba(255,122,24,0.06)
  );

  color:var(--primary);
}

/* body */
.custom-faq .accordion-body{
  padding:0 28px 24px;

  color:#6b7280;

  font-size:15px;
  line-height:1.8;
}

/* arrows */
.custom-faq .accordion-button::after{
  filter:brightness(0.5);
}

/* controls */
.faq-control{
  width:50px;
}

.faq-control span{
  width:46px;
  height:46px;

  border-radius:50%;

  background-color:#0b1f3a;
  background-size:18px;

  box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

/* indicators */
.faq-indicators{
  bottom:-60px;
}

.faq-indicators button{
  width:12px !important;
  height:12px !important;

  border-radius:50%;

  background-color:#0b1f3a !important;

  opacity:0.3;
}

.faq-indicators .active{
  opacity:1;
  transform:scale(1.2);

  background-color:#ff7a18 !important;
}

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

  .faq-section .section-title p{
    font-size:30px;
  }

  .custom-faq .accordion-button{
    font-size:15px;
    padding:20px;
  }

  .custom-faq .accordion-body{
    padding:0 20px 20px;
  }

}

/* =========================
ACCORDION WRAPPER
========================= */

.custom-faq{
  position:relative;
}

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

.custom-faq .accordion-item{
  background:#fff;

  border:none;

  border-radius:24px;

  overflow:hidden;

  margin-bottom:20px;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.07);

  transition:0.4s ease;

  border:1px solid rgba(0,0,0,0.04);

  position:relative;
}

/* hover */
.custom-faq .accordion-item:hover{
  transform:translateY(-5px);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.12);
}

/* top accent line */
.custom-faq .accordion-item::before{
  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:4px;

  background:linear-gradient(
    90deg,
    var(--primary),
    var(--secondary)
  );
}

/* =========================
BUTTON
========================= */

.custom-faq .accordion-button{
  background:#fff;

  color:var(--dark);

  padding:24px 28px;

  font-size:17px;

  font-weight:700;

  box-shadow:none;

  transition:0.35s ease;
}

/* hover effect */
.custom-faq .accordion-button:hover{
  background:rgba(0,71,171,0.03);
}

/* active */
.custom-faq .accordion-button:not(.collapsed){
  background:linear-gradient(
    135deg,
    var(--primary),
    #005ce6
  );

  color:#fff;
}

/* remove bootstrap focus */
.custom-faq .accordion-button:focus{
  box-shadow:none;
  border:none;
}

/* icon arrow */
.custom-faq .accordion-button::after{
  transition:0.35s ease;
  filter:brightness(0.5);
}

/* active arrow */
.custom-faq .accordion-button:not(.collapsed)::after{
  transform:rotate(180deg);
  filter:brightness(100);
}

/* =========================
BODY
========================= */

.custom-faq .accordion-body{
  padding:25px 28px;

  color:#666;

  line-height:1.9;

  font-size:15px;

  background:#fff;
}

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

@media(max-width:768px){

  .faq-section{
    padding:80px 0;
    border-radius:24px;
  }

  .custom-faq .accordion-button{
    padding:20px;
    font-size:16px;
  }

  .custom-faq .accordion-body{
    padding:20px;
  }

}
/* Modern gradient overlay */
.overlay{
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.75),
    rgba(0,71,171,0.35),
    rgba(255,122,0,0.25)
  );
}

/* Reset animation states */
.hero-content h1,
.hero-content p,
.hero-buttons{
  opacity: 0;
  transform: translateY(40px);
}

/* Animate ONLY active slide text */
.carousel-item.active .hero-content h1{
  animation: slideFade 0.8s ease forwards;
}

.carousel-item.active .hero-content p{
  animation: slideFade 1s ease forwards;
}

.carousel-item.active .hero-buttons{
  animation: slideFade 1.2s ease forwards;
}

/* Smooth slide + fade */
@keyframes slideFade{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Slight zoom background effect */
.hero-slide img{
  transform: scale(1);
  transition: transform 6s ease;
}

.carousel-item.active .hero-slide img{
  transform: scale(1.08);
}
/* =========================
TEAM SLIDER
========================= */

.team{
  background:#f8fafc;
  padding:100px 0;
}

/* card */
.team-card{
  background:#fff;
  border-radius:20px;
  text-align:center;
  padding:25px;
  box-shadow:0 5px 25px rgba(0,0,0,0.06);
  transition:0.4s;
}

.team-card:hover{
  transform:translateY(-10px);
  box-shadow:0 12px 35px rgba(0,0,0,0.12);
}

/* image */
.team-card img{
  width:110px;
  height:110px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:15px;
  border:4px solid #0047AB;
}

/* text */
.team-card h5{
  font-weight:700;
  margin-bottom:5px;
}

.team-card span{
  color:#777;
  font-size:14px;
}

/* smooth slide feel */
.carousel-item{
  transition:transform 0.8s ease, opacity 0.8s ease;
}

/* controls style */
.carousel-control-prev-icon,
.carousel-control-next-icon{
  background-color:;
  border-radius:50%;
  padding:15px;
}
.navbar-nav .nav-link{
  position: relative;
  transition: 0.3s;
}

.navbar-nav .nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: var(--secondary);
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after{
  width: 100%;
}
.header.scrolled{
  background:#fff;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  transition:0.3s;
}
.btn-main{
  box-shadow:0 8px 20px rgba(255,122,0,0.3);
  transform:translateY(0);
}

.btn-main:hover{
  transform:translateY(-2px);
}
.navbar-collapse{
  background:#fff;
  padding:20px;
  border-radius:12px;
}
/* =========================
MEGA MENU
========================= */

.mega-menu{
  border-radius:16px;
  animation: fadeDown 0.3s ease;
}

@keyframes fadeDown{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.mega-title{
  font-weight:700;
  margin-bottom:15px;
  color:var(--primary);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.mega-link{
  display:block;
  padding:6px 0;
  color:#333;
  font-size:14px;
  transition:0.3s;
}

.mega-link:hover{
  color:var(--secondary);
  padding-left:5px;
}

/* remove default dropdown arrow spacing issues */
.dropdown-menu{
  margin-top:0;
}
/* =========================
NAV ICONS
========================= */

.nav-link{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  position:relative;
}

.nav-icon{
  font-size:15px;
  color:var(--secondary);
  transition:0.3s;
}

.nav-link:hover .nav-icon{
  transform:translateY(-2px) scale(1.1);
  color:var(--primary);
}

/* =========================
MEGA MENU CARD EFFECTS
========================= */

.mega-service-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:14px;
  background:#fff;
  margin-bottom:12px;
  transition:0.35s ease;
  border:1px solid rgba(0,0,0,0.06);
  color:#111;
  font-weight:600;
}

.mega-service-card i{
  width:42px;
  height:42px;
  background:rgba(0,71,171,0.08);
  color:var(--primary);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  transition:0.35s;
}

.mega-service-card:hover{
  transform:translateY(-5px);
  background:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  border-color:rgba(0,71,171,0.1);
}

.mega-service-card:hover i{
  background:var(--primary);
  color:#fff;
  transform:scale(1.08);
}

.mega-title{
  font-size:16px;
  font-weight:700;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  color:var(--dark);
}

.mega-help-box{
  background:#f8fafc;
  padding:25px;
  border-radius:20px;
  height:100%;
  border:1px solid rgba(0,0,0,0.06);
}
/* =========================
MEGA MENU SERVICE CARDS
========================= */

.mega-service-card{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  margin-bottom:8px;
  border-radius:10px;
  text-decoration:none;
  color:#333;
  background:#fff;
  transition:0.3s;
  border:1px solid transparent;
}

.mega-service-card i{
  font-size:18px;
  color:var(--primary);
  transition:0.3s;
}

/* hover effect */
.mega-service-card:hover{
  background:#f8fafc;
  transform:translateX(5px);
  border-color:rgba(0,71,171,0.15);
  box-shadow:0 6px 15px rgba(0,0,0,0.05);
}

.mega-service-card:hover i{
  color:var(--secondary);
  transform:scale(1.2);
}

.mega-service-card span{
  font-size:13px;
  font-weight:500;
}

/* title styling */
.mega-title{
  font-weight:700;
  margin-bottom:12px;
  color:var(--primary);
  font-size:13px;
  text-transform:uppercase;
}
/* =========================
MEGA MENU HOVER BEHAVIOR
========================= */

@media (min-width: 992px) {

  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
  }
}
/* =========================
GET A QUOTE SECTION
========================= */

.quote-section{
  position:relative;
  padding:110px 0;

  background:var(--card);

  border-radius:32px;

  margin:70px auto;

  overflow:hidden;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.08);

  z-index:1;
}

/* TOP RIGHT GLOW */
.quote-section::before{
  content:"";
  position:absolute;

  top:-140px;
  right:-140px;

  width:320px;
  height:320px;

  border-radius:50%;

  background:rgba(0,71,171,0.10);

  filter:blur(60px);

  z-index:0;
}

/* BOTTOM LEFT GLOW */
.quote-section::after{
  content:"";
  position:absolute;

  bottom:-140px;
  left:-140px;

  width:320px;
  height:320px;

  border-radius:50%;

  background:rgba(255,122,0,0.08);

  filter:blur(60px);

  z-index:0;
}

/* CONTENT ABOVE GLOW */
.quote-section .container{
  position:relative;
  z-index:2;
}

/* =========================
TEXT SIDE
========================= */

.quote-section p{
  color:var(--text-light);
  line-height:1.8;
  font-size:17px;
}

.quote-features p{
  display:flex;
  align-items:center;
  gap:12px;

  margin-bottom:16px;

  font-weight:500;
}

.quote-features i{
  font-size:18px;
}

/* =========================
QUOTE FORM BOX
========================= */

.quote-box{
  background:var(--card);

  padding:40px;

  border-radius:28px;

  box-shadow:
    0 12px 40px rgba(0,0,0,0.08);

  border:1px solid rgba(255,255,255,0.08);

  position:relative;

  overflow:hidden;

  transition:0.4s ease;
}

/* hover effect */
.quote-box:hover{
  transform:translateY(-8px);

  box-shadow:
    0 18px 55px rgba(0,0,0,0.12);
}

/* subtle shine */
.quote-box::before{
  content:"";

  position:absolute;

  top:0;
  left:-100%;

  width:100%;
  height:100%;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.18),
      transparent
    );

  transition:0.7s;
}

.quote-box:hover::before{
  left:100%;
}

/* =========================
FORM INPUTS
========================= */

.quote-box .form-control,
.quote-box select{
  height:58px;

  border-radius:16px;

  border:1px solid rgba(0,0,0,0.08);

  background:rgba(255,255,255,0.85);

  padding:14px 18px;

  box-shadow:none;

  transition:0.3s ease;

  font-size:15px;
}

/* textarea */
.quote-box textarea.form-control{
  height:auto;
  min-height:150px;
  resize:none;
}

/* focus */
.quote-box .form-control:focus,
.quote-box select:focus{
  border-color:var(--primary);

  box-shadow:
    0 0 0 4px rgba(0,71,171,0.08);

  background:#fff;
}

/* =========================
BUTTON
========================= */

.quote-box .btn-main{
  border:none;

  border-radius:18px;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--secondary)
    );

  color:#fff;

  font-weight:700;

  letter-spacing:0.4px;

  transition:0.4s ease;

  box-shadow:
    0 10px 25px rgba(0,71,171,0.25);
}

.quote-box .btn-main:hover{
  transform:translateY(-3px);

  box-shadow:
    0 16px 35px rgba(0,71,171,0.35);
}

/* =========================
DARK MODE SUPPORT
========================= */

body.dark-mode .quote-section{
  background:#111827;
}

body.dark-mode .quote-box{
  background:#1a2235;

  border-color:rgba(255,255,255,0.06);
}

body.dark-mode .quote-box .form-control,
body.dark-mode .quote-box select{
  background:#0f172a;

  border-color:rgba(255,255,255,0.08);

  color:#fff;
}

body.dark-mode .quote-box .form-control::placeholder{
  color:#94a3b8;
}

body.dark-mode .quote-section p{
  color:#cbd5e1;
}

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

@media(max-width:991px){

  .quote-section{
    padding:80px 20px;
  }

  .quote-box{
    padding:30px;
  }

}
/* Make logo always visible */
/* LOGO FITS HEADER HEIGHT */
/* HEADER */
.header{
  height:110px;
  background:#fff;
  display:flex;
  align-items:center;
  padding:0;
}

/* NAVBAR */
.navbar{
  height:110px;
  padding:0;
  display:flex;
  align-items:center;
}

/* BRAND AREA */
.navbar-brand{
  height:100%;
  display:flex;
  align-items:center;
  padding:0;
  margin:0;
}

/* LOGO */
.logo img,
.logo-img{
  height:120px !important;
  width:auto !important;
  max-width:none;
  object-fit:contain;
  display:block;
}
.section{
  padding:100px 0;
}
.section-title p{
  font-size:48px;
  line-height:1.2;
  max-width:700px;
  margin:auto;
}
/* =========================
HERO UPGRADE
========================= */

.hero-slide{
  position:relative;
  height:100vh;
  min-height:750px;
  overflow:hidden;
}

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1);
  animation:heroZoom 8s ease-in-out infinite alternate;
}

@keyframes heroZoom{
  from{
    transform:scale(1);
  }
  to{
    transform:scale(1.08);
  }
}

/* MODERN OVERLAY */
.overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    135deg,
    rgba(0,0,0,0.82),
    rgba(0,71,171,0.45),
    rgba(0,0,0,0.75)
  );
  z-index:1;
}

/* CONTENT */
.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:2;
  text-align:center;
  color:#fff;
  width:100%;
  max-width:950px;
  padding:0 20px;
}

/* BADGE */
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.15);
  backdrop-filter:blur(10px);
  padding:12px 22px;
  border-radius:50px;
  margin-bottom:25px;
  font-size:14px;
  font-weight:600;
  animation:fadeUp 1s ease;
}

.hero-badge i{
  color:#FFD700;
}

/* TITLE */
.hero-title{
  font-size:72px;
  font-weight:800;
  line-height:1.15;
  margin-bottom:25px;
  animation:fadeUp 1.2s ease;
}

/* TEXT */
.hero-text{
  font-size:22px;
  line-height:1.9;
  margin-bottom:35px;
  color:rgba(255,255,255,0.92);
  animation:fadeUp 1.4s ease;
}

/* BUTTONS */
.hero-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  animation:fadeUp 1.6s ease;
}

/* ANIMATION */
@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* CONTROLS */
.carousel-control-prev,
.carousel-control-next{
  width:70px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
  background-color:rgba(255,255,255,0.15);
  border-radius:50%;
  padding:25px;
  backdrop-filter:blur(10px);
}

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

  .hero-title{
    font-size:44px;
  }

  .hero-text{
    font-size:18px;
  }

  .hero-slide{
    min-height:650px;
  }

}

.service-card{
  display:block;
  padding:25px;
  border-radius:16px;
  background:#fff;
  text-decoration:none;
  color:var(--text-dark);
  box-shadow:0 5px 20px rgba(0,0,0,0.06);
  transition:0.3s ease;
  height:100%;
  border:1px solid transparent;
}

.service-card i{
  font-size:38px;
  margin-bottom:12px;
  display:block;
  color:var(--primary-color);
  transition:0.3s;
}

.service-card h5{
  font-weight:600;
}

.service-card p{
  font-size:14px;
  color:var(--text-muted);
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 35px rgba(0,0,0,0.12);
  border-color:var(--primary-color);
}

.service-card:hover i{
  color:var(--primary-hover);
}

/* =========================
SAAS DASHBOARD SERVICE ITEM
========================= */

.service-item{
  background: linear-gradient(
    135deg,
    rgba(11, 31, 58, 0.10) 0%,
    rgba(255, 122, 24, 0.10) 100%
  );

  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;

  padding:20px 22px; /* ⬆ bigger padding */

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

  transition:0.35s ease;
  position:relative;
  overflow:hidden;

  min-height:78px; /* ⬆ makes item feel larger */
}

/* hover lift */
.service-item:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  border-color:rgba(11,31,58,0.25);
}

/* left section */
.service-left{
  display:flex;
  align-items:center;
  gap:14px;
}

/* icon */
.service-left i{
  width:48px;   /* ⬆ bigger icon */
  height:48px;

  border-radius:14px;

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

  background:rgba(11,31,58,0.08);
  color:var(--primary);

  font-size:18px;

  transition:0.3s ease;
}

/* hover icon */
.service-item:hover .service-left i{
  background:var(--primary);
  color:#fff;
  transform:scale(1.08);
}

/* text block */
.service-left div{
  display:flex;
  flex-direction:column;
}

/* title */
.service-left span{
  font-weight:600;
  font-size:16px; /* ⬆ clearer text */
  color:#111;
}

/* description */
.service-left small{
  font-size:13px; /* ⬆ better readability */
  color:#6c757d;
}

/* arrow */
.service-item > i{
  font-size:22px;
  color:var(--secondary);
  transition:0.3s ease;
}

.service-item:hover > i{
  transform:translateX(6px);
}
/* =========================
3-COLUMN SAAS SERVICE GRID
========================= */

.service-list.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

/* keep card behavior */
.service-list.grid-3 .service-item{
  margin:0;
}

/* hover refinement */
.service-list.grid-3 .service-item:hover{
  transform:translateY(-5px);
}

/* tablet */
@media (max-width: 992px){
  .service-list.grid-3{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 768px){
  .service-list.grid-3{
    grid-template-columns:1fr;
  }
}

.heropage-section{
   min-height:200px;

  position:relative;
  overflow:hidden;

  display:flex;
  align-items:center;

  margin-top:0px;

  background:
    linear-gradient(
      135deg,
      rgba(11,31,58,0.92),
      rgba(255,122,24,0.82)
    ),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1600')
    center/cover no-repeat;


}
.hero-effect{
  animation: heroFadeUp 1.2s ease-out both;
}

/* floating glow effect */
.heropage-effect::before{
content:'';

  position:absolute;
  width:500px;
  height:500px;

  background:rgba(255,255,255,0.08);

  border-radius:50%;

  top:-200px;
  right:-100px;

  filter:blur(20px);
}

.heropage-effect::after{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(255,122,24,0.15);
  border-radius:50%;
  bottom:-150px;
  right:-120px;
  filter: blur(60px);
  animation: floatGlow2 7s ease-in-out infinite alternate;
}
/* =========================
CLIENTS SECTION
========================= */

.clients-section{
  position:relative;
  overflow:hidden;
}

/* CARD */
.client-card{
  background:#fff;
  border-radius:20px;
  padding:35px 25px;

  height:160px;

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

  border:1px solid rgba(0,0,0,0.06);

  transition:0.35s ease;

  box-shadow:0 10px 25px rgba(0,0,0,0.04);
}

/* IMAGE */
.client-card img{
  max-width:140px;
  max-height:70px;

  object-fit:contain;

  opacity:0.8;
  transition:0.35s ease;

  filter:grayscale(100%);
}

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

  box-shadow:0 20px 40px rgba(0,0,0,0.10);

  border-color:rgba(255,122,24,0.25);
}

.client-card:hover img{
  opacity:1;
  filter:none;
  transform:scale(1.05);
}

/* CONTROLS */
#clientsSlider .carousel-control-prev,
#clientsSlider .carousel-control-next{
  width:50px;
}

#clientsSlider .carousel-control-prev-icon,
#clientsSlider .carousel-control-next-icon{
  background-color:;

  border-radius:50%;
  padding:18px;
}


/* =========================
CONTACT CARDS
========================= */

.contact-cards{
  position:relative;
  padding:90px 0;

  background:
    radial-gradient(circle at top left,
      rgba(255,122,24,0.08),
      transparent 30%),

    radial-gradient(circle at bottom right,
      rgba(11,31,58,0.08),
      transparent 30%),

    #f8fbff;

  overflow:hidden;
}

/* floating blur */
.contact-cards::before{
  content:"";
  position:absolute;

  width:420px;
  height:420px;

  background:rgba(255,122,24,0.08);
  filter:blur(120px);

  top:-120px;
  left:-120px;

  z-index:0;
}

.contact-cards::after{
  content:"";
  position:absolute;

  width:420px;
  height:420px;

  background:rgba(11,31,58,0.08);
  filter:blur(120px);

  bottom:-150px;
  right:-150px;

  z-index:0;
}

/* keep content above bg */
.contact-cards .container{
  position:relative;
  z-index:2;
}

/* card */
.contact-card{
  position:relative;
  overflow:hidden;

  background:rgba(255,255,255,0.72);

  border:1px solid rgba(255,255,255,0.4);

  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  border-radius:28px;

  padding:42px 32px;

  text-align:center;

  transition:0.45s ease;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.6);

  height:100%;
}

/* gradient border glow */
.contact-card::before{
  content:"";
  position:absolute;
  inset:0;

  padding:1px;
  border-radius:28px;

  background:linear-gradient(
    135deg,
    rgba(255,122,24,0.5),
    rgba(11,31,58,0.3)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;
  mask-composite:exclude;

  opacity:0;
  transition:0.4s;
}

/* hover */
.contact-card:hover{
  transform:translateY(-12px);

  box-shadow:
    0 25px 60px rgba(11,31,58,0.12),
    0 10px 20px rgba(255,122,24,0.10);
}

.contact-card:hover::before{
  opacity:1;
}

/* top glow */
.contact-card::after{
  content:"";
  position:absolute;

  width:220px;
  height:220px;

  background:rgba(255,122,24,0.10);

  border-radius:50%;

  top:-140px;
  right:-100px;

  filter:blur(30px);

  transition:0.4s ease;
}

.contact-card:hover::after{
  transform:scale(1.2);
}

/* icon wrapper */
.contact-card .icon{
  position:relative;

  width:88px;
  height:88px;

  margin:0 auto 28px;

  border-radius:24px;

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

  font-size:34px;

  color:#fff;

  background:linear-gradient(
    135deg,
    #0b1f3a,
    #ff7a18
  );

  box-shadow:
    0 15px 35px rgba(11,31,58,0.18),
    0 8px 18px rgba(255,122,24,0.18);

  transition:0.45s ease;
}

.contact-card:hover .icon{
  transform:
    rotate(-6deg)
    scale(1.08)
    translateY(-4px);
}

/* icon shine */
.contact-card .icon::before{
  content:"";
  position:absolute;

  width:100%;
  height:100%;

  border-radius:inherit;

  background:linear-gradient(
    180deg,
    rgba(255,255,255,0.45),
    transparent
  );

  top:0;
  left:0;
}

/* title */
.contact-card h4{
  font-size:24px;
  font-weight:700;

  margin-bottom:14px;

  color:#0b1f3a;
}

/* text */
.contact-card p{
  color:#6b7280;
  font-size:15px;
  line-height:1.7;

  margin-bottom:24px;
}

/* button link */
.contact-link{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:12px 20px;

  border-radius:50px;

  text-decoration:none;
  font-weight:600;
  font-size:14px;

  color:#0b1f3a;

  background:rgba(11,31,58,0.06);

  transition:0.35s ease;
}

.contact-link i{
  transition:0.35s ease;
}

.contact-link:hover{
  background:linear-gradient(
    135deg,
    #0b1f3a,
    #ff7a18
  );

  color:#fff;

  box-shadow:0 12px 25px rgba(11,31,58,0.16);
}

.contact-link:hover i{
  transform:translateX(5px);
}

/* section title */
.contact-cards .section-title h2{
  color:var(--secondary);
  font-size:15px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}

.contact-cards .section-title p{
  font-size:40px;
  font-weight:800;

  color:#0b1f3a;

  margin-top:10px;
}

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

  .contact-cards{
    padding:70px 0;
  }

  .contact-card{
    padding:35px 24px;
  }

  .contact-cards .section-title p{
    font-size:30px;
  }

}


/* =========================
SAAS MAP SECTION
========================= */

.map-section{
  position:relative;

  background:
    radial-gradient(circle at top left,
      rgba(255,122,24,0.08),
      transparent 30%),

    radial-gradient(circle at bottom right,
      rgba(11,31,58,0.08),
      transparent 30%),

    #f8fbff;

  overflow:hidden;
}

/* floating blur */
.map-section::before{
  content:"";
  position:absolute;

  width:400px;
  height:400px;

  background:rgba(255,122,24,0.10);

  filter:blur(120px);

  top:-150px;
  left:-120px;
}

.map-section::after{
  content:"";
  position:absolute;

  width:400px;
  height:400px;

  background:rgba(11,31,58,0.08);

  filter:blur(120px);

  bottom:-150px;
  right:-120px;
}

/* keep content above bg */
.map-section .container{
  position:relative;
  z-index:2;
}

/* title */
.map-section .section-title h2{
  color:var(--secondary);

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

  text-transform:uppercase;
  letter-spacing:1px;
}

.map-section .section-title p{
  font-size:40px;
  font-weight:800;

  color:#0b1f3a;

  margin-top:10px;
}

/* wrapper */
.map-wrapper{
  overflow:hidden;

  border-radius:30px;

  background:rgba(255,255,255,0.72);

  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  border:1px solid rgba(255,255,255,0.5);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.5);

  transition:0.4s ease;
}

.map-wrapper:hover{
  transform:translateY(-5px);
}

/* top bar */
.map-topbar{
  padding:22px 28px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;

  border-bottom:1px solid rgba(0,0,0,0.06);

  background:rgba(255,255,255,0.55);
}

/* info */
.map-info{
  display:flex;
  align-items:center;
  gap:16px;
}

.map-icon{
  width:60px;
  height:60px;

  border-radius:18px;

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

  font-size:24px;
  color:#fff;

  background:linear-gradient(
    135deg,
    #0b1f3a,
    #ff7a18
  );

  box-shadow:
    0 12px 25px rgba(11,31,58,0.18),
    0 8px 18px rgba(255,122,24,0.18);
}

.map-info h5{
  margin:0;

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

  color:#0b1f3a;
}

.map-info span{
  color:#6b7280;
  font-size:14px;
}

/* button */
.map-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:12px 20px;

  border-radius:50px;

  text-decoration:none;

  font-size:14px;
  font-weight:600;

  color:#0b1f3a;

  background:rgba(11,31,58,0.06);

  transition:0.35s ease;
}

.map-btn:hover{
  background:linear-gradient(
    135deg,
    #0b1f3a,
    #ff7a18
  );

  color:#fff;

  transform:translateY(-2px);
}

/* map */
.map-embed{
  position:relative;
  overflow:hidden;
}

.map-embed iframe{
  width:100%;
  height:500px;

  border:0;

  filter:
    grayscale(10%)
    contrast(1.02)
    brightness(1.02);
}

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

  .map-topbar{
    flex-direction:column;
    align-items:flex-start;
  }

  .map-section .section-title p{
    font-size:30px;
  }

  .map-embed iframe{
    height:380px;
  }

}
/* ===================================================
BONTRROFF SAAS BLOG PAGE DESIGN
=================================================== */

.blog-sectionpage {
  position: relative;
  background: linear-gradient(to bottom, #f8fbff, #eef4ff);
  overflow: hidden;
  z-index: 1;
}

.blog-sectionpage::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 420px;
  height: 420px;
  background: rgba(13, 110, 253, 0.08);
  border-radius: 50%;
  filter: blur(10px);
}

.blog-sectionpage::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -180px;
  width: 450px;
  height: 450px;
  background: rgba(111, 66, 193, 0.08);
  border-radius: 50%;
  filter: blur(10px);
}

.blog-sectionpage .container {
  position: relative;
  z-index: 2;
}

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

.blog-cardpage {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #edf2f7;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
}

.blog-cardpage:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

/* ===================================================
BLOG IMAGE
=================================================== */

.blog-imagepage {
  position: relative;
  overflow: hidden;
}

.blog-imagepage img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.6s ease;
}

.blog-cardpage:hover .blog-imagepage img {
  transform: scale(1.08);
}

.blog-categorypage {
  position: absolute;
  top: 18px;
  left: 18px;
 background:var(--primary);
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* ===================================================
BLOG CONTENT
=================================================== */

.blog-contentpage {
  padding: 30px;
}

.blog-metapage {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.blog-metapage span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

.blog-metapage i {
  color: #0d6efd;
}

.blog-contentpage h3 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
  transition: 0.3s ease;
}

.blog-cardpage:hover h3 {
  color: #0d6efd;
}

.blog-contentpage p {
  color: #64748b;
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 24px;
}

/* ===================================================
READ BUTTON
=================================================== */

.read-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0d6efd;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.read-btn i {
  transition: 0.3s ease;
}

.read-btn:hover {
  color: #6f42c1;
}

.read-btn:hover i {
  transform: translateX(6px);
}

/* ===================================================
SIDEBAR
=================================================== */

.sidebar-cardpage {
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  border: 1px solid #edf2f7;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
}

.sidebar-cardpage h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #0f172a;
}

/* ===================================================
SEARCH BOX
=================================================== */

.blog-searchpage {
  position: relative;
}

.blog-searchpage input {
  width: 100%;
  height: 60px;
  border-radius: 18px;
  border: 1px solid #dbe4f0;
  padding: 0 70px 0 20px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
  background: #f8fbff;
}

.blog-searchpage input:focus {
  border-color: #0d6efd;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.08);
}

.blog-searchpage button {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background:var(--primary);
  color: #fff;
  transition: 0.3s ease;
}

.blog-searchpage button:hover {
  transform: translateY(-50%) scale(1.06);
  background:var(--secondary);
}

/* ===================================================
CATEGORY LIST
=================================================== */

.category-listpage {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-listpage li {
  margin-bottom: 15px;
}

.category-listpage li:last-child {
  margin-bottom: 0;
}

.category-listpage a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
   background:linear-gradient(
    90deg,
    rgba(0,71,171,0.06),
    rgba(255,122,0,0.06)
  );
  border-radius: 18px;
  text-decoration: none;
  color: #334155;
  transition: 0.3s ease;
  font-weight: 600;
}

.category-listpage a:hover {
  background:var(--primary);
  color: #fff;
  transform: translateX(6px);
}

.category-listpage span {
  width: 34px;
  height: 34px;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.category-listpage a:hover span {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ===================================================
NEWSLETTER BOX
=================================================== */

.newsletter-box {
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.newsletter-box h4,
.newsletter-box p {
  color: #fff;
  position: relative;
  z-index: 2;
}

.newsletter-box p {
  opacity: 0.8;
  line-height: 1.8;
}

.newsletter-box form {
  position: relative;
  z-index: 2;
}

.newsletter-box input {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 16px;
  padding: 0 18px;
  margin-bottom: 15px;
  outline: none;
}

.newsletter-box button {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 16px;
 background:var(--primary);
  color: #fff;
  font-weight: 700;
  transition: 0.3s ease;
}

.newsletter-box button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(13, 110, 253, 0.3);
  background:var(--secondary);
}

/* ===================================================
PAGINATION
=================================================== */

.blog-paginationpage {
  margin-top: 60px;
}

.blog-paginationpage ul {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-paginationpage a {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #edf2f7;
  color: #0f172a;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.blog-paginationpage a:hover,
.blog-paginationpage a.active {
 background:var(--primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px);
}

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

@media (max-width: 991px) {

  .sidebar-cardpage {
    padding: 28px;
  }

}

@media (max-width: 768px) {

  .blog-imagepage img {
    height: 220px;
  }

  .blog-contentpage {
    padding: 24px;
  }

  .blog-contentpage h3 {
    font-size: 21px;
  }

}

@media (max-width: 576px) {

  .blog-metapage {
    flex-direction: column;
    gap: 10px;
  }

  .sidebar-cardpage {
    padding: 24px;
  }

}
/* ==================================================
BLOG DETAILS PAGE - SAME STYLE AS blog-sectionpage
================================================== */

.blog-details-page {
  background: #f5f7fb;
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
}

/* ================= PAGE TITLE ================= */

.blog-page-title {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.blog-page-title::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -120px;
  right: -100px;
}

.blog-page-title h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
}

.blog-page-title nav {
  color: rgba(255,255,255,0.7);
}

.blog-page-title nav a {
  color: #38bdf8;
  text-decoration: none;
  transition: 0.3s;
}

.blog-page-title nav a:hover {
  color: #fff;
}

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

.blog-article {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  padding: 35px;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
  transition: 0.4s ease;
}

.blog-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.blog-article img {
  border-radius: 18px;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.blog-article .badge {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  border: none;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 13px;
  margin-top: 25px;
}

.blog-article h1 {
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 700;
  margin: 18px 0;
  color: #0f172a;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 25px;
  color: #64748b;
  font-size: 14px;
}

.blog-meta i {
  color: #2563eb;
  margin-right: 6px;
}

.blog-article p {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 20px;
}

.blog-article h4 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0f172a;
  font-weight: 600;
}

/* ================= BLOCKQUOTE ================= */

.blog-article blockquote {
  background: #f8fafc;
  border-left: 5px solid #2563eb;
  padding: 25px;
  margin: 30px 0;
  border-radius: 12px;
  font-size: 18px;
  font-style: italic;
  color: #334155;
}

/* ================= LISTS ================= */

.blog-article ul {
  padding-left: 20px;
}

.blog-article ul li {
  margin-bottom: 12px;
  color: #475569;
}

/* ================= SIDEBAR ================= */

.blog-sidebar-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  margin-bottom: 30px;
  transition: 0.3s ease;
}

.blog-sidebar-card:hover {
  transform: translateY(-4px);
}

.blog-sidebar-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: #0f172a;
}

/* ================= SEARCH ================= */

.blog-sidebar-card input.form-control {
  height: 52px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: none;
  padding-left: 16px;
}

.blog-sidebar-card input.form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}

/* ================= CATEGORY LIST ================= */

.blog-sidebar-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  transition: 0.3s;
}

.blog-sidebar-card ul li:hover {
  color: #2563eb;
  padding-left: 6px;
}

/* ================= RECENT POSTS ================= */

.recent-post {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: center;
}

.recent-post img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 14px;
}

.recent-post small {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  line-height: 1.5;
}

/* ================= COMMENTS ================= */

.blog-comments {
  margin-top: 50px;
}

.comment-box {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 6px 25px rgba(15, 23, 42, 0.05);
  margin-bottom: 20px;
}

.comment-box strong {
  color: #0f172a;
}

.comment-box p {
  margin-top: 8px;
  margin-bottom: 0;
  color: #64748b;
}

/* ================= COMMENT FORM ================= */

.comment-form-box {
  background: #fff;
  padding: 35px;
  border-radius: 24px;
  margin-top: 40px;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
}

.comment-form-box input,
.comment-form-box textarea {
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 14px 16px;
  box-shadow: none;
}

.comment-form-box input:focus,
.comment-form-box textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}

.comment-form-box button {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  border: none;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.comment-form-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.25);
}

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

@media (max-width: 991px) {

  .blog-page-title {
    text-align: center;
  }

  .blog-page-title .container {
    flex-direction: column;
    gap: 10px;
  }

  .blog-article {
    padding: 25px;
  }

  .blog-article h1 {
    font-size: 1.8rem;
  }

  .blog-article img {
    height: 280px;
  }

}
/* =========================================
SIDEBAR WRAPPER
========================================= */

.blog-sidebar-wrapper{
  display:flex;
  flex-direction:column;
  gap:30px;
}

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

.blog-sidebar-card{
  background:#ffffff;
  border:1px solid rgba(15,23,42,0.06);
  border-radius:24px;
  padding:30px;
  position:relative;
  overflow:hidden;
  transition:all 0.35s ease;
  box-shadow:
    0 10px 30px rgba(15,23,42,0.04);
}

.blog-sidebar-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(
    90deg,
    #2563eb,
    #7c3aed
  );
}

.blog-sidebar-card:hover{
  transform:translateY(-6px);
  box-shadow:
    0 20px 50px rgba(15,23,42,0.10);
}

/* =========================================
SIDEBAR TITLE
========================================= */

.sidebar-title-wrap{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:25px;
}

.sidebar-icon{
  width:48px;
  height:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
  );
  color:#fff;
  font-size:18px;
  flex-shrink:0;
  box-shadow:
    0 10px 25px rgba(37,99,235,0.25);
}

.sidebar-title-wrap h5{
  margin:0;
  font-size:1.1rem;
  font-weight:700;
  color:#0f172a;
}

/* =========================================
SEARCH FORM
========================================= */

.sidebar-search-form{
  position:relative;
}

.sidebar-search-form .form-control{
  height:58px;
  border-radius:16px;
  border:1px solid #e2e8f0;
  padding-left:20px;
  padding-right:70px;
  font-size:15px;
  transition:all 0.3s ease;
  box-shadow:none;
}

.sidebar-search-form .form-control:focus{
  border-color:#2563eb;
  box-shadow:
    0 0 0 4px rgba(37,99,235,0.10);
}

.sidebar-search-form button{
  position:absolute;
  top:6px;
  right:6px;
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
  );
  color:#fff;
  transition:all 0.3s ease;
}

.sidebar-search-form button:hover{
  transform:scale(1.05);
}

/* =========================================
CATEGORY LIST
========================================= */

.sidebar-category-list li{
  margin-bottom:14px;
}

.sidebar-category-list li:last-child{
  margin-bottom:0;
}

.sidebar-category-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-decoration:none;
  padding:14px 18px;
  border-radius:16px;
  background:#f8fafc;
  color:#334155;
  font-weight:500;
  transition:all 0.3s ease;
}

.sidebar-category-list a:hover{
  background:linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
  );
  color:#fff;
  transform:translateX(5px);
}

.category-count{
  min-width:36px;
  height:36px;
  border-radius:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#e2e8f0;
  font-size:13px;
  font-weight:700;
  transition:all 0.3s ease;
}

.sidebar-category-list a:hover .category-count{
  background:rgba(255,255,255,0.15);
  color:#fff;
}

/* =========================================
RECENT POSTS
========================================= */

.recent-post-item{
  display:flex;
  gap:15px;
  margin-bottom:22px;
  padding-bottom:22px;
  border-bottom:1px solid #e2e8f0;
}

.recent-post-item:last-child{
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:none;
}

.recent-post-image{
  width:85px;
  height:85px;
  border-radius:18px;
  overflow:hidden;
  flex-shrink:0;
}

.recent-post-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:all 0.4s ease;
}

.recent-post-item:hover img{
  transform:scale(1.08);
}

.recent-post-content span{
  display:inline-block;
  font-size:13px;
  color:#64748b;
  margin-bottom:8px;
}

.recent-post-content h6{
  margin:0;
  line-height:1.5;
}

.recent-post-content h6 a{
  text-decoration:none;
  color:#0f172a;
  font-size:15px;
  font-weight:600;
  transition:all 0.3s ease;
}

.recent-post-content h6 a:hover{
  color:#2563eb;
}

/* =========================================
NEWSLETTER
========================================= */

.newsletter-card{
  background:linear-gradient(
    135deg,
    #0f172a,
    #1e293b
  );
  color:#fff;
}

.newsletter-card::before{
  background:linear-gradient(
    90deg,
    #38bdf8,
    #818cf8
  );
}

.newsletter-card h5,
.newsletter-card p{
  color:#fff;
}

.newsletter-card p{
  font-size:15px;
  line-height:1.7;
  opacity:0.85;
}

.newsletter-form .form-control{
  height:56px;
  border:none;
  border-radius:16px;
  margin-bottom:16px;
  padding-left:18px;
}

.newsletter-form .form-control:focus{
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.12);
}

.newsletter-form .btn{
  height:56px;
  border:none;
  border-radius:16px;
  font-weight:600;
  background:linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
  );
  transition:all 0.3s ease;
}

.newsletter-form .btn:hover{
  transform:translateY(-3px);
  box-shadow:
    0 15px 35px rgba(37,99,235,0.35);
}

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

@media (max-width:991px){

  .blog-sidebar-wrapper{
    margin-top:40px;
  }

}

@media (max-width:576px){

  .blog-sidebar-card{
    padding:24px;
    border-radius:20px;
  }

  .recent-post-item{
    flex-direction:column;
  }

  .recent-post-image{
    width:100%;
    height:180px;
  }

}




/* =========================================================
GLOBAL
========================================================= */

body{
  font-family:'Poppins',sans-serif;
  background:#f5f7fb;
  color:#1e293b;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  transition:all .3s ease;
}

img{
  max-width:100%;
  display:block;
}

/* =========================================================
HEADER
========================================================= */

.header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(15,23,42,.05);
  transition:.4s ease;
}

.header.scrolled{
  box-shadow:0 10px 40px rgba(15,23,42,.08);
}

.navbar{
  padding:18px 0;
}

.logo-img{
  height:52px;
}

.navbar-nav .nav-link{
  color:#334155;
  font-weight:500;
  padding:12px 18px !important;
  border-radius:12px;
  display:flex;
  align-items:center;
  gap:8px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
  color:#2563eb;
  background:#eff6ff;
}

.nav-icon{
  font-size:15px;
}

.btn-main{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:14px;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff;
  font-weight:600;
  border:none;
  transition:.35s ease;
  box-shadow:0 12px 30px rgba(37,99,235,.25);
}

.btn-main:hover{
  transform:translateY(-3px);
  color:#fff;
}

/* =========================================================
MEGA MENU
========================================================= */

.mega-menu{
  border-radius:30px;
  margin-top:25px;
  background:#fff;
}

.mega-title{
  font-size:16px;
  font-weight:700;
  margin-bottom:18px;
  color:#0f172a;
}

.mega-service-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  border-radius:16px;
  margin-bottom:10px;
  background:#f8fafc;
  color:#334155;
  transition:.3s ease;
}

.mega-service-card i{
  font-size:18px;
  color:#2563eb;
}

.mega-service-card:hover{
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff;
  transform:translateX(5px);
}

.mega-service-card:hover i{
  color:#fff;
}

.mega-help-box{
  background:#f8fafc;
  padding:25px;
  border-radius:24px;
  height:100%;
}

/* =========================================================
HERO SECTION
========================================================= */

.heropage-section{
  min-height:260px;
  position:block;
  overflow:hidden;
  background:
  linear-gradient(rgba(2,6,23,.78),rgba(15,23,42,.82)),
  url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3')
  center/cover no-repeat;
}



.heropage-section h1{
  font-size:3rem;
  font-weight:800;
  line-height:1.2;
}

.heropage-section p{
  max-width:780px;
  margin:auto;
  opacity:.92;
  font-size:1.1rem;
}

/* =========================================================
BLOG SECTION
========================================================= */

.blog-sectionpage{
  position:relative;
}

.blog-article{
  background:#fff;
  border-radius:30px;
  padding:35px;
  box-shadow:0 10px 40px rgba(15,23,42,.05);
}

.blog-article img{
  border-radius:24px;
  margin-bottom:25px;
  max-height:500px;
  width:100%;
  object-fit:cover;
}

.blog-article .badge{
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  padding:10px 18px;
  border-radius:50px;
  font-size:13px;
  font-weight:600;
  margin-bottom:20px;
}

.blog-article h1{
  font-size:2.5rem;
  font-weight:800;
  line-height:1.3;
  margin-bottom:20px;
  color:#0f172a;
}

.blog-meta{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-bottom:30px;
  color:#64748b;
  font-size:14px;
}

.blog-meta i{
  color:#2563eb;
  margin-right:6px;
}

.blog-article p{
  font-size:17px;
  line-height:1.9;
  color:#475569;
  margin-bottom:22px;
}

.blog-article h4{
  margin-top:35px;
  margin-bottom:18px;
  font-weight:700;
  color:#0f172a;
}

.blog-article ul{
  padding-left:18px;
}

.blog-article ul li{
  margin-bottom:14px;
  color:#475569;
}

.blog-article blockquote{
  margin:35px 0;
  padding:35px;
  border-radius:24px;
  background:linear-gradient(135deg,#eff6ff,#f5f3ff);
  border-left:5px solid #2563eb;
  font-size:1.2rem;
  font-weight:600;
  color:#0f172a;
  position:relative;
}

/* =========================================================
COMMENTS
========================================================= */

.blog-comments{
  margin-top:45px;
}

.comment-box{
  background:#fff;
  padding:25px;
  border-radius:22px;
  margin-bottom:20px;
  box-shadow:0 10px 35px rgba(15,23,42,.04);
}

.comment-box strong{
  display:block;
  margin-bottom:10px;
  font-size:16px;
}

.comment-box p{
  margin:0;
  color:#64748b;
}

/* =========================================================
COMMENT FORM
========================================================= */

.comment-form-box{
  margin-top:45px;
  background:#fff;
  padding:35px;
  border-radius:28px;
  box-shadow:0 10px 40px rgba(15,23,42,.05);
}

.form-control{
  height:58px;
  border-radius:16px;
  border:1px solid #dbe3ee;
  padding-left:18px;
  box-shadow:none;
}

textarea.form-control{
  height:auto;
  padding-top:18px;
}

.form-control:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 4px rgba(37,99,235,.10);
}

.btn-primary{
  border:none;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  padding:14px 28px;
  border-radius:14px;
  font-weight:600;
  box-shadow:0 12px 30px rgba(37,99,235,.25);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

/* =========================================================
SIDEBAR
========================================================= */

.blog-sidebar-wrapper{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.blog-sidebar-card{
  background:#fff;
  border-radius:28px;
  padding:30px;
  box-shadow:0 10px 40px rgba(15,23,42,.05);
  border:1px solid rgba(15,23,42,.05);
  position:relative;
  overflow:hidden;
}

.blog-sidebar-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#2563eb,#7c3aed);
}

.sidebar-title-wrap{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:25px;
}

.sidebar-icon{
  width:50px;
  height:50px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff;
}

.sidebar-category-list li{
  margin-bottom:12px;
}

.sidebar-category-list a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#f8fafc;
  padding:14px 18px;
  border-radius:16px;
  color:#334155;
  font-weight:500;
}

.sidebar-category-list a:hover{
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff;
}

.category-count{
  background:#e2e8f0;
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:700;
}

.recent-post-item{
  display:flex;
  gap:15px;
  margin-bottom:22px;
}

.recent-post-image{
  width:85px;
  height:85px;
  overflow:hidden;
  border-radius:18px;
  flex-shrink:0;
}

.recent-post-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.recent-post-content span{
  font-size:13px;
  color:#64748b;
}

.recent-post-content h6{
  margin-top:8px;
  line-height:1.5;
}

.recent-post-content a{
  color:#0f172a;
}

.recent-post-content a:hover{
  color:#2563eb;
}

/* =========================================================
NEWSLETTER
========================================================= */

.newsletter-card{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:#fff;
}

.newsletter-card h5,
.newsletter-card p{
  color:#fff;
}

.newsletter-form .form-control{
  margin-bottom:15px;
}

.newsletter-form .btn{
  height:56px;
  border-radius:16px;
}

/* =========================================================
WHATSAPP
========================================================= */

.whatsapp-wrapper{
  position:fixed;
  right:25px;
  bottom:25px;
  z-index:999;
}

.whatsapp{
  width:65px;
  height:65px;
  border-radius:50%;
  background:#25d366;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:30px;
  position:relative;
  z-index:2;
  box-shadow:0 15px 35px rgba(37,211,102,.35);
}

.whatsapp:hover{
  color:#fff;
  transform:scale(1.05);
}

.whatsapp-tooltip{
  position:absolute;
  right:80px;
  top:50%;
  transform:translateY(-50%);
  background:#0f172a;
  color:#fff;
  padding:10px 16px;
  border-radius:12px;
  font-size:14px;
  white-space:nowrap;
}

.whatsapp-wave{
  position:absolute;
  inset:0;
  border-radius:50%;
  border:2px solid #25d366;
  animation:wave 2s infinite;
}

.wave2{
  animation-delay:1s;
}

@keyframes wave{
  0%{
    transform:scale(1);
    opacity:.7;
  }
  100%{
    transform:scale(1.8);
    opacity:0;
  }
}

/* =========================================================
FOOTER
========================================================= */

.footer{
  background:#0f172a;
  color:#cbd5e1;
  padding:90px 0 30px;
}

.footer h4,
.footer h5{
  color:#fff;
  margin-bottom:20px;
  font-weight:700;
}

.footer p{
  line-height:1.8;
}

.footer ul{
  padding:0;
  list-style:none;
}

.footer ul li{
  margin-bottom:12px;
}

.footer ul li a{
  color:#cbd5e1;
}

.footer ul li a:hover{
  color:#fff;
}

.social-links{
  display:flex;
  gap:12px;
}

.social-links a{
  width:42px;
  height:42px;
  border-radius:12px;
  background:#1e293b;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.social-links a:hover{
  background:linear-gradient(135deg,#2563eb,#7c3aed);
}

.newsletter{
  display:flex;
  background:#1e293b;
  border-radius:16px;
  overflow:hidden;
}

.newsletter input{
  flex:1;
  border:none;
  background:transparent;
  color:#fff;
  padding:14px 16px;
  outline:none;
}

.newsletter button{
  width:60px;
  border:none;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff;
}

.footer-line{
  margin:50px 0 25px;
  border-color:rgba(255,255,255,.08);
}

.copyright{
  color:#94a3b8;
}

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

@media(max-width:991px){

  .heropage-section{
    min-height:400px;
    text-align:center;
  }

  .heropage-section h1{
    font-size:2.2rem;
  }

  .blog-article{
    padding:25px;
  }

  .blog-article h1{
    font-size:2rem;
  }

  .mega-menu{
    display:none !important;
  }

}

@media(max-width:576px){

  .blog-article,
  .comment-form-box,
  .blog-sidebar-card{
    padding:22px;
    border-radius:22px;
  }

  .heropage-section h1{
    font-size:1.8rem;
  }

  .blog-meta{
    flex-direction:column;
    gap:10px;
  }

}
/* =========================
PORTFOLIO SECTION
========================= */

.portfolio-section{
  background:#f5f7fb;
  position:relative;
  overflow:hidden;
}

/* FILTERS */
.portfolio-filter-wrapper{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:15px;
  margin-bottom:50px;
}

.portfolio-filter{
  border:none;
  padding:14px 28px;
  border-radius:50px;
  background:#fff;
  color:#0b1f3a;
  font-weight:600;
  font-size:14px;
  transition:0.4s ease;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.portfolio-filter:hover,
.portfolio-filter.active{
  background:linear-gradient(135deg,#ff7a18,#ffb347);
  color:#fff;
  transform:translateY(-3px);
}

/* GRID */
.portfolio-container{
  position:relative;
}

/* CARD */
.portfolio-card{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 40px rgba(0,0,0,0.08);
  transition:0.45s ease;
}

.portfolio-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* IMAGE */
.portfolio-image{
  position:relative;
  overflow:hidden;
}

.portfolio-image img{
  width:100%;
  height:340px;
  object-fit:cover;
  transition:0.6s ease;
}

.portfolio-card:hover .portfolio-image img{
  transform:scale(1.08);
}

/* OVERLAY */
.portfolio-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(11,31,58,0.95),
    rgba(11,31,58,0.2)
  );
  opacity:0;
  visibility:hidden;
  transition:0.45s ease;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.portfolio-card:hover .portfolio-overlay{
  opacity:1;
  visibility:visible;
}

/* ICONS */
.portfolio-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  background:#fff;
  color:#0b1f3a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  text-decoration:none;
  transition:0.35s ease;
}

.portfolio-icon:hover{
  background:#ff7a18;
  color:#fff;
  transform:translateY(-5px);
}

/* TOP CONTENT OVER IMAGE */
.portfolio-top-content{
  position:absolute;
  left:25px;
  right:25px;
  bottom:25px;
  z-index:3;
  color:#fff;
  transition:0.4s ease;
}

.portfolio-card:hover .portfolio-top-content{
  transform:translateY(-10px);
}

.portfolio-category{
  display:inline-block;
  padding:8px 16px;
  border-radius:50px;
  background:rgba(255,255,255,0.18);
  backdrop-filter:blur(10px);
  color:#fff;
  font-size:13px;
  font-weight:600;
  margin-bottom:14px;
}

.portfolio-top-content h4{
  font-size:24px;
  font-weight:700;
  margin-bottom:12px;
  line-height:1.3;
}

.portfolio-top-content h4 a{
  color:#fff;
  text-decoration:none;
  transition:0.3s ease;
}

.portfolio-top-content h4 a:hover{
  color:#ffb347;
}

.portfolio-top-content p{
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,0.88);
  margin-bottom:0;
}

/* CONTENT */
.portfolio-content{
  padding:28px;
}

.portfolio-content .portfolio-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:#ff7a18;
  font-weight:600;
  transition:0.3s ease;
}

.portfolio-content .portfolio-btn:hover{
  gap:12px;
}

/* HIDE ITEMS */
.portfolio-item{
  transition:0.4s ease;
}

/* RESPONSIVE */
@media(max-width:991px){

  .portfolio-image img{
    height:300px;
  }

}

@media(max-width:767px){

  .portfolio-filter-wrapper{
    justify-content:flex-start;
  }

  .portfolio-filter{
    width:100%;
  }

  .portfolio-top-content h4{
    font-size:20px;
  }

  .portfolio-image img{
    height:260px;
  }

}
/* =========================================
CLIENT LOGIN SECTION
========================================= */

.client-login-section{
  position:relative;
  z-index:2;
}

.login-wrapper{
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(16px);
  border-radius:30px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 25px 60px rgba(0,0,0,0.35);
}

.login-left{
  height:100%;
  padding:70px 55px;
  background:
  linear-gradient(rgba(11,17,32,.88),rgba(11,17,32,.92)),
  url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600')
  center/cover no-repeat;
  color:#fff;
  display:flex;
  align-items:center;
}

.login-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,0.10);
  padding:10px 18px;
  border-radius:50px;
  margin-bottom:25px;
  font-size:14px;
}

.login-left h1{
  font-size:44px;
  font-weight:700;
  line-height:1.2;
  margin-bottom:20px;
}

.login-left p{
  color:rgba(255,255,255,0.75);
  line-height:1.8;
  margin-bottom:40px;
}

.feature-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.feature-item{
  display:flex;
  gap:15px;
}

.feature-icon{
  width:55px;
  height:55px;
  background:rgba(255,255,255,0.10);
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffb347;
  font-size:22px;
  flex-shrink:0;
}

.feature-item h6{
  margin-bottom:5px;
  font-weight:600;
}

.feature-item small{
  color:rgba(255,255,255,0.70);
}

.login-right{
  background:#fff;
  min-height:100%;
  padding:70px 55px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.login-form-box{
  width:100%;
  max-width:430px;
}

.logo-wrap{
  margin-bottom:35px;
}

.logo-wrap img{
  width:85px;
  margin-bottom:15px;
}

.logo-wrap h3{
  font-size:32px;
  font-weight:700;
  color:#0f172a;
}

.logo-wrap p{
  color:#64748b;
}

.form-group{
  margin-bottom:22px;
}

.form-label{
  font-weight:600;
  margin-bottom:10px;
  color:#0f172a;
}

.input-group-text{
  background:#f8fafc;
  border-right:none;
  border-color:#e2e8f0;
}

.form-control{
  height:58px;
  background:#f8fafc;
  border-left:none;
  border-color:#e2e8f0;
}

.form-control:focus{
  box-shadow:none;
  border-color:#2563eb;
  background:#fff;
}

.login-options{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:25px;
  font-size:14px;
}

.login-options a{
  text-decoration:none;
  color:#2563eb;
  font-weight:500;
}

.btn-login,
.btn-register{
  width:100%;
  height:58px;
  border-radius:16px;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:600;
  transition:.4s ease;
}

.btn-login{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  color:#fff;
}

.btn-login:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 35px rgba(37,99,235,0.30);
}

.btn-register{
  background:#f8fafc;
  color:#0f172a;
  border:1px solid #e2e8f0;
}

.btn-register:hover{
  background:#0f172a;
  color:#fff;
}

.auth-divider{
  position:relative;
  text-align:center;
  margin:25px 0;
}

.auth-divider::before{
  content:'';
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  height:1px;
  background:#e2e8f0;
}

.auth-divider span{
  position:relative;
  background:#fff;
  padding:0 18px;
  color:#64748b;
  font-size:14px;
}

.bottom-text{
  margin-top:25px;
  text-align:center;
  color:#64748b;
}

.bottom-text a{
  color:#2563eb;
  text-decoration:none;
  font-weight:600;
}

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

@media(max-width:991px){

  .login-right{
    padding:50px 30px;
  }

}

@media(max-width:576px){

  .login-right{
    padding:40px 22px;
  }

  .logo-wrap h3{
    font-size:28px;
  }

}