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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5 {
    margin-bottom: 1rem;
}

section {
    padding: 4rem 0;
    text-align: center;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero-background.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

/* Blurry Background Circles */
.blurry-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px); /* Blur effect */
    opacity: 0.3;
    z-index: -1; /* Place behind the content */
}

/* Orange Blurry Circle */
.blurry-circle.orange {
    width: 500px;
    height: 500px;
    background: red;
    top: -100px;
    right: -150px;
}

/* Pink Blurry Circle */
.blurry-circle.pink {
    width: 400px;
    height: 400px;
    background: blue;
    bottom: -150px;
    left: -100px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero-content h1 span {
    background: linear-gradient(90deg, red, #ff8c42);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 3s ease-in-out infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content p {
    margin: 1rem 0;
    font-size: 1.25rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff6b6b;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff3b3b;
}

/* Portfolio Section */
#portfolio {
    background-color: #1e1e1e;
    padding: 5rem 0;
}

#portfolio h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 5%;
}

.portfolio-item {
    background-color: #292929;
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.portfolio-item h3 {
    color: #ff6b6b;
    font-size: 1.25rem;
}

/* Process Section */
#process {
    background-color: #121212;
}

#process h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 10%;
}

.step {
    background-color: #292929;
    padding: 2rem;
    border-radius: 8px;
}

.step h3 {
    font-size: 1.5rem;
    color: #ff6b6b;
}

/* Testimonials Section */
#testimonials {
    background-color: #1e1e1e;
    padding: 5rem 0;
}

#testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 10%;
}

.testimonial {
    background-color: #292929;
    padding: 2rem;
    border-radius: 8px;
    font-style: italic;
}

.testimonial p {
    color: #ff6b6b;
}

/* CTA Section */
#cta {
    padding: 4rem 0;
    width: 100%;
    color: #fff;
    text-align: center;
}

.cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 0 5%;
}

#cta h2 {
    font-size: 2rem;
}

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

#cta .btn {
    background-color: #292929;
}

#cta .btn:hover {
    background-color: #121212;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        padding: 0 5%;
    }
}

.profile-section {
    background-color: #292929;
    display: flex;
    padding: 2rem;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    padding: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.profile-photo {
    display: flex;
    width: 160px; 
    height: 160px;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* Circular photo */
    border: 2px solid #3e3e5e; /* Border matching the color scheme */
    margin-right: 15px;
}
 
.profile-name {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff; /* White color for the name */
    margin-bottom: 5px; /* Spacing between name and role */
}

.profile-role {
    font-size: 16px;
    color: #848599; /* Light gray text for the role/description */
}

.social-links a {
    padding: 20px;
}

.social-links .link1 {
    padding-left: 720px;
    margin-bottom: 10px;
}