body.about-page-body {
    
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--contact-ink);
  background: linear-gradient(180deg, #fbfcff 0%, #ffffff 18%);
  overflow-x: hidden;
}



/* =========================================
   Global Styles
   ========================================= */
/* body {
    font-family: 'Inter', sans-serif;
    color: #4a5568;
    background-color: #ffffff;
    overflow-x: hidden;
} */

/* ABOUT AI SECTION */
.about-ai-section {
  background: #fff;
}

/* TITLE */
.about-ai-section .section-title {
  font-size: 40px;
  font-weight: 800;
  color: #000;
}

.about-ai-section .section-title span {
  color: #27cac9;
}

/* TEXT */
.about-ai-section .section-desc {
  font-size: 18px;
  color: black;
  line-height: 1.7;
  text-align: justify;
}

/* CARDS */
.ai-card {
  background: #f8fbff;
  border: 1px solid #e6ecf5;
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  transition: 0.3s;
}

.ai-card:hover {
  border-color: #27cac9;
  transform: translateY(-3px);
}

.ai-card h5 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}

.ai-card p {
  font-size: 18px;
  color: black;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-ai-section .section-title {
    font-size: 32px;
  }

  .about-ai-section .section-desc {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .about-ai-section {
    text-align: center;
  }

  .ai-card {
    text-align: left;
  }
}

.team-section {
    background-color: #ffffff;
}

/* =========================================
   Left Column: Title & Decorators
   ========================================= */
.section-title {
    color: #0D173F;
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -1px;
    margin: 0px 0px 30px 0px !important;
}

.decorator-container {
    position: relative;
    display: flex;
    gap: 40px;
    height: 400px;
    align-items: flex-start;
}

/* Vertical Outlined Text */
.vertical-text-outline {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 100px;
    line-height: 100px;
    font-weight: 800;
    letter-spacing: 12px;
    color: transparent;
    -webkit-text-stroke: 1.5px #f1f5f9;
    user-select: none;
}

/* Vertical Timeline Line */
.vertical-timeline {
    position: relative;
    width: 1px;
    height: 100%;
    background-color: #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Timeline Small Dot */
.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 50%;
    position: absolute;
    top: 50px;
    z-index: 2;
}

/* Vertical Blue Button */
.btn-vertical-join {
    position: absolute;
    top: 150px;
    background-color: #27cac9;
    color: #ffffff;
    text-decoration: none;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 25px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.btn-vertical-join:hover {
    background-color: #0b5ed7;
    color: #ffffff;
}

/* =========================================
   Right Column: Card Grid & Mechanics
   ========================================= */
/* Staggering the grid layout on desktop */
@media (min-width: 768px) {
    .stagger-up {
        transform: translateY(-50px);
    }
    .card-grid {
        row-gap: 60px !important;
    }
}

.card-wrapper {
    display: flex;
    justify-content: center;
}

/* Card Base */
.team-card {
    background-color: #f8faff;
    padding: 30px 20px 30px 30px;
    border-radius: 30px 200px 200px 30px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color:#E8E9FF;
    width: 100%;
    max-width: 419px;
    min-height: 286px;
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Required to let images break out of the card */
    overflow: visible; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    color: white;
    background-color: #27cac9;
    
}

/* Share Icon */
.share-icon {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    z-index: 5;
    cursor: pointer;
}

/* Text Information */
.card-info {
    position: relative;
    z-index: 5;
    padding-bottom: 10px;
}

.card-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
    line-height: 34px;
}

.card-info p {
    font-size: 16px;
    color: #4D505B;
    margin: 0;
    line-height: 1.36;
}

/* =========================================
   Overlapping Image Mechanics
   ========================================= */
.card-visual {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    z-index: 1;
}

/* Background Colored Circle */
.bg-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 2;
}

/* The Overlapping Person Image */
.person-img {
    position: absolute;
    bottom: -5px; /* Adjusting so shoulders break the circle slightly */
    left: 50%;
    transform: translateX(-50%);
    width: 120%; /* Image is larger than the circle background */
    height: auto;
    max-height: 200px;
    object-fit: contain;
    z-index: 3;
    pointer-events: none;
}

/* =========================================
   Mobile Responsiveness
   ========================================= */
@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .team-card {
        margin-top: 30px; /* Provides space for overlapping images on mobile stack */
        min-height: 180px;
    }

    .stagger-up {
        transform: none; /* Disable staggered layout on small screens */
    }
}


.gallery-section {
    background-color: #ffffff;
}

/* =========================================
   Header Styling
   ========================================= */
.gallery-title {
    color: #0D173F; /* Deep navy blue matching the image */
    font-size: 50px;
    font-weight: 600;
    letter-spacing: -1px;
    margin: 0;
    line-height: 60px;
}

/* =========================================
   CSS Grid Layout Mechanics
   ========================================= */
.gallery-grid {
    display: grid;
    /* Divide the container into 4 equal columns */
    grid-template-columns: repeat(4, 1fr);
    /* Set consistent gap between all images */
    gap: 24px; 
}

