/* ============================================
   CSS Variables - Color Scheme
   ============================================ */
:root {
    /* Primary Colors */
    --primary-navy: #264358;
    --primary-navy-dark: #1a3c6e;
    --logo-blue: #2563eb;
    --royal-blue: #1e40af;

    /* Accent Colors */
    --primary-green: #4ead5b;
    --green-light: #56a65c;
    --accent-orange: #f5842c;
    --orange-light: #f69237;
    --accent-yellow: #f7b731;
    --golden-yellow: #ffc107;
    --light-pink: #f8d7da;
    --soft-pink: #fce4ec;

    /* Neutral Colors */
    --text-black: #1a1a1a;
    --text-charcoal: #212121;
    --text-gray: #6c757d;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-off-white: #f5f5f5;

    /* Gradients */
    --gradient-navy: linear-gradient(135deg, #264358 0%, #1a3c6e 100%);
    --gradient-green: linear-gradient(135deg, #4ead5b 0%, #3d9a4a 100%);
    --gradient-orange: linear-gradient(135deg, #f5842c 0%, #e67320 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-charcoal);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    color: #191769;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    color: var(--logo-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-navy);
}

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

ul {
    list-style: none;
}

/* ============================================
   Utility Classes
   ============================================ */
.section-padding {
    padding: 80px 0;
}

.navbar-toggler {
    color: rgb(245 132 44);
}

.section-padding-sm {
    padding: 60px 0;
}

.bg-light-gray {
    background-color: var(--bg-light);
}

.bg-navy {
    background: var(--gradient-navy);
}

.bg-green {
    background: var(--gradient-green);
}

.text-navy {
    color: var(--primary-navy) !important;
}

.text-green {
    color: var(--primary-green) !important;
}

.text-orange {
    color: var(--accent-orange) !important;
}

.text-yellow {
    color: var(--accent-yellow) !important;
}

/* Section Title Styles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 20px auto 0;
}

/* Decorative Elements */
.decorative-blocks {
    position: absolute;
    width: 80px;
    height: 80px;
}

.decorative-blocks::before,
.decorative-blocks::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 4px;
}

.decorative-blocks::before {
    background: var(--accent-yellow);
    top: 0;
    left: 0;
}

.decorative-blocks::after {
    background: var(--primary-green);
    top: 15px;
    left: 15px;
}

.decorative-blocks .block-orange {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent-orange);
    border-radius: 4px;
    top: 30px;
    left: 30px;
}

/* ============================================
   Button Styles
   ============================================ */
.btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid transparent;
}

.btn-primary-orange {
    background: var(--accent-orange);
    color: var(--bg-white);
    border-color: var(--accent-orange);
}

