body{
  font-family: 'Poppins', sans-serif;
}

/* ================= TOP BAR ================= */
.top-bar{
  background: linear-gradient(135deg, #6a1b9a, #1e88e5);
  color:#fff;
  font-size:14px;
  padding:8px 0;
}

.top-bar a{
  color:#fff;
  text-decoration:none;
  margin-left:15px;
}

/* ================= MAIN NAV ================= */
.main-nav{
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
 
}

.navbar-brand img{
  height:60px;   /* SAME BIG LOGO */
}

.nav-link{
  font-weight:600;
  background: linear-gradient(135deg, #6a1b9a, #1e88e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding:25px 12px;
}

.nav-link:hover{
  opacity:0.8;
}

.btn-quote{
  background: linear-gradient(135deg, #6a1b9a, #1e88e5);
  color:#fff;
  border-radius:50px;
  padding:10px 22px;
  font-weight:600;
  border:none;
}

.search-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid #dcd6f7;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-left:10px;
  background: linear-gradient(135deg, #6a1b9a, #1e88e5);
  color:#fff;
}
@media (min-width: 992px) {

  /* Reduce navbar vertical height */
  .main-nav .navbar-nav .nav-link{
    padding:6px 12px;   /* ⬅ reduced */
  }

  /* Reduce container vertical padding */
  .main-nav .container{
    padding-top:-30px;
    padding-bottom:-30px;
  }

}
/* ================= HERO SECTION ================= */
.hero-slider{
  position: relative;
  height: 85vh;
  background: url("/assets/hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* .hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    135deg,
    rgba(106,27,154,0.85),
    rgba(30,136,229,0.75)
  );
} */

.hero-content{
  position: relative;
  z-index:2;
}

.hero-content h5{
  font-size:18px;
  letter-spacing:1px;
  margin-bottom:10px;
}

.hero-content h1{
  font-size:64px;
  font-weight:700;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.btn-hero-primary{
  background:#ff9800;
  color:#fff;
  padding:14px 30px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
}

.btn-hero-secondary{
  border:2px solid #fff;
  color:#fff;
  padding:14px 30px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover{
  opacity:0.85;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .hero-content h1{
    font-size:42px;
  }
  .hero-buttons{
    flex-direction:column;
    width:fit-content;
  }
}
/* ================= CRM SECTION ================= */
.crm-section{
  padding:100px 0;
}

.crm-subtitle{
  color:#1e88e5;
  font-weight:600;
  display:block;
  margin-bottom:10px;
}

.crm-title{
  font-size:38px;
  font-weight:700;
  margin-bottom:25px;
  color:#111;
}

.crm-section p{
  color:#555;
  line-height:1.7;
  margin-bottom:18px;
}

.crm-list ul{
  list-style:none;
  padding:0;
}

.crm-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:12px;
  font-weight:500;
  color:#333;
}

.crm-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#ff9800;
  font-weight:700;
}

/* ================= IMAGE LAYOUT ================= */
.crm-images{
  min-height:520px;
}

.img-box{
  position:absolute;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* SAME POSITIONS AS DIGICLOUD */
.img-1{ width:260px; top:0; left:0; }
.img-2{ width:220px; top:40px; right:0; }
.img-3{ width:240px; bottom:0; left:40px; }
.img-4{ width:200px; bottom:30px; right:40px; }

/* EXPERIENCE BADGE */
.experience-badge{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:140px;
  height:140px;
  background:linear-gradient(135deg,#6a1b9a,#1e88e5);
  border-radius:50%;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.experience-badge h3{
  font-size:40px;
  margin:0;
  font-weight:700;
}

.experience-badge span{
  font-size:14px;
  font-weight:500;
}

/* ================= MOBILE ================= */
@media(max-width:991px){
  .crm-images{
    margin-top:60px;
    min-height:420px;
  }
  .img-box{
    position:relative;
    margin-bottom:20px;
  }
  .experience-badge{
    position:relative;
    transform:none;
    margin:20px auto;
  }
}
/* ================= BACKGROUND LINE GRAPHIC ================= */
.crm-bg-lines{
  position:absolute;
  right:-30px;
  bottom:-20px;
  width:360px;
  height:360px;
  background-image: url("/assets/support_shape.png");
  background-repeat:no-repeat;
  background-size:contain;
  z-index:0;
}

/* Ensure images stay above background */
.crm-images .img-box,
.crm-images .experience-badge{
  z-index:2;
}
/* =====================================================
   GLOBAL MOBILE SAFETY
===================================================== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* =====================================================
   REMOVE TOP BAR ON SMALL SCREENS
===================================================== */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* =====================================================
   NAVBAR MOBILE FIX
===================================================== */
@media (max-width: 991px) {
  .navbar-brand img {
    height: 58px;
  }

  .navbar-nav {
    text-align: center;
    margin-top: 10px;
  }

  .nav-link {
    padding: 12px 0;
    font-size: 15px;
  }

  .main-nav .d-flex {
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
  }
}

/* =====================================================
   HERO SECTION MOBILE
===================================================== */
@media (max-width: 991px) {
  .hero-slider {
    height: auto;
    padding: 110px 0 80px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content h5 {
    font-size: 15px;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}

/* =====================================================
   CRM TEXT MOBILE
===================================================== */
@media (max-width: 991px) {
  .crm-section {
    padding: 70px 0;
  }

  .crm-subtitle,
  .crm-title,
  .crm-section p {
    text-align: center;
  }

  .crm-title {
    font-size: 30px;
  }

  .crm-list {
    margin-top: 25px;
  }
}

@media (max-width: 576px) {
  .crm-title {
    font-size: 26px;
  }
}

/* =====================================================
   DIGICLOUD-STYLE IMAGE LOGIC (IMPORTANT)
===================================================== */
@media (max-width: 991px) {

  /* Switch from absolute overlap → grid */
  .crm-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    min-height: auto;
    margin-top: 40px;
  }

  /* Reset absolute positioning */
  .img-box {
    position: relative !important;
    width: 100% !important;
    height: 160px;
    margin: 0;
  }

  .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
  }

  /* Remove desktop offsets */
  .img-1,
  .img-2,
  .img-3,
  .img-4 {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  /* Experience badge below images (centered) */


  .experience-badge h3 {
    font-size: 34px;
  }

  /* Hide background graphic on mobile */
  .crm-bg-lines {
    display: none;
  }
}
@media (max-width: 991px) {

  .crm-images {
    position: relative;
  }

  .experience-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 120px;
    height: 120px;
  }

}
/* =====================================================
   FIX NAVBAR PUSH ISSUE ON MOBILE
===================================================== */
@media (max-width: 991px) {

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }

  body {
    padding-top: 76px; /* navbar height */
  }

}
/* =====================================================
   HERO BUTTONS – FORCE SINGLE LINE ON MOBILE
===================================================== */
@media (max-width: 576px) {

  .hero-buttons {
    flex-direction: row;        /* keep in one line */
    gap: 12px;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .hero-buttons a {
    padding: 12px 18px;
    font-size: 14px;
    white-space: nowrap;        /* prevent text wrap */
  }

}
/* =====================================================
   SCROLL ANIMATION BASE (NO LAYOUT CHANGE)
===================================================== */
.animate {
  opacity: 0;
  transition: all 0.9s ease-out;
  will-change: transform, opacity;
}

.animate.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* =====================================================
   HEADING ANIMATION
===================================================== */
.animate-heading {
  transform: translate(60px, 60px);
}

/* =====================================================
   IMAGE ENTRY DIRECTIONS
===================================================== */
.img-1 {
  transform: translate(-60px, -60px);
}

.img-2 {
  transform: translate(60px, -60px);
}

.img-3 {
  transform: translate(-60px, 60px);
}

.img-4 {
  transform: translate(60px, 60px);
}

/* =====================================================
   EXPERIENCE BADGE FADE
===================================================== */
/* =====================================================
   EXPERIENCE BADGE – CENTER LOCKED
===================================================== */
.experience-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* CENTER ALWAYS */
  opacity: 0;
  transition: opacity 0.8s ease-out;
  z-index: 5;
}

.experience-badge.show {
  opacity: 1;
}
/* =====================================================
   STATS SECTION (DIGICLOUD STYLE)
===================================================== */
.stats-section {
  padding: 80px 0;
  background: #fff;
}

.stats-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1e88e5;
  margin-bottom: 8px;
}

.stats-section h2::after {
  content: " +";
}

.stats-section p {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 576px) {
  .stats-section h2 {
    font-size: 34px;
  }
}
/* =====================================================
   STATS HEADING
===================================================== */
.stats-heading {
  margin-bottom: 50px;
}

.stats-heading span {
  display: block;
  color: #1e88e5;
  font-weight: 600;
  margin-bottom: 6px;
}

.stats-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

/* Mobile */
@media (max-width: 576px) {
  .stats-heading h2 {
    font-size: 28px;
  }
}
/* =====================================================
   SERVICE ICON
===================================================== */
/* =====================================================
   SERVICES SECTION
===================================================== */
.services-section {
  padding: 110px 0;
  background: #fff;
}

.services-heading span {
  color: #1e88e5;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.services-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 70px;
}

/* =====================================================
   SERVICE CARD – SINGLE SOURCE OF TRUTH
===================================================== */
.service-card {
  position: relative;
  height: 100%;
  padding: 45px 32px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 1;
}

/* Lift */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* =====================================================
   ROUND FILL HOVER EFFECT
===================================================== */
.service-card::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #6a1b9a, #1e88e5);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.55s ease;
  z-index: 0;
}

.service-card:hover::before {
  transform: translate(-50%, -50%) scale(32);
}

/* =====================================================
   ICON
===================================================== */
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(106,27,154,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.service-icon i {
  font-size: 24px;
  color: #6a1b9a;
}

.service-card:hover .service-icon {
  background: rgba(255,255,255,0.25);
}

.service-card:hover .service-icon i {
  color: #fff;
}

/* =====================================================
   TEXT
===================================================== */
.service-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.service-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
  position: relative;
  z-index: 2;
}

.service-card:hover h4,
.service-card:hover p {
  color: #fff;
}

/* =====================================================
   STAGGER SCROLL ANIMATION
===================================================== */
.animate-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.animate-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   CLICK RIPPLE EFFECT
===================================================== */
.service-card .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(6);
    opacity: 0;
  }
}

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 576px) {
  .services-heading h2 {
    font-size: 28px;
  }

  .service-card {
    padding: 38px 26px;
  }
}
/* =====================================================
   WHY CHOOSE US – UNIQUE DESIGN
===================================================== */
.why-choose-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #f9fbff, #ffffff);
}

