/* --- Root Variables & Base Setup --- */
:root {
    --lime-green: #B9FF66;
    --dark-bg: #191A23;
    --grey-bg: #F3F3F3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    padding: 0 5%;
    /* Common padding for all screens */
    background-color: #fff;
    overflow-x: hidden;
}

/* --- Navbar (Fully Responsive) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    /* Helps in medium screens */
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--lime-green);
}

.quote-btn {
    padding: 12px 24px;
    border: 1px solid #000;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background-color: var(--dark-bg);
    color: #fff;
}

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    /* Dynamic font size */
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-btn {
    background-color: var(--dark-bg);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--lime-green);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(185, 255, 102, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* --- Logo Section --- */
.logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 0;
}


/* --- Services Section --- */
.services-section {
    margin-top: 80px;
}

.services-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.title-badge {
    background-color: var(--lime-green);
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 32px;
}

.services-header p {
    max-width: 500px;
    font-size: 16px;
    color: #333;
}

/* --- Services Grid (Always 2 Columns on Desktop) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    margin-top: 40px;
}

.card {
    border: 1px solid var(--dark-bg);
    border-bottom: 6px solid var(--dark-bg);
    border-radius: 30px;
    padding: 50px; 
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    position: relative;
    min-height: 310px; 
    overflow: hidden;
}

.card-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    z-index: 2; 
}

/* Image placement like the mockup */
.card img {
    max-width: 210px; 
    height: auto;
    align-self: flex-end; 
    margin-bottom: -10px; 
}

/* --- Responsive Fixes --- */

/* Tablets (Laptop/Large Tablet par bhi 2 columns hi rahenge) */
@media (max-width: 1024px) {
    .card {
        padding: 30px;
        min-height: 250px;
    }
    .card img {
        max-width: 150px;
    }
}

/* Mobile (Yahan 1 card ho jayega aur image sahi align hogi) */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; 
    }

    .card {
        padding: 40px;
        flex-direction: row; 
        align-items: center;
    }

    .card img {
        max-width: 130px;
        margin-top: 0;
    }
}

/* Very Small Phones (480px) */
@media (max-width: 480px) {
    .card {
        flex-direction: column;
        text-align: left;
        padding: 30px;
        min-height: auto;
    }

    .card img {
        align-self: center; 
        margin-top: 20px;
        max-width: 180px;
    }
    
    .card h3 {
        font-size: 20px;
    }
}

/* --- Card Styles --- */
.card {
    border: 1px solid var(--dark-bg);
    border-bottom: 6px solid var(--dark-bg);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 30px;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 5px;
}

