/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* --- Section Layout --- */
.expert-section {
  padding: 80px 20px;
  background-color: #eef4f9;
  /* Light Grey-Blue Background */
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* --- Left Column: Content --- */
.content-col {
  flex: 1;
  max-width: 600px;
}

.sub-title {
  color: #2d7ef7;
  /* Bright Blue */
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.main-title {
  font-size: 2.8rem;
  color: #051b35;
  /* Dark Navy */
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.description {
  color: #64748b;
  /* Text Grey */
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Checklist Grid */
.checklist-grid {
  display: flex;
  gap: 30px;
  /* Space between the two lists */
  margin-bottom: 40px;
}

.check-group {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-group li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #051b35;
  /* Dark Navy */
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  /* Prevents text wrapping awkwardly */
}

.check-group li i {
  color: #2d7ef7;
  /* Blue Checkmarks */
  margin-right: 12px;
  font-size: 14px;
}

/* Button Styling */
.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: #10698d;
  color: #ffffff;
  text-decoration: none;
  padding: 6px 30px 6px 6px;
  /* Padding for pill shape */
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #0e2a4e;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #2d7ef7;
  /* Blue Circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #fff;
}

/* --- Right Column: Image Layout --- */
.image-col {
  flex: 1;
  position: relative;
  padding-bottom: 40px;
  /* Space for the floating box overlap */
}

.image-wrapper {
  position: relative;
  width: 100%;
  /* Creates the white border effect around the main image if desired, otherwise remove padding/bg */
  padding: 0;
}

.main-img {
  width: 100%;
  height: auto;
  display: block;
  /* Optional: Aspect ratio to match image */
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* The Blue Overlay Box */
.client-box {
  position: absolute;
  bottom: -40px;
  /* Pulls box down to overlap */
  left: -40px;
  /* Pulls box left to overlap */
  background: linear-gradient(135deg, #002863, #7ddff7);
  padding: 30px;
  width: 200px;
  color: #ffffff;
  border: 5px solid #ffffff;
  /* Thick white border to separate from image */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.avatar-row {
  display: flex;
  margin-bottom: 15px;
}

.avatar-row img,
.add-user {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -15px;
  /* Overlap effect */
  object-fit: cover;
}

.avatar-row img:first-child {
  margin-left: 0;
}

.add-user {
  background-color: #051b35;
  /* Dark Navy Circle */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  z-index: 2;
}

.client-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* --- Responsive Design --- */

/* Tablet & Smaller Laptops */
@media (max-width: 992px) {
  .row {
    flex-direction: column;
    /* Stack columns */
    gap: 40px;
  }

  .content-col,
  .image-col {
    max-width: 100%;
  }

  .checklist-grid {
    flex-direction: column;
    /* Stack checklists vertically on smaller screens */
    gap: 0;
  }

  .client-box {
    left: 20px;
    /* Adjust overlap position for tablet */
    bottom: -30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .expert-section {
    padding: 50px 20px;
  }

  .main-title {
    font-size: 2rem;
  }

  .check-group li {
    font-size: 0.9rem;
    white-space: normal;
    /* Allow wrapping on mobile */
  }

  /* Adjust blue box for mobile */
  .client-box {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: -30px;
    /* Pull up slightly */
    margin-left: 20px;
    width: auto;
    display: inline-block;
    max-width: 80%;
  }
}





/* --- Variables --- */
:root {
  --bg-dark: #020b16;
  /* Deep Dark Navy */
  --accent-blue: #2d7ef7;
  --text-white: #ffffff;
  --text-grey: #a0aec0;
  --border-color: #1f2937;
}

/* --- Section Layout --- */
.services-sticky-section {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Flex Container for the Split Layout */
.sticky-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* Important for sticky to work */
  gap: 80px;
  position: relative;
}

/* --- LEFT PANEL (Fixed) --- */
.left-panel {
  flex: 1;
  /* Sticky Magic */
  position: sticky;
  top: 50px;
  /* Distance from top of screen when scrolling */
  height: fit-content;
}

/* Video Image Box */
.video-card {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
}

.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-size: 20px;
  transition: transform 0.3s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Main Heading */
.main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.highlight {
  color: var(--accent-blue);
}

/* --- RIGHT PANEL (Scrolling) --- */
.right-panel {
  flex: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  border-top: 1px solid var(--border-color);
  padding: 50px 0;
  transition: all 0.3s ease;
}

.service-item:last-child {
  border-bottom: 1px solid var(--border-color);
}

/* Hover Effect: Highlight active item */
.service-item:hover {
  padding-left: 20px;
  /* Slight movement */
}

.service-item:hover h3 {
  color: var(--accent-blue);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.num {
  font-size: 1.2rem;
  color: var(--text-grey);
  font-weight: 600;
  margin-right: 20px;
}

.service-item h3 {
  flex-grow: 1;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s;
}

.arrow-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-grey);
  transition: all 0.3s;
}

.service-item:hover .arrow-icon {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: white;
  transform: rotate(-45deg);
  /* Tilted arrow effect */
}

.item-desc {
  color: white;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  padding-left: 50px;
  /* Align with text, skipping number */
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .sticky-wrapper {
    flex-direction: column;
    /* Stack vertically on tablet/mobile */
    gap: 50px;
  }

  .left-panel {
    position: relative;
    /* Remove sticky on mobile */
    top: 0;
    width: 100%;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .item-desc {
    padding-left: 0;
    /* Remove indent on mobile for space */
  }
}






:root {
  --primary-blue: #0066ff;
  /* Vibrant Blue */
  --dark-navy: #0a1f44;
  /* Text Color */
  --bg-grey: #eef4f9;
  /* Card Background */
  --text-grey: #556987;
  /* Description Text */
  --white: #ffffff;
}

/* --- Section Styling --- */
.process-section {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header --- */
.section-header {
  margin-bottom: 80px;
}

.sub-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.main-title {
  font-size: 2.8rem;
  color: var(--dark-navy);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* --- Steps Layout --- */
.steps-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  padding-top: 40px;
  /* Space for the bubbles */
}

/* The Horizontal Line */
.process-line {
  position: absolute;
  top: 40px;
  /* Aligns with the center of the bubbles */
  left: 15%;
  /* Starts after the first part */
  right: 15%;
  /* Ends before the last part */
  height: 1px;
  background-color: #d1d9e6;
  z-index: 0;
}

/* --- Card Design --- */
.step-card {
  background-color: var(--bg-grey);
  padding: 60px 40px 40px 40px;
  /* Top padding clears the bubble */
  border-radius: 4px;
  position: relative;
  text-align: left;
  flex: 1;
  /* Equal width */
  transition: transform 0.3s ease;
}

/* The Number Bubble */
.step-number {
  position: absolute;
  top: -40px;
  /* Pulls bubble halfway out the top */
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--dark-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
  /* Create a white border to separate from the line */
  border: 8px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Content Styling */
.card-content h3 {
  font-size: 1.4rem;
  color: var(--dark-navy);
  margin-bottom: 15px;
  font-weight: 700;
}

.card-content p {
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
  min-height: 80px;
  /* Keeps cards even height */
}

.step-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--dark-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.step-link:hover {
  gap: 12px;
  /* Arrow slide effect */
}

/* --- ACTIVE STATE (Middle Card) --- */
.step-card.active {
  background: linear-gradient(135deg, #002863, #7ddff7);
  transform: translateY(-10px);
  /* Slight lift */
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.step-card.active .step-number {
  background-color: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
  /* Seamless blend if on white bg */
}

.step-card.active h3,
.step-card.active p,
.step-card.active .step-link {
  color: var(--white);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .steps-wrapper {
    flex-direction: column;
    /* Stack vertically */
    gap: 60px;
  }

  /* Hide horizontal line on mobile */
  .process-line {
    display: none;
  }

  .step-card {
    width: 100%;
    /* Full width */
    margin-bottom: 20px;
    box-sizing: border-box;
    /* Prevent padding issues */
  }

  .main-title {
    font-size: 2rem;
  }
}





/* --- Section Layout --- */
.audit-process-section {
  position: relative;
  padding: 100px 0;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  /* Prevents scrollbar if overlap goes too far */
}

/* The Split Background Effect */
.audit-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  /* Covers left 40% of screen */
  height: 100%;
  /* Replace with your specific office/meeting image */
  background-image: url('../home/accounting-1.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* Sits above the background image */
  padding: 0 20px;
}

/* --- Header Styling (Pushed to Right) --- */
.audit-header {
  margin-left: 45%;
  /* Pushes text to the white area */
  margin-bottom: 60px;
  padding-left: 20px;
}

.audit-badge {
  background-color: #eef4f9;
  color: #0055ff;
  /* Bright Blue */
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.audit-title {
  font-size: 3rem;
  color: #0b1c39;
  /* Dark Navy */
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}

/* --- The Overlapping Card --- */
.steps-overlay-card {
  background-color: #f8f9fa;
  /* Light Grey/White Card */
  display: flex;
  justify-content: space-between;
  padding: 60px 40px;
  /* This creates the overlap effect over the image */
  width: 100%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  margin-left: 0;
  /* Aligned with container */
}

/* --- Individual Step Item --- */
.process-step {
  flex: 1;
  padding-right: 30px;
}

.process-step:last-child {
  padding-right: 0;
}

/* Indicator Row (Circle + Line) */
.step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.circle-num {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #002863, #7ddff7);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  /* Prevents shrinking */
  position: relative;
  z-index: 2;
  border: 4px solid #f8f9fa;
  /* Matches card bg to look floating */
}

/* The Dotted Line */
.dotted-line {
  flex-grow: 1;
  height: 2px;
  border-top: 3px dotted #d1d5db;
  /* Grey Dots */
  margin-left: 10px;
  margin-right: 10px;
}

/* Content Text */
.process-step h3 {
  font-size: 1.25rem;
  color: #0b1c39;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.process-step p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* --- Responsive Design --- */

/* Tablet (Stack the overlap slightly differently or keep it) */
@media (max-width: 992px) {
  .audit-bg-image {
    width: 100%;
    /* Full width image at top */
    height: 400px;
    position: relative;
  }

  .audit-process-section {
    padding: 0;
    background: #fff;
  }

  .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .audit-header {
    margin-left: 0;
    /* Reset margin */
    text-align: center;
    margin-top: -300px;
    /* Pull text up over image if desired, or just sit below */
    margin-top: 0;
    margin-bottom: 40px;
  }
  
  
  



  /* Make the card stack vertically */
  .steps-overlay-card {
    flex-direction: column;
    gap: 40px;
    margin-top: -100px;
    /* Pull card up to overlap image bottom */
    position: relative;
    z-index: 5;
    background: #fff;
  }

  .step-indicator {
    margin-bottom: 15px;
  }

  /* Rotate dots to vertical or hide them */
  .dotted-line {
    display: none;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .audit-title {
    font-size: 2rem;
    padding:11px;
  }

  .audit-bg-image {
    height: 250px;
  }

  .steps-overlay-card {
    padding: 40px 20px;
    margin-top: -50px;
  }
}







/* --- Marquee Section Styling --- */
.marquee-section {
  background: linear-gradient(135deg, #002863, #7ddff7);
  padding: 25px 0;
  overflow: hidden;
  /* Hides the text when it scrolls off screen */
  white-space: nowrap;
  /* Forces text to stay on one line */
  position: relative;
  display: flex;
  align-items: center;
}

.marquee-wrapper {
  display: flex;
  width: fit-content;
  /* This connects the animation */
  animation: infiniteScroll 20s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  /* Prevents shrinking */
}

/* --- Text Styling --- */
.text-item {
  font-family: sans-serif;
  /* Replace with 'Inter' if you have it */
  font-size: 2.5rem;
  /* Large bold text like image */
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.separator {
  font-size: 2.5rem;
  font-weight: 300;
  /* Thinner weight for the // */
  color: #ffffff;
  /* Slightly transparent or solid white */
  margin: 0 40px;
  /* Space around the separator */
  opacity: 0.6;
  /* Optional: makes the // slightly lighter */
}

/* --- The Animation Logic --- */
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* Moves the content to the left by exactly -50% 
           (since we duplicated the content, this resets seamlessly) */
    transform: translateX(-50%);
  }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .marquee-section {
    padding: 20px 0;
  }

  .text-item {
    font-size: 1.5rem;
    /* Smaller text on mobile */
  }

  .separator {
    font-size: 1.5rem;
    margin: 0 20px;
  }

  /* Speed up slightly on mobile if desired, or keep same */
  .marquee-wrapper {
    animation-duration: 15s;
  }
}







/* --- Section Container --- */
.expert-solution-section {
  background-color: #f3f6f9;
  padding: 100px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.row-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* --- LEFT COLUMN: Fixed Content --- */
.left-sticky-col {
  flex: 1;
  /* Keeps the text fixed on the left while cards scroll */
  position: sticky;
  top: 50px;
  height: fit-content;
}

.sub-title {
  color: #0066ff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.main-title {
  font-size: 1.8rem;
  color: #0a1f44;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.description {
  color: #556987;
  line-height: 1.6;
  margin-bottom: 35px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.check-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a1f44;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-item i {
  color: #0066ff;
}

.btn-primary {
  background-color: #0a1f44;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #0066ff;
}

/* --- RIGHT COLUMN: Overlapping Cards --- */
.right-scroll-col {
  flex: 1;
  /* Minimal styling here, the magic is in the cards */
  padding-bottom: 50px;
}

/* THE CARD MAGIC */
.feature-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
  /* Negative shadow to show separation */
  border: 1px solid #eef2f6;
  margin-bottom: 30px;
  /* Space between them naturally */
  border: 1px solid #0965b1;
  /* STICKY LOGIC */
  position: sticky;
  transition: transform 0.3s ease;
}

/* This creates the "Stacking" effect. 
           We increase the 'top' value for each card so the next one 
           sticks slightly lower, leaving the header of the previous one visible.
        */
.feature-card:nth-child(1) {
  top: 100px;
}

.feature-card:nth-child(2) {
  top: 130px;
}

/* +30px */
.feature-card:nth-child(3) {
  top: 160px;
}

/* +30px */
.feature-card:nth-child(4) {
  top: 190px;
}

/* +30px */

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #eef2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0066ff;
  margin-bottom: 25px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #0d6efd;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #0a1f44;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  color: #556987;
  line-height: 1.6;
  margin: 0;
}

/* --- Responsive: Remove effect on mobile --- */
@media (max-width: 992px) {
  .row-wrapper {
    flex-direction: column;
  }

  .left-sticky-col {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  /* Reset sticky on mobile */
  .feature-card {
    position: relative;
    top: 0 !important;
  }
}





.why-choose-section {
  background: #fff;
  font-family: 'Inter', sans-serif;
}

.split-container {
  display: flex;
  min-height: 800px;
}

.content-side {
  flex: 1;
  padding: 80px 60px;
}

.header-wrapper {
  margin-bottom: 50px;
}

.sub-heading {
  color: #2d7ef7;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.main-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.heading-desc {
  color: #64748b;
  font-size: 1.1rem;
}

/* FEATURE GRID */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* FEATURE CARD */
.feature-box {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 35px 30px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  border: 1px solid #2278e5;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(45,126,247,0.15);
}

.icon-wrap {
  width: 60px;
  height: 60px;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.feature-box:hover .icon-wrap {
  background: #2d7ef7;
  color: #fff;
  border-color: #2d7ef7;
}

.feature-box h3 {
  font-size: 1.2rem;
  color: #051b35;
}

.feature-box p {
  color: #64748b;
  font-size: 0.95rem;
}

.full-width {
  grid-column: span 2;
  display: flex;
  gap: 20px;
  align-items: center;
}

/* IMAGE */
.image-side {
  flex: 1;
}

.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 🔥 MOBILE SLIDER */
@media (max-width: 992px) {
  .split-container {
    flex-direction: column-reverse;
  }

  .features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
  }

  .feature-box {
    min-width: 85%;
    scroll-snap-align: start;
  }

  .full-width {
    min-width: 85%;
    flex-direction: column;
  }

  .image-side {
    height: 350px;
  }
}






/* ================================
   HERO SECTION DESIGN
================================ */

.hero-wrap {
  width: 100%;
  overflow: hidden;
  background:#0d1b32;
}

.hero-container {
  display: flex;
  min-height: 100vh;
}

.hero-left { width: 50%; padding: 90px 80px; color: #fff; background: linear-gradient(rgba(8, 21, 43, 0.95), rgba(8, 21, 43, 0.95)), url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab") center/cover; }


.hero-tag {
  color: #1e6bff;
  font-weight: 600;
  letter-spacing: 2px;
  display: none;
}

.hero {
  display: flex;
  min-height: 100vh;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* vertical center */
  align-items: flex-start;
  /* left aligned text */
  padding: 60px 80px;
  margin-top: 200px;
}

.hero-left h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-left p {
  max-width: 480px;
  color: #bfc7d4;
  margin-bottom: 35px;
}


@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    align-items: center;
    padding: 60px 20px;
  }

  .hero-left p {
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: 36px;
  }
}


.hero-btns {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: linear-gradient(135deg, #002863, #7ddff7);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* RIGHT */
.hero-right {
  width: 50%;
  /*background:#031135;*/
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  
  background: linear-gradient(rgba(8, 21, 43, 0.95), rgba(8, 21, 43, 0.95)), url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab") center/cover;
}

/* Animated Text */
.hero-bg-text {
  position: absolute;
  font-size: 160px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  top: 50%;
  left: -100%;
  transform: translateY(-50%);
  animation: moveText 18s linear infinite;
}

@keyframes moveText {
  from {
    left: 100%;
  }

  to {
    left: -100%;
  }
}

/* Image */
.hero-image-box {
  position: relative;
  max-width: 75%;
  z-index: 2;
}

.hero-image-box img {
  width: 100%;
  border-radius: 6px;
}

/* Stats Card */
.stats-box {
  position: absolute;
  right: -30px;
  bottom: 40px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stats-box h3 {
  font-size: 32px;
  margin: 0;
}

.stats-box p {
  color: #666;
  font-size: 14px;
}

.graph {
  width: 120px;
  height: 40px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 40' fill='none' stroke='%231466ff' stroke-width='2'><path d='M0 30 Q 20 10 40 25 T 80 15 T 120 5'/></svg>") no-repeat center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-image-box {
    max-width: 85%;
  }
}

@media (max-width: 576px) {
  .hero-left {
    padding: 50px 25px;
    text-align: center;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-bg-text {
    font-size: 90px;
  }
}









.about-banner {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  overflow: hidden;
}

/* Overlay */
.about-banner .about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(8, 25, 55, 0.75),
    rgba(8, 25, 55, 0.75)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

/* Content */
.about-banner .about-content h1 {
  color: #ffffff;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: -64px;
  text-transform: uppercase;
}

.about-banner .about-content p {
  color: #f9a825;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 992px) {
  .about-banner {
    height:  450px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .about-banner .about-content h1 {
    font-size: 42px;
  }

  .about-banner .about-content p {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-banner {
    height: 450px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .about-banner .about-content h1 {
    font-size: 30px;
    margin-top: 50px;
  }

  .about-banner .about-content p {
    font-size: 13px;
    letter-spacing: 1px;
  }
}






.ap-process-section {
    padding: 90px 20px;
    background: radial-gradient(circle at center, #111940, #05081c);
    color: #fff;
    text-align: center;
}

.ap-section-header {
    max-width: 800px;
    margin: auto;
    margin-bottom: 80px;
}

.ap-section-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #fff, #a0d8ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ap-section-header p {
    color: #b0b8d8;
    margin-top: 10px;
}

/* TIMELINE */
.ap-timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ap-wave-bg {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 0;
}

.ap-wave-path {
    fill: none;
    stroke: #00bcd4;
    stroke-width: 2;
    stroke-dasharray: 10 10;
    opacity: 0.4;
}

/* ITEM */
.ap-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
}

.ap-item:hover { transform: translateY(-10px); }

.ap-up { flex-direction: column; }
.ap-down { flex-direction: column-reverse; }

/* CIRCLE */
.ap-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: #fff;
    margin: 20px 0;
    position: relative;
}

.ap-gold .ap-circle {
background: linear-gradient(135deg, #00307c, #3888a5);
box-shadow: 0 0 25px rgba(212,175,55,.4);
}

.ap-cyan .ap-circle {
background: linear-gradient(135deg, #001944, #00e5ff);
box-shadow: 0 0 25px rgba(0,229,255,.4);
}

/* ARROW */
.ap-arrow {
    color: #fff;
    font-size: 1.5rem;
    animation: apFloat 1.5s ease-in-out infinite alternate;
}

/* TEXT */
.ap-info h3 {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.ap-info p {
    font-size: 0.9rem;
    color: #b0b8d8;
}

/* CTA */
.ap-cta-btn {
    margin-top: 50px;
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, #d4af37, #f6e27a);
    border-radius: 50px;
    color: #05081c;
    text-decoration: none;
    font-weight: bold;
}

/* ANIMATION */
@keyframes apFloat {
    from { transform: translateY(0); }
    to { transform: translateY(6px); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ap-timeline-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
    .ap-wave-bg { display: none; }
}

@media (max-width: 600px) {
    .ap-timeline-wrapper {
        grid-template-columns: 1fr;
    }
}







/* =============================
   STRATEGY SECTION
============================= */

.strategy-section {
  height: 100vh;
  background: radial-gradient(circle at center, #111 0%, #000 70%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Circle Container */
.circle-wrapper {
  width: 420px;
  height: 420px;
  position: relative;
}

/* Main Circle */
.circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 2;
}

/* Animated Border */
.circle::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(120deg,
      #5a7cff,
      #9f7cff,
      #00e0ff,
      #5a7cff);
  background-size: 300% 300%;
  animation: borderMove 6s linear infinite;
  z-index: -1;
}

/* Inner dark layer */
.circle::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: #000;
  border-radius: 50%;
  z-index: -1;
}

/* Text */
.circle h2 {
  font-size: 26px;
  font-weight: 500;
  max-width: 260px;
  line-height: 1.4;
  transition: opacity 0.3s ease;
}

/* Number */
.step-text {
  position: absolute;
  bottom: -70px;
  left: -40px;
  font-size: 90px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  transition: opacity 0.3s ease;
}

/* Border animation */
@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .circle-wrapper {
    width: 300px;
    height: 300px;
  }

  .circle h2 {
    font-size: 20px;
  }

  .step-text {
    font-size: 55px;
    bottom: -50px;
    left: -25px;
  }
}




/* ===============================
   AUDIT SERVICE SECTION
================================ */

.audit-service-section {
  padding: 80px 20px;
  background: #fff;
}

.audit-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

/* IMAGE BOX */
.audit-image-box {
  position: relative;
  flex: 1;
  min-width: 300px;
  padding: 15px;
}

.audit-image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #004091;
  animation: borderGlow 3s linear infinite;
}

.audit-image-box img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

/* BORDER ANIMATION */
@keyframes borderGlow {
  0% {
    border-color: #004091
  }

  50% {
    border-color: #004091;
  }

  100% {
    border-color: #004091;
  }
}

/* CONTENT */
.audit-content {
  flex: 1;
  min-width: 300px;
}

.audit-tag {
  color: #004091;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
}

.audit-content h2 {
  font-size: 40px;
  margin: 15px 0;
  color: #111;
}

.audit-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.audit-points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.audit-points li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #222;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .audit-container {
    flex-direction: column;
  }

  .audit-content h2 {
    font-size: 30px;
  }

  .audit-image-box {
    max-width: 100%;
  }
}




/* ================================
   PREMIUM CONTACT SECTION
================================ */
.contact-premium {
  padding: 100px 20px;
background: linear-gradient(310deg, rgb(3 91 159), #ffffff);
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.contact-card {
  position: relative;
  padding: 55px 35px;
  text-align: center;
  background: rgb(0 64 140);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(0, 64, 145, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Gradient top accent */
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 4px;
  background: linear-gradient(90deg, #004091, #4d82d4);
}

/* Hover */
.contact-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(0, 64, 145, 0.2);
}

/* ICON */
.contact-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #004091, #2c6dd2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 64, 145, 0.35);
  transition: transform 0.4s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.08) rotate(6deg);
}

/* TEXT */
.contact-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 14px;
}

.contact-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: white;
}




/* Contact actions */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

/* Links */
.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* WhatsApp */
.contact-link.whatsapp {
  /*background: #25d366;*/
  color: #fff;
}

.contact-link.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

/* Call */
.contact-link.call {
  /*background: #004091;*/
  color: #fff;
}

.contact-link.call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 64, 145, 0.35);
}

/* Icons */
.contact-link i {
  font-size: 18px;
}





/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-premium {
    padding: 70px 16px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-card {
    padding: 45px 28px;
  }
}





/* --- Section Layout --- */
.infographic-section {
  background: radial-gradient(circle, #1a2a44 0%, #01569a 100%);
  padding: 100px 20px;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-family: 'Inter', sans-serif;
}


/* Grid layout for 2 rows × 3 columns */
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  justify-items: center;
}

/* Responsive */
@media (max-width: 992px) {
  .infographic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .infographic-grid {
    grid-template-columns: 1fr;
  }
}


.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  position: relative;
}

/* --- The Card --- */
.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 300px;
  margin: 20px;
  z-index: 2;

  /* Scroll Reveal Initial State */
  opacity: 0;
  transform: translateY(100px);
  /* Pushed down initially */
  transition: all 0.8s ease-out;
}

/* Scroll Reveal Active State */
.info-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- Circle Design --- */
.circle-wrapper-1 {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

/* The Rotating Gold Ring */
.rotating-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top: 2px solid #0d6efd;
  border-right: 2px solid #90d2f0;
  /* Animation settings */
  animation: spin 8s linear infinite;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Reverse Rotation for middle card */
.rotating-ring.reverse {
  animation: spin-reverse 8s linear infinite;
  border-top: 2px solid transparent;
  border-bottom: 2px solid #0d6efd;
  border-left: 2px solid #90d2f0;
  ;
}

/* The Inner Content Circle */
.inner-circle-1 {
  width: 160px;
  height: 160px;
  background: #111e33;
  border-radius: 50%;
  border: 1px solid #0d6efd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Typography */
.number {
  font-family: 'Cinzel', serif;
  /* Gold Serif Font */
  font-size: 4rem;
  color: #eef0f3;
  margin: 0;
  line-height: 1;
}

.label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 5px;
}

.content-text p {
  font-size: 0.9rem;
  color: #a0aec0;
  line-height: 1.6;
}

/* --- Connector Lines (Between circles) --- */
.connector-line {
  width: 100px;
  /* Length of line */
  height: 1px;
  background: #d4af37;
  margin-top: 100px;
  /* Align with center of circles */
  opacity: 0.5;

  /* Reveal Animation */
  opacity: 0;
  transform: scaleX(0);
  transition: all 1s ease 0.5s;
}

.connector-line.show {
  opacity: 0.5;
  transform: scaleX(1);
}

/* --- Animations --- */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .connector-line {
    display: none;
    /* Hide horizontal lines on mobile */
  }

  .info-card {
    margin-bottom: 50px;
  }
}