/* ------------------ General CSS ------------------ */
body {
    color: #656565;
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
}

a {
    color: #1dbf73;
    transition: 0.3s;
}

a:hover,
a:active,
a:focus {
    color: #353535;
    outline: none;
    text-decoration: none;
}

p {
    color: #656565;
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #353535;
    margin: 0 0 15px 0;
    padding: 0;
}

h4,
h5,
h6 {
    font-weight: 400;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
/* ===============================
   HOME HERO – FULL BLEED (FIX)
   =============================== */

.home-hero,
.hero {
  margin-top: -110px; /* header height ke barabar */
  padding-top: 110px;
}

/* ------------------ Back to Top ------------------ */
body {
  padding-top: 80px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #1dbf73;
    color: #ffffff;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 1;
    font-size: 44px;
    right: 15px;
    bottom: 15px;
    transition: background 0.3s;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
}


/* ------------------ Header CSS ------------------- */
/* ===== PREMIUM NAVBAR ===== */
/* ===== PREMIUM NAVBAR (FIXED & STABLE) ===== */

.premium-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

/* NAVBAR WRAPPER */
.premium-navbar {
  margin: 3px auto;
  max-width: 1180px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  overflow: hidden; /* 🔒 navbar ko badhne se roke */
}

/* INNER CONTAINER — HEIGHT FIXED */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;        /* ✅ NAV HEIGHT FIX */
  padding: 0 22px;    /* ❌ vertical padding hata di */
}

/* LOGO — SIZE CONTROL */
.brand img {
  height: 90px;       /* 🔥 logo bada */
  width: auto;
  max-height: 100%;   /* container se bahar nahi jayega */
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-menu li a {
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14px;
  color: #0a8f55;
  border-radius: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #056c40;
  text-decoration: underline;
}

/* CTA */
.nav-menu li a.cta {
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  color: #fff;
}

/* SCROLL EFFECT */
body.scrolled .premium-navbar {
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* HEADER AUTO HIDE / SHOW */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.35s ease;
}

.header.hide {
  transform: translateY(-120%);
}

.header.show {
  transform: translateY(0);
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .nav-container {
    height: 60px;
  }

  .brand img {
    height: 40px;
  }
}


/* =========================
   NAV MENU – CLEAN & PREMIUM
   ========================= */

.nav-menu li a {
  background: transparent !important;
  color: #0a8f55 !important;
  padding: 8px 12px;
  font-weight: 600;
  text-decoration: none;
}

.nav-menu li a:hover {
  color: #056c40 !important;
  text-decoration: underline;
}

.nav-menu .menu-active a {
  color: #0a8f55 !important;
  text-decoration: underline;
}


/* =========================
   HEADER HIDE / SHOW ON SCROLL
   ========================= */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.35s ease;
}

.header.hide {
  transform: translateY(-120%);
}


/* HEADER AUTO HIDE */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.35s ease;
}

/* IMPORTANT: padding-top = 90px hai,
   isliye header ko extra upar bhejna padega */
.header.hide {
  transform: translateY(-160%);
}

/* ==============================
   CORE CAPABILITIES CARDS
   ============================== */

.capability-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.3s ease;
}

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

.capability-icon i {
  font-size: 34px;
  color: #1dbf73;
}

.capability-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.capability-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}


/* =========================
   MOBILE OPTIMIZATION
   ========================= */

@media (max-width: 768px) {
  .capability-card {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
  }

  .capability-icon {
    margin-bottom: 10px;
  }

  .capability-icon i {
    font-size: 36px;
  }

  .capability-card h4 {
    font-size: 17px;
  }

  .capability-card p {
    font-size: 14px;
  }
}




/* =========================
   HERO SECTION – PREMIUM
   ========================= */

.hero {
  position: relative;
  min-height: 100vh;
  background: url("../img/slider-1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 6%;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.35)
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: #ffffff;
  animation: heroFadeUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
  color: #ffffff;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 36px;
}

/* CTA Button */
.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #1dbf73, #16a34a);
  color: #ffffff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  color: #ffffff;
}

/* Animation */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 768px) {

  .hero {
    padding: 0 20px;
    justify-content: center;
    text-align: center;
  }

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

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

  .hero-btn {
    padding: 12px 28px;
  }
}

