/* Modern card hover effects for compliance and about sections */
.compliance-card {
    transition: box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.04);
}
.compliance-card:hover {
    transform: translateY(-10px) scale(1.025);
    box-shadow: 0 8px 32px rgba(94, 129, 244, 0.10), 0 1.5px 8px rgba(44, 62, 80, 0.07);
    border-color: #ececec;
    z-index: 2;
}

.value-card {
    transition: box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s;
    border-radius: 18px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.04);
    text-align: left;
}
.value-card:hover {
    box-shadow: 0 8px 32px rgba(94,129,244,0.10), 0 1.5px 8px rgba(44,62,80,0.07);
    border-color: #333;
    z-index: 2;
}

/* Only apply story-section hover effect on home page */
.home-page .story-section {
    transition: box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(44,62,80,0.04);
}
.home-page .story-section:hover {
    transform: translateY(-8px) scale(1.018);
    box-shadow: 0 8px 32px rgba(94,129,244,0.10), 0 1.5px 8px rgba(44,62,80,0.07);
    border-color: #4c6ef5;
    z-index: 2;
}
/* Minimalistic Apple-like fade/slide-in animations */
.minimal-pre-fade {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
    will-change: opacity, transform;
}
.minimal-fade-in {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}
/* Minimalistic Apple-like fade/slide-in animations */
.minimal-pre-fade {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
    will-change: opacity, transform;
}
.minimal-fade-in {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}
/* ---CSS--- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #242627;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout components */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-wrapper {
    width: 100%;
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-between {
    justify-content: space-between;
}

.flex-start {
    justify-content: flex-start;
}

.flex-1 {
    flex: 1;
}

.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* Animations and Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 22px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: slideInFromTop 0.6s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 142px;
    height: 38px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-size: 15px;
    font-weight: 500;
    color: #242627;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 0;
}
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5e81f4, #4c6ef5);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #5e81f4;
    transform: translateY(-2px);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item.active {
    color: #5e81f4;
}

