
:root {
    /* Primary Brand Colors */
    --accent-color: #03346c; /* Your primary deep blue */
    --accent-color-light: #006eff; /* A vibrant, lighter blue for gradients */
    --text-dark: #252B42;
    --text-medium: #515B6C;
    --text-light: #737373;
    --background: #ffffff;
    --shadow: rgba(3, 52, 108, 0.1);
}

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



/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #ffffff 60%, rgba(0, 110, 255, 0.08) 100%);
}

.hero:before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,110,255,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-color-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 540px;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-light));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 110, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 110, 255, 0.3);
}

.btn-primary i {
    margin-left: 8px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(3, 52, 108, 0.05);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(3, 52, 108, 0.15);
    animation: float 6s ease-in-out infinite;
}

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

.design-dots {
    position: absolute;
    width: 180px;
    height: 180px;
    top: -30px;
    right: -30px;
    z-index: -1;
}

.design-dots svg {
    width: 100%;
    height: 100%;
}

.wireframe-element {
    position: absolute;
    bottom: -25px;
    left: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(3, 52, 108, 0.1);
    padding: 20px;
    display: flex;
    gap: 15px;
    animation: slideIn 0.8s ease-out forwards;
}

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

.wireframe-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wireframe-circle i {
    color: var(--accent-color-light);
    font-size: 1.2rem;
}

.wireframe-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wireframe-line {
    height: 8px;
    width: 140px;
    background-color: #f0f4ff;
    border-radius: 4px;
}

.wireframe-line:first-child {
    width: 80px;
}

/* Process Section */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-color-light));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

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

.process-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(3, 52, 108, 0.08);
    padding: 40px 30px;
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(3, 52, 108, 0.12);
    border-color: var(--accent-color-light);
}

.process-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-color-light));
    opacity: 0;
    transition: opacity 0.3s;
}

.process-card:hover:before {
    opacity: 1;
}

.process-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(3, 52, 108, 0.05);
    line-height: 1;
}

.process-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(3, 52, 108, 0.1), rgba(0, 110, 255, 0.1));
    border-radius: 20px;
    margin-bottom: 25px;
}

.process-icon i {
    font-size: 2.2rem;
    color: var(--accent-color-light);
}

.process-card h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.process-card p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Tools Section */
.tools-section {
    background-color: rgba(0, 110, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.tools-section:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3, 52, 108, 0.05) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    left: -100px;
    z-index: 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tool-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(3, 52, 108, 0.06);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(3, 52, 108, 0.1);
}

.tool-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
}

.tool-card h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.tool-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* Services Sections */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(3, 52, 108, 0.15);
}

.service-content h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    position: relative;
}

.service-content h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-color-light));
    border-radius: 2px;
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-points {
    margin-top: 30px;
}

.service-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.point-icon {
    min-width: 26px;
    height: 26px;
    background: var(--accent-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 3px;
}

.point-icon i {
    font-size: 0.8rem;
}

.point-text h4 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.point-text p {
    margin: 0;
    font-size: 0.95rem;
}

/* Design dots pattern */
.dots-pattern {
    position: absolute;
    z-index: -1;
}

.dots-top-right {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
}

.dots-bottom-left {
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
}

/* Value Section */
.value-section {
    background: linear-gradient(170deg, white 55%, rgba(0, 110, 255, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.value-section:after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3, 52, 108, 0.03) 0%, rgba(255,255,255,0) 70%);
    bottom: -200px;
    right: -200px;
}

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

.value-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(3, 52, 108, 0.08);
    padding: 40px 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(3, 52, 108, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 110, 255, 0.2);
}

.value-icon i {
    font-size: 2.2rem;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-medium);
    margin: 0;
}

/* Why Choose Us Section */
.why-us-section {
    position: relative;
    overflow: hidden;
}

.why-us-section:after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 110, 255, 0.05) 0%, rgba(255,255,255,0) 70%);
    bottom: -200px;
    right: -200px;
    z-index: 0;
}

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

.why-us-image {
    position: relative;
}

.why-us-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(3, 52, 108, 0.12);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 6px 15px rgba(0, 110, 255, 0.2);
}

.benefit-content h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--text-medium);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-light));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section:before, .cta-section:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-section:before {
    top: -150px;
    right: -150px;
}

.cta-section:after {
    bottom: -150px;
    left: -150px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: white;
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cta-btn i {
    margin-left: 8px;
}


