:root {
  --primary-blue: #13C5DD;
  /* --dark-green: #04552c; */
  --mint: #9fd4c0;
  --white: #ffffff;
  --light-bg: #f5faf7;
  --text-dark: #222222;
  --border-color: #e5e5e5;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --font-primary: "Poppins", sans-serif;
}
/* HERO SECTION */

.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif !important;
}
/* SLIDES */
.banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: 1s ease-in-out;
}
/* ACTIVE */
.banner-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
}
/* CONTAINER */
.hero-banner .container {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
}
/* CONTENT */
.banner-content {
  max-width: 700px;
  color: #000000;
}
/* SUBTITLE */
.banner-subtitle {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  animation: fadeUp 1s ease forwards;
}
/* HEADING */
.banner-content h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}
/* PARAGRAPH */
.banner-content p {
  font-size: 20px;
  line-height: 1.9;
  max-width: 650px;
  margin-bottom: 35px;
  color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
}
/* BUTTONS */
.banner-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.banner-btn {
  padding: 16px 38px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.9s;
}
/* PRIMARY BUTTON */
.primary-btn {
  background: #1D8884;
  color: #fff;
}
.primary-btn:hover {
  background: #E42525;
  transform: translateY(-5px);
}
/* SECONDARY BUTTON */
.secondary-btn {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background:#E42525;
  backdrop-filter: blur(10px);
}
.secondary-btn:hover {
  background: #fff;
  color: #000;
}
/* PAGINATION */
.banner-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 20;
}
/* DOT */
.banner-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.4s ease;
}
/* ACTIVE DOT */
.banner-dot.active-dot {
  width: 42px;
  border-radius: 30px;
  background: black;
}
/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .banner-content h1 {
    font-size: 50px;
  }
  .banner-content p {
    font-size: 18px;
  }
}
/* MOBILE */
@media (max-width: 767px) {
  .hero-banner {
    height: 750px;
  }
  .banner-content {
    text-align: center;
    margin: auto;
  }
  .banner-content h1 {
    font-size: 36px;
  }
  .banner-content p {
    font-size: 16px;
  }
  .banner-buttons {
    justify-content: center;
  }
}
/* =========================
    STATS SECTION
========================= */
.stats-section{
    background:var(--white);
    border-top:3px solid #1D8884;
    overflow:hidden;
}
.stats-inner{
    display:flex;
    align-items:stretch;
}
.stat-item{
    flex:1;
    text-align:center;
    padding:30px 15px;
    border-right:1px solid #1D8884;
    opacity:0;
    transform:translateY(20px);
    transition:.4s;
}
.stat-item:last-child{
    border-right:none;
}
.stat-item.visible{
    animation:fadeUp .6s ease forwards;
}
.stat-item:hover{
    background:#f5f8ff;
}
.highlighted{
    background:#eef1fb;
}
.stat-number{
    font-size:2.7rem;
    font-weight:800;
    color:#1D8884;
    line-height:1;
}
.stat-number sup{
    font-size:1.2rem;
    top:-0.8em;
}
.pci-text{
    font-size:2.8rem;
    font-style:italic;
    letter-spacing:2px;
}
.stat-label{
    margin-top:10px;
    font-size:16px;
    color:#666;
}
@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .stats-inner{
        flex-wrap:wrap;
    }
    .stat-item{
        flex:0 0 50%;
        border-right:none;
        border-bottom:1px solid var(--border-color);
    }
    .stat-number{
        font-size:2.2rem;
    }
}
@media(max-width:576px){
    .stat-item{
        flex:0 0 100%;
    }
}
.approval-bar{
    background:#13c6dd37;
    border-top:1px solid #c8dfda;
    border-bottom:1px solid #c8dfda;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:50px;
    padding:20px 30px;
    flex-wrap:wrap;
}
.approval-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:#00967d;
    font-size:16px;
    font-weight:600;
}
.approval-item i{
    font-size:22px;
}
/* Icon Colors */
.fa-medal{
    color:#f39c12;
}
.fa-building-columns{
    color:#8e8e8e;
}
.fa-square-check{
    color:#2ecc71;
}
.fa-globe{
    color:#3498db;
}
/* Responsive */
@media(max-width:991px){
    .approval-bar{
        gap:25px;
    }
    .approval-item{
        font-size:14px;
    }
}
@media(max-width:768px){
    .approval-bar{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }
    .approval-item{
        width:100%;
    }
}
/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  width: 100%;
  min-height: 20vh;
  background: url("../images/contacus_img.jpg") center/cover no-repeat;
  position: relative;
  padding: 40px 6%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.overlay {
  position: absolute;
  inset: 0;
}
.contact-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  /* grid-template-columns: o.9fr 0.9fr; */
  gap: 100px;
  position: relative;
  z-index: 2;
  justify-content: space-between;
  align-items: stretch;
  
}
/* =========================
   FORM BOX
========================= */
.contact-form-box {
  flex: 1;
  width: 40%;
  background: white ;
  padding: 28px 24px;
  border-radius: 10px;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.25);
  /* max-width: 520px; */
  height: 500px;
}
.contact-heading span {
  /* color:#1D8884; */
  font-size: 40px;
  font-weight: 600;
}
.contact-heading h2 {
  font-size: 16px;
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 25px;
  /* color: black; */
  /* font-weight: 700; */
}
/* =========================
   INPUTS
========================= */
.input-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.input-group {
  width: 100%;
}
.input-group input,
.single-input input,
.message-box textarea {
  width: 100%;
  border: 1px solid #999;
  outline: none;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 16px;
  background: transparent;
}
.single-input {
  margin-bottom: 20px;
}
.message-box textarea {
  height: 80px;
  resize: none;
  margin-bottom: 25px;
}
/* =========================
   BUTTON
========================= */