/* =========================
   ABOUT SECTION – PREMIUM
   ========================= */

.about-premium {
  padding: 90px 0;
  background: #f9fafb;
}

.about-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.about-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-header p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* Main content */
.about-main {
  margin-bottom: 70px;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.about-content h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 15px;
}

/* Cards */
.about-cards {
  margin-top: 40px;
}

.about-card {
  background: #ffffff;
  padding: 34px 26px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.about-card i {
  font-size: 38px;
  color: #1dbf73;
  margin-bottom: 18px;
}

.about-card h4 {
  font-size: 20px;
  margin-bottom: 14px;
}

.about-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

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

@media (max-width: 768px) {

  .about-header h2 {
    font-size: 28px;
  }

  .about-content {
    margin-top: 30px;
    text-align: center;
  }

  .about-content h3 {
    font-size: 24px;
  }

}

/* ----------------- Intro Section ----------------- */
/* ================================================= */

.slider {
    display: table;
    width: 100%;
    height: 100vh;
    background: #000;
}

.slider .carousel-item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider .carousel-item::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.slider .carousel-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.slider .carousel-background img {
    max-width: 100%;
}

.slider .carousel-content {
    text-align: center;
}

.slider h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 1px;
}

.slider p {
    width: 80%;
    margin: 0 auto 30px auto;
    color: #ffffff;
}

.slider .carousel-fade {
    overflow: hidden;
}

.slider .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
}

.slider .carousel-fade .carousel-inner .carousel-item,
.slider .carousel-fade .carousel-inner .active.carousel-item-left,
.slider .carousel-fade .carousel-inner .active.carousel-item-right {
    opacity: 0;
}

.slider .carousel-fade .carousel-inner .active,
.slider .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
.slider .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.3s;
}

.slider .carousel-fade .carousel-inner .carousel-item-next,
.slider .carousel-fade .carousel-inner .carousel-item-prev,
.slider .carousel-fade .carousel-inner .active.carousel-item-left,
.slider .carousel-fade .carousel-inner .active.carousel-item-right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slider .carousel-control-prev,
.slider .carousel-control-next {
    width: 10%;
}

.slider .carousel-control-next-icon,
.slider .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

.slider .carousel-indicators li {
    cursor: pointer;
}

.slider .btn-get-started {
    display: inline-block;
    padding: 10px 30px;
    transition: 0.3s;
    background: #1dbf73;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slider .btn-get-started:hover {
    background: #ffffff;
    color: #1dbf73;
}



/* ------------------ Menu Style ------------------- */
#nav-menu-container {
    float: right;
    margin: 0;
}

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

.nav-menu a {
    display: inline-block;
    padding: 0 8px 10px 8px;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    outline: none;
    text-decoration: none;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
    color: #1dbf73;
}

.nav-menu > li {
    margin-left: 10px;
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    background: #ffffff;
}

.nav-menu ul li {
    transition: 0.3s;
}

.nav-menu ul li a {
    padding: 5px 10px;
    color: #353535;
    transition: 0.3s;
    display: block;
    font-size: 14px;
    text-transform: none;
}

.nav-menu ul li:hover > a {
    color: #1dbf73;
}

.nav-menu ul ul {
    margin: 0;
}

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #ffffff;
}

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.8);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #1dbf73;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul li.menu-active a {
    color: #1dbf73;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    top: -5px;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #ffffff;
}

#mobile-nav ul .menu-has-children i.ion-md-arrow-dropup {
    color: #1dbf73;
}

#mobile-nav ul .menu-has-children i.dicon {
    display: none;
}

#mobile-nav ul .menu-has-children li a {
    text-transform: none;
}

#mobile-nav ul .menu-item-active {
    color: #1dbf73;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #ffffff;
}



/* ---------------- Banner Section ----------------- */
.banner {
    background: url("../img/banner.jpg") center top no-repeat;
    background-size: cover;
    padding: 150px 0 60px 0;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(000, 000, 000, 0.6);
    z-index: 9;
}

.banner .container {
    position: relative;
    z-index: 10;
}

.banner .banner-nav {
    text-align: center;
}

.banner .banner-box {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ffffff;
}