/* Heading */
.why-heading span {
  color: #1e88e5;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.why-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 70px;
}

/* Card */
.why-card {
  position: relative;
  height: 100%;
  padding: 45px 28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Vertical accent line */
.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #6a1b9a, #1e88e5);
  opacity: 0.9;
}

/* Hover lift */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Icon */
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(106,27,154,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.why-icon i {
  font-size: 26px;
  color: #6a1b9a;
}

/* Text */
.why-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
}

/* Mobile */
@media (max-width: 576px) {
  .why-heading h2 {
    font-size: 28px;
  }

  .why-card {
    padding: 38px 24px;
  }
}
/* =====================================================
   PROCESS TIMELINE – ENTERPRISE STYLE
===================================================== */
.process-section {
  padding: 120px 0;
  background: #ffffff;
}

.process-heading span {
  color: #1e88e5;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.process-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 80px;
}

/* Timeline wrapper */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* Vertical line */
.process-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #6a1b9a, #1e88e5);
}

/* Step */
.process-step {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

/* Circle */
.step-circle {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a1b9a, #1e88e5);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Content */
.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 576px) {
  .process-heading h2 {
    font-size: 28px;
  }

  .process-step {
    gap: 20px;
  }

  .step-circle {
    min-width: 50px;
    height: 50px;
    font-size: 14px;
  }

  .process-timeline::before {
    left: 25px;
  }
}
/* =====================================================
   BOTTOM CTA – ENTERPRISE CONVERSION
===================================================== */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #6a1b9a, #1e88e5);
}

