/* ===== GLOBAL ===== */
body {
  margin: 0;
 font-family: "Playfair Display", serif;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.custom-navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* Ensure the hamburger icon renders even without navbar-light/dark */
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  /* Opaque background so content doesn't show through on scroll */
  background: #2C4874;
  padding: 15px 0;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(11, 44, 77, 0.12);
}

/* SCROLL EFFECT */
.custom-navbar.scrolled {
  background: #2C4874;
}

.custom-navbar .navbar-brand img {
  height: 70px;
  width: auto;
  display: block;
  max-width: 100%;
  border-radius: 15%;
}


/* LOGO */
.custom-navbar .navbar-brand {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
}

.custom-navbar .navbar-brand:hover {
  color: #fff;
}

.custom-navbar .navbar-toggler {
  border: none;
  padding: 6px 10px;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.custom-navbar .navbar-toggler-icon {
  background-image: var(--bs-navbar-toggler-icon-bg);
}

.custom-navbar .navbar-toggler:focus {
  box-shadow: none;
}

.custom-navbar .navbar-nav {
  align-items: center;
}

/* NAV LINKS */
.custom-navbar .nav-link {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 12px;
  white-space: nowrap;
}

/* ACTIVE UNDERLINE */
.custom-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: #fff;
  bottom: -6px;
  left: 12px;
}

/* LOGIN BUTTON */
.login-btn {
  background: #fff;
  padding: 6px 15px;
  border-radius: 6px;
  color: #000 !important;
  font-weight: 500;
}

/* DROPDOWN */
.dropdown-menu {
  border-radius: 8px;
  border: none;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
  padding: 8px 20px;
}

/* NAVBAR DROPDOWN (Polished) */
.custom-navbar .dropdown-menu {
  min-width: 240px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(11, 44, 77, 0.08);
  box-shadow: 0 18px 50px rgba(11, 44, 77, 0.18);
}

.custom-navbar .dropdown-menu.show {
  animation: navbarDropIn 160ms ease-out;
  transform-origin: top center;
}

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

.custom-navbar .dropdown-item {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: #0b2c4d;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.custom-navbar .dropdown-item:hover,
.custom-navbar .dropdown-item:focus {
  background: rgba(0, 120, 130, 0.12);
  color: #2C4874;
}

.custom-navbar .dropdown-divider {
  margin: 8px 6px;
  opacity: 0.14;
}

/* "View All Programs" highlight item */
.custom-navbar .dropdown-item.fw-bold.text-primary {
  color: #2C4874 !important;
  background: rgba(0, 120, 130, 0.08);
}

.custom-navbar .dropdown-item.fw-bold.text-primary:hover,
.custom-navbar .dropdown-item.fw-bold.text-primary:focus {
  background: #2C4874;
  color: #fff !important;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(36 38 38 / 90%), rgba(13 61 91 / 90%)),
              url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f') center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 90px 0;
}

/* ===== BREADCRUMB HERO (INNER PAGES) ===== */
.breadcrumb-hero {
  position: relative;
  isolation: isolate;
  min-height: 260px;
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 15, 63, 0.92), rgba(59, 63, 115, 0.86)),
    url("https://images.unsplash.com/photo-1523240795612-9a054b0db644") center/cover no-repeat;
}

.breadcrumb-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.14), transparent 55%);
}

.breadcrumb-hero .display-4 {
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  line-height: 1.15;
  text-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

/* No background "card" behind breadcrumb */
.breadcrumb-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  margin-bottom: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.breadcrumb-hero .breadcrumb-item {
  font-weight: 500;
  font-size: 0.95rem;
}

.breadcrumb-hero .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: rgba(255, 255, 255, 0.85);
  padding: 0 6px;
}

.breadcrumb-hero a {
  color: #fff;
  opacity: 0.92;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.breadcrumb-hero a:hover {
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-hero .breadcrumb-item.active {
  opacity: 0.95;
}



/* TEXT */
.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
}

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

/* BUTTON */
.hero-btn {
  background: #fff;
  color: #000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #ddd;
}

/* VIDEO BOX FIXED SIZE */
.video-box {
  width: 450px;
  height: 400px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

/* IMAGE FIT */
.video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===== CLICK CAREER SECTION (HOMEPAGE) ===== */
.click-career-section {
  padding: 70px 0;
 background: radial-gradient(circle at 10% 10%, rgba(255, 120, 0, 0.18), transparent 55%),
            linear-gradient(135deg, #2a0f00, #b65d26 55%, #1a0800);
  color: #fff;
}

.click-career-intro h2 {
  color: white;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.12;
  margin-bottom: 14px;
}

.click-career-intro h5 {
  font-weight: 700;
  margin-bottom: 14px;
}

.click-career-intro p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 26px;
}

.click-feature-card {
  max-width: 520px;
  background:  #383868;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  margin-left: auto;
}

.click-feature-media {
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.click-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.click-feature-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.35));
}

