/* Navbar Call Button */
.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-left: 0.3rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.call-btn {
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.call-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), #14b8d4, var(--primary-color));
    border-radius: 50px;
    z-index: -1;
    animation: glowPulse 1.5s ease-in-out infinite;
}

.phone-icon {
    animation: shake 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
    transform-origin: 50% 50%;
}

.download-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: var(--primary-color);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 162, 189, 0.3);
    color: var(--text-color);
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

@media (max-width: 992px) {
    .nav-btn {
        margin: 0.5rem 0;
        justify-content: center;
    }
    
    .navbar-nav {
        padding: 1rem 0;
        gap: 0;
    }

    .nav-link {
        padding: 0.5rem 0 !important;
        text-align: center;
    }

    .nav-btn {
        margin: 0.5rem 0;
        width: 100%;
        justify-content: center;
    }
    
    /* Fix for mobile menu scrolling */
    .navbar-collapse {
        max-height: 60vh;
        overflow-y: auto;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.custom-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    color: var(--text-color);
    justify-content: center;

}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    position: relative;
    overflow: hidden;
}

.primary-btn::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: 0.5s;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 162, 189, 0.3);
    color: var(--text-color);
}

.secondary-btn, .download-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover, .download-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: var(--text-color);
}

.download-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.download-btn:hover i {
    transform: translateY(2px);
}

/* About Section */
.about-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    background: rgba(14, 162, 189, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #a5a5a5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(14, 162, 189, 0.3);
}

.experience-tag .number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-tag .text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.achievement-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: -30px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.achievement-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.achievement-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.skill-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
}

.skill-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.skill-card h4 {
    margin-bottom: 1rem;
}

.skill-progress {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    border-radius: 3px;
    position: relative;
    width: 0;
    transition: width 1.5s ease;
}

.progress-text {
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -2.1rem;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--bg-color);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
}

.timeline-content h5 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.shape-1 {
    top: 10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(var(--primary-color), transparent 70%);
    filter: blur(60px);
}

.shape-2 {
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(var(--primary-color), transparent 70%);
    filter: blur(60px);
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .achievement-cards {
        margin-top: 2rem;
    }

    .experience-tag {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .glow-text{
        font-size: 30px !important;
    }

    .services-grid .splide__arrow--prev{
        left: 30% !important;
    }

    .services-grid .splide__arrow--next{
        right: 30% !important;
    }

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

    .about-tabs {
        flex-wrap: wrap;
    }

    .achievement-cards {
        grid-template-columns: 1fr;
    }
}

:root {
    --primary-color: #0ea2bd;
    --secondary-color: #1a1a2e;
    --text-color: #ffffff;
    --dark-bg: #0f0f1a;
    --card-bg: #1a1a2e;
    --bg-color: linear-gradient(135deg, var(--dark-bg), var(--secondary-color));
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
}

/* Navbar Styles */
.navbar {
    padding: 0.75rem 0;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-link {
    padding: 0.5rem 0.7rem !important;
    color: var(--text-muted) !important;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    margin: 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.7rem;
    right: 0.7rem;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-color) !important;
}

.nav-btn {
    padding: 0.4rem 1rem;
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Navbar Active Link Styles */
.navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.navbar-nav .nav-link:hover::after {
    width: 50%;
    opacity: 0.7;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
    opacity: 1;
}


.call-btn {
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.call-btn:hover {
    transform: translateY(-2px);
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(14, 162, 189, 0.3);
}

@media (max-width: 992px) {
    .navbar-nav {
        padding: 1rem 0;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        justify-content: center;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.7rem !important;
    }

    .nav-link::after {
        left: 30%;
        right: 30%;
    }

    .nav-btn {
        margin: 0.5rem auto;
        justify-content: center;
        width: auto;
    }
}

/* Glow Effects */
.glow-text {
    text-shadow: 0 0 10px var(--primary-color),
                0 0 20px var(--primary-color),
                0 0 30px var(--primary-color);
                font-size: 40px;

}

.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
                              rgba(14, 162, 189, 0.2),
                              transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

/* Hero Section */
.hero-section {
    min-height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.95), rgba(26, 26, 46, 0.95));
    padding-top: 120px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(14, 162, 189, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(14, 162, 189, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 0.5rem;
    position: relative;
}

.badge-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.wave {
    display: inline-block;
    animation: wave 2.5s infinite;
    transform-origin: 70% 70%;
    font-size: 2.5rem;
    margin-left: 0.5rem;
}

.typed-container {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
}

.typed-text {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.custom-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    color: var(--text-color);
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    position: relative;
    overflow: hidden;
}

.primary-btn::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: 0.5s;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 162, 189, 0.3);
    color: var(--text-color);
}

.secondary-btn, .download-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover, .download-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: var(--text-color);
}