.btn-wrapper{
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.send-btn {
  background:#1d8884;
  color: white;
  border: none;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}
.send-btn:hover {
  transform: translateY(-3px);
}
/* =========================
   MAP
========================= */
.map-box {
  flex: 1;
  width: 40%;
  height: 500px;
  /* max-width: 520px; */
  /* margin-right: 20px; */
}
.map-box iframe {
  width: 100%;
  height: 100%;
  /* min-height: 520px; */
  border: none;
  border-radius: 10px;
}
/* =========================
   RESPONSIVE
========================= */
/* ==========================
   CONTACT SECTION RESPONSIVE
========================== */

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

    .contact-section{
        padding:60px 4%;
    }

    .contact-container{
        flex-direction:column;
        gap:40px;
    }

    .contact-form-box,
    .map-box{
        width:100%;
        max-width:100%;
    }

    .contact-form-box{
        height:auto;
    }

    .map-box{
        height:400px;
    }

    .contact-heading span{
        font-size:32px;
    }

    .contact-heading h2{
        font-size:24px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .contact-section{
        padding:50px 15px;
    }

    .contact-container{
        gap:30px;
    }

    .contact-form-box{
        padding:25px 18px;
        height:auto;
    }

    .map-box{
        width:100%;
        height:300px;
    }

    .contact-heading span{
        font-size:28px;
    }

    .contact-heading h2{
        font-size:22px;
        margin-bottom:20px;
    }

    .input-row{
        grid-template-columns:1fr;
        gap:15px;
    }

    .input-group input,
    .single-input input{
        padding:12px 15px;
        font-size:15px;
    }

    .message-box textarea{
        height:120px;
        padding:12px 15px;
        font-size:15px;
    }

    .btn-wrapper{
        justify-content:center;
    }

    .send-btn{
        width:100%;
        justify-content:center;
        padding:14px;
        font-size:16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .contact-section{
        padding:40px 10px;
    }

    .contact-form-box{
        padding:20px 15px;
    }

    .contact-heading span{
        font-size:24px;
    }

    .contact-heading h2{
        font-size:18px;
    }

    .map-box{
        height:250px;
    }

    .input-group input,
    .single-input input,
    .message-box textarea{
        font-size:14px;
    }

    .send-btn{
        font-size:15px;
        padding:12px;
    }
}

/*  =========================
    courses section
========================= */
/* SECTION */

.pharmacy-courses{
    background:#f4f6f9;
    padding:100px 0;
}

/* CARD */

.course-box{
    background:#fff;
    padding:40px;
    height:100%;
    transition:.4s ease;
    position:relative;
    border-radius: 10px;
}

.course-box:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    background-color: #1D8884;
}

/* ICON */

.course-icon{
    position:relative;
    width:100px;
    height:100px;
    margin-bottom:25px;
}

.icon-bg{
    position:absolute;
    width:42px;
    height:42px;
    background:#1D8884;
    border-radius:50%;
    bottom:5px;
    left:0;
}

.course-icon i{
    position:relative;
    z-index:2;
    font-size:60px;
    color:var(--navy);
    transition:.4s;
}

.course-box:hover .course-icon i{
    transform:scale(1.08);
}

/* TITLE */

.course-box h3{
    color:var(--navy);
    font-size:36px;
    font-weight:700;
    margin-bottom:22px;
}

/* TEXT */

.course-box p{
    color:var(--text);
    font-size:16px;
    line-height:1.7;
    margin-bottom:30px;
}

/* BUTTON */

.read-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#f5f6f8;
    padding:14px 22px;
    text-decoration:none;
    color:#000;
    font-size:16px;
    font-weight:600;
    transition:.3s;
    border-radius: 6px ;
}