/* Item Sizing Control */
.gallery-item {
    position: relative;
    width: 100%;
    /* Fixed height ensures perfect alignment across rows */
    height: 320px; 
    border-radius: 20px;
    overflow: hidden;
    /* Optional: subtle shadow for depth */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Image behavior inside grid items */
.gallery-img {
    width: 100%;
    height: 100%;
    /* Object-fit cover ensures image fills the box without stretching */
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

/* Optional hover effect */
.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Grid Spanning Classes */
.item-small {
    grid-column: span 1;
}

.item-wide {
    grid-column: span 2;
}

/* =========================================
   Responsive Breakpoints
   ========================================= */

/* Tablet (Landscape & Portrait) */
@media (max-width: 991px) {
    .gallery-grid {
        /* Change to 2 columns on medium screens */
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Make the wide items take up the full 2 columns */
    .item-wide {
        grid-column: span 2;
    }
    
    /* Keep small items taking 1 column each */
    .item-small {
        grid-column: span 1;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .gallery-title {
        font-size: 2rem;
    }

    .gallery-grid {
        /* Change to single column on mobile */
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Force all items to take full width */
    .item-wide,
    .item-small {
        grid-column: span 1;
        height: 250px; /* Slightly shorter height for mobile screens */
    }
}



/* about -section 5 */

.who-we-work-section {
    padding-bottom: 100px;
  /* padding: 100px 20px; */
  /* background: ; */
}

/* Heading */
.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #27cac9;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: black;
  font-size: 18px;
  line-height: 1.6;
}

/* Grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* Card */
.work-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Icon */
.work-card .icon {
  font-size: 26px;
  margin-bottom: 15px;
}

/* Title */
.work-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #27cac9;
}

/* Text */
.work-card p {
  font-size: 18px;
  color: black;
  line-height: 1.6;
}


/* Tablet */
@media (max-width: 992px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}




/* TITLE */
.process-benefits-section .section-title {
  font-size: 40px;
  font-weight: 800;
  color: #000;
}

.process-benefits-section .section-title span {
  color: #27cac9;
}

/* TEXT */
.process-benefits-section .section-desc {
  font-size: 18px;
  color: #56627e;
  line-height: 1.7;
}

/* HIGHLIGHT LINE */
.highlight-line {
  width: 80px;
  height: 4px;
  background: #27cac9;
  border-radius: 2px;
}

/* BENEFIT CARDS */
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f8fbff;
  border: 1px solid #e6ecf5;
  border-radius: 14px;
  padding: 14px;
  height: 100%;
  transition: 0.3s;
}

.benefit-card:hover {
  border-color: #27cac9;
  transform: translateY(-3px);
}

/* ICON */
.benefit-card .check-icon {
  color: #27cac9;
  font-weight: 700;
  font-size: 16px;
}

/* TEXT */
.benefit-card p {
  margin: 0;
  font-size: 15px;
  color: #4b587c;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .process-benefits-section .section-title {
    font-size: 32px;
  }

  .process-benefits-section .section-desc {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .process-benefits-section {
    text-align: center;
  }

  .benefit-card {
    text-align: left;
  }
}



/* ================================
   ABOUT SECTION (ALIGNED VERSION)
================================ */

.dxw-about-section {
  background: #fff;
  padding: 80px 0;
}

/* CONTENT WIDTH CONTROL (IMPORTANT) */
.dxw-about-inner {
  max-width: 720px;
}

/* EYEBROW */
.dxw-eyebrow {
  color: #27cac9;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

/* TITLE */
.dxw-title {
  font-size: 40px;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  margin-bottom: 10px;
}

.dxw-title span {
  color: #27cac9;
}

/* DESCRIPTION */
.dxw-side-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}



.dxw-desc {
  font-size: 18px;
  color: black;
  line-height: 1.7;
  margin-top: 10px;
  text-align: justify;
}

/* STATS */
.dxw-stats {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.dxw-stat-box {
  background: #f8fbff;
  padding: 14px 20px;
  border-radius: 10px;
  min-width: 120px;
}

.dxw-stat-box h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #27cac9;
}

.dxw-stat-box p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

/* BUTTON */
.dxw-btn {
  display: inline-block;
  margin-top: 20px;
  background: #27cac9;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.dxw-btn:hover {
  background: #20b2b0;
}

/* ================================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 991px) {

  .dxw-side-content {
    margin-top: 30px;
    align-items: flex-start;
  }

  .dxw-about-section {
    padding: 60px 0;
  }

  .dxw-title {
    font-size: 32px;
  }

  .dxw-desc {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .dxw-side-content {
    align-items: center;
    text-align: center;
  }


  .dxw-about-section {
    text-align: center;
    padding: 50px 0;
  }

  .dxw-about-inner {
    max-width: 100%;
  }

  .dxw-title {
    font-size: 26px;
  }

  .dxw-desc {
    font-size: 15px;
  }

  .dxw-stats {
    flex-direction: column;
    align-items: center;
  }

  .dxw-stat-box {
    width: 100%;
    max-width: 200px;
  }

  .dxw-btn {
    width: 100%;
    max-width: 220px;
  }
}


.work-card .icon {
  /* margin-bottom: 12px; */
}

.work-card .icon svg {
  width: 32px;
  height: 32px;
  fill: #27cac9;   /* 🔥 your theme color */
}