.btn-primary-orange:hover {
    background: #e67320;
    border-color: #e67320;
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-green {
    background: var(--primary-green);
    color: var(--bg-white);
    border-color: var(--primary-green);
}

.btn-primary-green:hover {
    background: #3d9a4a;
    border-color: #3d9a4a;
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-navy {
    background: #f5842c;
    color: var(--bg-white);
    border-color: #f5842c;
}

.btn-primary-navy:hover {
    background: #191769;
    border-color: #191769;
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-navy {
    background: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.btn-outline-navy:hover {
    background: var(--primary-navy);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-outline-white:hover {
    background: var(--bg-white);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ============================================
   Navigation Styles
   ============================================ */
.navbar {
    padding: 15px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 70px;
}

.navbar-brand .logo-icon {
    width: 45px;
    height: 45px;
    background: var(--logo-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
}

.navbar-brand .logo-icon::after {
    content: 'L';
    position: absolute;
    right: 5px;
    bottom: 5px;
    color: var(--accent-yellow);
    font-size: 0.9rem;
}

.navbar-brand .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand .logo-text .brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.navbar-brand .logo-text .brand-tagline {
    font-size: 0.7rem;
    color: var(--accent-yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--primary-navy);
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color var(--transition-fast);
    position: relative;
    color: #fff;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: #000;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent-orange);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #191769;
}

.navbar .btn-consultation {
    margin-left: 15px;
}

/* Navbar transparent state */
.navbar-transparent .nav-link {
    color: var(--bg-white);
}

.navbar-transparent .navbar-brand .brand-name {
    color: var(--bg-white);
}

.navbar-transparent.scrolled .nav-link {
    color: var(--primary-navy);
}

.navbar-transparent.scrolled .navbar-brand .brand-name {
    color: var(--primary-navy);
}

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(38, 67, 88, 0.95) 0%, rgba(26, 60, 110, 0.9) 100%),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
    background: url(../images/banner2.jpg);
    background-size: cover;
    background-position: bottom;
}

.hero-section .container {
    padding-top: 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(78, 173, 91, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: #62a25dde;
    pointer-events: none;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--accent-yellow);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-arc {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border: 40px solid rgba(78, 173, 91, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

/* Hero Stats */
.hero-stats {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-yellow);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    display: block;
}

/* ============================================
   About Preview Section
   ============================================ */
.about-preview {
    position: relative;
}

.about-preview-content h2 {
    margin-bottom: 20px;
}

.about-preview-content p {
    line-height: 1.8;
    text-align: justify;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: #62A25D;
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.9;
}

/* ============================================
   Services Section
   ============================================ */
.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #3d9a4a 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-size: 1.8rem;
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card .learn-more {
    color: var(--accent-orange);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap var(--transition-fast);
}

.service-card .learn-more:hover {
    gap: 10px;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-us-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    height: 100%;
    border: 2px solid #ddd;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-navy);
    font-size: 2rem;
    transition: all var(--transition-normal);
}

.why-us-card:hover .why-us-icon {
    background: var(--primary-green);
    color: var(--bg-white);
}

.why-us-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-us-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--gradient-navy);
    position: relative;
    overflow: hidden;
    background: url(../images/cta-banner.jpg);
    background-size: 100%;
    background-position: bottom;
    background-attachment: fixed;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(78, 173, 91, 0.2) 0%, transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0%;
    right: 0%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #df682dd9, #ffc924e8);
}

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

.cta-content h2 {
    color: #191769;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgb(25 23 105);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* ============================================
   Footer Styles
   ============================================ */
div#debug-icon {
    display: none !important;
}

footer ul {
    padding: 0;
}

.footer {
    background: var(--gradient-navy);
    color: var(--bg-white);
    padding-top: 80px;
    background: #191769;
}

.footer-content {
    padding-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 70px;
    background: #fff;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: var(--logo-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-logo .logo-text .brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bg-white);
}

.footer-logo .logo-text .brand-tagline {
    font-size: 0.7rem;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer h5 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--accent-orange);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-yellow);
}

/* ============================================
   Page Header / Banner
   ============================================ */
.page-header {
    background: var(--gradient-navy);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: url(../images/inner-banner.jpg);
    background-size: 100%;
    background-position: bottom;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 40%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(78, 173, 91, 0.15) 0%, transparent 70%);
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: #62a25dde;
    pointer-events: none;
}

.page-header h1 {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    display: none !important;
}

.breadcrumb li a {
    position: relative;
    z-index: 1;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a:hover {
    color: var(--accent-yellow);
}

.breadcrumb-item.active {
    color: var(--accent-yellow);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   About Page Styles
   ============================================ */
.about-full-content {
    font-size: 1.05rem;
    line-height: 1.9;
}

.vision-mission-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-green);
}

.vision-mission-card.mission::before {
    background: var(--accent-orange);
}

.vision-mission-card .icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-green);
}

.vision-mission-card.mission .icon {
    color: var(--accent-orange);
}

.value-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.value-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-off-white) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-navy);
    transition: all var(--transition-normal);
}

.value-card:hover .icon {
    background: var(--primary-green);
    color: var(--bg-white);
}

/* ============================================
   Services Page Styles
   ============================================ */
.service-detail-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-detail-header {
    background: var(--primary-green);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-detail-header i {
    font-size: 2rem;
    color: var(--bg-white);
}

.service-detail-header h4 {
    color: var(--bg-white);
    margin: 0;
    font-size: 1.3rem;
}

.service-detail-body {
    padding: 30px;
}

.service-detail-body p {
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-charcoal);
}

.service-features li i {
    color: var(--primary-green);
    margin-top: 4px;
}

.tools-section {
    background: var(--bg-light);
}