.learn-more {
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.card:hover .icon {
    transform: rotate(45deg);
}

/* Variations */
.card-grey {
    background-color: var(--grey-bg);
}

.card-green {
    background-color: var(--lime-green);
}

.card-black {
    background-color: var(--dark-bg);
}

.highlight-green {
    background-color: var(--lime-green);
    color: #000;
}

.highlight-white {
    background-color: #fff;
    color: #000;
}

.card-grey .learn-more,
.card-green .learn-more {
    color: #000;
}

.card-grey .icon,
.card-green .icon {
    background: #000;
    color: var(--lime-green);
}

.card-black .learn-more {
    color: #fff;
}

.card-black .icon {
    background: #fff;
    color: #000;
}
/* --- CTA Section Styling --- */
.positivus-cta-wrapper {
    margin: 60px 0;
}

.cta-inner-card {
    background-color: #F3F3F3; 
    border-radius: 40px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-info-side {
    max-width: 55%;
}

.cta-info-side h2 {
    font-size: 40px;
    margin-bottom: 15px;
}
.cta-info-side p{
    font-size: 20px;
}

.cta-action-btn {
    background-color: #191A23; 
    color: white;
    padding: 18px 30px;
    margin-top: 20vh;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
.cta-action-btn:hover{
    background-color: var(--lime-green);
    color: #000;
}
/* --- Case Studies Section Styling --- */
.positivus-case-section {
    margin-top: 20vh;
}
.positivus-cta-wrapper{
    margin-top: 20vh;
}
.case-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}
.case-header p{
    font-size: 20px;
}
.badge-title {
    background-color: #B9FF66; 
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 32px;
}

.case-dark-container {
    background-color: #191A23; 
    border-radius: 40px;
    padding: 60px;
    display: flex;
    margin-top: 25vh;
    justify-content: space-between;
    gap: 30px;
}

.case-box {
    flex: 1;
}

.case-box p {
    color: white; 
    margin-bottom: 20px;
    line-height: 1.6;
}

.case-cta {
    color: #B9FF66; 
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vertical-line {
    width: 1px;
    background-color: white;
    height: 150px;
    align-self: center;
}
/* --- Accordion Specific Styles --- */
.process-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    margin-top: 20vh;
    flex-wrap: wrap;
}

.badge-title {
    background-color: #B9FF66;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 30px;
    font-weight: 600;
}

.process-desc {
    max-width: 300px;
    font-size: 16px;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.accordion-item {
    background-color: #F3F3F3; 
    border: 1px solid #191A23;
    border-radius: 40px;
    padding: 30px 50px;
    box-shadow: 0 5px 0 #191A23; 
    transition: all 0.3s ease;
}

/* Active State (Green background) */
.accordion-item.active {
    background-color: #B9FF66;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.step-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.step-number {
    font-size: 45px;
    font-weight: 800;
}

.step-name {
    font-size: 24px;
    font-weight: 600;
}

.toggle-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #191A23;
    border-radius: 50%;
    background: #F3F3F3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.accordion-item:hover{
transform: translateY(-5px) scale(1.03) ;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15) ;
    border-color: #B9FF66 ;
}

.accordion-body {
    margin-top: 20px;
}

.divider {
    border: 0;
    border-top: 1px solid #191A23;
    margin-bottom: 25px;
}

.accordion-body p {
    font-size: 17px;
    line-height: 1.5;
}
/* --- Team Grid Layout --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.team-card {
    background: #FFFFFF;
    border: 1px solid #191A23;
    border-radius: 40px;
    padding: 35px;
    box-shadow: 0 5px 0 #191A23;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Effect */
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 0 #191A23;
}

/* Card Top Section */
.card-top {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 20px;
}

.image-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}



.member-img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 50%;
    filter: grayscale(100%); 
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 20px;
    font-weight: 700;
}

.linkedin-icon {
    position: absolute;
    top: 35px;
    right: 35px;
    background: #000;
    color: #B9FF66;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
}

.card-divider {
    border: 0;
    border-top: 1px solid #191A23;
    margin: 20px 0;
}

.btn-container {
    display: flex;
    justify-content: flex-end;
}

.btn-dark {
    background: black;
    color: #fff;
    padding: 18px 60px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-size: 18px;
}
.btn-dark:hover{
    background-color: #B9FF66;
    color: black;
}
.testimonial-section {
    background-color: #191a23;
    padding: 130px;
    border-radius: 30px;
    margin-top: 100px;
    margin-left: 50px;
    margin-right: 50px;
    padding: 80px 0;
    color: white;
    font-family: sans-serif;
    overflow: hidden;
    
}

.slider-container {
  
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    gap: 50px;
}

.testimonial-slide {
    min-width: 600px; 
    flex-shrink: 0;
}

.quote-bubble {
    border: 1px solid #b9ff66;
    border-radius: 45px;
    padding: 40px;
    position: relative;
    font-size: 18px;
    line-height: 1.5;
}

/* The Speech Bubble Tail */
.quote-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 60px;
    min-width: 30px;
    min-height: 30px;
    background-color: #191a23;
    border-right: 1px solid #b9ff66;
    border-bottom: 1px solid #b9ff66;
    transform: rotate(45deg);
}

.author-info {
    margin-top: 40px;
    padding-left: 70px;
}

.author-info .name {
    color: #b9ff66;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.author-info .role {
    margin: 5px 0;
    font-size: 16px;
    color: #ffffff;
}

/* Controls & Pagination */
.nav-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    gap: 40px;
}