.read-btn i{
    transition:.3s;
}

.read-btn:hover{
    background:black;
    color:#fff;
}

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

/* ANIMATION */

.course-box{
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp .8s ease forwards;
}

.course-box:nth-child(2){
    animation-delay:.2s;
}

.course-box:nth-child(3){
    animation-delay:.4s;
}

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

/* RESPONSIVE */

@media(max-width:991px){

    .course-box{
        padding:35px;
    }

    .course-box h3{
        font-size:30px;
    }
}

@media(max-width:767px){

    .pharmacy-courses{
        padding:70px 0;
    }

    .course-box h3{
        font-size:26px;
    }

    .course-box p{
        font-size:16px;
    }
}
/* =========================
    WHY CHOOSE US SECTION   
========================= */
.why-krims-section{
    background:#fff;
    overflow:hidden;
}

/* LEFT SIDE */

.krims-image-wrapper{
    position:relative;
    min-height:650px;
}

.main-image{
    width:85%;
    margin-left:auto;
}

.main-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:12px;
    display:block;
    border: 3px solid white;
}

.small-image{
    position:absolute;
    left:0;
    bottom:0;
    width:48%;
    background:#fff;
    padding:10px;
    border-radius:18px;
    /* box-shadow:0 10px 40px rgba(0,0,0,0.08); */
}

.small-image img{
    width:100%;
    height:330px;
    object-fit:cover;
    border-radius:8px;
    margin-bottom: 65px;
}

/* RIGHT SIDE */

.about-tag{
    display:inline-block;
    padding:12px 30px;
    border:1px solid #cfd7ec;
    border-radius:50px;
    color:#7a7a7a;
    font-size:18px;
    margin-bottom:25px;
}

.why-title{
    font-size:42px;
    font-weight:700;
    line-height:1.15;
    color:#000000;
    margin-bottom:30px;
}

.why-text{
    color:#7f8795;
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
}

.why-list{
    margin-top:30px;
}

