/* ==============================
   Home Section
================================= */
.home {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 20px;
    margin-top: 85px;
    background-color: #15233b;
    border-radius: 15px;
    padding-top: 80px;
}

/* Particles.js layer (optional) */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Container for home content */
.home-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.home-content {
    flex: 1;
    max-width: 600px;
}

.home-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-style: normal;
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s;
}
.typing-text{
    color: aqua;
}
.dynamic-text {
    font-size: 1.5rem;
    margin-bottom: 30px;
    min-height: 2rem;
    font-weight: 500;
    opacity: 0;
    color: aliceblue;
    animation: fadeIn 1s forwards 1s;
}

.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--accent-color);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    width: 100%;
}

.cta-button:hover {
    color: var(--primary-color);
}

.resume-btn {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.resume-btn::before {
    background-color: var(--text-primary);
}

.resume-btn:hover {
    color: var(--primary-color);
}

/* ==============================
   Image Container
================================= */
.home-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-container img {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Professional Animated Background Behind Image */
.professional-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 2;
    overflow: hidden;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: floatGlows 6s ease-in-out infinite alternate;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: rgba(100, 255, 218, 0.3);
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.glow-2 {
    width: 250px;
    height: 250px;
    background: rgba(0, 200, 255, 0.25);
    bottom: -40px;
    right: -40px;
    animation-delay: 2s;
}

.glow-3 {
    width: 220px;
    height: 220px;
    background: rgba(255, 100, 200, 0.2);
    top: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes floatGlows {
    0% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
    50% { transform: translateY(-20px) translateX(20px) scale(1.05); opacity: 0.7; }
    100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
}

/* ==============================
   Animations
================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.05); opacity: 0.2; }
}

/* ==============================
   Responsive Design
================================= */
@media (max-width: 1100px){
   .home-title{
      font-size: 2.8rem;
   }
}
@media (max-width: 968px) {
    .home-container {
        flex-direction: column;
        text-align: center;
    }
    
    .home-content {
        margin-bottom: 50px;
    }
    
    .home-title {
        font-size: 2.2rem;
    }
    
    .dynamic-text {
        font-size: 1.3rem;
    }
    
    .button-group {
        justify-content: center;
    }
    
    .image-container {
        width: 320px;
        height: 320px;
    }
    
    .image-container img {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .home-container {
        padding: 0;
    }

    .home-title {
        font-size: 2rem;
    }
    
    .dynamic-text {
        font-size: 1.2rem;
    }
    
    .image-container {
        width: 280px;
        height: 280px;
    }
    
    .image-container img {
        width: 240px;
        height: 240px;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .home-title {
        font-size: 1.7rem;
    }
    
    .dynamic-text {
        font-size: 1rem;
    }
    
    .image-container {
        width: 240px;
        height: 240px;
    }
    
    .image-container img {
        width: 200px;
        height: 200px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .shape {
        animation-duration: 5s;
    }
}
.home-image .image-container {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.home-image .image-container.visible {
    opacity: 1;
    transform: translateY(0);
}