.banner .banner-box a {
    color: #ffffff;
}

.banner .banner-box a:hover {
    color: #1dbf73;
}

.banner .banner-box a:first-child {
    padding-right: 15px;
    border-right: 1px solid #ffffff;
}

.banner .banner-box a:last-child {
    padding-left: 15px;
}


/* ------------- Section Header Style -------------- */
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.section-header h3 {
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 100px;
    height: 0;
    border-bottom: 4px dashed #353535;
    bottom: 0;
    left: calc(50% - 50px);
}

.section-header p {
    text-align: center;
    padding-bottom: 30px;
}


/* ---------------- About Us Style ----------------- */
.about {
    position: relative;
    padding: 60px 0 40px 0;
    background: #f2f2f2;
}

.about .about-row {
    margin-bottom: 30px;
}

.about .about-col {
    background: #ffffff;
    margin-bottom: 20px;
}

.about .about-col:hover {
    box-shadow: 0px 2px 10px #dddddd;
}

.about .about-col .img {
    position: relative;
}

.about .about-col .icon {
    width: 64px;
    height: 64px;
    padding-top: 10px;
    padding-left: 1px;
    text-align: center;
    position: absolute;
    background-color: #1dbf73;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #ffffff;
    left: calc( 50% - 32px);
    bottom: -30px;
    transition: 0.3s;
}

.about .about-col i {
    font-size: 36px;
    line-height: 1;
    color: #ffffff;
    transition: 0.3s;
}

.about .about-col:hover .icon {
    background-color: #ffffff;
}

.about .about-col:hover i {
    color: #1dbf73;
}

.about .about-col h2 {
    color: #353535;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 0;
    margin: 40px 0 12px 0;
}

.about .about-col h2 a {
    color: #353535;
}

.about .about-col h2 a:hover {
    color: #1dbf73;
}

.about .about-col p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #353535;
    margin-bottom: 0;
    padding: 0 30px;
}

.about .read-more {
    width: 100%;
    text-align: center;
}

.about .read-more a {
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 5px 15px;
    transition: 0.3s;
    margin: 15px 30px 30px 30px;
    color: #ffffff;
    background: #1dbf73;
}

.about .about-col:hover .read-more a,
.about .read-more a:hover {
    background: #353535;
    color: #ffffff;
}

.about .about-row .read-more {
    text-align: left;
}

.about .about-row .read-more a {
    margin: 0;
}


/* ---------------- Services Style ----------------- */
/* =========================
   SERVICES (PREMIUM)
========================= */

.services-pro {
  padding: 90px 0;
  background: #f9fafb;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-head p {
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 15px;
  color: #666;
}

/* Service Card */
.service-box {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(0,0,0,0.12);
}

/* Icon */
.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(29,191,115,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 30px;
  color: #1dbf73;
}

/* Text */
.service-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}


/* =========================
   CTA (SOFT & CLEAN)
========================= */

/*.cta-pro {*/
/*  padding: 80px 0;*/
/*  background: linear-gradient(135deg, #1dbf73, #17a864);*/
/*  color: #ffffff;*/
/*}*/

/*.cta-inner {*/
/*  max-width: 720px;*/
/*  margin: auto;*/
/*}*/

/*.cta-inner h3 {*/
/*  font-size: 30px;*/
/*  font-weight: 700;*/
/*  margin-bottom: 12px;*/
/*}*/

/*.cta-inner p {*/
/*  font-size: 15px;*/
/*  margin-bottom: 26px;*/
/*  opacity: 0.95;*/
/*}*/

/*.cta-btn-pro {*/
/*  display: inline-block;*/
/*  padding: 12px 30px;*/
/*  background: #ffffff;*/
/*  color: #1dbf73;*/
/*  font-size: 15px;*/
/*  font-weight: 600;*/
/*  border-radius: 30px;*/
/*  text-decoration: none;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.cta-btn-pro:hover {*/
/*  transform: translateY(-2px);*/
/*  box-shadow: 0 10px 25px rgba(0,0,0,0.25);*/
/*}*/


/* =========================
   MOBILE FIX
========================= */