.cta-box {
  max-width: 900px;
  margin: auto;
  padding: 80px 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.cta-box h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-primary {
  background: #ff9800;
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
}

.cta-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
}

.cta-primary:hover,
.cta-secondary:hover {
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 576px) {
  .cta-box {
    padding: 60px 25px;
  }

  .cta-box h2 {
    font-size: 26px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}
/* =====================================================
   FOOTER – ENTERPRISE STYLE
===================================================== */
.footer-section {
  background: white;
  color: black;
  padding: 90px 0 0;
  font-size: 14px;
}

/* Logo */
.footer-logo {
  height: 95px;
  
  margin-bottom: 20px;
}

/* About text */
.footer-about p {
  line-height: 1.7;
  color: black;
}

/* Titles */
.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: black;
  margin-bottom: 18px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #38bdf8;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-contact i {
  color: #021016;
  font-size: 16px;
}

/* Social */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background: #021118;
  transform: translateY(-4px);
}

/* Bottom bar */
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  background: #020617;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #94a3b8;
}

/* Mobile */
@media (max-width: 576px) {
  .footer-section {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}
/* =====================================================
   PROCESS TIMELINE – DESKTOP ALTERNATE DESIGN
===================================================== */
@media (min-width: 992px) {

  .process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    position: relative;
    max-width: 1200px;
    margin: auto;
  }

  /* Horizontal line */
  .process-timeline::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6a1b9a, #1e88e5);
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }

  /* Circle position */
  .step-circle {
    margin-bottom: 25px;
    z-index: 2;
  }

  /* Card-style content */
  .step-content {
    background: #fff;
    padding: 26px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .step-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  }

  .step-content h4 {
    font-size: 17px;
  }

  .step-content p {
    font-size: 14px;
  }

}
/* =====================================================
   CRM IMAGE DESKTOP FIX – LARGE SCREENS ONLY
===================================================== */
/* 
/* =====================================================
   CRM IMAGE – LARGE SCREEN MICRO ADJUST (NO DESIGN CHANGE)
===================================================== */
@media (min-width: 1200px) {

  /* Slightly reduce canvas looseness */
  .crm-images {
    min-height: 500px;   /* was 520 → gives balance */
  }

  /* Pull images slightly towards center */
  .img-1 {
    top: 80px;
    left: 20px;
  }

  .img-2 {
    top: 90px;
    right: 20px;
  }

  .img-3 {
    bottom: 90px;
    left: 60px;
  }

  .img-4 {
    bottom: 60px;
    right: 60px;
  }

  /* Lock animation drift after entry */
  .crm-images .img-box.show {
    transform: none !important;
  }
}
/* ================= HEADER SCROLL FIX ================= */

