:root {
    --primary-blue: #012FAE;
    --bg-lavender: #E8E9F3;
    --text-dark: #1A1A1A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}







/* Hero Section */
.hero-section {
    background: url('.././about-hero-bg.png') center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.badge-about {
    background: white;
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.badge-icon {
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4B5563;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom:hover {
    background: #011F7A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 47, 174, 0.3);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 47, 174, 0.2);
}

/* Who We Are Section */
.who-we-are-section {
    background: #FFFFFF;
}

.wwa-content {
    padding-right: 2rem;
}

.section-badge {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}



.section-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 1.25rem;
}

.wwa-images {
  position: relative;
  padding-right: 18px;
  padding-bottom: 18px;
}

.support-content{
  background-color: #011F7A;
  padding: 20px 15px;
  margin-top: 20px;
  border-radius: 20px;
}
.support-content:hover p{
  color:white !important
}
.support-content:hover h3{
  color:white !important
}



.wwa-grid {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "large iot"
    "large cloud"
    "support cloud";
  gap: 16px;
}


.wwa-img-item.large {
  grid-area: large;
  height: 440px;
}

.wwa-img-item.iot {
  grid-area: iot;
  height: 300px;
}

.wwa-img-item.cloud {
  grid-area: cloud;
  height: 300px;
}

.wwa-img-item.support-card {
  grid-area: support;
}






.wwa-img-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.wwa-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.wwa-img-item.medium {
  height: 300px;
}


.wwa-img-item.support-card {
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 3px solid #E5E7EB;
}

.support-card {
  background: #0b2fae;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;
}

.support-content {
  text-align: center;
}

.support-content h3 {
  font-size: 42px;
  font-weight: 800;
  margin: 0;
  color: #fff;
}

.support-content p {
  font-size: 14px;
  margin-top: 4px;
  opacity: 0.9;
  color: #fff;
}
.support-content:hover h3 {
  color: #000;
}
.support-content:hover p {
  color: #000;
}


@media (max-width: 768px) {
  .wwa-grid {
    grid-template-areas:
      "large"
      "iot"
      "cloud"
      "support";
    grid-template-columns: 1fr;
  }


  .wwa-img-item.large,
  .wwa-img-item.medium {
    height: auto;
  }

  .wwa-images::after {
    display: none;
  }
}







/* Mission & Vision Cards */
.mission-vision-row {
    margin-top: 4rem;
}

.mission-card,
.vision-card {
    padding: 3rem;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mission-card {
    background: #FFFFFF;
    border: 1px solid #012FAE;
    color: var(--text-dark);
}

.vision-card {
    background: #FFFFFF;
    border: 1px solid #012FAE;
    color: var(--text-dark);
}

.card-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.card-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.card-text {
    font-size: 18px;
    line-height: 33px;
    margin: 0;
    color: #4B5563;
    transition: all 0.3s ease;
}




/* Team Section */
.team-section {
    background-color: #1a2332;
    background-image: url('.././images/our-team-bg%20copy.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.team-section .container {
    position: relative;
    z-index: 2;
}

.team-section .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-section .section-subtitle {
    color: #9CA3AF;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.team-category-title {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.flip-card {
    perspective: 1000px;
    height: 350px;
    margin-bottom: 2rem;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.flip-card-front {
    background: white;
    color: var(--text-dark);
}

.flip-card-front.blue-card {
    background: var(--primary-blue);
    color: white;
}

.flip-card-back {
    background: var(--primary-blue);
    color: white;
    transform: rotateY(180deg);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-front h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.flip-card-front .role {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6B7280;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.flip-card-front.blue-card .role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4B5563;
}

.flip-card-front.blue-card .description {
    color: rgba(255, 255, 255, 0.9);
}

.flip-card-back .back-text {
  color: white;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* People First Section */
.people-first-section {
    background-color: #f9fafb;
}

.people-first-card {
    border-radius: 30px;
    background: radial-gradient(47.96% 51.26% at 22.15% 62.67%, #334270 0%, #1A2136 100%);
    border-radius: 24px;
    padding: 3rem;
    color: white;
}

.milvian-mark-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.people-first-content .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.people-first-content .section-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 33px;
    margin-bottom: 1.5rem;
}

.people-first-image {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.people-first-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* What Drives Us Section */
.values-section {
    background: #EEF1F9;  
}

.values-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}



.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* Horizontal Value Cards */
.value-card-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  background: #ffffff;
  border-radius: 14px;
  padding: 35px 22px;

  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.value-card-horizontal:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}



/* Content */
.value-content {
  flex: 1;
}

.value-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.value-text {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin: 0;
}

/* Mobile stacking */
@media (max-width: 576px) {
  .value-card-horizontal {
    align-items: flex-start;
  }
}


/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .wwa-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .mission-vision-row {
        margin-top: 3rem;
    }

    .mission-card,
    .vision-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .who-we-are-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .wwa-grid {
        grid-template-columns: 1fr;
    }

    .wwa-img-item.large {
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 38px;
    }

    .mission-card,
    .vision-card {
        padding: 2rem;
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3B82F6;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
}

.service-text {
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
}

/* How We Work Section */
.how-we-work-section {
    background-image: url('.././images/how-we-work-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.section-badge-white {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.section-title-white {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.section-subtitle-white {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.work-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.work-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #012FAE 0%, #012FAE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.work-title {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 20px;
}

.work-text {
    color: #000;
    line-height: 1.7;
    margin: 0;
    font-size: 17px;
}

/* AI That Delivers Section */
.ai-delivers-section {
    background-color: #ffffff;
}

.capability-card {
    background: #f9fafb;
    border-radius: 5px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.capability-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #3B82F6;
}

.capability-icon {
    margin-bottom: 30px;
}



.capability-title {
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 18px;
}

.capability-text {
    color: #000;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

/* Stats Section */
.stats-section {
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 2px solid #E5E7EB;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3B82F6 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.stat-label {
    color: #6B7280;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Stats Highlight Section */
.stats-highlight-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.stat-highlight-item {
    padding: 2rem 1.5rem;
}

.stat-highlight-number {
    font-size: 50px;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.stat-highlight-label {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.fw-400{
  font-weight: 400 !important;
}

/* Partnerships Section */
.partnerships-section {
    background: #ffffff;
}

.partnership-card {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #E5E7EB;
    background: white;
}

/* Card hover */
.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

/* Default content */
.partnership-content {
    padding: 24px;
    background: white;
    transition: all 0.4s ease;
}

/* 👇 Content changes ONLY when entire card is hovered */
.partnership-card:hover .partnership-content {
    background: radial-gradient(
        47.96% 51.26% at 22.15% 62.67%,
        #3092E8 0%,
        #012FAE 100%
    );
}

/* Text turns white on card hover */
.partnership-card:hover .partnership-title,
.partnership-card:hover .partnership-text,
.partnership-card:hover .btn-partnership-outline {
    color: #ffffff;
}

/* Optional: button border on hover */
.partnership-card:hover .btn-partnership-outline {
    border-color: #ffffff;
}


.partnership-card-blue {
    background: white;
}

.partnership-card-white {
    background: white;
}

.partnership-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.partnership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.partnership-card:hover .partnership-image img {
    transform: scale(1.05);
}

.partnership-content {
    padding: 2.5rem;
}

.partnership-title {
    color: #1F2937;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.partnership-card:hover .partnership-title {
    color: white;
}

.partnership-text {
  font-size: 17px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 2rem;
    transition: color 0.4s ease;
}

.partnership-card:hover .partnership-text {
    color: rgba(255, 255, 255, 0.9);
}

.btn-partnership {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: #1e40af;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-partnership:hover {
    background: #1e3a8a;
    transform: translateX(4px);
}

.partnership-card:hover .btn-partnership {
    background: white;
    color: #1e40af;
}

.partnership-card:hover .btn-partnership:hover {
    background: #f9fafb;
}

.btn-partnership-outline {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: #1e40af;
    border: 2px solid #1e40af;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-partnership-outline:hover {
    background: #1e40af;
    color: white;
    transform: translateX(4px);
}

.btn-partnership-white-outline{
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-partnership-white-outline:hover {
    background: #1e40af;
    color: white;
    transform: translateX(4px);
}

.partnership-card:hover .btn-partnership-outline {
    background: white;
    color: #1e40af;
    border-color: white;
}

.partnership-card:hover .btn-partnership-outline:hover {
    background: #f9fafb;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-image: url('.././images/ready-to-move-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('.././images/footer-bg.png') center/cover no-repeat;
    opacity: 0.1;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #1e40af;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f9fafb;
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-image: url('.././images/footer-bg.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 4rem 0 2rem;
    color: #000000;
    position: relative;
}


.footer .container {
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #000000;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social-icon svg {
    width: 44px;
    height: 44px;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1e40af;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  margin-top: 40px;
  padding-top: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  font-size: 14px;
  color: #6b7280;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom-links a {
  color: #6b7280;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}


.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-info-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #ffffff 100%);
}

.contact-main-title {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.contact-main-subtitle {
    font-size: 1.125rem;
    color: #000;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #3B82F6;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: radial-gradient(47.96% 51.26% at 22.15% 62.67%, #3092E8 0%, #012FAE 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    margin-bottom: 1rem;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
}

.contact-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 15px 0px 5px 0px;
}

.contact-card-text {
    font-size: 15px;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 28px;
}

.contact-link {
    font-size: 0.9375rem;
    color: #012FAE;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2563EB;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
}

.contact-input {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.contact-input::placeholder {
    color: #9CA3AF;
}

.contact-checkbox-label {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
}

.contact-checkbox-label a {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
}

.contact-checkbox-label a:hover {
    text-decoration: underline;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #3B82F6 0%, #012FAE 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
}

/* Support Section */


.support-card {
    background: #f9fafb;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.support-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-color: #3B82F6;
}

/* Support icons – final fix */
.support-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #eef5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.support-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.support-card:hover .support-icon {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}


.support-svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}


.support-card:hover .support-icon {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.support-card:hover .support-icon svg path {
  fill: #ffffff;
  stroke: #ffffff;
}



.support-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
}

.support-text {
    color: #6B7280;
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

/* FAQ Section */

.faq-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #3B82F6;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #3B82F6;
}

.faq-card.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-card.active .faq-answer {
  max-height: 500px;
  margin-top: 12px;
}

.faq-answer p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #ffffff 100%);
}

.faq-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-item {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-button {
    background: white;
    color: #1F2937;
    font-weight: 600;
    font-size: 1.0625rem;
    padding: 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed) {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
}

.faq-button:focus {
    box-shadow: none;
    border: none;
}

.faq-button::after {
    filter: none;
}

.faq-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-body {
    color: #6B7280;
    line-height: 1.7;
    padding: 1.5rem;
    background: #F9FAFB;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Responsive for new sections */
@media (max-width: 991px) {
    .section-title-white {
        font-size: 2.25rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .contact-main-title {
        font-size: 2rem;
    }

    .contact-form-card {
        padding: 2rem;
    }

    .support-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .work-number {
        font-size: 2.5rem;
    }

    .capability-card {
        padding: 1.5rem;
    }

    .stats-section {
        margin-top: 2rem;
    }

    .stat-highlight-number {
        font-size: 2.25rem;
    }

    .partnership-image {
        height: 220px;
    }

    .partnership-content {
        padding: 2rem;
    }

    .partnership-card-blue .partnership-title,
    .partnership-card-white .partnership-title {
        font-size: 20px;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    .contact-main-title {
        font-size: 1.75rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-info-section {
        padding: 3rem 0;
    }

    .support-section {
        padding: 3rem 0;
    }

    .faq-section {
        padding: 3rem 0;
    }

    .map-container {
        height: 300px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

.follow-journey {
  background-image: url('.././images/ready-to-move-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0;
  color: #ffffff;
}

.follow-journey .cta-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 12px;
}

.follow-journey .cta-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-social {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-social img {
  width: 15px;
  height: 15px;
}

/* Solutions Page Styles */

.solution-section {
  background: #F9FAFB;
}

.solution-section:nth-child(even) {
  background: #ffffff;
}

.solution-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 2.5rem;
}

.solution-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.info-card {
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.info-card--red {
      border: 1.5px solid #ff4b4b;
}

.info-card--blue {
  border: 1.5px solid #4f6dff;
}

.info-card__heading {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #1F2937;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  margin-bottom: 0.75rem;
  position: relative;
  color: #374151;
  line-height: 1.6;
}



.result-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #DBEAFE;
  border: 1px solid #93C5FD;
  border-radius: 50px;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  color: #1E40AF;
}

.result-pill__label {
  font-weight: 700;
}

/* What We Monitor Section */

.monitor-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
  color: white;
}

.monitor-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3rem;
}

.monitor-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.monitor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.monitor-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  border-radius: 12px;
}

.monitor-icon svg {
  width: 36px;
  height: 36px;
  stroke: white;
  fill: none;
}

.monitor-icon svg circle,
.monitor-icon svg path[fill] {
  fill: white;
}

.monitor-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 0.5rem;
}

.monitor-desc {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.5;
}

/* The Milvian Approach Section */

.approach-section {
  background: linear-gradient(135deg, #F9FAFB 0%, #ffffff 100%);
}

.approach-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 1rem;
}

.approach-subtitle {
  font-size: 1.125rem;
  color: #6B7280;
  max-width: 800px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.approach-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.approach-card__top {
  padding: 1.5rem;
  background: white;
}

.approach-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 0.5rem;
}

.approach-card__desc {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.6;
}

.approach-card__imgwrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-grow: 1;
}

.approach-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   SOLUTION SECTION (Next)
========================= */

.solution-section {
  background: #ffffff;
}

.solution-title {
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  color: #0f172a;
}



/* Cards */
.info-card {
  border-radius: 8px;
  background: #fff;
  padding: 15px 25px;
  border: 1px solid #e2e8f0;
}

.info-card__heading {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
  font-size: 22px;
}

/* Red/Blue borders like screenshot */
.info-card--red {
  border: 1.5px solid #ff4b4b;
}

.info-card--blue {
  border: 1.5px solid #4f6dff;
}

/* Lists */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  position: relative;
  margin: 10px 0;
  font-size: 16px;
  color: #334155;
  line-height: 1.35;
}



.info-list--red li {
    display: flex;
    align-items: flex-start;
    gap: 10px;              /* space between icon & text */
}

.info-list--red i {
    color: #FF0000;         /* red */
    font-size: 16px;
    margin-top: 3px;        /* align icon with text */
}
.info-list--blue li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-list--blue i {
    color: #012FAE;
    font-size: 16px;
    margin-top: 3px;
}


/* Result pill */
.result-pill {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  background: #eef2ff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  color: #0f172a;
  width: fit-content;
}

.result-pill__label {
  font-weight: 700;
}

/* Right image */
.solution-image-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #f1f5f9;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  margin: 0 auto;
}

.solution-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 320px;
}

/* Responsive spacing tuning */
@media (max-width: 991.98px) {
  .solution-left {
    max-width: 560px;
  }
  .solution-image {
    min-height: 260px;
  }
}

/* =========================
   SOLUTION BOX (Bordered)
========================= */

.solution-box {
  border: 1.5px solid #d1d5db;
  border-radius: 16px;
  padding: 0px 28px 32px 28px;
  background: #ffffff;
}

/* Right content alignment */
.solution-right {
  margin-left: auto;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .solution-box {
    padding: 24px 18px;
  }

  .solution-right {
    max-width: 100%;
    margin-left: 0;
  }
}

/* =========================
   WHAT WE MONITOR (Blue Grid)
========================= */

.monitor-section{
  background: radial-gradient(1200px 600px at 50% 80%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 60%),
              linear-gradient(180deg, #0536b3 0%, #032a98 100%);
  padding: 70px 0;
}

.monitor-title{
  color:#fff;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 34px !important;
}

.monitor-card{
  background:#fff;
  border-radius: 6px;
  padding: 26px 26px;
  min-height: 150px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
}

.monitor-card::after{
  content:"";
  position:absolute;
  right:-40px;
  bottom:-40px;
  width:140px;
  height:140px;
  background: radial-gradient(circle, rgba(5,54,179,.10) 0%, rgba(5,54,179,0) 70%);
}

.monitor-icon img{
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.monitor-name{
  margin-top: 14px;
  font-weight: 800;
  color:#0f172a;
  font-size: 15px;
}

.monitor-desc{
  margin-top: 4px;
  font-size: 12px;
  color:#475569;
}

/* tighter on mobile */
@media (max-width: 575.98px){
  .monitor-section{ padding: 54px 0; }
  .monitor-card{ padding: 20px; min-height: 140px; }
}


.support-card-v3 {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 24px;

  text-align: center;
  height: 100%;

  transition: all 0.3s ease;
}

.support-card-v3:hover,
.support-card-v3.active {
  border-color: #2563eb;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
}

/* Icon */
.support-card-v3 .support-icon {
  margin: 0 auto 16px;

  border-radius: 50%;
  background: #eef5ff;

  display: flex;
  align-items: center;
  justify-content: center;
}



/* Title */
.support-title {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

/* Blue highlight line */
.support-highlight {
  font-size: 18px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 0px;
}

/* Description */
.support-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin-top: 0px;
}
.contact-milvian{
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  margin-top: 20px;
}


/* SECTION */
.monitor-v4 {
  background: linear-gradient(180deg, #0b3bc9 0%, #082e9f 100%);
}

/* TITLE */
.monitor-v4-title {
  text-align: center;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 48px;
}

/* GRID */
.monitor-v4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.monitor-v4-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 30px;
  text-align: left;
}

/* ICON (TOP-LEFT) */
.monitor-v4-icon {
  margin-bottom: 30px;
}



/* TITLE */
.monitor-v4-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

/* DESCRIPTION */
.monitor-v4-card p {
  font-size: 17px;
  color: #000;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .monitor-v4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .monitor-v4-grid {
    grid-template-columns: 1fr;
  }
}
.padding-milvian-section{
  padding: 120px 0px !important;
}
.contact-us-links{
  border: 1px solid rgb(221, 218, 218);
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
  margin: 10px 0px 0px 0px;
}


/* Mobile devices */
@media (max-width: 767px) {
  .work-title {
    font-size: 20px;
  }
  .capability-title{
    font-size: 20px;
  }
  .people-first-card{
    padding: 40px 20px 40px 20px;
  }
  .people-first-content .section-title{
    font-size: 30px;
  }
  .card-title{
    font-size: 20px;
  }
  .card-text{
    font-size: 15px;
    line-height: 25px;
  }
  .people-first-content .section-text{
    font-size: 15px;
        line-height: 25px;

  }
  .work-text{
    font-size: 15px;
  }
  .capability-text{
    font-size: 15px;
  }
  .partnership-text{
    font-size: 15px;
  }
  .contact-main-subtitle{
    font-size: 15px;
  }
  .info-card__heading {
    font-size: 20px;
  }
  .info-list li{
    font-size: 15px;
  }
  .monitor-v4-card h4{
    font-size: 20px;
  }
  .monitor-v4-card p{
    font-size: 15px;
  }
}