@media (max-width: 768px) {
  .services-pro {
    padding: 60px 0;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .cta-inner h3 {
    font-size: 24px;
  }
}


/* ----------------- Pricing Style ----------------- */
.pricing {
    background: #f2f2f2;
    padding: 60px 0;
}

.pricing .section-header p {
    margin-bottom: 50px;
}

.pricing .price-content {
    position: relative;
    background: #ffffff;
    text-align: center;
}

.pricing .price-content:hover {
    box-shadow: 0 0 10px #dddddd;
}

.pricing .price-plan {
    display: block;
    background: #353535;
    margin: 0 0 30px;
    padding: 15px 0 20px;
}

.pricing .price-title {
    display: block;
    color: #ffffff;
    font-size: 30px;
    letter-spacing: 1px;
    padding: 0 15px 0;
    margin-bottom: 0;
}

.pricing .price-amount {
    display: block;
    color: #ffffff;
    font-size: 48px;
    padding: 0 10px 0;
    text-transform: uppercase;
}

.pricing .price-amount span {
    color: #ffffff;
    font-size: 24px;
}

.pricing .price-date {
    color: #ffffff;
    font-size: 12px;
    margin-top: 5px;
    text-transform: uppercase;
    margin-bottom:0;
}

.pricing .price-details {
    font-size: 16px;
    list-style: none;
    text-align: left;
}

.pricing .price-details li {
    padding: 5px 0;
}

.pricing .price-details li i.ion-md-checkmark {
    color: #1dbf73;
    margin-right: 5px;
}

.pricing .price-details li i.ion-md-close {
    color: #ea4335;
    margin-right: 7px;
}

.pricing .btn {
    color: #ffffff;
    padding: 10px 30px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
}

.pricing .price-btn {
    margin-top: 10px;
    margin-bottom: 30px;
    background: #353535;
    color: #ffffff;
}

.pricing .price-btn:hover {
    background: #1dbf73;
}

.pricing .features-price-btn {
    background: #1dbf73;
}

.pricing .features-price-btn:hover {
    background: #353535;
}

.pricing .features-price {
    margin-top: -30px;
}

.pricing .features-price .price-plan {
    background: #1dbf73;
}

.pricing .features-price .price-plan p{
    color:#FFFFFF;
}

.pricing .features-price .price-plan .price-amount, 
.pricing .features-price .price-plan .price-amount span {
    color: #ffffff;
}

.pricing .features-price .price-plan .price-title {
    color:#ffffff;
}

@media (max-width: 767.98px) {
    .pricing .price-content {
        margin-bottom: 30px;
    }
    
    .pricing .features-price {
        margin-top: 0;
    }
}



/* ============================= */
/* Core Capabilities Section */
/* ============================= */

.capabilities {
  padding: 80px 0;
  background: #ffffff;
}

.capabilities .section-header h3 {
  font-size: 32px;
  font-weight: 700;
}

.capabilities .section-header p {
  max-width: 700px;
  margin: 10px auto 60px;
  color: #64748b;
  font-size: 15px;
}

.cap-card {
  background: #f9fafb;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: left;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.cap-card i {
  font-size: 34px;
  color: #1dbf73;
  margin-bottom: 15px;
  display: inline-block;
}

.cap-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cap-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.cap-card:hover {
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}

/* Mobile */
@media (max-width: 768px) {
  .capabilities {
    padding: 60px 0;
  }

  .capabilities .section-header h3 {
    font-size: 26px;
  }
}


/* ===== Portfolio Header (SAFE MODE) ===== */

.portfolio-header-safe {
    margin-bottom: 40px; /* sirf neeche space */
}

.portfolio-header-safe h3 {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    position: relative;
}

/* underline – purely visual */
.portfolio-header-safe h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #1dbf73;
    border-radius: 2px;
    margin: 14px auto 0;
}

.portfolio-header-safe p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* mobile safe */
@media (max-width: 576px) {
    .portfolio-header-safe h3 {
        font-size: 26px;
    }
    .portfolio-header-safe p {
        font-size: 14px;
    }
}


/* ================= Portfolio Filters ================= */

#portfolio-flters {
    list-style: none;
    padding: 0;
    margin: 35px 0 50px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Filter Button */
#portfolio-flters li {
    padding: 10px 26px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: #ffffff;
    border-radius: 30px;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Hover Effect */