.why-item{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.why-item i{
    color: #1D8884;
    font-size:24px;
}

.why-item span{
    font-size:18px;
    color:#7f8795;
}

.about-btn{
    display:inline-block;
    margin-top:25px;
    background:#1D8884;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:6px;
    font-size:18px;
    font-weight:600;
    transition:.4s;
}

.about-btn:hover{
    background:#1D8884;
    color:#fff;
    transform:translateY(-3px);
}

/* ====================================
   TABLET RESPONSIVE
==================================== */
@media (max-width: 991px){

    .why-krims-section{
        padding:60px 0;
    }

    .krims-image-wrapper{
        min-height:550px;
        margin-bottom:50px;
    }

    .main-image{
        width:90%;
        margin-left:auto;
    }

    .main-image img{
        height:450px;
        width:100%;
    }

    .small-image{
        width:50%;
        bottom:20px;
        left:0;
    }

    .small-image img{
        height:220px;
        margin-bottom:0;
    }
}

/* ====================================
   MOBILE RESPONSIVE
==================================== */
@media (max-width: 767px){

    .why-krims-section{
        padding:50px 0;
    }

    .krims-image-wrapper{
        min-height:auto;
        position:relative;
        margin-bottom:40px;
    }

    .main-image{
        width:100%;
        margin-left:0;
    }

    .main-image img{
        width:100%;
        height:320px;
        object-fit:cover;
        border-radius:12px;
    }

    .small-image{
        position:absolute;
        left:15px;
        bottom:-40px;
        width:60%;
        padding:8px;
        border-radius:15px;
        background:#fff;
        z-index:2;
    }

    .small-image img{
        width:100%;
        height:180px;
        object-fit:cover;
        border-radius:10px;
        margin-bottom:0;
    }
}

/* ====================================
   SMALL MOBILE
==================================== */
@media (max-width: 575px){

    .krims-image-wrapper{
        margin-bottom:70px;
    }

    .main-image img{
        height:260px;
    }

    .small-image{
        width:70%;
        left:10px;
        bottom:-50px;
        padding:6px;
    }

    .small-image img{
        height:140px;
    }
}

/* ====================================
   EXTRA SMALL MOBILE
==================================== */
@media (max-width: 400px){

    .main-image img{
        height:230px;
    }

    .small-image{
        width:75%;
    }

    .small-image img{
        height:120px;
    }
}
/* =========================
   NEWS AND EVENT Section
========================= */
/* ── Section ── */
    .blog-section {
      background: var(--light-bg);
      padding: 56px 0 64px;
    }
    .section-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: #13C5DD;
      /* margin-bottom: 44px; */
      letter-spacing: 0.01em;
    }
    /* ── Carousel wrapper ── */
    .carousel-wrapper {
      position: relative;
      padding: 0 10px;
    }
    /* ── Nav buttons ── */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-60%);
      z-index: 10;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background:#1D8884 !important;
      border: none;
      color: var(--white);
      font-size: 26px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
      opacity: 0;
      pointer-events: none;
      transition: background 0.2s, transform 0.15s, opacity 0.25s;
      line-height: 1;
    }
    .carousel-wrapper:hover .nav-btn {
      opacity: 1;
      pointer-events: all;
    }
    .nav-btn:hover {
      background: var(--light-red);
      transform: translateY(-60%) scale(1.1);
    }
    .nav-btn.prev { left: -16px; }
    .nav-btn.next { right: -16px; }
    .nav-btn:disabled {
      background: #bbb;
      cursor: not-allowed;
      opacity: 0.35 !important;
    }
    /* ── Viewport & track ── */
    .cards-viewport {
      overflow: hidden;
      width: 100%;
    }
    .cards-track {
      display: flex;
      gap: 24px;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }
    /* ── Card ── */
    .blog-card {
      flex: 0 0 calc((100% - 48px) / 3);
      min-width: 0;
      background: var(--white);
      border-radius: 18px;
      overflow: hidden;
      /* box-shadow: rgba(0, 0, 0, 0.182); */
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .blog-card:hover {
      transform: translateY(-5px);
      /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13); */
    }
    /* ── Card image placeholder ── */
    .blog-card-img-placeholder {
      width: 100%;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-green);
      flex-shrink: 0;
    }
    .blog-card-img-placeholder svg {
      width: 58px;
      height: 58px;
    }
    /* Swap these backgrounds for real <img> tags when integrating */
    .ph-1 { background: linear-gradient(135deg, #c8e8d8 0%, #9fd4c0 100%); }
    .ph-2 { background: linear-gradient(135deg, #b8d8f0 0%, #8ec2e8 100%); }
    .ph-3 { background: linear-gradient(135deg, #f0d8b8 0%, #e8c28c 100%); }
    .ph-4 { background: linear-gradient(135deg, #d8c8e8 0%, #c0a8d8 100%); }
    .ph-5 { background: linear-gradient(135deg, #c8e0b8 0%, #a8d090 100%); }
    .ph-6 { background: linear-gradient(135deg, #f0c8c8 0%, #e8a0a0 100%); }
    /* ── Meta pill ── */
    .blog-card-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      background: var(--white);
      border-radius: 30px;
      border: 1px solid var(--border-color);
      padding: 7px 14px;
      margin: -20px 16px 0;
      position: relative;
      z-index: 2;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
      width: fit-content;
      max-width: calc(100% - 32px);
    }
    .meta-item {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      color: var(--text-dark);
      white-space: nowrap;
    }
    .meta-icon {
      display: flex;
      align-items: center;
      color: var(--primary-green);
    }
    /* ── Card body ── */
    .blog-card-body {
      padding: 8px 18px 2px;
      flex: 1;
      display: flex;
      flex-direction: column;
      
    }
    .blog-card-title {
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--text-dark);
      margin: 7px 0 8px;
      line-height: 1.4;
      text-align:left;
    }
    .blog-card-desc {
      font-size: 0.82rem;
      color: #666;
      line-height: 1.65;
      flex: 1;
    }
    .blog-heading {
    text-align: center;
  }
    .blog-heading p {
    max-width: 700px;
    margin: 0 auto;
}
    /* ── Card footer ── */
    .blog-card-footer {
      /* padding: 10px 18px ; */
      display: flex;
      justify-content: center;
    }
    .btn-read-more {
      background:#1D8884;
      color: var(--white);
      border: none;
      border-radius: 6px;
      padding: 9px 28px;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.03em;
      display: inline-block;
      transition: background 0.2s, transform 0.15s;
      margin-bottom: 20px;
    }
    .btn-read-more:hover {
      background: #1D8884;
      transform: scale(1.05);
      color: var(--white);
    }
    /* ── Responsive ── */
    @media (max-width: 991px) {
      .blog-card {
        flex: 0 0 calc((100% - 24px) / 2);
      }
    }
    @media (max-width: 575px) {
      .blog-card {
        flex: 0 0 85vw;
      }
      .nav-btn {
        display: none;
      }
      .section-title {
        font-size: 1.5rem;
      }
    }
.blog-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}
/* ==========================
   RESPONSIVE FIXES
========================== */
/* ==========================
   RESPONSIVE FIX FOR ALL CARDS
========================== */

@media (max-width: 991px){

    .cards-viewport{
        overflow:visible !important;
    }

    .cards-track{
        display:grid !important;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
        transform:none !important;
    }

    .blog-card{
        width:100%;
    }

    .nav-btn{
        display:none !important;
    }
}

/* Mobile */

@media (max-width: 767px){

    .cards-viewport{
        overflow:visible !important;
    }

    .cards-track{
        display:grid !important;
        grid-template-columns:1fr;
        gap:20px;
        transform:none !important;
    }

    .blog-card{
        width:100%;
    }

    .blog-card-image{
        height:220px;
    }

    .blog-card-meta{
        margin:-18px 10px 0 !important;
        max-width:calc(100% - 20px);
    }

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

    .nav-btn{
        display:none !important;
    }
}
/* =========================
   our working section
========================= */
.admission-process {
  background: white; 
}
/* spacing */
.process-wrapper {
  margin-top: 70px;
}
.step-top {
  transform: translateY(-30px);
}
.step-bottom {
  transform: translateY(45px);
}
.step-card {
  position: relative;
  text-align: center;
}
/* curved dashed connector */
.curve {
  position: absolute;
  width: 250px;
  height: 120px;
  right: -125px;
  z-index: 0;
  border-radius: 50%;
  border-style: dashed;
  border-color: #adadad;
  animation: dashMove 18s linear infinite;
}
/* top to down */
.curve-down {
  top: 10px;
  border-width: 2px 0 0 0;
}
/* down to top */
.curve-up {
  top: -65px;
  border-width: 0 0 2px 0;
}
.last-step .curve {
  display: none;
}
/* icon */
.icon-box {
  width: 110px;
  height: 110px;
  background: #00000099;
  border-radius: 50%;
  margin: auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 15px 30px rgba(11,107,58,.25);
}
.icon-box i {
  font-size: 42px;
  color: white;
}
/* content */
.step-card h4 {
  margin-top: 28px;
  font-size: 23px;
  font-weight: 700;
}
.step-card p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  max-width: 290px;
  margin: auto;
}
/* zig-zag positioning */
.step-top {
  transform: translateY(-30px);
}
.step-bottom {
  transform: translateY(45px);
}
.step-card {
  position: relative;
  text-align: center;
  z-index: 2;
}
/* floating */
.icon-box {
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  50% {
    transform: translateY(-8px);
  }
}
/* dashed movement */
@keyframes dashMove {
  to {
    background-position: 100px;
  }
}
/* responsive */
@media(max-width:991px){
  .curve{
    display:none;
  }
  .step-top,
  .step-bottom{
    transform:none;
  }
  .step-card{
    background:white;
    padding:30px;
    border-radius:25px;
    box-shadow:var(--shadow);
  }
  .section-title{
    font-size:42px;
  }
}
/* Testimonial Section */
.testimonial-section{
    padding:100px 0;
    background:white;
}

.testimonial-heading{
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.testimonial-heading span{
    color:var(--primary-green);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.testimonial-heading h2{
    font-size:42px;
    font-weight:700;
    margin:12px 0;
}

.testimonial-heading p{
    color:#666;
}

.testimonial-card{
    background:var(--light-bg);
    border-radius:20px;
    padding:30px;
    height:100%;
    /* box-shadow:0 10px 30px rgba(0,0,0,.08); */
    /* transition:.4s; */
    position:relative;
    overflow:hidden;
    margin-top: 20px;
}

.testimonial-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:#1d8884;
}

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

.quote-icon{
    width:60px;
    height:60px;
    background:#1d8884;
    color:#fff;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:20px;
}

.rating{
    color:#ffc107;
    margin-bottom:15px;
    font-size:18px;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
    border-top:1px solid #eee;
    padding-top:20px;
}

.testimonial-user img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #1d8884;
}

.testimonial-user h5{
    margin:0;
    font-size:17px;
    font-weight:600;
}

.testimonial-user span{
    color:#777;
    font-size:14px;
}

/* Pagination Dots */

.carousel-indicators{
    margin-bottom:0;
}

.carousel-indicators button{
    width:10px !important;
    height:10px !important;
    border-radius:50% !important;
    background:#cfd8dc !important;
    border:none;
    opacity:1;
}

.carousel-indicators .active{
    background:#1d8884 !important;
    transform:scale(1.4);
}

/* Responsive */

@media(max-width:991px){

    .testimonial-heading h2{
        font-size:34px;
    }

    .testimonial-card{
        margin-bottom:20px;
    }
}

@media(max-width:576px){

    .testimonial-section{
        padding:70px 0;
    }

    .testimonial-heading h2{
        font-size:28px;
    }

    .testimonial-card{
        padding:25px;
    }
}
/*==========================
    placement recruiters 
==========================*/
.recruiters-section {
    background: #fff;
    overflow: hidden;
}
.section-title .sub-title {
    color: #13C5DD;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}
.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #13C5DD;
    margin-bottom: 15px;
}
.section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
}
/* Slider */
.logo-slider {
    /* overflow: hidden; */
    position: relative;
    width: 100%;
}
.logo-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}
.logo-card {
    width: 220px;
    height: 120px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
}
.logo-card:hover {
    transform: translateY(-8px);
    border-color: #13C5DD;
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
}
.logo-card img {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: .4s;
}
/* .logo-card:hover img {
    filter: grayscale(0%);
} */
/* Animation */
@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* Tablet */
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 34px;
    }
    .logo-card {
        width: 180px;
        height: 100px;
    }
}
/* Mobile */
@media (max-width: 767px) {
    .section-title h2 {
        font-size: 28px;
    }
    .logo-card {
        width: 150px;
        height: 90px;
    }
    .logo-card img {
        max-width: 100px;
    }
}
/* Facilities section */
.facilities-section{
    background:var(--light-bg);
}
.section-heading{
    font-size:42px;
    font-weight:700;
}
.section-text{
    color:#666;
}
/* Card */
.facility-card{
    position:relative;
    height:400px;
    border-radius:28px;
    overflow:hidden;
    cursor:pointer;
}
.facility-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}
.facility-card:hover img{
    transform:scale(1.08);
}
.facility-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.2),
        transparent
    );
}
/* Badge */
.card-tag{
    position:absolute;
    top:20px;
    right:20px;
    z-index:5;
    color:#fff;
    font-size:13px;
    padding:8px 16px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.6);
    backdrop-filter:blur(10px);
}
/* Initial Title */
.card-title{
    position:absolute;
    left:25px;
    right:25px;
    bottom:25px;
    color:#fff;
    z-index:5;
    font-size:30px;
    font-weight:600;
    transition:.4s;
}
/* Hidden Hover Panel */
.facility-content{
    position:absolute;
    left:12px;
    right:12px;
    bottom:12px;
    padding:22px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.3);
    border-radius:22px;
    color:#fff;
    z-index:10;
    opacity:0;
    visibility:hidden;
    transform:translateY(100px);
    transition:.5s ease;
}
.facility-card:hover .facility-content{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.facility-card:hover .card-title{
    opacity:0;
    transform:translateY(-20px);
}
.facility-content h4{
    margin-bottom:10px;
}
.facility-content p{
    margin:0;
    padding-right:70px;
}
/* Arrow */
.arrow-btn{
    position:absolute;
    right:15px;
    bottom:15px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#1D8884 !important;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
}
.arrow-btn:hover{
    transform:rotate(45deg);
}
/* Responsive */
@media(max-width:991px){
    .facility-card{
        height:420px;
    }
    .card-title{
        font-size:26px;
    }
}
@media(max-width:767px){
    .section-heading{
        font-size:30px;
    }
    .facility-card{
        height:350px;
    }
    .facility-content{
        opacity:1;
        visibility:visible;
        transform:none;
    }
    .card-title{
        display:none;
    }
}
.view-more-btn{
    background: #1D8884;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}
.view-more-btn:hover{
    background: #1D8884;
    transform:translateY(-3px);
}
/* SECTION HEADER */
.section-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-green);
}
.section-header p {
  max-width: 700px;
  margin: auto;
  color: #666;
  font-size: 16px;
}