* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Comfortaa', cursive;
    background: #f3f3f3;
}

h1 {
    font-family: 'Gruppo', serif;
    font-size: 105px;
    margin: 0 0 20px;
}

h3 {
    font-weight: 300;
    line-height: 1.7;
}

.entry-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* ===== Strips ===== */

.strip-layer-container {
    position: absolute;
    inset: 0;
    display: flex;
}

.strip {
    flex: 1;
    background: linear-gradient(#8d350ca1, rgba(177, 51, 13, 0.685), #69280aa1);
    box-shadow: 10px 0 30px -10px #0005;
    transition: transform 0.3s ease;
}

.strip:hover {
    transform: translateY(-60px);
}

/* ===== Hero Section ===== */

.hero {
    position: relative;
    z-index: 2;
    background: rgba(96, 6, 170, 0.7);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 2;
}

.profile {
    flex: 1;
    text-align: center;
}

.profile-img-wrap {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #fff;
    margin: auto;
}

.profile-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    margin-top: 20px;
}

/* ===== Buttons ===== */

.btn-group {
    margin-top: 30px;
}

.link-button{
  text-decoration: none;
  color: #444;
  display: inline-block;
}

.button, .link-button {
    padding: 15px 25px;
    margin-right: 15px;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    color:#333;
    transition: 0.3s ease;
    font-family: inherit;
    text-decoration: none;
}

.button:hover{
    color:#222;
}

.button.dark {
    background: #333;
    color: #fff ;
}

.button:hover {
    background: #eee;
}

/* ===== About Section ===== */

.about {
    padding: 80px 0;
    background: #fff;
}

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


.dropcap {
    font-family: 'Croissant One', cursive;
    font-size: 180px;
    font-weight: bold;
    line-height: 126px;
    color: #444;
    margin-right: 20px;
    float: left;
}

.intro p{
    line-height: 35px;
    font-size: 17px;
    color: #888;
}

/* ===== Animation ===== */

.waving-hand {
    display: inline-block;
    animation: wave-animation 2.5s infinite;
    transform-origin: 70% 70%;
}

@keyframes wave-animation {
    0%, 60%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
}

/* ===== Footer ===== */

.footer {
    background: #111;
    color: #ddd;
    padding: 60px 0 20px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-brand {
    font-family: 'Prata', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-col p {
    line-height: 1.7;
    font-size: 14px;
    color: #aaa;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #aaa;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #222;
    padding-top: 20px;
}


/* ===== Responsive ===== */

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 42px;
    }

    .intro {
        
    }

    .dropcap {
        font-size: 80px;
        line-height: 80px;
    }
}

@media (max-width: 576px) {

    .profile-img-wrap {
        width: 180px;
        height: 180px;
    }

    .button {
        display: block;
        margin: 10px auto;
    }
}

/* ===== Responsive Footer ===== */

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}


/* ===== Services Hero ===== */

.services-hero {
    background: linear-gradient(135deg, #6006aa, #8e2de2);
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.services-hero h1 {
    font-family: 'Prata', serif;
    font-size: 60px;
    margin-bottom: 20px;
}

.services-hero p {
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

/* ===== Services Grid ===== */

.services-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Gruppo', sans-serif;
}

.service-card p {
    line-height: 1.7;
    color: #555;
}

/* ===== CTA Section ===== */

.services-hero-content {
    justify-content: center;
    text-align: center;
}

.services-hero-content .hero-text {
    max-width: 800px;
}

.services-cta {
    background: #111;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.services-cta h2 {
    margin-bottom: 20px;
    font-family: 'Prata', serif;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-hero h1 {
        font-size: 32px;
    }
}


/* ===== Contact Section ===== */

.contact-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-family: 'Prata', serif;
    margin-bottom: 20px;
}

.contact-info p {
    line-height: 1.7;
    color: #555;
}

.contact-details p {
    margin-bottom: 10px;
}

/* ===== Form Styling ===== */

.contact-form-wrap {
    flex: 1;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6006aa;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

/* ===== Projects Section ===== */

.projects-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.project-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.project-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #6006aa, #8e2de2);
}

.thumb-placeholder{
  position: absolute;
  bottom: 30px;
  left: 50px;
  font-size: 65px;
  opacity: .6;
  white-space: nowrap;
  color: #fff;
}

.project-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    margin-bottom: 15px;
    font-weight: bold;
    font-family: 'Gruppo', sans-serif;
}

.project-content p {
    flex: 1;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.project-tags {
    margin-bottom: 20px;
}

.project-tags span {
    display: inline-block;
    background: #eee;
    padding: 5px 12px;
    margin-right: 8px;
    margin-right: 10px;
    font-size: 12px;
    border-radius: 20px;
}

.project-links a {
    text-decoration: none;
    font-size: 14px;
    margin-right: 15px;
    color: #6006aa;
    font-weight: 500;
}

.project-links a:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Filter Buttons ===== */

.filter-buttons {
    margin-bottom: 40px;
    text-align: center;
}

.filter-btn {
    padding: 8px 16px;
    margin: 5px;
    border: 1px solid #6006aa;
    background: transparent;
    cursor: pointer;
    border-radius: 20px;
    font-size: 14px;
    transition: 0.3s ease;
}

.filter-btn:hover {
    background: #6006aa;
    color: #fff;
}

.filter-btn.active {
    background: #6006aa;
    color: #fff;
}


.video-section {
    padding: 100px 0;
    background: #0B0F19;
    position: relative;
}

/* Glow background effect */
.video-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6C63FF, transparent);
    top: -100px;
    left: -100px;
    filter: blur(120px);
    opacity: 0.4;
}

.video-header {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.video-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.video-header p {
    color: #9CA3AF;
}

/* Video Container */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);

    /* Glow border */
    padding: 6px;
    box-shadow: 0 0 40px rgba(108, 99, 255, 0.3);
}

/* Maintain 16:9 ratio */
.video-wrapper iframe {
    width: 100%;
    height: 500px;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .video-wrapper iframe {
        height: 250px;
    }
}