/* Global Styles */
:root {
    --primary-color: #ff004f;
    --secondary-color: #2ecc71;
    --dark-color: #080808;
    --light-color: #fff;
    --gray-color: #ababab;
    --gradient-1: linear-gradient(45deg, #ff004f, #ff458b);
    --gradient-2: linear-gradient(135deg, #00c6ff, #0072ff);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
}

/* Header Section */
#header {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    padding: 10px 10%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Enhanced Navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    padding: 15px 10%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    width: 140px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.1) rotate(-5deg);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Enhanced Header Text */
.header-text {
    margin-top: 20%;
    text-align: center;
}

.typing-text {
    font-size: 24px;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.header-text h1 {
    font-size: 60px;
    margin-top: 20px;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.header-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Enhanced Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    color: var(--light-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-1);
    z-index: -1;
    transition: var(--transition);
}

.btn:hover::before {
    width: 100%;
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--light-color);
}

/* Enhanced About Section */
/* About Section Styling */
#about {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 1));
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.about-col-1 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    height: 570px;
}

.about-col-1 img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.about-col-1:hover img {
    transform: scale(1.03);
}

.social-links {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    background: linear-gradient(45deg, var(--primary-color), #ff458b);
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 79, 0.3);
}

.about-col-2 {
    padding: 20px;
}

.about-content h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--light-color);
    position: relative;
    padding-bottom: 15px;
}

.about-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.about-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.key-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 0, 79, 0.1);
}

.highlight-item i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--light-color);
}

.highlight-item p {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-col-1 img {
        height: 350px;
    }

    .key-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .key-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content h3 {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .key-highlights {
        grid-template-columns: 1fr;
    }

    .about-col-1 img {
        height: 300px;
    }

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

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}
/* Enhanced Skills Section */
#skills {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(8,8,8,0.97), rgba(20,20,20,0.97));
    position: relative;
    overflow: hidden;
}

#skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255,0,79,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.skill-category {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.skill-category:hover::before {
    opacity: 0.05;
}

.skill-category h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--light-color);
    position: relative;
    padding-bottom: 15px;
}

.skill-category h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.skill-category:hover h3::after {
    width: 60px;
}

.skill-items {
    position: relative;
    z-index: 1;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-item span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: var(--gray-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.skill-item:hover span {
    color: var(--light-color);
    transform: translateX(5px);
}

/* Enhanced Progress Bar */
.progress-bar {
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress {
    background-color: #ddd; /* Background color for empty part */
    height: 20px; /* Or your desired height */
    position: relative;
    overflow: hidden;
  }
  
  .progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #B91349; /* Color for filled part */
  }

/* Skill Level Indicator */
.skill-item span::after {
    content: attr(data-level);
    font-size: 14px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.skill-item:hover span::after {
    opacity: 1;
    transform: translateX(0);
}

/* Animations */
@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes skillFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skill-category {
    animation: skillFadeIn 0.6s ease forwards;
    opacity: 0;
}

.skill-category:nth-child(1) { animation-delay: 0.2s; }
.skill-category:nth-child(2) { animation-delay: 0.4s; }
.skill-category:nth-child(3) { animation-delay: 0.6s; }

/* Progress Animation */
@keyframes showProgress {
    to { transform: translateX(0); }
}

/* Hover Effects */
.skill-category:hover .progress-bar {
    background: rgba(255,255,255,0.1);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-category {
        padding: 25px;
    }
    
    .skill-category h3 {
        font-size: 22px;
    }
}

@media screen and (max-width: 480px) {
    .skill-category {
        padding: 20px;
    }
    
    .skill-item span {
        font-size: 14px;
    }
}


/* Services Section  */
/* Services Section */
#services {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(8,8,8,0.95), rgba(20,20,20,0.95));
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,0,79,0.1) 0%, transparent 50%);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.4s ease;
}

.service-card:hover i {
    transform: scale(1.2) rotate(360deg);
    background: linear-gradient(45deg, var(--primary-color), #ff458b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-color);
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.service-card:hover h3::after {
    width: 60px;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-features li i {
    font-size: 16px;
    margin-right: 10px;
    color: var(--primary-color);
    background: rgba(255, 0, 79, 0.1);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li {
    transform: translateX(5px);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--light-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.learn-more i {
    font-size: 16px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-color);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Hover Animation for Service Cards */
@keyframes cardFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.service-card:hover {
    animation: cardFloat 3s ease-in-out infinite;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card h3 {
        font-size: 22px;
    }
}

/* Loading Animation for Service Cards */
@keyframes fadeInUp {
    from {
        opacity: 0.7;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0.7;
}

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.4s;
}

.service-card:nth-child(3) {
    animation-delay: 0.6s;
}
/* Services  Ends here Section  */



/* Enhanced Portfolio Section */
/* Enhanced Portfolio Section */
#portfolio {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.95), rgba(20, 20, 20, 0.95));
    position: relative;
    overflow: hidden;
}

#portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 0, 79, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-1);
    transition: var(--transition);
    z-index: 1;
    opacity: 0;
}

.filter-btn span {
    position: relative;
    z-index: 2;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 100%;
    opacity: 1;
}

.work-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.work {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 400px;
}

.work img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.layer {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.7) 0%,
        rgba(255, 0, 79, 0.9) 100%
    );
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.work:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.work:hover .layer {
    bottom: 0;
}

.work:hover img {
    transform: scale(1.1);
    filter: blur(3px);
}

.layer h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-color);
}

