:root {
    --bg-color: #0f0f1a;
    --text-color: #e0e0e0;
    --accent-color: #ff4d5a;
    --secondary-color: #3a86ff;
    --tertiary-color: #8338ec;
    --card-bg: rgba(30, 30, 50, 0.7);
    --spacing-unit: 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(58, 134, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 77, 90, 0.1) 0%, transparent 40%);
    color: var(--text-color);
    line-height: 1.6;
    padding: 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: white;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Header section */
header {
    text-align: left;
    padding: 6rem 0 4rem;
    position: relative;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, transparent, rgba(58, 134, 255, 0.1));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
}

.tagline {
    font-size: 1.4rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-left: 2px;
    min-height: 2.2rem;
}

/* Sections */
section {
    margin-bottom: 8rem;
    position: relative;
    padding: 2rem;
    border-radius: 16px;
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--tertiary-color));
}

section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* What we do section */
.what-we-do {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.what-we-do h2 {
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-content .subtitle {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.description-text {
    margin-bottom: 1.5rem;
}

.description-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease;
}

section.revealed .description-text p {
    opacity: 0.9;
    transform: translateY(0);
}

section.revealed .description-text p:nth-child(1) {
    transition-delay: 0.2s;
}

section.revealed .description-text p:nth-child(2) {
    transition-delay: 0.4s;
}

.description-text p:last-child {
    margin-bottom: 0;
}

.services ul {
    list-style-type: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.services li {
    margin-bottom: 0.5rem;
    position: relative;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--accent-color);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

section.revealed .services li {
    opacity: 1;
    transform: translateX(0);
}

.services li:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Why us section */
.why-us p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

.why-us p:last-child {
    margin-bottom: 0;
}

/* About founder section */
.about-founder {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.founder-photo {
    position: relative;
}

.founder-photo img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.founder-photo:hover img {
    filter: grayscale(0);
}

.founder-photo::before {
    display: none;
}

.founder-photo::after {
    display: none;
}

.founder-bio p {
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    line-height: 1.7;
}

.founder-bio h3 {
    margin-top: 2rem;
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
    color: white;
}

.position {
    font-size: 1.1rem;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.founder-name {
    text-align: center;
    margin-top: 1.5rem;
}

.founder-name h3 {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
    color: white;
}

.founder-name .position {
    font-size: 1.1rem;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.25rem;
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.about-link {
    display: inline-block;
    margin-top: 0;
    color: var(--text-color);
    font-size: 1.1rem;
    text-decoration: none;
    opacity: 0.85;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.about-link:hover {
    color: white;
    opacity: 1;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

/* Clients section */
.clients h2 {
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.clients h2::after {
    display: none;
}

.clients p {
    max-width: 900px;
    font-size: 1.15rem;
    line-height: 1.7;
}

/* CTA section */
.cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 77, 90, 0.1), rgba(58, 134, 255, 0.1));
}

.cta h2 {
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta h2::after {
    display: none;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 77, 90, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 77, 90, 0.4);
}

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

/* Responsive styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    .about-founder {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founder-photo {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .what-we-do {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .description-text {
        margin-bottom: 1rem;
    }
    
    .description-text p {
        font-size: 1rem;
    }
    
    section {
        padding: 1.5rem;
        margin-bottom: 3rem;
        border-radius: 12px;
    }
    
    header {
        padding: 3rem 0 2rem;
    }
    
    .services ul {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .services li {
        padding: 0.8rem;
        margin-bottom: 0;
    }
    
    .founder-name h3 {
        font-size: 1.6rem;
    }
    
    .founder-name .position {
        font-size: 1rem;
    }
    .about-link {
        font-size: 1rem;
    }
    
    .why-us p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .about-founder {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-photo {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .founder-photo img {
        border-radius: 50%;
        max-width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
    }
    
    .founder-bio {
        text-align: center;
    }
    
    .founder-bio p {
        font-size: 1rem;
    }
    
    .cta {
        padding: 1.5rem;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .nav-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .nav-cta {
        padding: 0.4rem 1.2rem !important;
    }
    
    .confidentiality-icon {
        margin: 0 auto 1rem;
        font-size: 3rem;
        display: flex;
        justify-content: center;
    }
    
    .email {
        font-size: 1.1rem;
        padding: 0 0.5rem;
        margin: 1.5rem 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: block;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    section {
        padding: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .services li {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .services li i {
        margin-right: 0.5rem;
    }
    
    .founder-photo {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .founder-photo img {
        max-width: 100%;
        border-radius: 50%;
    }
    
    .founder-name h3 {
        font-size: 1.4rem;
    }
    
    .founder-name .position {
        font-size: 0.9rem;
    }
    .about-link {
        font-size: 0.9rem;
    }
    
    .email {
        font-size: 1rem;
        line-height: 1.4;
        margin: 1rem 0;
    }
    
    .confidentiality-icon {
        font-size: 2.5rem;
    }
}

/* Animation for page load */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

header, section {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

header { animation-delay: 0.1s; }
.what-we-do { animation-delay: 0.3s; }
.why-us { animation-delay: 0.5s; }
.about-founder { animation-delay: 0.7s; }
.clients { animation-delay: 0.9s; }
.cta { animation-delay: 1.1s; }

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 4rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition: width 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-cta {
    background: linear-gradient(45deg, var(--accent-color), var(--tertiary-color));
    color: white !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    box-shadow: 0 5px 15px rgba(255, 77, 90, 0.3);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 77, 90, 0.4);
}

.nav-cta::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    top: var(--y-pos, 50%);
    left: var(--x-pos, 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.nav-cta:hover::after {
    opacity: 0.3;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 2rem 0 5rem;
}

.hero-cta {
    margin-top: 3rem;
}

.scroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.scroll-btn i {
    transition: transform 0.3s ease;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.scroll-btn:hover i {
    transform: translateY(3px);
}

/* Section headers and graphics */
.section-header {
    position: relative;
    margin-bottom: 2.5rem;
}

.graphic-element {
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.section-graphic {
    margin-bottom: 2rem;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.7;
}

/* Services enhancements */
.services li i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.clients-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.clients-note i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Why us section enhancements */
.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    opacity: 0.9;
}

/* About founder enhancements */
.quote-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.05);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
}

.social-icons {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Clients section enhancements */
.clients-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
}

.confidentiality-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.clients-text {
    flex: 1;
}

.clients-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .clients-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .confidentiality-icon {
        margin: 0 auto;
        font-size: 3rem;
    }
    
    .clients-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

/* CTA section enhancements */
.cta-text {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-methods {
    display: flex;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.contact-method:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

/* Footer styles */
footer {
    margin-top: 5rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.copyright {
    color: var(--text-color);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Media queries */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .why-us p {
        font-size: 1.2rem;
        line-height: 1.6;
    }
}

/* Floating animation for icons */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.why-icon i, .confidentiality-icon i, .section-graphic i {
    animation: float 4s ease-in-out infinite;
}

.why-icon:nth-child(odd) i {
    animation-delay: 1s;
}

/* Glow effect for buttons */
.contact-btn, .nav-cta {
    position: relative;
    overflow: hidden;
}

.contact-btn::after, .nav-cta::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    top: var(--y-pos, 50%);
    left: var(--x-pos, 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.contact-btn:hover::after, .nav-cta:hover::after {
    opacity: 0.3;
}

/* Underline animation for links */
.nav-links a::after {
    transition: width 0.3s ease, transform 0.3s ease;
}

.email-contact {
    font-size: 1.5rem;
    color: white;
    margin: 2rem 0;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.email {
    font-size: 1.5rem;
    color: white;
    margin: 2rem 0;
    letter-spacing: 0.5px;
    text-align: center;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .email-contact {
        font-size: 1.1rem;
    }
    
    .email {
        font-size: 1.1rem;
        padding: 0 0.5rem;
        margin: 1.5rem 0;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    header {
        padding: 2rem 0 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    section {
        margin-bottom: 2rem;
        padding: 1rem;
    }
    
    .what-we-do {
        gap: 1rem;
    }
} 