/*
Theme Name: PO2POD
Theme URI: https://myhub.plus
Description: WP Website
Version: 1.0
Author: Your PO2POD
Author URI: https://myhub.plus/
*/


/* ! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com */


:root {
  --primary: #18469a;
  --primary-gradient: linear-gradient(135deg, #191b49 0%, #1f91ce 100%);
  --accent: #1f91ce;
  --accent-soft: #e0f2fe;
  --text-main: #191b49;
  --text-soft: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Geologica', sans-serif;
}

body {
  background-color: #ffffff;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  letter-spacing: -0.5px;
}

.bg-wave{
background-image:
          linear-gradient(165deg, rgb(214 222 229 / 41%) 0%, rgb(241 245 249) 30%, rgb(235 240 245 / 82%) 30%, rgb(241 245 249 / 78%) 40%, rgb(241 245 249 / 37%) 40%, rgb(241 245 249 / 11%) 70%, rgba(241, 245, 249, 0.7) 70%, rgba(241, 245, 249, 0.7) 80%, rgb(241 245 249) 80%) !important;
}




body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(24, 70, 154, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(100, 147, 231, 0.03) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
}


.colorgradient {
background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* --- Components --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
}

.btn-primary:hover {
  background: #191b49;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  border: 1.5px solid #e2e8f0;
  background: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--bg-light);
  border-color: var(--primary);
}

section {
  padding: 50px 0;
}

.section-tag {
  display: inline-block;
  background: rgba(24, 70, 154, 0.08);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 2rem !important;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;

}