/* Sticky navbar */
.main-nav.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Page offset when navbar fixed */
body.nav-offset {
  padding-top: 90px; /* navbar height */
}

/* Hide top bar on scroll */
.top-bar.hide-topbar {
  transform: translateY(-100%);
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}




















.about-section {
  background: #f8fdfb;
}

.section-title {
  color: #111827;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.about-text {
  color: #374151;
  line-height: 1.8;
  font-size: 0.98rem;
}

/* BADGE */
.about-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(25, 135, 84, 0.12);
  color: #6a1b9a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* ABOUT CARD */
.about-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  height: 100%;
  border-left: 4px solid #6a1b9a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.about-card h5 {
  font-weight: 700;
  color: #6a1b9a;
  margin-bottom: 8px;
}

.about-card p {
  color: #374151;
  font-size: 0.95rem;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(25, 135, 84, 0.2);
}

/* TOP RIGHT ICON */
.about-icon.top-right {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: rgba(25, 135, 84, 0.12);
  color: #6a1b9a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.about-card:hover .about-icon.top-right {
  background: #6a1b9a;
  color: #ffffff;
  transform: scale(1.1);
}

/* SCROLL ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .about-icon.top-right {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    top: 14px;
    right: 14px;
  }

  .about-card h5 {
    font-size: 1rem;
  }

  .about-card p {
    font-size: 0.9rem;
  }
}










/* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 40px auto 20px;
  max-width: 100%;
}
