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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #f9fbfc;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #1a73e8;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.logo:hover {
    color: #1558b0;
}

.nav a {
    color: #555;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav a:hover {
    color: #1a73e8;
}

.nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #1a73e8;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section Styling */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://source.unsplash.com/featured/?inspiration') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    transition: all 0.3s ease-in-out;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.cta-button {
    background-color: #1a73e8;
    color: #fff;
    padding: 12px 30px;
    font-size: 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.4);
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #1558b0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(21, 88, 176, 0.6);
}

/* Footer Styling */
.footer {
    background-color: #1a73e8;
    color: #fff;
    text-align: center;
    padding: 25px 0;
    margin-top: 60px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 3px;
    background: linear-gradient(to right, #fff, transparent);
    transform: translateX(-50%);
    animation: slide 5s infinite linear;
}

@keyframes slide {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(-150%);
    }
}

.social-icons a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #cce7ff;
}

/* Base styling for animated text */
.animated-text-container {
    text-align: center;
    margin: 50px 0;
    font-size: 36px;
    font-weight: bold;
    color: #1a73e8;
    overflow: hidden;
    border-right: 3px solid #1a73e8;
    white-space: nowrap;
    letter-spacing: 2px;
    animation: typing 4s steps(30, end), blink 0.75s step-end infinite;
}

/* Typing Effect */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Cursor Blinking Effect */
@keyframes blink {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #1a73e8;
    }
}

/* Fade-in Effect */
.fade-in-text {
    opacity: 0;
    animation: fadeIn 3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Color Change Animation */
.color-change-text {
    animation: colorChange 5s infinite;
}

@keyframes colorChange {
    0% {
        color: #1a73e8;
    }
    25% {
        color: #ff6347;
    }
    50% {
        color: #32cd32;
    }
    75% {
        color: #ff4500;
    }
    100% {
        color: #1a73e8;
    }
}