.click-feature-body {
  padding: 18px 18px 20px;
}

.click-feature-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.click-pill-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
}

.click-pill {
  width: 100%;
  max-width: 420px;
  min-height: 64px;
  border: 0;
  border-radius: 14px;
  background: #30486b;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 14px 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  transition: background 0.08s ease, box-shadow 0.08s ease;
}

.click-pill:hover {
  background: #147c86;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
}

.click-pill.active {
  background: #45a4b2;
  outline: 2px solid rgba(242, 183, 5, 0.85);
  outline-offset: 3px;
}

.click-pill-panel {
  margin-top: 10px;
  background: #b31d2a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.click-pill-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.click-pill-panel .panel-body {
  padding: 14px 14px 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .click-career-section {
    padding: 70px 0;
    text-align: left;
  }

  .click-career-intro p {
    margin-left: auto;
    margin-right: auto;
  }

  .click-feature-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  /* Mobile UX: open preview under the clicked pill */
  #clickFeatureCard {
    display: none;
  }

  .click-pill-grid {
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
  }

  .click-pill {
    max-width: 100%;
  }

  .click-pill:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 576px) {
  .click-career-section {
    padding: 58px 0;
  }

  .click-career-intro h2 {
    font-size: 2rem;
  }

  .click-career-intro p {
    margin-bottom: 18px;
  }

  .click-pill {
    min-height: 56px;
    padding: 12px 14px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .custom-navbar {
    background: #2C4874;
  }

  .custom-navbar .navbar-collapse {
    margin-top: 15px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(15, 92, 138, 0.96);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .custom-navbar .navbar-nav {
    align-items: flex-start;
    gap: 6px;
  }

  .custom-navbar .dropdown-menu {
    position: static;
    float: none;
  }

  .custom-navbar .nav-link {
    width: 100%;
    padding: 10px 0;
  }

  .custom-navbar .nav-link.active::after {
    display: none;
  }

  .dropdown-menu {
    width: 100%;
    margin-top: 6px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 90px 0 55px;
    text-align: center;
  }

  .breadcrumb-hero {
    min-height: 210px;
    padding: 56px 0;
  }

  .breadcrumb-hero .breadcrumb {
    flex-wrap: wrap;
  }

  .custom-navbar .navbar-brand img {
    height: 38px;
  }

  .hero-content {
    padding: 0 8px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

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

  .hero-btn {
    display: inline-block;
    width: 100%;
    max-width: 280px;
  }

  .video-box {
    margin-top: 10px;
    width: 100%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .video-box img {
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 576px) {
  .custom-navbar {
    padding: 12px 0;
  }

  .custom-navbar .navbar-collapse {
    padding: 14px 16px;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .breadcrumb-hero {
    min-height: auto;
    padding: 44px 0;
  }

  .breadcrumb-hero .breadcrumb-item {
    font-size: 0.9rem;
  }

  .breadcrumb-hero .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 4px;
  }

  .hero-content h1 {
    font-size: 1.95rem;
  }

  .video-box {
    max-width: 340px;
  }
}

/* SECTION */
.solutions-section {
  background: #f2f2f2;
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

/* TITLE */
.solutions-section h2 {
  font-weight: 600;
  color: #0b2c4d;
}

/* CARD BASE */
.solution-card {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 340px;
  display: flex;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.solutions-section .col-lg-6 {
  display: flex;
}

.solution-card .row {
  flex: 1;
  width: 100%;
}

.solution-card .row > [class*="col-"] {
  display: flex;
}

.solution-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.solution-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

.solution-media {
  width: 100%;
  min-height: 340px;
  overflow: hidden;
}

/* TEXT */
.solution-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.solution-card p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* BUTTON */
.solution-card .btn {
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
}

/* COLORS */
.solution-card.blue {
  background: #5f8fbe;
  color: #fff;
}

.solution-card.green {
  background: #6c8f7d;
  color: #fff;
}

.solution-card.beige {
  background: #cdb88c;
  color: #000;
}

.solution-card.orange {
  background: #f2992e;
  color: #000;
}

/* IMAGE */
.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== TABLET (UNCHANGED) ===== */
@media (min-width: 768px) {
  .solution-card {
    height: 340px;
    min-height: 340px;
  }

  .solution-text {
    order: 1;
  }

  .solution-media {
    order: 2;
    min-height: 340px;
  }

  .solution-content {
    padding: 34px !important;
  }

  .solution-card h4 {
    font-size: 1.55rem;
    margin-bottom: 14px;
  }

  .solution-card p {
    font-size: 15px;
  }

  .solution-card img {
    border-radius: 0 20px 20px 0;
  }
}

/* ===== 🔥 LAPTOP FIX (IMPORTANT) ===== */
@media (min-width: 992px) {

  .solution-card .row {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap;
  }

  /* LEFT TEXT */
  .solution-text {
    order: 1;
    flex: 0 0 58%;
    max-width: 58%;
  }

  /* RIGHT IMAGE */
  .solution-media {
    order: 2;
    flex: 0 0 42%;
    max-width: 42%;
  }

}

/* ===== MOBILE (UNCHANGED) ===== */
@media (max-width: 767.98px) {
  .solution-card {
    height: auto;
    min-height: auto;
  }

  .solution-card .row {
    flex-direction: column;
  }

  .solution-card .row > [class*="col-"] {
    display: block;
  }

  .solution-content {
    min-height: 220px;
  }

  .solution-media {
    height: 180px;
    min-height: 180px;
  }

  .solutions-section {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .solution-card img {
    height: 100%;
    border-radius: 0 0 20px 20px;
  }
}


/* SECTION */
.certificates-section {
  background:
    radial-gradient(1200px circle at 12% 10%, rgba(0, 120, 130, 0.16), transparent 60%),
    radial-gradient(900px circle at 88% 18%, rgba(25, 135, 84, 0.14), transparent 58%),
    linear-gradient(135deg, #ffffff 0%, #f4f7fb 45%, #eef6f3 100%);
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.certificates-carousel {
  padding: 0 28px;
  background: transparent;
}

.certificate-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  background: transparent;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.certificate-slider::-webkit-scrollbar {
  display: none;
}

.certificate-slide {
  /* 3 cards visible on laptop/desktop */
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* CARD */
.certificate-card {
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(11, 44, 77, 0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* IMAGE */
.card-img {
  position: relative;
}

.card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* BADGES */
.badge.level {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  padding: 5px 10px;
}

.badge.cert {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  color: #000;
  font-size: 11px;
}

/* LEVEL COLORS */
.advanced { background: #0d6efd; }
.beginner { background: #6f42c1; }
.intermediate { background: #198754; }

/* BODY */
.certificate-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.certificate-card .card-body h6 {
  font-weight: 600;
  min-height: 42px;
  line-height: 1.4;
}

.certificate-card .card-body p {
  font-size: 13px;
  color: #666;
  margin-bottom: 18px;
}

.certificate-card .card-body .d-flex {
  margin-top: auto;
}

.certificate-card .btn {
  border-radius: 12px;
  font-weight: 600;
}

/* BUTTON */
.btn-success {
   background: #2C4874;
  border: none;
}

/* SLIDER BUTTON */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 2;
  transition: 0.3s ease;
}

.slider-btn:hover {
  background: #2C4874;
  color: #fff;
  border-color: #2C4874;
}

.left-btn { left: -20px; }
.right-btn { right: -20px; }

/* MOBILE DOTS */
.cert-dots{
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.cert-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(11, 44, 77, 0.22);
  transition: width 0.2s ease, background 0.2s ease;
}

.cert-dot.active{
  width: 22px;
  background: #2C4874;
}

/* EXPLORE BUTTON */
.explore-btn {
  border: 1px solid #2C4874;
  color: #2C4874;
  padding: 10px 25px;
  border-radius: 8px;
}

.explore-btn:hover {
  background: #2C4874;
  color: #fff;
}

@media (max-width: 991px) {
  .certificates-carousel {
    padding: 0 22px;
  }

  .certificate-slider {
    gap: 18px;
  }

  .certificate-slide {
    flex: 0 0 calc(50% - 9px);
    min-width: calc(50% - 9px);
  }
}

@media (max-width: 767px) {
  .certificates-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .certificates-section h2 {
    font-size: 28px;
    margin-bottom: 32px !important;
  }

  .certificates-carousel {
    padding: 0;
  }

  .certificate-slider {
    gap: 16px;
    padding: 4px 8px 10px;
    scroll-padding-inline: 8px;
  }

  .certificate-slide {
    flex: 0 0 88%;
    min-width: 88%;
  }

  .certificate-card {
    border-radius: 18px;
  }

  .card-img img {
    height: 190px;
  }

  .certificate-card .card-body {
    padding: 16px;
  }

  .certificate-card .card-body h6 {
    min-height: auto;
    font-size: 17px;
  }

  .certificate-card .card-body p {
    margin-bottom: 16px;
  }

  .certificate-card .card-body .d-flex {
    flex-direction: column;
  }

  .certificate-card .card-body .d-flex .btn {
    width: 100% !important;
  }

  .slider-btn {
    display: none;
  }

  .cert-dots{
    display: flex;
  }

  .explore-btn {
    width: 100%;
    max-width: 320px;
  }
}



/* SECTION */
.about-section{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 161, 0, 0.18) 0, rgba(244, 161, 0, 0) 24%),
        radial-gradient(circle at 88% 78%, rgba(13, 43, 92, 0.14) 0, rgba(13, 43, 92, 0) 28%),
        linear-gradient(135deg, #edf8fb 0%, #f8fbff 42%, #eef3ff 100%);
}

.about-section::before,
.about-section::after{
    content:"";
    position:absolute;
    border-radius:50%;
    pointer-events:none;
}

.about-section::before{
    width:340px;
    height:340px;
    top:-150px;
    right:-110px;
    background:rgba(15, 92, 138, 0.10);
}

.about-section::after{
    width:280px;
    height:280px;
    left:-90px;
    bottom:-120px;
    background:rgba(244, 161, 0, 0.10);
}

.about-section .container{
    position:relative;
    z-index:1;
}

/* IMAGE */
.about-img{
    position:relative;
    padding:18px;
    border-radius:32px;
    background:linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,255,255,0.72));
    box-shadow:0 28px 60px rgba(11, 44, 77, 0.14);
}

.about-img::before{
    content:"";
    position:absolute;
    inset:-18px 42px 42px -18px;
    border-radius:36px;
    background:linear-gradient(135deg, rgba(244, 161, 0, 0.22), rgba(30, 77, 161, 0.10));
    z-index:-1;
}

.about-img img{
    width:100%;
    min-height:440px;
    border-radius:24px;
    object-fit:cover;
    display:block;
}

/* BADGE */
.exp-badge{
    position:absolute;
    bottom:-24px;
    right: -12px;
 background: #2C4874;
    color:#fff;
    width:120px;
    height:120px;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:0 18px 36px rgba(13, 43, 92, 0.28);
    border:5px solid #fff;
}

.exp-badge h3{
    margin:0;
    font-weight:bold;
    font-size:34px;
}

.exp-badge span{
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* TEXT */
.about-text{
    position:relative;
    padding:0;
}

.about-text::before{
    display:none;
}

.small-title{
    display:inline-flex;
    align-items:center;
    margin-bottom:16px;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(244, 161, 0, 0.12);
    color:#a86a00;
    font-weight:700;
    letter-spacing:1.6px;
    font-size:13px;
}

.main-title{
    font-size:42px;
    font-weight:700;
    line-height:1.2;
    margin:0 0 18px;
    color:#0b2c4d;
}

.about-text p{
    color:#54606b;
    line-height:1.8;
    margin-bottom:16px;
}

.about-text p:last-of-type{
    margin-bottom:0;
}

.about-text strong{
    color:#0b2c4d;
}

/* BUTTON */
.call-btn{
    margin-top:26px;
    background:#2C4874;
    color:#fff;
    padding:12px 30px;
    border-radius:30px;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    box-shadow:0 14px 26px rgba(30, 77, 161, 0.25);
    transition:0.3s ease;
}

.call-btn:hover{
    background:linear-gradient(135deg, #0d2b5c 0%, #14407d 100%);
    color:#fff;
    transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:768px){
    .about-section{
        padding:70px 0;
    }

    .about-img{
        padding:14px;
        border-radius:24px;
    }

    .about-img::before{
        inset:-10px 24px 24px -10px;
        border-radius:28px;
    }

    .about-img img{
        min-height:320px;
        border-radius:18px;
    }

    .about-text{
        padding:0;
    }

    .main-title{
        font-size:28px;
    }

    .exp-badge{
        width:90px;
        height:90px;
        font-size:12px;
        bottom:-18px;
    }

    .exp-badge h3{
        font-size:24px;
    }
}


/* CTA SECTION */
.cta-section{
    background: #2C4874;
    padding:50px 0;
    color:#fff;
    border-radius:0px,0px,15px,15px;

}

/* TEXT */
.cta-text h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.cta-text p{
    margin:0;
    opacity:0.9;
}

/* BUTTON */
.cta-btn{
    background:#fff;
    color:black;
    padding:12px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:0.3s;
}

.cta-btn:hover{
    background:#f4a100;
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:768px){
    .cta-text h2{
        font-size:24px;
    }
}




.appointment-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background:
    radial-gradient(circle at top left, rgba(98, 92, 243, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(23, 185, 164, 0.12), transparent 24%),
    linear-gradient(180deg, #f7f8fd 0%, #f2f5ff 48%, #fafcff 100%);
}

.appointment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(98, 92, 243, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 92, 243, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.appointment-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.appointment-shape-one {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -70px;
  background: rgba(98, 92, 243, 0.13);
}

.appointment-shape-two {
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -70px;
  background: rgba(23, 185, 164, 0.13);
}

.appointment-shell {
  position: relative;
  z-index: 1;
}

.appointment-left-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.working-card,
.clinic-map-card,
.appointment-right-panel,
.form-card {
  border-radius: 26px;
  border: 1px solid rgba(17, 22, 77, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 60px rgba(17, 22, 77, 0.08);
  backdrop-filter: blur(10px);
}

.working-card {
  padding: 24px;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(98, 92, 243, 0.1);
  color: linear-gradient(rgba(0, 120, 130, 0.9), rgba(0, 120, 130, 0.9));;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.section-chip-map {
  background: rgba(136, 182, 235, 0.11);
  color: linear-gradient(rgba(0, 120, 130, 0.9), rgba(0, 120, 130, 0.9));;
}

.working-card h4 {
  margin: 0 0 8px;
  color: #11164d;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 800;
}

.clinic-intro {
  margin: 0 0 18px;
  color: #66708f;
  font-size: 14px;
  line-height: 1.7;
}

.clinic-detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clinic-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: #f8faff;
  border: 1px solid rgba(17, 22, 77, 0.06);
}

.clinic-detail-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #625cf3 0%, #7b75ff 100%);
  color: #ffffff;
  font-size: 15px;
}

.clinic-detail-content {
  min-width: 0;
}

.clinic-detail-content span {
  display: block;
  margin-bottom: 3px;
  color: #6b7595;
  font-size: 12px;
  font-weight: 600;
}

.clinic-detail-content strong,
.clinic-detail-content strong a {
  color: #11164d;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  word-break: break-word;
}

.clinic-map-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.map-card-head {
  padding: 6px 6px 14px;
}

.map-card-head h5 {
  margin: 0;
  color: #11164d;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.clinic-map-frame {
  flex: 1;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: #e9eefb;
}

.appointment-right-panel {
  width: 100%;
  height: 100%;
  padding: 28px;
}

.appointment-content-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.app-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(151, 177, 243, 0.11);
  color: #625cf3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.app-title {
  margin: 0 0 12px;
  max-width: 620px;
  color: #11164d;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.4px;
}

.app-text {
  margin: 0 0 18px;
  max-width: 590px;
  color: #66708f;
  font-size: 15px;
  line-height: 1.75;
}

.appointment-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.appointment-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f5f8ff;
  border: 1px solid rgba(17, 22, 77, 0.06);
  color: #37405f;
  font-size: 13px;
  font-weight: 700;
}

.appointment-point i {
  color: #625cf3;
}

.form-card {
  flex: 1;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
}

.appointment-field label {
  display: block;
  margin-bottom: 8px;
  color: #11164d;
  font-size: 13px;
  font-weight: 700;
}

.appointment-input,
.appointment-textarea {
  border: 1px solid #e5eaf7;
  border-radius: 14px;
  background: #f9fbff;
  color: #11164d;
  font-size: 14px;
  box-shadow: none;
}

.appointment-input {
  height: 52px;
}

.appointment-textarea {
  padding: 14px 16px;
  resize: none;
}

.appointment-input:focus,
.appointment-textarea:focus {
  border-color: #625cf3;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(98, 92, 243, 0.08);
}

.form-card select.appointment-input {
  appearance: none;
}

.btn-book {
  min-width: 200px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #625cf3 0%, #7a75ff 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(98, 92, 243, 0.24);
  transition: 0.3s ease;
}

.btn-book:hover {
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .app-title {
    font-size: 36px;
  }

  .working-card h4 {
    font-size: 23px;
  }
}

@media (max-width: 991px) {
  .appointment-section {
    padding: 68px 0;
  }

  .appointment-right-panel {
    padding: 24px;
  }

  .app-title {
    font-size: 32px;
  }

  .clinic-map-frame {
    min-height: 240px;
  }
}

@media (max-width: 767px) {
  .working-card,
  .clinic-map-card,
  .appointment-right-panel,
  .form-card {
    border-radius: 20px;
  }

  .working-card,
  .appointment-right-panel,
  .form-card {
    padding: 18px;
  }

  .app-title {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .app-text {
    font-size: 14px;
  }

  .clinic-detail-row {
    padding: 12px;
  }

  .appointment-points {
    flex-direction: column;
  }

  .appointment-point {
    width: 100%;
  }

  .btn-book {
    width: 100%;
  }
}

/* EYESKILL APPOINTMENT THEME OVERRIDES */
.appointment-section {
  background:
    radial-gradient(circle at 10% 16%, rgba(244, 161, 0, 0.14) 0, rgba(244, 161, 0, 0) 24%),
    radial-gradient(circle at 90% 84%, rgba(15, 92, 138, 0.12) 0, rgba(15, 92, 138, 0) 24%),
    linear-gradient(135deg, #edf8fb 0%, #f8fbff 50%, #fefaf1 100%);
}

.appointment-section::before {
  background-image:
    linear-gradient(rgba(15, 92, 138, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 92, 138, 0.03) 1px, transparent 1px);
}

.appointment-shape-one {
  background: rgba(15, 92, 138, 0.11);
}

.appointment-shape-two {
  background: rgba(244, 161, 0, 0.12);
}

.appointment-shell {
  padding: 18px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 28px 70px rgba(11, 44, 77, 0.08);
}

.working-card,
.clinic-map-card,
.appointment-right-panel,
.form-card {
  border-color: rgba(18, 49, 87, 0.06);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(11, 44, 77, 0.12);
}

.working-card,
.clinic-map-card,
.appointment-right-panel {
  position: relative;
  overflow: hidden;
}

.working-card::before,
.clinic-map-card::before,
.appointment-right-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #f4a100 0%, #0f5c8a 100%);
}

.section-chip {
  background: rgba(244, 161, 0, 0.12);
  color: #a86a00;
}

.section-chip-map,
.app-tag {
  background: rgba(30, 77, 161, 0.10);
  color: #1e4da1;
}

.working-card h4,
.map-card-head h5,
.app-title,
.appointment-field label {
  color: #0b2c4d;
}

.clinic-intro,
.app-text,
.clinic-detail-content span {
  color: #667788;
}

.clinic-detail-row,
.appointment-point {
  background: #f8fbff;
  border-color: #dde7f1;
}

.clinic-detail-icon {
  background: linear-gradient(135deg, #1e4da1 0%, #0f5c8a 100%);
  box-shadow: 0 12px 24px rgba(30, 77, 161, 0.20);
}

.clinic-detail-content strong,
.clinic-detail-content strong a {
  color: #0b2c4d;
}

.appointment-point i {
  color: #1e4da1;
}

.appointment-input,
.appointment-textarea {
  border-color: #d8e2ef;
  background: #f9fbff;
  color: #0b2c4d;
}

.appointment-input:focus,
.appointment-textarea:focus {
  border-color: #1e4da1;
  box-shadow: 0 0 0 4px rgba(30, 77, 161, 0.10);
}

.btn-book {
  background: linear-gradient(135deg, #1e4da1 0%, #0f5c8a 100%);
  box-shadow: 0 18px 35px rgba(30, 77, 161, 0.24);
}

.btn-book:hover {
  background: linear-gradient(135deg, #0d2b5c 0%, #14407d 100%);
}

@media (max-width: 991px) {
  .appointment-shell {
    padding: 16px;
    border-radius: 28px;
  }
}

@media (max-width: 767px) {
  .appointment-shell {
    padding: 14px;
    border-radius: 24px;
  }
}



/* FOOTER */
.footer-section{
    background: #2C4874;
    color:#fff;
    padding:60px 0 20px;
}

/* BOX */
.footer-box h4,
.footer-box h5{
    font-weight:600;
    margin-bottom:15px;
}

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

/* Footer contact lines (icons + links inside <p>) */.exp-badge  .footer-box p {
  color: #fff;
}
.exp-badge  .footer-box p i {
  color: #fff;
}
.exp-badge  .footer-box p a,.exp-badge  .footer-box p a:visited {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.exp-badge  .footer-box p a:hover,
.footer-section .footer-box p a:focus {
  color: #f4a100;
  text-decoration: underline;
}

/* Footer contact layout (icon + multiline text) */
.footer-section .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-section .footer-contact-item i {
  flex: 0 0 18px;
  width: 18px;
  margin-top: 3px;
  color: #fff;
}

.footer-section .footer-contact-text {
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
}

.footer-section .footer-contact-item a,
.footer-section .footer-contact-item a:visited {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.7;
}

.footer-section .footer-contact-item a:hover,
.footer-section .footer-contact-item a:focus {
  color: #f4a100;
  text-decoration: underline;
}

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

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

.footer-box ul li a{
    color:#ddd;
    text-decoration:none;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#fff;
    padding-left:5px;
}
.footer-contact p {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 15px;
}

.footer-contact p i {
  margin-right: 8px;
  color: #ffffff;
}

.footer-contact p a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Hover Effect */
.footer-contact p a:hover {
  color: #0d6efd; /* Bootstrap primary blue */
  text-decoration: underline;
}

/* SOCIAL */
.footer-social a{
    display:inline-block;
    margin-right:10px;
    background:#fff;
    color:#1e4da1;
    width:35px;
    height:35px;
    text-align:center;
    line-height:35px;
    border-radius:50%;
    transition:0.3s;
}

.footer-social a:hover{
    background:#f4a100;
    color:#fff;
}

/* CONTACT ICON */
.footer-box i{
    margin-right:8px;
}

/* BOTTOM */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    margin-top:30px;
    padding-top:15px;
    text-align:center;
    font-size:14px;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

/* BLOG SECTION */
.blog-section{
    position:relative;
    overflow:hidden;
    padding:50px 0;
    background:
        radial-gradient(circle at 10% 18%, rgba(244, 161, 0, 0.14) 0, rgba(244, 161, 0, 0) 24%),
        radial-gradient(circle at 92% 84%, rgba(15, 92, 138, 0.10) 0, rgba(15, 92, 138, 0) 24%),
        linear-gradient(135deg, #eff9fb 0%, #f8fbff 48%, #fef9f1 100%);
}

.blog-section::before,
.blog-section::after{
    content:"";
    position:absolute;
    border-radius:50%;
    pointer-events:none;
}

.blog-section::before{
    width:320px;
    height:320px;
    top:-150px;
    right:-110px;
    background:rgba(30, 77, 161, 0.08);
}

/* ===== SKILL PROGRAMS (Cards) ===== */
.skill-programs {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 161, 0, 0.12) 0, rgba(244, 161, 0, 0) 30%),
    radial-gradient(circle at 88% 78%, rgba(0, 120, 130, 0.14) 0, rgba(0, 120, 130, 0) 32%),
    linear-gradient(135deg, #f6fbfc 0%, #ffffff 40%, #f7f9ff 100%);
}

.skill-programs h2 {
  letter-spacing: 0.2px;
}

.skill-programs .program-card {
  height: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 44, 77, 0.08);
  box-shadow: 0 14px 45px rgba(11, 44, 77, 0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.skill-programs .program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 120, 130, 0.28);
  box-shadow: 0 22px 70px rgba(11, 44, 77, 0.16);
}

.skill-programs .program-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.skill-programs .program-card:hover .program-img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.03);
}

.skill-programs .program-card .p-4 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skill-programs .program-card h5 {
  margin: 0;
  color: #0b2c4d;
}

.skill-programs .program-card p {
  margin: 0;
}

.skill-programs .program-card .small.mb-3 {
  margin-top: 2px;
  display: grid;
  gap: 8px;
  color: rgba(11, 44, 77, 0.80);
}

.skill-programs .program-card .small.mb-3 > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.skill-programs .program-card .small.mb-3 i {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: #2C4874;
  background: rgba(0, 120, 130, 0.12);
}

.skill-programs .program-card .btn.btn-primary {
  margin-top: auto;
  border: 0;
  padding: 8px 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #2C4874 0%, #0b2c4d 100%);
  box-shadow: 0 10px 26px rgba(0, 120, 130, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.skill-programs .program-card .btn.btn-primary:hover,
.skill-programs .program-card .btn.btn-primary:focus {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 16px 40px rgba(0, 120, 130, 0.28);
}

@media (max-width: 575.98px) {
  .skill-programs .program-img {
    height: 190px;
  }
  .skill-programs .program-card {
    border-radius: 16px;
  }
}

.blog-section::after{
    width:240px;
    height:240px;
    left:-80px;
    bottom:-90px;
    background:rgba(244, 161, 0, 0.10);
}

.blog-section .container{
    position:relative;
    z-index:1;
}

.blog-heading{
    max-width:760px;
}

.blog-section .small-title{
    display:inline-flex;
    align-items:center;
    margin-bottom:16px;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(244, 161, 0, 0.12);
    color:#a86a00;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
}

.blog-section .main-title{
    margin:0 0 16px;
    color:#0b2c4d;
    font-size:42px;
    line-height:1.15;
}

.blog-intro{
    margin:0 auto;
    max-width:700px;
    color:#667788;
    font-size:16px;
    line-height:1.8;
}

.blog-section .row > [class*="col-"]{
    display:flex;
}

/* CARD */
.blog-card{
    position:relative;
    width:100%;
    display:flex;
    flex-direction:column;
    background:rgba(255,255,255,0.92);
    border-radius:28px;
    overflow:hidden;
    border:1px solid rgba(18, 49, 87, 0.06);
    box-shadow:0 24px 60px rgba(11, 44, 77, 0.10);
    transition:transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:6px;
    background:linear-gradient(90deg, #f4a100 0%, #0f5c8a 100%);
    z-index:2;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 70px rgba(11, 44, 77, 0.14);
}

/* IMAGE */
.blog-img{
    position:relative;
    overflow:hidden;
}

.blog-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(11, 44, 77, 0) 35%, rgba(11, 44, 77, 0.10) 100%);
}

.blog-img img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
    transition:transform 0.6s ease;
}

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

/* CONTENT */
.blog-content{
    padding:24px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.blog-date{
    display:inline-flex;
    align-items:center;
    gap:8px;
    width:fit-content;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(244, 161, 0, 0.12);
    color:#a86a00;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.blog-date::before{
    content:"";
    width:7px;
    height:7px;
    border-radius:50%;
    background:currentColor;
}

.blog-content h4{
    margin:16px 0 14px;
    color:#0b2c4d;
    font-size:22px;
    font-weight:700;
    line-height:1.35;
}

.blog-content p{
    margin:0 0 22px;
    color:#5c6975;
    font-size:15px;
    line-height:1.8;
}

/* BUTTON */
.read-btn{
    margin-top:auto;
    width:fit-content;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:999px;
    border:1px solid #dbe5f0;
    background:#f8fbff;
    color:#1e4da1;
    text-decoration:none;
    font-size:0;
    font-weight:700;
    transition:background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.read-btn::before{
    content:"Read More";
    font-size:14px;
    line-height:1;
}

.read-btn::after{
    content:"";
    width:8px;
    height:8px;
    border-top:2px solid currentColor;
    border-right:2px solid currentColor;
    transform:rotate(45deg);
    transition:transform 0.3s ease;
}

.read-btn:hover{
    background:#1e4da1;
    border-color:#1e4da1;
    color:#fff;
    transform:translateY(-2px);
}

.read-btn:hover::after{
    transform:translateX(3px) rotate(45deg);
}

/* RESPONSIVE */
@media(max-width:991px){
    .blog-section{
        padding:75px 0;
    }

    .blog-section .main-title{
        font-size:34px;
    }

    .blog-content h4{
        font-size:20px;
    }
}

@media(max-width:768px){
    .blog-section{
        padding:65px 0;
    }

    .blog-heading{
        margin-bottom:36px !important;
    }

    .blog-section .main-title{
        font-size:28px;
    }

    .blog-intro{
        font-size:15px;
    }

    .blog-card{
        border-radius:22px;
    }

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

    .blog-content{
        padding:20px;
    }

    .blog-content h4{
        font-size:16px;
        margin-bottom:12px;
    }

    .blog-content p{
        font-size:14px;
        margin-bottom:18px;
    }
}



/* FAQ SECTION NORMAL */
.faq-section {
  padding: 30px 0;
}

/* Default Button */
.accordion-button {
  background: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 10px !important;
}

/* CLICK / ACTIVE STATE */
.accordion-button:not(.collapsed) {
  background:#2C4874;
  color: #fff;
}

/* Body also colored when open */
/* .accordion-collapse.show .accordion-body {
  background: rgba(0,120,130,0.08);
  color: #333;
} */

/* Clean UI */
.accordion-item {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}

/* Remove focus */
.accordion-button:focus {
  box-shadow: none;
}



.partners-section {
  background: linear-gradient(90deg, #000000, #2a1a00);
  color: #fff;
}

.partners-title {
  color: white;
  font-weight: 700;
  font-size: 32px;
}

.partner-box {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.partner-box img {
  max-height: 60px;
  width: 100%;
  object-fit: contain;
  
}

.partner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 180, 0, 0.3);
}

/* Highlighted Box (jaise Autodesk) */
.partner-box.active {
  box-shadow: 0 0 15px rgba(255, 180, 0, 0.8);
  border: 2px solid #ffb400;
}