.nav-arrow {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.pagination-stars {
    display: flex;
    gap: 12px;
}

.star-dot {
    min-width: 12px;
    min-height: 12px;
    background-color: white;
    transform: rotate(45deg);
    opacity: 0.3;
    transition: 0.3s;
}

.star-dot.active {
    background-color: #b9ff66;
    opacity: 1;
}


step-header-container {
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 40px 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* The Green Rounded Box */
.step-highlight-box {
  background-color: #b0ff7a; 
  color: #000000;
  font-size: 30px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 14px;
  white-space: nowrap; 
}

/* The small text on the right */
.step-subtext-content {
  font-size: 18px;
  color: #222;
  line-height: 1.3;
  font-weight: 400;
}
.contact-card{
    padding: 20px;
}
.pos-form-wrapper {
    background-color: #ffffff;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Inter', Arial, sans-serif;
}

.pos-form-card {
    background-color: #f3f3f3;
    border-radius: 45px;
    width: 100%;
    max-width: 1100px;
    display: flex;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

/* Left Side: Form */
.pos-form-content {
    flex: 1;
    max-width: 500px;
    z-index: 5;
}

.pos-radio-selection {
    display: flex;
    gap: 35px;
    margin-bottom: 40px;
}

.pos-radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 18px;
}

.pos-radio-circle {
    width: 24px;
    height: 24px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #fff;
    position: relative;
}

input[type="radio"]:checked + .pos-radio-circle::after {
    content: "";
    width: 14px;
    height: 14px;
    background-color: #b9ff66;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type="radio"] { display: none; }

/* Fields Styling */
.pos-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.pos-field label {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.pos-field input, 
.pos-field textarea {
    padding: 18px 25px;
    border: 1px solid #000;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
}

.pos-field textarea {
    height: 160px;
    resize: none;
}

/* Button */
.pos-submit-button {
    width: 100%;
    background-color: #191a23;
    color: white;
    padding: 20px;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.pos-submit-button:hover {
    background-color: #000;
}

/* Right Side: Illustration Image */
.pos-form-illustration {
    position: absolute;
     right: 0;
  margin-left: 0;
  max-width: 50%;
  overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: auto;
    pointer-events: none; 
}

.pos-form-illustration img {
    width: 100%;
    height: auto;
    display: block;
    margin-left: 30vh;
}
/* login page section */
/* Container wrapper */
.step-header-container {
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 40px 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* The Green Rounded Box */
.step-highlight-box {
  background-color: #b0ff7a; 
  color: #000000;
  font-size: 30px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 14px;
  white-space: nowrap; 
}

/* The small text on the right */
.step-subtext-content {
  font-size: 18px;
  color: #222;
  line-height: 1.3;
  font-weight: 400;
}
.contact-card{
    padding: 20px;
}
.pos-form-wrapper {
    background-color: #ffffff;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Inter', Arial, sans-serif;
}

.pos-form-card {
    background-color: #f3f3f3;
    border-radius: 45px;
    width: 100%;
    max-width: 1100px;
    display: flex;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

/* Left Side: Form */
.pos-form-content {
    flex: 1;
    max-width: 500px;
    z-index: 5;
}

.pos-radio-selection {
    display: flex;
    gap: 35px;
    margin-bottom: 40px;
}

.pos-radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 18px;
}

.pos-radio-circle {
    width: 24px;
    height: 24px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #fff;
    position: relative;
}

input[type="radio"]:checked + .pos-radio-circle::after {
    content: "";
    width: 14px;
    height: 14px;
    background-color: #b9ff66;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type="radio"] { display: none; }

/* Fields Styling */
.pos-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.pos-field label {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.pos-field input, 
.pos-field textarea {
    padding: 18px 25px;
    border: 1px solid #000;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
}

.pos-field textarea {
    height: 160px;
    resize: none;
}

/* Button */
.pos-submit-button {
    width: 100%;
    background-color: #191a23;
    color: white;
    padding: 20px;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.pos-submit-button:hover {
    background-color: #000;
}

/* Right Side: Illustration Image */
.pos-form-illustration {
    position: absolute;
     right: 0;
  margin-left: 0;
  max-width: 50%;
  overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: auto;
    pointer-events: none; 
}

.pos-form-illustration img {
    width: 100%;
    height: auto;
    display: block;
    margin-left: 30vh;
}
/* footer */
.site-footer-wrapper {
  background-color: #191a23; 
  color: #ffffff;
  padding: 60px 50px 30px 50px;
  border-radius: 45px 45px 0 0; 
  font-family: 'Inter', sans-serif;
  max-width: 1300px;
  margin: 0 auto;
}

/* --- Top Row: Logo, Nav, Socials --- */
.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
}

.footer-navbar-list {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.footer-navbar-item {
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-navbar-item:hover {
  color: #b0ff7a; 
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.social-circle {
  background-color: #ffffff;
  color: #191a23;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}

/* --- Middle Row: Contact & Subscription --- */
.footer-middle-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.footer-contact-info {
  width: 40%;
}

.contact-highlight-badge {
  background-color: #b0ff7a; 
  color: #000000;
  display: inline-block;
  padding: 2px 12px;
  border-radius: 7px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-details-text {
  line-height: 1.6;
  font-size: 16px;
}

/* --- Subscription Box Area --- */
.footer-subscription-container {
  background-color: #292a32; 
  padding: 40px;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  width: 50%;
}

.footer-email-input {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 15px 20px;
  color: #ffffff;
  flex: 1;
  font-size: 14px;
}

.footer-email-input::placeholder {
  color: #cccccc;
}

.footer-subscribe-button {
  background-color: #b0ff7a;
  color: #000000;
  border: none;
  border-radius: 12px;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.footer-subscribe-button:hover {
  transform: scale(1.05);
}

.footer-bottom-divider {
  border: 0;
  border-top: 1px solid #ffffff;
  margin-bottom: 30px;
  opacity: 0.3;
}

.footer-legal-row {
  display: flex;
  gap: 40px;
  font-size: 14px;
}

.legal-privacy-text {
  text-decoration: underline;
  cursor: pointer;
}
/* --- RESPONSIVE MEDIA QUERIES --- */


@media (max-width: 1024px) {
    .pos-form-illustration img {
        margin-left: 20vh; 
    }
    
    .footer-subscription-container {
        flex-direction: column; 
        width: 45%;
    }
}


@media (max-width: 768px) {
    
    .pos-form-card {
        padding: 40px 30px;
        flex-direction: column;
    }

    .pos-form-content {
        max-width: 100%;
    }

    .pos-form-illustration {
        display: none; 
    }

    .footer-top-row {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-navbar-list {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer-middle-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-contact-info, 
    .footer-subscription-container {
        width: 100%; 
    }

    .footer-legal-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
}


@media (max-width: 480px) {
    .step-header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .pos-radio-selection {
        flex-direction: column;
        gap: 20px;
    }

    .site-footer-wrapper {
        padding: 40px 20px;
    }

    .footer-brand-logo {
        font-size: 24px;
    }

    .footer-subscription-container {
        padding: 25px 20px;
    }
}
/* --- Responsive Media Queries --- */

/* Tablets */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns */
    }
}

/* Mobile */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr; /* 1 Column */
    }
    
    .team-card {
        padding: 25px;
    }

    .btn-container {
        justify-content: center;
    }
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .accordion-item {
        padding: 25px 30px;
        border-radius: 30px;
    }
    
    .step-number { font-size: 30px; }
    .step-name { font-size: 18px; }
    
    .process-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .process-desc { max-width: 100%; }
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .cta-inner-card, .case-dark-container {
        flex-direction: column;
        padding: 30px;
        border-radius: 25px;
    }
    
    .cta-info-side { max-width: 100%; text-align: center; }
    
    .vertical-line {
        width: 100%;
        height: 1px;
        margin: 20px 0;
    }
    
    .case-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- GLOBAL RESPONSIVE BREAKPOINTS --- */

@media (max-width: 992px) {
    .nav-links {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        justify-content: center;
        width: 100%;
    }

    .hero {
        flex-direction: column-reverse;
        /* Image top, Text bottom */
        text-align: center;
    }

    .hero-image {
        justify-content: center;
    }

    .logos {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .services-header {
        flex-direction: column;
        text-align: center;
    }

    .card {
        padding: 25px;
        flex-direction: column;
        /* Stack image on mobile */
        text-align: left;
    }

    .card img {
        margin-top: 20px;
        width: 100px;
        align-self: flex-end;
        /* Image moves to bottom-right */
    }
}