.download-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.download-btn:hover i {
    transform: translateY(2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image-wrapper {
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    z-index: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.card-1 {
    top: 20%;
    left: 0;
    animation: float 5s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    right: 0;
    animation: float 5s ease-in-out infinite 0.5s;
}

.floating-card i {
    color: var(--primary-color);
}

.experience-badge {
    position: absolute;
    bottom: 10%;
    left: 10%;
    background: var(--primary-color);
    padding: 1rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite 1s;
    z-index: 2;
}

.experience-badge .years {
    font-size: 1.5rem;
    font-weight: 700;
}

.experience-badge .text {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.2;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.portfolio-item {
    grid-column: span 4;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
}

.portfolio-item.large {
    grid-column: span 6;
}

.portfolio-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-content {
    color: var(--text-color);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.card-content p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: start;
}

.view-project {
    color: var(--text-color);
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.view-project:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Portfolio Hover Effects */
.portfolio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.portfolio-card:hover {
    transform: scale(1.02);
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-card:hover .card-overlay {
    opacity: 1;
}

.portfolio-card:hover .card-content {
    transform: translateY(0);
}

.portfolio-card:hover::before {
    opacity: 0.2;
}

/* Portfolio Grid Responsive */
@media (max-width: 1200px) {
    .portfolio-item {
        grid-column: span 6;
    }
    
    .portfolio-item.large {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        gap: 1rem;
    }

    .portfolio-item,
    .portfolio-item.large {
        grid-column: span 12;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }
}

/* Resume Section */
.resume-section {
    padding: 100px 0;
    background: var(--bg-color);
    /* min-height: 100vh; */
    position: relative;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.1;
    animation: floatOrb 8s infinite ease-in-out;
}

.glow-orb.secondary {
    top: 60%;
    right: -150px;
    width: 400px;
    height: 400px;
    animation-delay: -4s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -30px); }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-color);
    display: inline-block;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { left: 200%; }
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #a5a5a5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-color);
    opacity: 0.8;
}

.resume-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-item {
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 1rem 0.5rem;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.nav-icon .number {
    font-size: 0.8rem;
    opacity: 0.7;
}

.nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item:hover::before {
    opacity: 1;
}

.nav-item.active {
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    transform: scale(1.05);
}

.nav-item.active::before {
    opacity: 0;
}

.resume-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.resume-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: flex;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-color);
    flex-shrink: 0;
}


.meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-stack {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.tech-stack span {
    background: rgba(14, 162, 189, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(14, 162, 189, 0.2);
    transition: all 0.3s ease;
}

.tech-stack span:hover {
    background: var(--primary-color);
    color: var(--text-color);
    transform: translateY(-2px);
}

/* Skills Styles */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.skill-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.skill-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.skill-card .card-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.skill-items {
    display: grid;
    gap: 1.5rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.percentage {
    color: var(--primary-color);
    font-weight: 500;
}

.skill-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #14b8d4);
    border-radius: 3px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
    filter: blur(2px);
    animation: progressGlow 2s infinite;
}

@keyframes progressGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(500%); }
}

/* Education Styles */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.edu-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.edu-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.edu-meta {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.university {
    color: var(--primary-color);
}

.year {
    color: var(--text-color);
    opacity: 0.7;
}

.achievements {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.achievements li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    opacity: 0.9;
}

.achievements li i {
    color: var(--primary-color);
}

/* Tab Content Animation */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .resume-nav {
        flex-direction: column;
        border-radius: 15px;
        padding: 0.5rem;
    }
    .hero-section{
        padding-top: 50px;
    }

    .hero-content{
        padding-top: 100px;
    }

    .nav-item {
        width: 100%;
        justify-content: center;
    }

    .resume-card {
        flex-direction: column;
        gap: 1rem;
    }

    .meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .skills-grid,
    .education-grid {
        grid-template-columns: 1fr;
    }

    .tech-stack {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }

    .hero-section{
        padding-top: 10px;
    }

}

/* Services Section */
.services-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.95), rgba(26, 26, 46, 0.95));
}

