:root {
    --primary: #050543;
    --secondary-cyan: #E4FCFC;
    --secondary-teal: #18D89C;
    --secondary-blue: #58C6FF;
    --secondary-coral: #FBA79E;
    --secondary-red: #FF4936;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary);
    color: var(--secondary-cyan);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Subtle Background Gradient */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(24, 216, 156, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(88, 198, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Main Content */
.container {
    position: relative;
    z-index: 2;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: #BCF4E2;
    padding: 60px 40px 120px 80px;
    margin-right: calc(-50vw + 50%);
    padding-right: calc(50vw - 50% + 40px);
    align-self: stretch;
    position: relative;
}

.hero-contact .contact-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-contact .contact-item:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-contact .contact-item:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-contact .contact-item:nth-child(3) {
    animation-delay: 0.7s;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: -100vh;
    left: 0;
    right: calc(-50vw + 50%);
    height: 100vh;
    background: #BCF4E2;;
}

.hero-contact .contact-label {
    color: var(--primary);
    font-size: 0.85rem;
}

.hero-contact .contact-value {
    color: var(--primary);
    font-size: 1.25rem;
}

.hero-contact .contact-value:hover {
    color: #0fa876;
}

.hero-contact .contact-icon {
    background: rgba(5, 5, 67, 0.1);
    width: 56px;
    height: 56px;
}

.hero-contact .contact-icon svg {
    stroke: var(--primary);
    width: 26px;
    height: 26px;
}

.hero-content {
    max-width: 800px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;

}

h1 .highlight {
    color: var(--secondary-teal);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: #fff;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(228, 252, 252, 0.8);
    max-width: 700px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-text p {
    margin-bottom: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(228, 252, 252, 0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.scroll-indicator:hover {
    color: var(--secondary-teal);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(228, 252, 252, 0.3);
}

/* About Section */
.about-section {
    padding: 80px 40px;
    position: relative;
    background: #fff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: rgba(5, 5, 67, 0.2);
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(5, 5, 67, 0.8);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

.about-title h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 30px;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #BCF4E2;
    padding: 20px 30px;
}

.experience-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
}

.experience-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(5, 5, 67, 1);
    line-height: 1.4;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(5, 5, 67, 0.8);
    margin-bottom: 25px;
    margin-top: 5px;
}

.about-content strong {
    color: rgba(5, 5, 67, 0.8);
    font-weight: 600;
}

/* Services Pills */
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.service-pill {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid;
    transition: all 0.3s ease;
}

.service-pill:nth-child(1) {
    border-color: rgba(15, 168, 118, 0.5);
    color: #0fa876;
    background: rgba(15, 168, 118, 0.1);
}

.service-pill:nth-child(2) {
    border-color: rgba(30, 136, 200, 0.5);
    color: #1e88c8;
    background: rgba(30, 136, 200, 0.1);
}

.service-pill:nth-child(3) {
    border-color: rgba(200, 100, 90, 0.5);
    color: #c8645a;
    background: rgba(200, 100, 90, 0.1);
}

.service-pill:nth-child(4) {
    border-color: rgba(200, 50, 40, 0.5);
    color: #c83228;
    background: rgba(200, 50, 40, 0.1);
}

.service-pill:hover {
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.contact-intro {
    max-width: 580px;
}

.contact-intro h3 {
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(228, 252, 252, 0.7);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(24, 216, 156, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--secondary-teal);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(228, 252, 252, 0.5);
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--secondary-teal);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(228, 252, 252, 0.1);
    text-align: center;
}

.footer-text {
    font-size: 0.85rem;
    color: rgba(228, 252, 252, 0.5);
}

.footer-text span {
    color: var(--secondary-coral);
}

/* Responsive */
@media (max-width: 1000px) {
    .hero {
        min-height: auto;
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .hero-content {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-contact {
        width: 100vw;
        margin-left: -40px;
        margin-right: 0;
        padding: 40px;
        padding-right: 40px;
        
    }

    .hero-contact::before {
        display: none;
    }
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-card {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-contact {
        margin-left: -24px;
        padding: 40px 24px;
    }

    .scroll-indicator {
        display: none;
    }

    .section-divider {
        gap: 15px;
    }

    .experience-badge {
        padding: 25px;
    }


    .contact-item {
        flex-direction: row;
    }

    .services-list {
        justify-content: center;
    }
}

/* Animations on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