/* --- Header --- */
header {
  position: fixed;
  top: 25px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-content {
  background: white;
  border-radius: 9999px;
  padding: 0 1rem 0 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

header.scrolled {
  top: 10px;
}

header.scrolled .header-content {
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  position: absolute;
  left: 53%;
  transform: translateX(-50%);
}

.nav-links a {
  text-decoration: none;
  color: #191b49;
  font-weight: 600;
  font-size: 0.938rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  letter-spacing: -0.5px;
}

.nav-links a i {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Submenu Styles */
.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.submenu li {
  width: 100%;
}

.submenu li a {
  padding: 0.75rem 1.5rem;
  display: block;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
}

.submenu li a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-get-touch {
  background: #191b49;
  color: white;
  padding: 0.5rem 0.5rem 0.5rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-get-touch .icon-circle {
  width: 32px;
  height: 32px;
  background: white;
  color: #191b49;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-get-touch:hover {
  background: var(--primary);
  transform: translateY(-2px);
}


@media (max-width: 768px) {
.footer-cta .btn-get-touch{
	display: block;
}	
}

.header-menu-toggle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: #191b49;
}

.header-menu-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* --- Hero --- */
.hero {
  padding-top: 180px;
  padding-bottom: 60px;
  background: #ffffff url('images/hero-bg.jpg') no-repeat right bottom;

  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* --- Page Header (Internal Pages) --- */
.page-header {
  padding-top: 180px;
  padding-bottom: 80px;
  background: linear-gradient(rgba(25, 27, 73, 0.5), rgb(5 6 38 / 88%)), url(images/header-subpage.jpg) center / cover no-repeat;
  color: white;
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.8;
  max-width: 900px;
  margin: 0 auto;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;

}

.hero-content p {
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-image-container {
  position: relative;
  z-index: 1;
}

.badge-circular {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 2;
  animation: rotate 20s linear infinite;
}

.badge-circular i {
  width: 50px;
  height: 50px;
  color: #191b49;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-main-img {
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 6s ease-in-out infinite;
}

.floating-1 {
  top: 20%;
  left: -10%;
}

.floating-2 {
  bottom: 10%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* --- About --- */

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-img {
  width: 100%;
  border-radius: 1.5rem;
  object-fit: cover;
}

.img-tall {
  grid-row: span 2;
  height: 100%;
}

.exp-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem 3rem;
  border-radius: 7rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.exp-badge p {
  font-size: 1rem;
  color: #303030;
  line-height: 1.2rem;
}

.exp-badge h3 {
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 4.5rem;
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  padding: 10px;
}

.about-img-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 80%;
  background: #191b49;
  border-radius: 2rem;
  z-index: 1;
}

.about-main-img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-meta-icons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-soft);
  font-weight: 500;
}

.meta-item i {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.btn-primary-alt {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: #ffcc00;
  color: #191b49;
  padding: 0.6rem 0.6rem 0.6rem 2rem;
  border-radius: 9999px;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
}

.btn-primary-alt:hover {
  background: #ffdb4d;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 204, 0, 0.3);
}

.btn-icon-round {
  width: 40px;
  height: 40px;
  background: #191b49;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .about-image-wrapper {
    margin-bottom: 2rem;
  }

  .about-meta-icons {
    justify-content: center;
  }

  .about-cta-box {
    display: flex;
    justify-content: center;
  }
}

/* --- Solutions (Horizontal Accordion) --- */
.solutions {
  background: #191b49;
  /* Slightly different dark from the image */
  color: white;
  border-radius: 4rem;
  margin: 2rem;
  padding: 80px 0;
}

.solutions .section-title {
  color: white;
  font-size: 2.5rem;
}

.solutions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.services-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.accordion-container {
  display: flex;
  gap: 0.6rem;
  height: 350px;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  border-radius: 2rem;
}

.accordion-item {
  flex: 0 0 62px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1.25rem;
  padding: 1.25rem 0.75rem;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-item.active {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  align-items: flex-start;
  cursor: default;
}

.accordion-icon-box {
  width: 44px;
  height: 44px;
  background: #191b49;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-icon-box i {
  width: 20px;
  height: 20px;
}

.accordion-item.active .accordion-icon-box {
  background: #191b49;
}

.accordion-content {
  opacity: 0;
  transition: opacity 0.4s ease;
  width: 100%;
  display: none;
}

.accordion-item.active .accordion-content {
  opacity: 1;
  display: block;
}

.accordion-item.active .accordion-title {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.accordion-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  margin-top: auto;
  margin-bottom: auto;
  transition: all 0.4s ease;
}

.accordion-footer {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plus-btn {
  width: 35px;
  height: 35px;
  border-radius: 60%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.accordion-item:hover .plus-btn {
  border-color: var(--accent);
  color: var(--accent);
}

.view-details-btn {
  display: none;
  padding: 0.6rem 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  align-items: center;
  gap: 0.5rem;
}

.accordion-item.active .view-details-btn {
  display: inline-flex;
}

.accordion-item.active .plus-btn {
  display: none;
}

/* --- Works --- */
.works-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.works-slider-wrap {
  overflow: hidden;
  border-radius: 10px;
}

.works-grid {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card {
  flex: 0 0 calc(50% - 1rem);
   position: relative;
        cursor: pointer;
        flex-shrink: 0;
}

 /* --- Laptop Mockup Styles --- */
    .laptop-mockup {
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: var(--transition);
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .laptop-top-bar {
        background: #f1f5f9;
        height: 32px;
        display: flex;
        align-items: center;
        padding: 0 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
    }

    .laptop-dots {
        display: flex;
        gap: 6px;
    }

    .laptop-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    .dot-red { background: #ff5f56; }
    .dot-yellow { background: #ffbd2e; }
    .dot-green { background: #27c93f; }

    .laptop-content {
        flex: 1;
        overflow: hidden;
        position: relative;
        height: 280px; /* Fixed height for consistency */
    }

    .laptop-content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .work-card:hover .laptop-content img {
        transform: scale(1.05);
    }

    .work-card:hover .laptop-mockup {
        transform: translateY(-8px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    }
	

.work-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 265px;
  cursor: pointer;
  flex-shrink: 0;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.work-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.work-card:hover .work-overlay {
  opacity: 1;
  transform: translateY(0);
}

.work-card:hover img {
  transform: scale(1.05);
}


/* --- Testimonials --- */
.testimonials {
  background: #f8fafc;
  padding: 50px 0;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.testimonial-nav-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: #191b49;
}

.testimonial-nav-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(24, 70, 154, 0.1);
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex: 1;
  background: white;
  border-radius: 2.5rem;
  padding: 3rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  min-height: 300px;
  transition: all 0.5s ease;
}

.testimonial-image-wrap {
  position: relative;
  flex-shrink: 0;
  width: 240px;
  height: 240px;
}

.testimonial-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}

.testimonial-quote-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 64px;
  height: 64px;
  background: var(--primary-gradient);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(24, 70, 154, 0.3);
}

.testimonial-body {
  flex: 1;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars i {
  color: #f59e0b;
  width: 18px;
  height: 18px;
  fill: #f59e0b;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}

.testimonial-author h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  font-size: 0.875rem;
  color: var(--text-soft);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 99px;
}

/* --- New Testimonials Section --- */
.testimonials-new {
  position: relative;
  padding: 50px 0;
  background: #191b49;
  color: white;
  overflow: hidden;
}

.tn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/hero-business-meeting.jpg') center/cover no-repeat;
  opacity: 0.2;
  mix-blend-mode: overlay;
  z-index: 1;
}

.tn-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tn-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 3rem;
  max-width: 600px;
}

.tn-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.tn-nav-num {
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.tn-nav-num.active {
  color: var(--accent);
}

.tn-nav-bar {
  width: 80px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  margin: 0 0.5rem;
  border-radius: 3px;
  overflow: hidden;
}

.tn-nav-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: var(--accent);
  border-radius: 3px;
  transition: var(--transition);
}

.tn-cards {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.tn-card {
  background: white;
  color: var(--text-main);
  border-radius: 0.5rem;
  padding: 2.5rem;
  padding-bottom: 0;
  width: 100%;
  max-width: 420px;
  position: absolute;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
}

.tn-quote-mark {
  font-family: serif;
  font-size: 4rem;
  color: var(--accent);
  font-weight: 800;
  line-height: 0.8;
  margin-bottom: 0.5rem;
}

.tn-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tn-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.tn-rating i {
  width: 16px;
  height: 16px;
  color: var(--accent);
  fill: var(--accent);
  stroke: none;
}

.tn-rating span {
  font-size: 0.875rem;
  color: var(--text-soft);
  margin-left: 0.5rem;
  font-weight: 600;
}

.tn-footer {
  background: #191b49;
  color: white;
  margin: 0 -2.5rem;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tn-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.tn-author-info {
  display: flex;
  flex-direction: column;
}

.tn-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
}

.tn-name {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

/* Stack Positioning */
.tn-card-1 {
  transform: translateX(-50px) rotate(-6deg) scale(0.9);
  z-index: 1;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.tn-card-2 {
  transform: translateX(50px) rotate(6deg) scale(0.9);
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.tn-card-3 {
  transform: translateX(0) rotate(0) scale(1);
  z-index: 3;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .tn-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tn-nav {
    justify-content: center;
    margin-bottom: 0rem;
  }

  .tn-title {
    margin: 0 auto 2rem;
  }

  .tn-cards {
    height: 450px;
  }
}


/* --- Features Cards --- */
.features-section {
  padding: 50px 0;

}

.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.features-header-left .section-tag {
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.features-header-left h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
      background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  
}

.features-header-right p {
  font-size: 1rem;
  line-height: 1.8;
}

/* Row layout: 3 cols, center card elevated */
.features-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 2rem;
}

/* ---- Plain card ---- */
.fcard {
  background: white;
  border-radius: 1.75rem;
  border: 1px solid #eaeff5;
  padding: 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}

.fcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(24, 70, 154, 0.08);
}

.fcard-text {
  flex: 1;
}

.fcard-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #dde3ed;
  line-height: 1;
  margin: 1rem 0 1.5rem;
}

.fcard-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.fcard-desc {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* The bottom image + dashed ring section */
.fcard-visual {
  position: relative;
  margin-top: 1.5rem;
  overflow: visible;
}

.fcard-visual img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Dashed circle ring around icon */
.fcard-ring {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px dashed rgba(24, 70, 154, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.fcard-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.fcard-icon i {
  width: 18px;
  height: 18px;
}

/* ---- Featured card (center) ---- */
.fcard-featured {
  background: white;
  border-radius: 1.75rem;
  border: 1px solid #eaeff5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  margin-top: -1.5rem;
  /* elevate above siblings */
}

.fcard-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(24, 70, 154, 0.12);
}

.fcard-featured-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.fcard-featured-bridge {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -28px;
  margin-bottom: 1rem;
  z-index: 2;
}

.fcard-featured-bridge .fcard-ring {
  position: static;
  transform: none;
}

.fcard-featured-body {
  padding: 0 2rem 2rem;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  padding: 3rem;
  border-radius: 2.5rem;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.pricing-card.featured {
  background: var(--primary-gradient);
  color: white;
  transform: scale(1.05);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 1.5rem 0;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
}

.pricing-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* --- FAQ --- */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  color: var(--text-soft);
}

.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 200px;
}

/* --- Footer CTA Banner --- */
.footer-cta {
  position: relative;
  margin-bottom: -60px;
  z-index: 10;
}

.cta-box {
  background: var(--primary-gradient);
  border-radius: 1rem;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(25, 27, 73, 0.3);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero_business_meeting.png') center/cover no-repeat;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 85%;
}

.cta-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: white;
}

.cta-content p {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.6;
}

.cta-action {
  position: relative;
  z-index: 2;
}

.btn-cta-circle a {
font-size: 25px;	
}
.btn-cta-circle {
  width: 80px;
  height: 80px;
  background: white;
  color: var(--text-main);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  font-size: 1.5rem;
  text-align: center;
}

.btn-cta-circle:hover {
  transform: scale(1.1) rotate(5deg);
  background: #191b49;
  color: white;
}

/* --- Blog Section --- */
.blog-section {
  padding: 50px 0;
  background: #ffffff;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.blog-header-left {
  max-width: 800px;
}

.blog-header-left .section-tag {
  display: inline-block;
  background: rgba(24, 70, 154, 0.08);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.blog-header-left h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.blog-btn {
  background: #fcd34d;
  color: #064e3b;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.blog-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-btn i {
  background: #064e3b;
  color: white;
  padding: 0.2rem;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: #f9fafb;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.875rem;
  color: #64748b;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-meta-item i {
  color: #fcd34d;
  width: 16px;
  height: 16px;
}

.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-date {
  position: absolute;
  bottom: -15px;
  right: 1.5rem;
  background: white;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 60px;
}

.blog-date-d {
  font-size: 1.5rem;
  font-weight: 800;
  color: #191b49;
  padding: 0.5rem;
  background: white;
}

.blog-date-m {
  background: #191b49;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem;
}

.blog-content {
  padding: 2rem 1.5rem 1.5rem;
}

.blog-cat {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-cat::after {
  content: '';
  width: 30px;
  height: 1px;
  background: #cbd5e1;
  display: inline-block;
}

.blog-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.blog-title a {
    color: var(--text-main);
	text-decoration: none;
}

.blog-cat a{
	font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
	text-decoration: none;
}

.blog-read {
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.blog-read:hover {
  color: var(--primary);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}



/* Pagination */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .page-num {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--text-main);
        font-weight: 700;
        background: #f1f5f9;
        transition: var(--transition);
    }

    .page-num.active {
        background: #111111;
        color: white;
    }

    .page-num:hover:not(.active) {
        background: #e2e8f0;
    }

    .page-next {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f1f5f9;
        color: var(--text-main);
        text-decoration: none;
        transition: var(--transition);
    }

    .page-next:hover {
        background: #e2e8f0;
    }
	
	

/* --- Footer --- */
footer {
  background: #0d121d;
  padding: 140px 0 15px;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Subtle background line illustration */
footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: url('data:image/svg+xml;utf8,<svg width="400" height="400" viewBox="0 0 400 400" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M50 350 Q 150 250 250 350 T 350 250" stroke="rgba(255,255,255,0.03)" stroke-width="2" fill="none"/></svg>') no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-logo img {
  height: 45px;
  width: auto;
  margin-bottom: 0rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.838rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
      background: var(--primary-gradient);
}

.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* --- Social Icons Standardized Sizing --- */
.social-icon i, .social-icon-light i {
    width: 18px !important;
    height: 18px !important;
    display: block;
}

.social-icon-light {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon-light:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  font-size: 0.838rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  font-size: 0.838rem;
}

.newsletter-form {
  position: relative;
  margin-top: 1.5rem;
}

.newsletter-form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 4rem 1rem 1.5rem;
  border-radius: 9999px;
  color: white;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 42px;
  height: 42px;
  background: white;
  color: var(--text-main);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.738rem;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 2;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

@media (max-width: 1024px) {

  .hero-grid,
  .about-grid,
  .solutions-grid,
  .works-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {

  .hero-grid,
  .about-grid,
  .solutions-grid,
  .works-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 2rem;
    right: 2rem;
    width: auto;
    transform: none;
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    gap: 1.5rem;
    z-index: 1001;
  }

  .header-content {
    padding: 0 1rem;
  }

  .btn-get-touch {
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block !important;
    cursor: pointer;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }
}

/* --- Contact Page Styles --- */
.contact-section {
  padding: 50px 0 100px;
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2em;
  align-items: start;
}

.contact-info .section-tag {
  margin-bottom: 2rem;
}


.contact-info .section-desc {
  color: var(--text-soft);
  margin-bottom: 3rem;
  max-width: 500px;
  font-size: 0.95rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: #191b49;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-method:hover .contact-icon {
  background: var(--accent);
  transform: scale(1.1);
}

.contact-icon i {
  width: 24px;
  height: 24px;
}

.contact-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.contact-text p {
  color: var(--text-soft);
  line-height: 1.6;
}

/* Contact Form Card */
.contact-form-card {
  background: linear-gradient(135deg, #efeaff 0%, #f4f6ff 100%);
  border-radius: 2.5rem;
  padding: 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.form-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;

  color: var(--text-main);
}

.form-subtitle {
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  background: white;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9fa6b2;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.btn-submit-message {
  background: #191b49;
  color: white;
  padding: 0.5rem 0.5rem 0.5rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: fit-content;
  margin-top: 1rem;

}

.btn-icon-circle {
  width: 45px;
  height: 45px;
  background: white;
  color: #191b49;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-submit-message:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(24, 70, 154, 0.2);
}

.btn-submit-message:hover .btn-icon-circle {
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-info .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-title {
    font-size: 2rem;
  }

  .contact-info .section-title {
    font-size: 2.5rem;
  }
}


/* --- Features Grid Styles --- */
.features-grid-section {
  padding: 50px 0 100px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 50px;
}

.feature-card {
  background: white;
  border: 1px solid #dee0e3;
  border-radius: 1.5rem;
  padding: 4rem 2.5rem 2.5rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #18469a 0%, #1f91ce 100%) border-box;
  border: 2px solid transparent;
}

.feature-card:hover .card-icon-box {
  background: linear-gradient(135deg, #18469a 0%, #1f91ce 100%);
  color: white;
}

.feature-card:hover .card-icon-box i {
  color: white;
}

.feature-card .card-icon-box {
  position: absolute;
  top: -30px;
  left: 2.5rem;
  width: 70px;
  height: 70px;
  background: #f8fafc;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  border: 1px solid #dee0e3;
}

.feature-card .card-icon-box i {
  width: 32px;
  height: 32px;
  color: var(--text-main);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-main);

}

.feature-card p {
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  flex-grow: 1;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0.6rem 0.6rem 1.75rem;
  border-radius: 9999px;
  border: 1.5px solid #eef2f6;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.938rem;
  transition: var(--transition);
  width: fit-content;
}

.read-more-btn .btn-arrow {
  width: 35px;
  height: 35px;
  background: #191b49;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.read-more-btn:hover {
  background: #f8fafc;
  border-color: var(--primary);
}

.feature-card:hover .read-more-btn {
  background: #191b49;
  color: white;
  border: none;
}

.feature-card:hover .read-more-btn .btn-arrow {
  background: white;
  color: #191b49;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .feature-card {
    padding: 4rem 2rem 2rem;
  }
}


/* --- Our Approach Section (About Page) --- */
.approach-section {
    padding: 100px 0;
    overflow: hidden;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.approach-images {
    position: relative;
    padding: 20px;
}



.img-large {
    width: 100%;
    object-fit: cover;
    border-radius: 2.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.img-small {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 2rem;
    position: absolute;
    bottom: -40px;
    left: -20px;
    z-index: 3;
    border: 10px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.approach-content .badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #bef264;
    border-radius: 50%;
}

.approach-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.approach-content .desc {
    margin-bottom: 1rem;
    max-width: 540px;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1 1 240px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #191b49;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.feature-text p {
    font-size: 0.938rem;
    color: var(--text-soft);
    line-height: 1.6;
}

.approach-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 1rem 0;
}

@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
    }
    .approach-images {
        display: flex;
        justify-content: center;
    }
    .approach-content h2 {
        font-size: 2.75rem;
    }
    .approach-content .desc {
        margin-left: auto;
        margin-right: auto;
    }
    .feature-list {
        justify-content: center;
    }
    .feature-item {
        text-align: left;
    }
}

.page-numbers.current {
	background: #111111;
    color: white;
}

.page-numbers {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    background: #f1f5f9;
    transition: var(--transition);
}

.page-numbers:last-child{
 background: transparent;
 width: 60px;
}


.section-tag-hubs {
    display: inline-block;
    color: var(--primary);
   
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 300;
 
    letter-spacing: 0.05em;
}

.knowmore {
font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.2rem 0rem;
    margin-top: 0px;
    background: none;
    color: #18469a;
}

.knowmore:hover {
background: transparent !important;	
  color: #1f91ce !important;
    box-shadow: none !important;
}

/* =====================================================
   MOBILE RESPONSIVENESS FIXES — index.html
   ===================================================== */

/* --- Tablet: 1024px --- */
@media (max-width: 1024px) {
    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-content > div {
        justify-content: center;
    }

    .hero-image-container {
        display: none; /* hide hero image on tablets to avoid clutter */
    }

    /* About grid inside section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Features header split */
    .features-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Features row: 3 cols → 1 col on tablet */
    .features-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fcard-featured {
        margin-top: 0;
    }

    /* Solutions accordion */
    .accordion-container {
        flex-direction: column;
        height: auto;
    }

    .accordion-item {
        flex: 1 1 auto;
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        padding: 1.25rem;
    }

    .accordion-item.active {
        flex-direction: column;
    }

    .accordion-title {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 1rem;
        margin: 0 0 0 0.75rem;
    }

    .accordion-item.active .accordion-title {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    /* CTA box */
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .cta-content {
        max-width: 100%;
    }

    /* Works */
    .work-card {
        flex: 0 0 calc(80% - 1rem);
    }

    /* Footer grid */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* --- Mobile: 768px --- */
@media (max-width: 768px) {
    /* Base typography */
    .section-title {
        font-size: 1.85rem;
    }

    section {
        padding: 40px 0;
    }

    /* Container padding for edge safety */
    .container {
        padding: 0 1.25rem;
    }

    /* Header */
    .header-container {
        padding: 0 1rem;
    }

    /* Hero */
    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* First about-grid (image + text block at top, outside section) */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .about-images {
        display: none; /* hide the tall images grid on mobile */
    }

    /* About section inside #about */
    .about section .about-grid {
        text-align: left;
    }

    .about-meta-icons {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: flex-start;
    }

    /* 2-col inline grid in about-content → stack */
    .about-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    /* Features */
    .features-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .fcard-featured {
        margin-top: 0;
    }

    .fcard-featured-img {
        height: 180px;
    }

    /* Solutions */
    .solutions {
        border-radius: 2rem;
        margin: 0 1rem;
        padding: 50px 0;
    }

    .solutions .section-title {
        font-size: 1.75rem;
    }

    .accordion-container {
        flex-direction: column;
        height: auto;
        gap: 0.5rem;
    }

    .accordion-item {
        flex: 1 1 auto;
        width: 100%;
        flex-direction: row;
        padding: 1rem;
        align-items: center;
    }

    .accordion-item.active {
        flex-direction: column;
        align-items: flex-start;
    }

    .accordion-title {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 0.9rem;
        margin: 0 0 0 0.75rem;
    }

    .accordion-item.active .accordion-title {
        margin-left: 0;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .accordion-icon-box {
        flex-shrink: 0;
    }

    /* Cube showcase */
    .cube-showcase .section-container {
        gap: 50px;
        padding: 30px 1rem;
    }

    .cube-wrapper {
        width: 220px;
        height: 220px;
    }

    .cube .face {
        width: 220px;
        height: 220px;
    }

    .cube .front  { transform: rotateY(0deg) translateZ(110px); }
    .cube .back   { transform: rotateY(180deg) translateZ(110px); }
    .cube .right  { transform: rotateY(90deg) translateZ(110px); }
    .cube .left   { transform: rotateY(-90deg) translateZ(110px); }
    .cube .top    { transform: rotateX(90deg) translateZ(110px); }
    .cube .bottom { transform: rotateX(-90deg) translateZ(110px); }

    .feature-display h2 {
        font-size: 1.75rem;
    }

    .feature-display p {
        font-size: 1rem;
    }

    .cube-tabs {
        grid-template-columns: 1fr 1fr;
    }

    /* Works header */
    .works-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .work-card {
        flex: 0 0 calc(90% - 1rem);
    }

    /* Testimonials */
    .tn-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tn-title {
        font-size: 1.75rem;
        margin: 0 auto 1.5rem;
    }

    .tn-cards {
        height: 420px;
    }

    /* Blog */
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .blog-header-left h2 {
        font-size: 1.75rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* CTA box */
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    footer {
        padding-top: 130px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* --- Small Mobile: 480px --- */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-content .btn {
        text-align: center;
        justify-content: center;
    }

    .cube-wrapper {
        width: 180px;
        height: 180px;
    }

    .cube .face {
        width: 180px;
        height: 180px;
    }

    .cube .front  { transform: rotateY(0deg) translateZ(90px); }
    .cube .back   { transform: rotateY(180deg) translateZ(90px); }
    .cube .right  { transform: rotateY(90deg) translateZ(90px); }
    .cube .left   { transform: rotateY(-90deg) translateZ(90px); }
    .cube .top    { transform: rotateX(90deg) translateZ(90px); }
    .cube .bottom { transform: rotateX(-90deg) translateZ(90px); }

    .cube-tabs {
        grid-template-columns: 1fr;
    }

    .solutions {
        border-radius: 1.5rem;
        margin: 0 0.75rem;
    }

    .cta-box {
        border-radius: 1.5rem;
        padding: 2rem 1.25rem;
    }

    .btn-cta-circle {
        width: 100px;
        height: 100px;
        font-size: 1.25rem;
    }

    .tn-cards {
        height: 460px;
    }

    .tn-card {
        max-width: 300px;
    }
}