.navbar {
    background-color: #002868;
    color: white;
}

.nav-item {
    color: #ffffff;
}

.nav-button {
    background-color: #FF9933;
    color: #fff;
}

.section-title {
    color: #002868;
    border-left: 5px solid #FF9933;
    padding-left: 10px;
}

/* News Update Section */
.news-update {
    background: #f9fbe7;
    border-bottom: 1px solid #e3e3e3;
    padding: 0.5rem 0;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

/* News Logo Container (right side of news section) */
.news-logo-container {
    width: 50vw;
    min-width: 320px;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-left: 1px solid #e3e3e3;
    /* Match height to news-container */
    padding: 0 25px;
}

.news-logo-container .news-logo-img {
    width: 80%;
    max-width: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    /* Make logo visually large */
}

.news-container {
    color: rgb(248, 0, 0);
    width: 50vw;
    min-width: 320px;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0 25px;
}

.news-label {
    font-weight: 700;
    color: #1a237e;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.news-label i {
    color: #f57c00;
    font-size: 1.2rem;
}

.news-marquee {
    font-size: 1rem;
    color: red;
    font-weight: 500;
    width: 100%;
    background: transparent;
    border: none;
}

.news-item {
    margin-bottom: 1.5rem;
    display: block;
    color: red;
}

.nav-top-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0 0.25rem 0;
    border-bottom: 1px solid #e3e3e3;
    gap: 1rem;
}

.logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 0;
    margin-right: 0.5rem;
}

.site-brand-full {
    font-family: 'Inter', 'Arial', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-button {
    margin-left: 2rem;
}

.site-name {
    display: inline-block;
    font-family: 'Inter', 'Arial', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #1a237e;
    margin-left: 0.75rem;
    vertical-align: middle;
    letter-spacing: 2px;
}

/* Clients Carousel Styles */
.clients-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 2rem 0;
}

.clients-carousel {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: scrollClients 20s linear infinite;
    width: max-content;
}

.client-logo-carousel {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 16px;
    /* background: #fff; */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    padding: 1rem;
    transition: transform 0.3s;
}

.client-logo-carousel:hover {
    transform: scale(1.08);
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hide scrollbar for carousel */
.clients-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

/* --- Icon Enhancements for Contact & Steps --- */
.contact-title i {
    color: #4f8cff;
    margin-right: 10px;
}

.contact-details i {
    color: #4f8cff;
    margin-right: 8px;
}

.contact-form h3 i {
    color: #4f8cff;
    margin-right: 8px;
}

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon i {
    position: absolute;
    left: 12px;
    color: #b0b8d1;
    font-size: 1rem;
    z-index: 2;
}

.input-icon input,
.input-icon textarea {
    padding-left: 36px !important;
}

/* --- How to Register Steps --- */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
    margin-top: 32px;
}

.work-step {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(80, 120, 255, 0.08);
    padding: 36px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}

.work-step:hover {
    box-shadow: 0 8px 32px rgba(80, 120, 255, 0.16);
    transform: translateY(-4px) scale(1.03);
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f8cff 0%, #6a82fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(80, 120, 255, 0.10);
}