.btn-primary {
    background: linear-gradient(135deg, #5e81f4, #4c6ef5);
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(94, 129, 244, 0.3);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4c6ef5, #3b5ef5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(94, 129, 244, 0.4);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2;
    color: #0a0d31;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.text-primary {
    color: #5e81f4;
    background: linear-gradient(135deg, #5e81f4, #4c6ef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.hero-description {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #3f444b;
    margin-bottom: 32px;
    max-width: 90%;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-img {
    width: 100%;
    max-width: 710px;
    height: auto;
    transition: transform 0.6s ease;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Page Hero */
.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #5e81f4 0%, #4a6bd3 100%);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Enterprise Suite Section */
.enterprise-suite {
    padding: 64px 0;
}

.card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-dark {
    background-color: #242627;
    color: #def0ff;
    padding: 48px;
    position: relative;
}

.badge {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.15);
    color: #def0ff;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 32px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.31;
    max-width: 782px;
}

.vector-bg {
    position: absolute;
    top: 0;
    right: 60px;
    width: 230px;
    height: 230px;
    background-image: url('assets/images/shape-dots.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(90%deg);
}

/* Features Section */
.features {
    padding: 64px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 305px;
    height: 90px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #0a0d31;
    margin-bottom: 16px;
}

.feature-description {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.4;
    max-width: 250px;
}

/* Compliance Section */
.compliance {
    padding: 80px 0;
    background: linear-gradient(0deg, rgba(94, 129, 244, 0.1) 0%, rgba(94, 129, 244, 0.1) 100%), 
                linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

/* .compliance-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
} */

.compliance-icon {
    width: 347px;
    height: 86px;
    margin-bottom: 24px;
}

.icon-wrapper {
    width: 65px;
    height: 65px;
    position: relative;
    margin-bottom: 24px;
}

.compliance-icon-small {
    width: 54px;
    height: 54px;
    position: absolute;
    top: 5px;
    left: 5px;
}

.compliance-title {
    font-size: 23.8px;
    font-weight: 600;
    color: #242627;
    margin-bottom: 16px;
    line-height: 1.31;
}
/* .compliance-card:hover .compliance-title {
    color: #5e81f4;
} */
.compliance-description {
    font-size: 16px;
    color: #3f444b;
    line-height: 1.4;
}

/* Teams Section */
.teams {
    padding:150px 0;
    background-color: #242627;
    color: #def0ff;
    text-align: center;
}

.section-subtitle {
    font-size: 15.9px;
    margin-bottom: 48px;
    color: #f5f5f5;
}

.teams-header {
    max-width: 400px;
    margin: 0 auto 24px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 30px 30px 0 0;
    padding: 24px 32px;
}

.teams-title {
    font-size: 20px;
    font-weight: 600;
    color: #f5f5f5;
}

.section-divider {
    width: 100%;
    height: 95px;
    margin-bottom: 32px;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.team-card {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 32px;
    border-radius: 12px;
}

.team-title {
    font-size: 20px;
    font-weight: 600;
    color: #f5f5f5;
    margin-bottom: 16px;
}

.team-description {
    font-size: 14px;
    color: rgba(245, 245, 241, 0.7);
    line-height: 1.4;
}

/* Trusted By Section */
.trusted-by {
    padding: 260px 0;
}

.trusted-by-title{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    TEXT-ALIGN: center;
}
.personas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 64px;
}

.persona {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 50px;
    padding: 8px 16px;
}

.persona-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.persona-title {
    font-weight: 600;
    color: #0a0d31;
    font-size: 16px;
    white-space: nowrap;
}

/* Contact CTA Section */
.contact-cta {
    padding: 64px 0;
}

.cta-content {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-header {
    background-color: #242627;
    padding: 48px;
}

.cta-body {
    background: linear-gradient(0deg, rgba(94, 129, 244, 0.1) 0%, rgba(94, 129, 244, 0.1) 100%), 
                linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.cta-description {
    font-size: 20px;
    color: #242627;
    line-height: 1.5;
    margin-bottom: 32px;
}

.contact-info {
    margin-bottom: 32px;
}

.contact-item {
    font-size: 16px;
    color: #0a0d31;
    margin-bottom: 8px;
}

.benefits-title {
    font-size: 20px;
    font-weight: 600;
    color: #0a0d31;
    margin-bottom: 16px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 16px;
    color: #242627;
}

.check-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
}

.next-steps-title {
    font-size: 20px;
    font-weight: 600;
    color: #0a0d31;
    margin-bottom: 16px;
}

.steps {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.step {
    display: flex;
    align-items: flex-start;
    max-width: 140px;
}

.step-number {
    font-weight: 600;
    color: #242627;
    margin-right: 8px;
}

.step-text {
    font-size: 14px;
    color: #242627;
}

.step-arrow {
    width: 64px;
    height: 66px;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    color: #242627;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5e81f4;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: #1c1d21;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}


.footer-image {
    position: absolute; 
    right: 100px; 
    bottom: 250px; 
    z-index: 10;
}

.footer-image img {
    max-width: 600px; /* Set the max-width to control image size */
    height: 600px; /* Ensure the image maintains its aspect ratio */
    border-radius: 10px; /* Optional: Add rounded corners to the image */
}


.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    color: #ffffff;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #5e81f4, #4c6ef5);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(245,245,241,0.7);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: #5e81f4;
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 10px;
}

.newsletter {
    margin-top: 30px;
}

.newsletter-input {
    padding: 15px 15px;
    border: 2px solid #5f6567;
    border-radius: 8px;
    background-color: transparent;
    color: #f5f5f5;
    margin-bottom: 15px;
    width:40%;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #5e81f4;
    box-shadow: 0 0 0 3px rgba(94, 129, 244, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(245, 245, 245, 0.5);
}

.privacy-text {
    font-size: 12px;
    color: #5f6567;
    margin-bottom: 15px;
    line-height: 1.3;
    width:40%;
}

.footer-cta {
    background: linear-gradient(135deg, rgba(94, 129, 244, 0.1), rgba(76, 110, 245, 0.1));
    padding: 40px 20px;
    text-align: center;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 129, 244, 0.2);
    transition: all 0.3s ease;
}

.footer-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(94, 129, 244, 0.2);
}

.footer-logo {
    width: 88px;
    height: 74px;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.footer-cta:hover .footer-logo {
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 25px;
    text-align: center;
    color: #242627;
    background: linear-gradient(135deg, #ffffff, #f8faff);
    position: relative;
    z-index: 1;
}


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

.footer-bottom-links a {
    color: #242627;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #5e81f4;
    transform: translateY(-2px);
}

/* About Page Specific Styles */
body {
  color: #1c1d21;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-wrapper {
  width: 100%;
  padding: 60px 0;
}

.content-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ================= HERO ================= */
.hero-section {
  text-align: center;
  padding-bottom: 0;
}

.about-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #5f6567;
  background: #f5f5f5;
  padding: 8px;
  border-radius: 4px;
  margin-bottom: 24px;
  display: inline-block;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  color: #0a0d31;
  line-height: 1.2;
  max-width: 780px;
  margin: 0 auto 24px;
}

.hero-description {
  font-size: 18px;
  color: #00000099;
  font-weight: 400;
  max-width: 780px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ================= STORY TIMELINE ================= */
.story-section {
  padding: 60px 0;
}

.story-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.story-content.reverse {
  flex-direction: row-reverse;
}

.story-image {
  flex: 0 0 320px;
  border-radius: 8px;
}

.story-text {
  flex: 1;
  min-width: 300px;
}

.story-title {
  font-size: 20px;
  font-weight: 600;
  color: #0a0d31;
  margin-bottom: 16px;
}

.story-description {
  font-size: 15px;
  color: #00000099;
  line-height: 1.5;
}

/* ================= WHY US ================= */
.why-us-section {
  text-align: center;
}

.why-us-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  background: #f5f5f5;
  color: #5f6567;
  padding: 8px;
  border-radius: 4px;
  margin-bottom: 24px;
  display: inline-block;
  letter-spacing: 1px;
}

.why-us-text {
  font-size: 18px;
  line-height: 2.2;
  color: #00000099;
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

/* ================= VALUES ================= */
.values-section {
  background: #242627 url('assets/images/Arrow\ up.svg') no-repeat center / cover;
  border-radius: 8px;
  padding: 25px 40px;
  margin: 80px 0;
  text-align: left;
}

.values-badge {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  background: #00000026;
  color: #dee0ff;
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.values-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: rgb(222, 224, 255);
    margin-bottom: 60px;
    max-width: 700px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}


.value-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 20px;
}

.value-title {
  font-size: 20px;
  font-weight: 600;
  color: #0A0D31;
  margin-bottom: 12px;
}

.value-description {
  font-size: 14px;
  color: #7d7d7e;
  line-height: 1.5;
}

/* ================= CONNECTED COMPLIANCE ================= */
.connected-section {
  padding: 100px 0;
}

.connected-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.connected-text {
  flex: 1;
  min-width: 300px;
}

.connected-title {
  font-size: 32px;
  font-weight: 700;
  color: #0a0d31;
  margin-bottom: 30px;
}

.connected-description {
  font-size: 15px;
  color: #00000099;
  line-height: 1.6;
  margin-bottom: 30px;
}

.connected-image {
  flex: 0 0 400px;
  max-width: 100%;
  border-radius: 6px;
}

/* Timeline container */
.timeline {
  position: relative;
  padding: 50px 0;
  overflow: visible;
}

.timeline-dot.large {
  width: 28px;              
  height: 28px;
  border-width: 10px;         
  background-color: #fff;
  border-color: #3B82F6;
}

/* Timeline content */
.timeline-content {
  max-width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
  padding-right: 50px;
}

/* Static gray vertical line */
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #e0e0e0;
  transform: translateX(-50%);
  z-index: -1;
}

/* Animated blue line overlay */
.timeline-line-fill {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 0;
  background-color: #3B82F6;
  transform: translateX(-50%);
  z-index: 2;
  transition: height 0.3s ease-out;
}

/* Timeline block */
.timeline-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 10px 0;
  z-index: 3;
}

/* Content + image alignment */
.timeline-img,
.timeline-content {
  width: 45%; 
  display: flex;
  flex-direction: column;
  justify-content: center; 
}


/* Dot in the center line */
.timeline-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: white;
  border: 4px solid #3B82F6;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Active state for dot */
.timeline-dot.active {
  transform: translate(-50%, -50%) scale(1.2);
  background-color: #3B82F6;
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Image styling */
.timeline-img img {
  width: 80%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.start-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;              
  
  width: 24px;
  height: 24px;
  border: 4px solid #3B82F6;
  background-color: #fff;
  border-radius: 50%;
}


/* Responsive */
@media (max-width: 768px) {
  .timeline-block {
    flex-direction: column;
    text-align: center;
  }

  .timeline-line,
  .timeline-line-fill {
    left: 20px;
    transform: none;
  }

  .timeline-dot {
    left: 20px;
    transform: translateY(-50%);
  }

  .timeline-content,
  .timeline-img {
    width: 100%;
  }
}

/* Contact Page Specific Styles */
.main-container {
    width: 100%;
    overflow-x: hidden;
}

.content-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 40px 0;
    text-align: center;
}

.contact-badge {
    background-color: #f5f5f5;
    color: #5f6567;
    padding: 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 68px;
    font-weight: 600;
    line-height: 1.1;
    color: #0a0d31;
    margin-bottom: 32px;
}

.contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-label {
    font-size: 16px;
    font-weight: 500;
    color: #242627;
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
    color: #242627;
}

.contact-icon {
    width: 72px;
    height: 66px;
}
.contact-link {
    text-decoration: none;
    color: #242627;
  }

.hero-image {
    width: 100%;
    border-radius: 4px;
    margin-top: 32px;
}

/* Locations Section */
.locations-section {
  padding: 80px 40px;
  background-color: #ffffff;
  color: #1a1a2e;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.locations-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.locations-text {
  flex: 1 1 500px;
}

.locations-title {
  font-size: 36px;
  font-weight: 700;
  color: #0a0a23;
  margin-bottom: 16px;
}

.locations-description {
  font-size: 18px;
  line-height: 1.7;
  color: #666666;
  max-width: 600px;
}

.locations-image {
  flex: 1 1 300px;
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* === Office Cards === */
.office-cards {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.office-card {
  border-radius: 12px;
  padding: 24px 0px;
  flex: 1 1 350px;
  max-width: 450px;
}

.office-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a0d31
}

.office-location {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #444444;
}

.office-address {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 12px;
}

.get-direction {
  font-size: 12px;
  font-weight: 500;
  color: #646464;
  transition: color 0.3s ease;
}

.get-direction:hover {
  color: #3b5ef5;
  
}


.contact-info-section {
    padding: 80px 0;
    background-color: #f8f9ff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-title {
    font-size: 24px;
    font-weight: 600;
    color: #5e81f4;
    margin-bottom: 16px;
}

.contact-info-detail {
    font-size: 20px;
    font-weight: 600;
    color: #5e81f4;
    margin-bottom: 8px;
}

.contact-info-description {
    font-size: 14px;
    color: #3f444b;
}

.main-contact {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #3f444b;
}


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        height: auto;
        padding: 20px 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 0;
        text-align: center;
    }
    
    .hero-content,
    .mission-content,
    .solution-content,
    .contact-grid,
    .cta-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid,
    .compliance-grid,
    .teams-grid,
    .values-grid,
    .team-grid,
    .stats-grid,
    .additional-grid,
    .contact-info-grid,
    

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .personas {
        flex-direction: column;
        align-items: center;
    }
    
    .steps {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        width: 32px;
        height: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .newsletter-input {
    padding: 15px 15px;
    border: 2px solid #5f6567;
    border-radius: 8px;
    background-color: transparent;
    color: #f5f5f5;
    margin-bottom: 15px;
    width:99%;
    transition: all 0.3s ease;
}
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-description,
    .page-subtitle {
        font-size: 16px;
    }
    
    .feature-icon {
        width: 100%;
        max-width: 250px;
        height: auto;
    }
    
    .compliance-icon {
        width: 100%;
        max-width: 280px;
        height: auto;
    }
}

/* Under developmet Page */
.hero-dev {
  margin-bottom: 0;
  line-height: 1;
  font-weight: 700;
  padding: 260px 0;
  text-align: center;
}

.dot {
  color: #5e81f4;
}

.hero-dev-description {
  text-align: center;
  margin: 40px;
  font-weight: normal;
}

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .hero-dev {
    padding: 200px 0;
  }

  .hero-dev-description {
    margin: 30px;
    font-size: 1rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .hero-dev {
    padding: 140px 20px;
  }

  .hero-dev-description {
    margin: 20px;
    font-size: 0.95rem;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  .hero-dev {
    padding: 100px 15px;
  }

  .hero-dev-description {
    margin: 15px;
    font-size: 0.9rem;
  }

  .hero-dev h1 {
    font-size: 1.6rem;
  }

  .dot {
    font-size: 1.8rem;
  }
}

