* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa; 
    background-image: radial-gradient(at 0% 0%, hsla(253, 100%, 95%, 1) 0px, transparent 50%),
                      radial-gradient(at 100% 0%, hsla(240, 100%, 95%, 1) 0px, transparent 50%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


.section-padding {
    padding: 5rem 0;
}


.navbar {
    background-color: transparent;
    padding: 1.5rem 0;
}


.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #2b35a9; 
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    margin-right: 0.75rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    position: relative;
}

.logo-icon::before {
    content: 'W';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #5856d6;
    font-weight: 500;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-links li a:hover {
    color: #3c3ab8;
    transform: translateY(-2px);
}

.nav-links li a i {
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: inherit;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.nav-links li a:hover i {
    transform: scale(1.1);
}


.nav-links li a.active {
    color: #5856d6;
    font-weight: 700;
}


.hero-section {
    
    padding: 4rem 0;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}


.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #eef2ff; 
    color: #5856d6;
    padding: 0.5rem 1rem;
    border-radius: 9999px; 
    font-weight: 500;
    font-size: 0.875rem;
}



.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    max-width: 18ch; 
}

.hero-content .subtitle {
    font-size: 1.125rem;
    color: #555;
    max-width: 50ch; 
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #5856d6;
    color: #fff;
    box-shadow: 0 4px 12px rgba(88, 86, 214, 0.3);
}

.btn-primary:hover {
    background-color: #4a48b9;
    box-shadow: 0 6px 16px rgba(88, 86, 214, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #fff;
    color: #333;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    background-color: #f8f8f8;
    border-color: #ccc;
    transform: translateY(-2px);
}


.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(101, 119, 134, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(101, 119, 134, 0.12);
}

.stat-icon-wrapper {
    
    background-color: var(--icon-bg);
    color: var(--icon-color);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; 
}

.stat-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.25rem;
}

.stat-text p {
    font-size: 1rem;
    color: #555;
}

/* --- Features  --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: #ffffff;
    border: 1px solid #eef2ff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(101, 119, 134, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(101, 119, 134, 0.1);
}

.feature-icon-wrapper {
    background-color: var(--icon-bg);
    color: var(--icon-color);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .number {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #5856d6;
    margin-top: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* About */
.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-content > p { 
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 55ch;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #eef2ff;
    color: #5856d6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px; 
}

.about-list-icon svg {
    width: 100%;
    height: 100%;
}

.about-list-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.25rem;
}

.about-list-text p {
    font-size: 1rem;
    color: #555;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(45, 62, 80, 0.15);
}


/*Footer*/
.site-footer {
    background-color: #ffffff;
    padding: 4rem 0 2rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #555;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.footer-brand .logo {
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #777;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-link-group h4 {
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-link-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-group ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
}

.footer-link-group ul li a:hover {
    color: #5856d6;
}