#portfolio-flters li:hover {
    background: #1dbf73;
    color: #ffffff;
    border-color: #1dbf73;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 191, 115, 0.35);
}

/* Active Filter */
#portfolio-flters li.filter-active {
    background: #1dbf73;
    color: #ffffff;
    border-color: #1dbf73;
    box-shadow: 0 10px 25px rgba(29, 191, 115, 0.45);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    #portfolio-flters {
        gap: 10px;
    }

    #portfolio-flters li {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* ----------------- Portfolio Style --------------- */

/* =========================
   PORTFOLIO CARD (FINAL)
========================= */

.portfolio-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

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

.portfolio-image {
  width: 100%;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 230px;              /* Desktop perfect height */
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

/* subtle zoom on hover */
.portfolio-card:hover .portfolio-image img {
  transform: scale(1.04);
}

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

.portfolio-content {
  padding: 18px 16px 20px;
  text-align: center;
}

.portfolio-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.portfolio-content p {
  font-size: 13px;
  color: #6b6b6b;
  margin-bottom: 14px;
}

/* =========================
   ACTION BUTTONS
========================= */

.portfolio-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-preview,
.btn-demo {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Preview */
.btn-preview {
  background: #f1f1f1;
  color: #333;
}

.btn-preview:hover {
  background: #e3e3e3;
}

/* Live Demo */
.btn-demo {
  background: #1dbf73;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(29, 191, 115, 0.35);
}

.btn-demo:hover {
  background: #17a864;
  box-shadow: 0 8px 22px rgba(29, 191, 115, 0.45);
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */

@media (max-width: 768px) {
  .portfolio-image img {
    height: 190px;
  }

  .portfolio-content {
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .portfolio-image img {
    height: 165px;
  }

  .portfolio-content h4 {
    font-size: 16px;
  }

  .portfolio-content p {
    font-size: 12.5px;
  }
}


/* ------------------- Team Style ------------------ */
.team {
    padding: 60px 0;
}

.team .section-header {
    margin-bottom: 15px;
}

.team .card {
    position: relative;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: 0.3s;
}

.team .card:hover {
    box-shadow: 0px 0px 10px #999999;
}

.team .card img {
    width: 100%;
}

.team .card-title-wrap {
    padding: 15px 25px;
    position: relative;
    background-color: #f2f2f2;
}

.team .card:hover .card-title-wrap {
    background: #1dbf73;
}

.team .card-title-wrap .card-title,
.team .card-title-wrap .card-text {
    display: block;
    margin: 0;
}

.team .card-title-wrap .card-title {
    text-align: center;
    font-size: 18px;
    color: #353535;
}

.team .card-title-wrap .card-text {
    text-align: center;
    font-size: 14px;
    color: #666666;
}

.team .card:hover .card-title-wrap .card-title,
.team .card:hover .card-title-wrap .card-text {
    color: #ffffff;
}

.team .card .social-nav {
    position: relative;
    text-align: center;
}

.team .card .social-nav a {
    display: inline-block;
    color: #353535;
    font-size: 18px;
    margin: 5px;
}

.team .card:hover .social-nav a {
    color: #ffffff;
}


/* --------------- Testimonials Style -------------- */
.testimonials {
    position: relative;
    padding: 60px 0;
    background: #f2f2f2;
}

.testimonials .container {
    max-width: 900px;
}

.testimonials .section-header {
    margin-bottom: 20px;
}

.testimonials .testimonial-item {
    position: relative;
    background: #ffffff;
}

.testimonials .testimonial-text {
    padding: 25px 25px 25px 0;
}

.testimonials .testimonial-item img {
    background: #353535;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    color: #353535;
    margin-bottom: 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999999;
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item p {
    font-size: 14px;
    margin: 0;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dddddd;
}

.testimonials .owl-dot.active {
    background-color: #1dbf73;
}

@media (max-width: 575px) {
    .testimonials .testimonial-text {
        padding: 25px;
    }
}


 /*------------------ Clients Style ---------------- */
.clients {
    padding: 60px 0;
}

.clients .section-header p {
    padding-bottom: 10px;
}

.clients img {
    max-width: 100%;
    opacity: 1;
    transition: 0.3s;
    padding: 15px 0;
}

.clients img:hover {
    opacity: .5;
}

.clients .owl-nav,
.clients .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.clients .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

.clients .owl-dot.active {
    background-color: #1dbf73;
}

/* ===== HARD ISOLATED CLIENTS SECTION ===== */

#clients-safe {
  position: relative;
  z-index: 10;
  background: #ffffff;
  padding: 80px 0;
}

.clients-safe-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.clients-safe-header {
  text-align: center;
  margin-bottom: 45px;
}

.clients-safe-header h3 {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.clients-safe-header h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #1dbf73;
  display: block;
  margin: 14px auto 0;
}

.clients-safe-header p {
  max-width: 720px;
  margin: 0 auto;
  color: #666;
  font-size: 15px;
}

.clients-safe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.clients-safe-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  transition: all 0.3s ease;
}

.clients-safe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.clients-safe-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.clients-safe-card p {
  font-size: 14px;
  color: #666;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 30px;
  margin-bottom: 14px;
  font-weight: 600;
}

.tag.health {
  background: rgba(29,191,115,0.15);
  color: #1dbf73;
}

.tag.edu {
  background: rgba(59,130,246,0.15);
  color: #3b82f6;
}


/* Tags */
.des-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.des-tag.healthcare {
    background: rgba(29,191,115,0.15);
    color: #1dbf73;
}

.des-tag.education {
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
}

.des-tag.enterprise {
    background: rgba(99,102,241,0.15);
    color: #6366f1;
}

/* Text */
.des-client-box h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.des-client-box p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Mobile Safe */
@media (max-width: 576px) {
    .des-clients-header h3 {
        font-size: 26px;
    }
}





/* ----------------- Contact Style ----------------- */
/* CONTACT SECTION */
.contact-premium {
  padding: 90px 0;
  background: #f9fafb;
}

/* HEADER */
.contact-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-header p {
  max-width: 620px;
  margin: 0 auto 25px;
  color: #666;
  font-size: 15px;
}

.whatsapp-btn {
  display: inline-block;
  background: #1dbf73;
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(29,191,115,0.35);
}

.whatsapp-btn:hover {
  background: #17a864;
}

/* INFO CARDS */
.contact-cards {
  margin-top: 50px;
}

.info-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.info-card i {
  font-size: 32px;
  color: #1dbf73;
  margin-bottom: 12px;
}

.info-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.info-card p,
.info-card a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

/* MAP + FORM BOX */
.contact-box {
  margin-top: 60px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
}

/* FORM */

.form-status {
  display: none;
  margin-bottom: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
}

.form-status.success {
  display: block;
  background: #e6fff2;
  color: #0a7a42;
  border: 1px solid #1dbf73;
}

.form-status.error {
  display: block;
  background: #ffeaea;
  color: #a40000;
  border: 1px solid #ff4d4d;
}

.contact-form {
  padding: 40px;
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  margin-bottom: 14px;
}

.contact-form button {
  background: #1dbf73;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
}

.contact-form button:hover {
  background: #17a864;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-header h2 {
    font-size: 28px;
  }

  .contact-box iframe {
    min-height: 260px;
  }

  .contact-form {
    padding: 25px;
  }
}


/* ----------------- Footer Style ------------------ */
.premium-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 0 30px;
  font-family: "Inter", sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links ul li a {
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #22c55e;
  padding-left: 4px;
}

.footer-contact a {
  display: block;
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 6px;
  text-decoration: none;
}

.footer-social {
  margin-top: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #1e293b;
  border-radius: 50%;
  color: #22c55e;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #22c55e;
  color: #ffffff;
}

.footer-newsletter input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  outline: none;
  margin-bottom: 10px;
}

.footer-newsletter button {
  width: 100%;
  padding: 10px;
  background: #22c55e;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: #16a34a;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

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

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}



/* ===============================
   GLOBAL MOBILE OVERFLOW FIX
   =============================== */

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

/* Prevent any section from breaking layout */
* {
  box-sizing: border-box;
}

/* Fix common offenders */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero / Intro safety */
.slider {
  padding-top: 110px;
}

.hero,
.intro,
section {
  max-width: 100vw;
  overflow-x: hidden;
}