.layer p {
    color: var(--light-color);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.project-links {
    display: flex;
    gap: 20px;
    margin-top: auto;
}

.project-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--light-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.project-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.project-links i {
    font-size: 16px;
}

/* Loading Animation */
@keyframes portfolioFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.work {
    animation: portfolioFadeIn 0.6s ease forwards;
    opacity: 0;
}

.work:nth-child(1) { animation-delay: 0.2s; }
.work:nth-child(2) { animation-delay: 0.4s; }
.work:nth-child(3) { animation-delay: 0.6s; }

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .work-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .work-list {
        grid-template-columns: 1fr;
    }
    
    .layer {
        padding: 30px;
    }
    
    .layer h3 {
        font-size: 22px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .portfolio-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .work {
        height: 350px;
    }
}
/* Enhanced Form Styles */
.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    color: var(--light-color);
    font-size: 16px;
    transition: var(--transition);
}

.input-group input:focus, .input-group textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.input-group input:focus ~ .input-focus-border,
.input-group textarea:focus ~ .input-focus-border {
    width: 100%;
}
 

/* Enhanced Contact Section */
#contact {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(8,8,8,0.97), rgba(20,20,20,0.97));
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255,0,79,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-left {
    flex: 1;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.contact-left:hover {
    transform: translateY(-5px);
}

.contact-left h3 {
    font-size: 32px;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-left > p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Enhanced Contact Info Items */
.contact-info {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,0,79,0.05);
    transform: translateX(10px);
}

.contact-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: rotate(360deg);
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--light-color);
}

.contact-details p {
    color: var(--gray-color);
    font-size: 15px;
}

/* Enhanced Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    color: var(--light-color);
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: all 0.3s ease;
}

.social-icons a i {
    position: relative;
    z-index: 1;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.social-icons a:hover::before {
    opacity: 1;
}

/* Enhanced Contact Form */
.contact-right {
    flex: 1;
    padding: 40px;
    margin-left: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--light-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary-color);
    outline: none;
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.input-group input:focus ~ .input-focus-border,
.input-group textarea:focus ~ .input-focus-border {
    width: 100%;
}

/* Enhanced Button Styles */
.btn2 {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient-1);
    border: none;
    border-radius: 30px;
    color: var(--light-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.btn2:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,79,0.3);
}

.btn2:hover::before {
    left: 100%;
}

/* Success Message Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#msg {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
}

#msg.success {
    display: block;
    background: rgba(46,204,113,0.1);
    color: #2ecc71;
    animation: slideIn 0.3s ease forwards;
}

#msg.error {
    display: block;
    background: rgba(255,0,79,0.1);
    color: var(--primary-color);
    animation: slideIn 0.3s ease forwards;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .row {
        flex-direction: column;
    }
    
    .contact-right {
        margin-left: 0;
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .contact-left, .contact-right {
        padding: 30px;
    }
    
    .contact-left h3 {
        font-size: 28px;
    }
    
    .contact-item {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .social-icons {
        flex-wrap: wrap;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Loading Animation */
@keyframes contactFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-left, .contact-right {
    animation: contactFadeIn 0.6s ease forwards;
    opacity: 0;
}

.contact-right {
    animation-delay: 0.3s;
}

/* Enhanced Footer */
/* Enhanced Footer Section */
footer {
    background: linear-gradient(to bottom, rgba(8,8,8,0.98), rgba(0,0,0,1));
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.05);
}

.footer-content p {
    color: var(--gray-color);
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding-left: 25px;
}

.footer-content p::before {
    content: '©';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 18px;
}

.footer-content p:hover {
    color: var(--light-color);
    transform: translateX(5px);
}

.back-to-top {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    text-decoration: none;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255,0,79,0.3);
}

.back-to-top:hover::before {
    transform: translateX(100%);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Footer Wave Animation */
.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.footer-wave .shape-fill {
    fill: var(--dark-color);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-content p {
        padding-left: 0;
        margin-bottom: 20px;
    }
    
    .footer-content p::before {
        position: static;
        margin-right: 5px;
    }
    
    .back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 99;
    }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-1);
    width: 0%;
    transition: width 0.2s ease;
}