.footer-bottom {
    text-align: center;
    color: #777;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }

    .footer-link-group {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1,
    .hero-content .subtitle {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .button-group {
        justify-content: center;
    }

    .hero-stats {
     
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-card {
        flex-basis: 300px; 
        flex-grow: 1;
    }

   
    .features-grid {
        grid-template-columns: 1fr; 
    }

    .about-section .container {
        grid-template-columns: 1fr; 
        gap: 3rem;
    }

    .about-content {
        text-align: center;
    }

    .about-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-list {
        text-align: left; 
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-image-wrapper {
        order: -1; 
    }
}

@media (max-width: 768px) {

    .nav-links {

        display: none; 

    }

    .navbar .container {
        justify-content: space-between;
    }
    



    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .button-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        align-items: stretch;
    }


    .section-padding {
        padding: 3rem 0;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }
}

.pulsating-circle {
  position: relative;
  width: 10px;
  height: 10px;
}

.pulsating-circle::before {
  content: '';
  position: absolute;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 50%;
  background-color: #5856d6;
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pulsating-circle::after {
  content: '';
  position: absolute;
  left: 0; 
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,0,0,.3);
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -.4s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(.33);
  }
  80%, 100% {
    opacity: 0;
  }
}

@keyframes pulse-dot {
  0% {
    transform: scale(.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(.8);
  }
}

/* --- Services --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.header-pretitle {
    display: inline-block;
    background-color: #eef2ff;
    color: #5856d6;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #eef2ff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(101, 119, 134, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(101, 119, 134, 0.12);
}

.service-icon-wrapper {
    background-color: var(--icon-bg);
    color: var(--icon-color);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-icon-wrapper .material-icons {
    font-size: 32px;
}

.service-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.service-features .material-icons {
    color: #27ae60; 
    font-size: 20px;
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #5856d6;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto; 
    transition: transform 0.3s;
}

.service-learn-more:hover {
    transform: translateX(4px);
}

.service-learn-more .material-icons {
    transition: transform 0.3s;
}

/* --- Processes --- */
.process-section {
    background-color: transparent;
    margin-bottom: 5rem; 
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 4rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 22px; 
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(to right, #2979ff, #5856d6, #c62f8f, #ff2d78, #ff3b30);
    z-index: 1;
}

.process-step {
    text-align: center;
    width: 18%;
    position: relative;
    z-index: 2;
}

.process-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--step-bg);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    border: 4px solid #ffffff; 
    transition: transform 0.3s;
}

.process-step:hover .process-step-number {
    transform: scale(1.1);
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.5rem;
}

.process-step-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .process-timeline::before {
        left: 50%;
        right: auto;
        top: 5%;
        bottom: 5%;
        width: 2px;
        height: 90%;
        transform: translateX(-50%);
    }

    .process-step {
        width: 80%;
        max-width: 300px;
    }
}

/* --- Contact Page --- */
.contact-hero {
    text-align: center;
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 3rem;
}

.contact-intro {
    max-width: 520px;
    display: flex;
    flex-direction: column;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(101, 119, 134, 0.08);
}

.contact-info-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-text {
    color: #555;
    margin-bottom: 1.5rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.25rem;
    border-radius: 14px;
    background-color: #fff;
    border: 1px solid #eef2ff;
}

.contact-info-item > div:not(.contact-info-icon) {
    text-align: center;
    flex: 1;
}

.contact-info-item h4,
.contact-info-item p {
    display: inline;
    width: auto;
    text-align: left;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: var(--icon-bg);
    color: var(--icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
}

.contact-form-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(101, 119, 134, 0.08);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1.25rem;
}

.form-row .full {
    flex: 1;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
    border: 1px solid #dde2eb;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    background-color: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #5856d6;
    box-shadow: 0 0 0 3px rgba(88, 86, 214, 0.15);
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
}

.contact-submit-btn {
    margin-top: 0.75rem;
    padding-inline: 2rem;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-sidebar-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #eef2ff;
    box-shadow: 0 8px 25px rgba(101, 119, 134, 0.06);
}

.contact-sidebar-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--icon-bg);
    color: var(--icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-sidebar-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-sidebar-text p {
    font-size: 0.95rem;
    color: #555;
}

@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .form-row {
        flex-direction: column;
    }
}

/* --- About Page --- */
.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: #111;
}

.about-text p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card-large {
    background-color: #f8fbff;
    border: 1px solid #eef2ff;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-card-large h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card-large p {
    font-size: 1.125rem;
    color: #333;
    font-weight: 500;
}

.text-blue {
    color: #2979ff;
}

.text-purple {
    color: #a855f7;
}

@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}


/* --- Team Section --- */
.team-section {
    margin-top: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: left;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 16px;
    background-color: #f0f0f0;
    margin-bottom: 1.5rem;
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* --- Values Section --- */
.values-section {
    margin-top: 4rem;
}

.values-card {
    background-color: #fff;
    border: 1px solid #eef2ff;
    border-radius: 24px;
    padding: 3rem;
}

.values-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.values-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.5rem;
}

.values-header p {
    color: #555;
    font-size: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--icon-bg);
    color: var(--icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.25rem;
}

.value-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}