.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    background: rgba(14, 162, 189, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
    border: 1px solid rgba(14, 162, 189, 0.2);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; */
    padding: 1rem;
}

.service-card {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(26, 26, 46, 0.8);
    border-color: var(--primary-color);
}


.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover .icon-wrapper::before {
    transform: translateX(100%);
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: var(--text-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;

}

.service-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 16px;
}

.service-link:hover {
    color: #14b8d4;
    gap: 0.8rem;
}

.card-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.03;
    transition: all 0.3s ease;
}

.shape-1 {
    width: 150px;
    height: 150px;
    border-radius: 28% 72% 79% 21% / 29% 76% 24% 71%;
    top: -75px;
    right: -75px;
}

.shape-2 {
    width: 100px;
    height: 100px;
    border-radius: 71% 29% 21% 79% / 24% 76% 24% 76%;
    bottom: -50px;
    left: -50px;
}

.service-card:hover .shape {
    opacity: 0.05;
    transform: scale(1.2) rotate(45deg);
}

@media (max-width: 991.98px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-image-container {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #14b8d4;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .resume-nav {
        flex-direction: column;
        border-radius: 15px;
        padding: 0.5rem;
    }

    .nav-item {
        width: 100%;
        justify-content: center;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    margin: 4rem 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card.featured {
    background: linear-gradient(145deg, rgba(14, 162, 189, 0.1), rgba(20, 184, 212, 0.05));
}

.quote-icon {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(14, 162, 189, 0.3);
}

.testimonial-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    padding: 2px;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.client-details {
    flex: 1;
}

.client-details h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.client-details span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.rating {
    color: #ffd700;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Brands Section */
.brands-section {
    margin-top: 6rem;
    text-align: center;
}

.brands-title {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.brands-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.brand-item {
    transition: all 0.3s ease;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .client-info {
        flex-direction: column;
        text-align: center;
    }

    .rating {
        margin-top: 1rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

.info-card h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--text-color);
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.social-icon:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: 120%;
}

/* Contact Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.form-group {
    margin-bottom: 2rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

.input-wrapper label {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-wrapper.textarea label {
    top: 1.5rem;
    transform: none;
}

.input-wrapper i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.input-wrapper.textarea i {
    top: 1.5rem;
    transform: none;
}

.input-glow {
    position: absolute;
    inset: 0;
    border-radius: 15px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.input-wrapper input:focus ~ .input-glow,
.input-wrapper textarea:focus ~ .input-glow {
    opacity: 1;
    box-shadow: 0 0 20px var(--primary-color);
}

.input-wrapper input:focus ~ label,
.input-wrapper textarea:focus ~ label,
.input-wrapper input:valid ~ label,
.input-wrapper textarea:valid ~ label {
    top: -10px;
    left: 0;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: var(--bg-color);
    padding: 0 0.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    border: none;
    border-radius: 15px;
    color: var(--text-color);
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.submit-btn .btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(14, 162, 189, 0.3);
}

.submit-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Decorative Shapes */
.contact-shape-1,
.contact-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
}

.contact-shape-1 {
    background: var(--primary-color);
    top: -150px;
    right: -150px;
}

.contact-shape-2 {
    background: #14b8d4;
    bottom: -150px;
    left: -150px;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .info-card {
        text-align: center;
    }

    .card-icon {
        margin: 0 auto 1.5rem;
    }
}

/* Footer Styles */
.footer-section {
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.footer-section ul{
    padding: 0;
}

.footer-top {
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
    justify-items: start;

}

/* Footer Brand */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-logo span {
    color: var(--primary-color);
}

.brand-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Newsletter */
.newsletter h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.newsletter-form::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 1px;
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.newsletter-form:focus-within::before {
    opacity: 1;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.newsletter-form button {
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    color: var(--text-color);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateX(3px);
}

/* Footer Links */
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a,
.footer-services ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before,
.footer-services ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links ul li a:hover::before,
.footer-services ul li a:hover::before {
    opacity: 1;
}

/* Footer Contact */
.footer-contact ul {
    list-style: none;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-contact ul li:hover i {
    background: var(--primary-color);
    color: var(--text-color);
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.scroll-top-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
}

/* Decorative Shapes */
.footer-shape-1,
.footer-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    z-index: 0;
}

.footer-shape-1 {
    background: var(--primary-color);
    top: 0;
    right: -150px;
}

.footer-shape-2 {
    background: #14b8d4;
    bottom: 0;
    left: -150px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-services h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .copyright {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* Cursor Follower */
.cursor-outer {
    pointer-events: none;
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.25s, height 0.25s;
    z-index: 9999;
}

.cursor-inner {
    pointer-events: none;
    position: fixed;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.25s, height 0.25s;
    z-index: 9999;
}

@media (max-width: 768px) {
    .cursor-outer,
    .cursor-inner {
        display: none;
    }
}

@media (max-width: 768px) {
}

.about-text {
    color: var(--text-color);
}

.highlight-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.about-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .about-cta {
        flex-direction: column;
    }
    
    .highlight-text {
        font-size: 1.3rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

/* Grid Layout Sizes */
.bento-item {
    grid-column: span 4;
    aspect-ratio: 4/3;
}

.bento-item.featured {
    grid-column: span 8;
    aspect-ratio: 16/9;
}

.bento-item.wide {
    grid-column: span 8;
    aspect-ratio: 16/7;
}

.bento-item.tall {
    grid-column: span 4;
    aspect-ratio: 3/4;
}

.bento-card {
    position: relative;
    width: 100%;
    height: 100%;
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-item:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 60%,
        rgba(0, 0, 0, 0.3) 100%
    );
    padding: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-item:hover .card-overlay {
    opacity: 1;
}

.project-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-overlay h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-overlay p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tech-stack {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tech-stack span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-color);
    backdrop-filter: blur(5px);
}

.card-actions {
    display: flex;
    gap: 1rem;
}

.card-actions a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.card-actions a:hover {
    color: var(--primary-color);
}

.card-actions i {
    font-size: 1.1rem;
}

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(8, 1fr);
    }
    
    .bento-item.featured {
        grid-column: span 8;
    }
    
    .bento-item {
        grid-column: span 4;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .bento-item,
    .bento-item.featured,
    .bento-item.wide,
    .bento-item.tall {
        grid-column: span 4;
        aspect-ratio: 3/2;
    }
    
    .card-overlay {
        padding: 1.5rem;
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 60%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }
    
    .card-overlay h3 {
        font-size: 1.3rem;
    }
    
    .card-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 442px) {
    .hero-buttons{
        display: flex;
        flex-direction: column;
    align-content: space-around;
    }

    .custom-btn{
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .close-modal {
        top: -50px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .close-modal:hover {
        transform: translateX(50%) rotate(90deg);
    }
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-message:not(:empty) {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
    margin-top: 15px;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn .fa-spinner {
    margin-right: 0.5rem;
}


.splide__slide {
    padding: 20px 0;
    text-align: center;
    font-size: 24px;
    border-radius: 10px;
}

.splide__arrow{
    background-color: var(--primary-color) !important;
}

.splide__arrow svg{
    fill: var(--text-color) !important;
}

.splide__pagination{
    bottom: -20px !important;
}

.services-splide__slide {
    padding: 20px 0;
    text-align: center;
    font-size: 24px;
    border-radius: 10px;
}


.services-grid .splide__arrow--prev{
    position: absolute !important;
    left: 40% ;
    top: 110% !important;
    transform: translateY(-50%) !important;
}

.services-grid .splide__arrow--next{
    position: absolute !important;
    right: 40% ;
    top: 110% !important;
}