.tool-badge {
    display: inline-block;
    background: var(--bg-white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    margin: 5px;
    font-size: 0.9rem;
    color: var(--primary-navy);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.tool-badge:hover {
    background: var(--primary-navy);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* ============================================
   Process Page Styles
   ============================================ */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-number.navy {
    background: var(--primary-navy);
}

.step-number.green {
    background: var(--primary-green);
}

.step-number.orange {
    background: var(--accent-orange);
}

.step-number.yellow {
    background: var(--accent-yellow);
    color: var(--text-black);
}

.step-number.pink {
    background: var(--light-pink);
    color: var(--text-black);
}

.step-content {
    margin-left: 25px;
    background: var(--bg-white);
    padding: 25px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    flex-grow: 1;
}

.step-content h5 {
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.step-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.process-connector {
    position: absolute;
    left: 29px;
    top: 60px;
    width: 3px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--primary-navy), var(--primary-green), var(--accent-orange), var(--accent-yellow));
}

/* Process Circle Diagram */
.process-circle {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.process-circle-item {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    padding: 10px;
    transition: all var(--transition-normal);
}

.process-circle-item:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.process-circle-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.process-circle-item span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary-navy);
    line-height: 1.2;
}

/* Technology Grid */
.tech-category {
    margin-bottom: 40px;
}

.tech-category h5 {
    color: var(--primary-navy);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-green);
    display: inline-block;
}

.tech-item {
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    display: block;
}

.tech-item span {
    font-size: 0.9rem;
    color: var(--primary-navy);
    font-weight: 500;
}

/* ============================================
   Why Us Page Styles
   ============================================ */
.differentiator-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 35px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-left: 4px solid transparent;
}

.differentiator-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-green);
}

.differentiator-card .icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary-navy);
    transition: all var(--transition-normal);
}

.differentiator-card:hover .icon {
    background: var(--primary-green);
    color: var(--bg-white);
}

/* Stats Section */
.stats-section {
    background: var(--gradient-navy);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(78, 173, 91, 0.15) 0%, transparent 70%);
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.stat-box .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-yellow);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box .label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    width: 30px;
    height: 30px;
    background: var(--primary-green);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.benefits-list li span {
    font-size: 1.05rem;
    color: var(--text-charcoal);
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(78, 173, 91, 0.1);
}

.contact-form label {
    font-weight: 500;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-wrapper {
    background: #191769;
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    color: var(--bg-white);
}

.contact-info-wrapper h4 {
    color: var(--bg-white);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.contact-info-item .content h6 {
    color: var(--bg-white);
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-info-item .content p,
.contact-info-item .content a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.contact-info-item .content a:hover {
    color: var(--accent-yellow);
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    font-weight: 500;
    color: var(--primary-navy);
    background: var(--bg-white);
    padding: 18px 25px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-green);
    color: var(--bg-white);
    box-shadow: none;
}

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

.faq-accordion .accordion-body {
    padding: 20px 25px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   Animations
   ============================================ */
[data-aos] {
    transition-property: transform, opacity;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-animate {
    transition: all 0.5s ease;
}

/* Hover lift effect */
.hover-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1199.98px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-arc {
        width: 400px;
        height: 400px;
        right: -150px;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-arc {
        display: none;
    }

    .navbar-collapse {
        background: var(--bg-white);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar .btn-consultation {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }

    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .navbar-transparent .nav-link {
        color: #000000;
    }

    .navbar-brand img {
        height: 50px;
    }

    .hero-section .container {
        padding-top: 0;
    }

    .navbar-nav .nav-link {
        color: #000000;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0 40px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

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

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .process-step {
        flex-direction: column;
    }

    .step-content {
        margin-left: 0;
        margin-top: 15px;
    }

    .process-connector {
        display: none;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .service-card,
    .differentiator-card {
        padding: 25px;
    }

    .vision-mission-card {
        padding: 30px;
    }

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

/* ============================================
   Print Styles
   ============================================ */
@media print {

    .navbar,
    .footer,
    .cta-section {
        display: none;
    }

    .page-header {
        background: none;
        color: var(--text-black);
        padding: 20px 0;
    }

    .page-header h1 {
        color: var(--text-black);
    }
}