.step-icon i,
.step-icon svg {
    color: #fff !important;
    font-size: 2.4rem !important;
    width: 2.4rem !important;
    height: 2.4rem !important;
    line-height: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    font-size: 1rem;
    color: #6a82fb;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.step-description {
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Contact Section Styles --- */
.contact-section {
    background: linear-gradient(120deg, #e3e6f3 0%, #f8f9fb 100%);
    padding: 64px 0 48px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(80, 120, 255, 0.08);
    padding: 48px 32px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 320px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #4f8cff;
    margin-bottom: 8px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 18px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #222;
    font-size: 1rem;
    line-height: 2;
}

.contact-details a {
    color: #4f8cff;
    text-decoration: underline;
    transition: color 0.2s;
}

.contact-details a:hover {
    color: #ffb300;
}

.contact-form {
    flex: 1 1 340px;
    min-width: 280px;
    background: #f8f9fb;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(80, 120, 255, 0.06);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form h3 {
    margin-bottom: 8px;
    color: #4f8cff;
    font-size: 1.3rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfd8dc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    color: #222;
    transition: border 0.2s;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #4f8cff;
    outline: none;
}

.contact-form button.btn-primary {
    margin-top: 8px;
    width: 100%;
    font-size: 1.1rem;
    padding: 14px 0;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 32px;
        padding: 32px 10px;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #4A5568;
    background-color: #FFFFFF;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1A202C;
    font-weight: 700;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.57;
    text-align: center;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    line-height: 2;
    color: #718096;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Decorative Elements */
.deco-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #F76680 0%, #57007B 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* ✅ Stack top and bottom row */
    gap: 0.5rem;
    /* Optional: space between rows */
    padding: 0 25px;
}



.nav-brand .logo {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 61px;
    align-items: center;
}

.nav-item {
    color: #4A5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #57007B;
}

.nav-button {
    background: linear-gradient(135deg, #6674F7 0%, #57007B 100%);
    color: #FAFAFA;
    padding: 14px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: #FFFFFF;
}

.hero-container {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 25px;
    gap: 100px;
}

.hero-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-title {
    font-size: 53px;
    font-weight: 800;
    line-height: 1.34;
    color: #1A202C;
}

.hero-description {
    font-size: 18px;
    line-height: 2;
    color: #4A5568;
}

.btn-primary {
    background: #3D63E9;
    color: #FAFAFA;
    padding: 19px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 49px rgba(0, 0, 0, 0.15);
    display: inline-block;
    width: fit-content;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: center;
}

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


.link-wrapper {
    display: flex;
    justify-content: flex-end;
}

.link-click,
.link-with-arrow {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #57007B;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: gap 0.3s ease;
}

.link-click:hover,
.link-with-arrow:hover {
    gap: 20px;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(4px);
}

.video-bg {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.43);
    border-radius: 50%;
    padding: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-circle {
    background: #FFFFFF;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #57007B;
    font-size: 24px;
}

/* Clients Section */
.clients {
    padding: 80px 0;
    background: #F6F6F9;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.clients-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 54px;
    flex-wrap: wrap;
}

.client-logo {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #F8F8FF;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.services-header {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.carousel-indicators {
    display: flex;
    gap: 8px;
    align-items: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #CBD5E0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: linear-gradient(135deg, #F76680 0%, #57007B 100%);
    border: 1px solid transparent;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #FAFAFA;
    border-radius: 7px;
    padding: 40px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.service-card.active {
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
 width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FAFAFA;
    border: 1px solid linear-gradient(135deg, #F76680 0%, #57007B 100%);
    opacity: 0.5;
}

.service-card.active .icon-circle {
    opacity: 1;
}

.icon-img {
    width: 40px;
    height: 40px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 15px;
}

.service-card.active .service-title {
    background: linear-gradient(135deg, #F76680 0%, #57007B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-description {
    font-size: 14px;
    line-height: 1.62;
    color: #718096;
}

.service-card.active .service-description {
    color: #4A5568;
}



.quote-icon {
    color: linear-gradient(135deg, #F76680 0%, #57007B 100%);
    font-size: 40px;
    margin: 0 20px;
}

.quote-text {
    font-size: 18px;
    line-height: 2;
    color: #718096;
    margin: 20px 0;
}

.testimonials-people {
    display: flex;
    justify-content: center;
    gap: 76px;
    flex-wrap: wrap;
}

.person-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.person-card:hover {
    transform: translateY(-5px);
}

.person-card.active {
    gap: 15px;
}

.person-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.person-card.active .person-image {
    border: 3px solid #E7DAEC;
    box-shadow: 0 4px 49px rgba(0, 0, 0, 0.15);
}

.person-rating {
    display: flex;
    gap: 2px;
}

.person-rating i {
    color: #FFD700;
    font-size: 12px;
}

.person-info {
    text-align: center;
}

.person-name {
    font-size: 14px;
    font-weight: 600;
    color: #A0AEC0;
    margin-bottom: 2px;
}

.person-card.active .person-name {
    font-size: 18px;
    font-weight: 700;
    color: #57007B;
}

.person-role {
    font-size: 11px;
    color: #E2E8F0;
}

.person-card.active .person-role {
    font-size: 14px;
    color: #000000;
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background: #FFFFFF;
}

.case-studies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.case-studies-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.case-study-card {
    background: #F1F1FF;
    border: 1px solid #E7DAEC;
    border-radius: 0 30px 30px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card:nth-child(2) {
    background: #F0FFF7;
}

.case-study-card:nth-child(3) {
    background: #FFF4F4;
}

.case-study-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.case-study-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case-study-title {
    font-size: 28px;
    font-weight: 600;
    color: #2D3748;
    text-align: center;
}

.case-study-description {
    font-size: 14px;
    line-height: 1.62;
    color: #4A5568;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 5px;
    color: linear-gradient(135deg, #F76680 0%, #57007B 100%);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    align-self: center;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

.read-more-link {
    text-align: center;
    margin-top: 40px;
}

/* Team Building Section */
.team-building {
    padding: 80px 0;
    background: #FFFFFF;
}

.team-building-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.team-building-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 95px;
}

.team-building-grid {
    display: flex;
    flex-direction: column;
    gap: 95px;
}

.team-building-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.team-building-item:nth-child(even) {
    flex-direction: row-reverse;
}

.team-building-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.team-building-title {
    font-size: 28px;
    font-weight: 600;
    color: #1A202C;
}

.team-building-description {
    font-size: 18px;
    line-height: 1.67;
    color: #2D3748;
}

.team-building-note {
    font-size: 18px;
    line-height: 1.67;
    color: #2D3748;
}

.team-building-quote {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.quote-bar {
    width: 4px;
    height: 60px;
    background: linear-gradient(135deg, #F76680 0%, #57007B 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.team-building-quote .quote-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.875;
    color: linear-gradient(135deg, #F76680 0%, #57007B 100%);
    font-style: italic;
}

.person-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.badge-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-name {
    font-size: 16px;
    font-weight: 400;
    color: #1A202C;
}

.badge-role {
    font-size: 13px;
    font-weight: 400;
    color: #718096;
}

.team-building-image {
    flex: 1;
    max-width: 400px;
    border-radius: 10px;
}


/* Blog Section */
.blog {
    padding: 80px 0;
    background: #FFFFFF;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.blog-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 66px;
}

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

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.blog-content {
    width: 100%;
}

.blog-title {
    font-size: 16px;
    font-weight: 500;
    color: #2D3748;
    margin-bottom: 15px;
}

.blog-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #57007B;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 20px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #FFFFFF;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.how-it-works-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
}

.how-it-works-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23F76680" stroke-width="1" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.work-step {
    background: #FFFFFF;
    border: 1px solid #E7DAEC;
    border-radius: 9px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.work-step:hover {
    transform: translateY(-5px);
}

.step-number {
    color: linear-gradient(135deg, #F76680 0%, #57007B 100%);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 10px;
}

.step-description {
    font-size: 14px;
    line-height: 1.43;
    color: #718096;
}


/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #F1F1F5 0%, #E4ECF7 100%);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.cta-title {
    font-size: 35px;
    font-weight: 700;
    color: #29272E;
}

.cta-button {
    background: linear-gradient(135deg, #FFC556 0%, #F16063 100%);
    color: #FAFAFA;
    padding: 14px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid transparent;
    transition: transform 0.3s ease;
    display: inline-block;
    min-width: 262px;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0);
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

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

.footer-brand .footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 18px;
    line-height: 1.67;
    color: #718096;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 20px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-menu a {
    color: #718096;
    text-decoration: none;
    font-size: 16px;
    line-height: 2.36;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #57007B;
}

.footer-phone {
    font-size: 18px;
    line-height: 1.67;
    color: #718096;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A202C;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #CBD5E0;
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    line-height: 0.71;
    color: #4A5568;
}

/* ========== SAMPLE CERTIFICATES ========== */
/* ========== CERTIFICATE WATERMARK ========== */
.certificate-wrapper {
  position: relative;
  overflow: hidden;
}

.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 0, 0, 0.30);
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
  text-transform: uppercase;
}

.certificates {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.certificates-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.certificates-header {
  text-align: center;
  margin-bottom: 50px;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.certificate-img {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.certificate-img:hover {
  transform: scale(1.05);
}


/* ========== VERIFY CERTIFICATES ========== */
.verify-certificates {
  padding: 80px 0;
  background-color: #fff;
}

.verify-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 25px;
  text-align: center;
}

.verify-header {
  margin-bottom: 40px;
}

.verify-description {
  color: #555;
  font-size: 1rem;
  margin-top: 10px;
}

.verify-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.verify-input {
  padding: 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.verify-input:focus {
  outline: none;
  border-color: #138808;
  box-shadow: 0 0 0 3px rgba(19, 136, 8, 0.2);
}

.verify-result {
  margin-top: 30px;
  font-size: 1rem;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid,
    .case-studies-grid,
    .approach-grid,
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .team-building-item,
    .team-building-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-people {
        gap: 30px;
    }

    .clients-logos {
        gap: 30px;
    }

    .tech-tabs {
        gap: 30px;
    }

    .tech-logos {
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #002868;
}

/* ========== NAVBAR ========== */
.navbar {
    background-color: #002868 !important;
    color: #ffffff;
}

.nav-item {
    color: #ffffff !important;
    font-weight: 600;
}

.nav-item:hover {
    color: #ffc107 !important;
}

.nav-button {
    background-color: #FF9933 !important;
    color: #ffffff !important;
    font-weight: bold;
    border: none;
}

.nav-button:hover {
    background-color: #e57c00 !important;
}

/* ========== SECTION TITLES ========== */
.section-title {
    border-left: 6px solid #FF9933;
    padding-left: 12px;
    color: #002868;
}

.deco-line {
    background: linear-gradient(to right, #FF9933, #138808);
}

/* ========== CTA BUTTON ========== */
.cta-button,
.btn-primary {
    background-color: #138808 !important;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    border: none;
}

.cta-button:hover,
.btn-primary:hover {
    background-color: #0d6605 !important;
}

/* ========== FOOTER ========== */
.footer {
    background-color: #002868;
    color: #ffffff;
}

.footer-menu a,
.footer-description a {
    color: #FF9933;
}

.footer-menu a:hover {
    color: #ffffff;
}

.footer-title {
    color: #ffffff;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .cta-title {
        font-size: 28px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero-container,
    .services-container,
    .testimonials-container,
    .case-studies-container,
    .team-building-container,
    .approach-container,
    .blog-container,
    .how-it-works-container,
    .tech-stack-container,
    .cta-container,
    .news-update,
    .footer-container {
        padding: 0 15px;
    }
}