/* 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;
}

.top-games-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.game-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.theme-btn.btn-main {
    background: linear-gradient(45deg, var(--primary-color), #14b8d4);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.theme-btn.btn-main:hover {
    background: linear-gradient(45deg, #14b8d4, var(--primary-color));
    transform: translateY(-2px);
}

.advantages-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.adv-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
    height: 100%;
}

.adv-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.adv-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.5);
}

.neon-border {
    border: 1px solid rgba(0, 255, 200, 0.6);
}

.bonus-box {
    margin-top: 50px;
    padding: 30px;
    border-radius: 15px;
    background: linear-gradient(90deg, #6f2da8, #14b8d4);
    color: #fff;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
    filter: invert(1) brightness(1000%); 
}

.bonuses-section {
    padding: 100px 0;
    background: var(--bg-color);
    color: #fff;
}

.welcome-bonus {
    padding: 25px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    margin-bottom: 40px;
}

.bonus-list {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.bonus-list li {
    margin-bottom: 8px;
}

.neon-border {
    border: 1px solid rgba(0, 255, 200, 0.6);
    box-shadow: 0 0 12px rgba(0, 255, 200, 0.3);
}

.tier-card, .perk-card {
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    background: rgba(255,255,255,0.05);
}

.tier-card h4, .perk-card h4 {
    margin-bottom: 10px;
    color: #3cd4c2;
}

.bonus-img {
    filter: drop-shadow(0 0 10px rgba(0,255,200,0.6));
}

/* Bonus Banner Section */
.bonus-banner {
    position: relative;
    padding: 100px 0;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    border-top: 2px solid rgba(0,255,200,0.4);
    border-bottom: 2px solid rgba(0,255,200,0.4);
}


.bonus-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.1);
    z-index: 0;
}

.bonus-banner .container {
    position: relative;
    z-index: 1; 
}

.banner-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #6f2da8, #3cd4c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.banner-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.banner-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.banner-list i {
    color: #3cd4c2;
    margin-right: 8px;
}

.games-info-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-color);
    color: #fff;
    overflow: hidden;
    text-align: center;
}


.games-info-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        url("img/chip1.png"),
        url("img/chip2.png"),
        url("img/chip3.png"),
        url("img/chip4.png"),
        url("img/chip5.png");
    background-repeat: no-repeat;
    background-position: 
        10% 20%, 
        80% 10%, 
        50% 70%, 
        90% 80%, 
        20% 85%;
    background-size: 
        80px, 
        100px, 
        60px, 
        90px, 
        70px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.games-info-section .container {
    position: relative;
    z-index: 1;
}


.games-intro {
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}


.game-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: 0.3s ease;
}

.game-card h3 {
    margin-bottom: 15px;
    color: #3cd4c2;
    font-size: 1.3rem;
}

.game-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.game-card ul li {
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}

.game-card ul li::before {
    content: "◆";
    color: #6f2da8;
    position: absolute;
    left: 0;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0,255,200,0.4);
}

.neon-border {
    border: 1px solid rgba(0,255,200,0.6);
}

/* Bonus Banner  */
.bonus-banner-right {
    position: relative;
    padding: 100px 0;
    color: #fff;
    background: linear-gradient(135deg, #0d0d1a, #1c1c2c);
    border-top: 2px solid rgba(0,255,200,0.4);
    border-bottom: 2px solid rgba(0,255,200,0.4);
    overflow: hidden;
}

.bonus-banner-right .container {
    position: relative;
    z-index: 1;
}


.banner-image {
    text-align: center;
}

.banner-image .bonus-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0,255,200,0.3);
    transition: 0.3s ease;
}

.banner-image .bonus-img:hover {
    transform: scale(1.03);
}


.banner-text {
    text-align: left; 
    padding-left: 40px;
}

.banner-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #6f2da8, #3cd4c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.banner-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.banner-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.banner-list i {
    color: #3cd4c2;
    margin-right: 10px;
}

@media (max-width: 991px) {
    .banner-text {
        text-align: center;
        padding-left: 0;
        margin-top: 30px;
    }
}

/* Slots Section */
.slots-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0e0e1c, #1a1a2f);
    color: #fff;
    overflow: hidden;
}

/* Tag Buttons */
.slot-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.slot-tag {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(60,212,194,0.5);
    border-radius: 40px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    transition: all 0.3s ease;
}

.slot-tag:hover {
    background: rgba(60,212,194,0.3);
    transform: scale(1.05);
}

/* Content and image */
.slot-content {
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ddd;
}

.slot-image {
    float: left;
    width: 40%;
    max-width: 420px;
    margin-right: 30px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(60,212,194,0.3);
}

.slot-content h3 {
    color: #3cd4c2;
    margin-top: 30px;
    font-size: 1.4rem;
}

.slot-content p {
    margin-bottom: 20px;
}

.slot-content .highlight {
    color: #ffd700;
    font-weight: 600;
}

/* Button */
.slot-cta .custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .slot-image {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 25px 0;
    }
}

/* Table Games Section */
.table-games-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-color);
    color: #fff;
    overflow: hidden;
}

.table-games-section .section-header {
    margin-bottom: 40px;
}

.table-games-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #3cd4c2;
}

/* Tags */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.tag {
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 40px;
    padding: 8px 18px;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.05);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.tag:hover {
    border-color: #3cd4c2;
    color: #3cd4c2;
}

/* Image */
.float-image {
    float: right;
    max-width: 380px;
    margin: 0 0 25px 25px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,255,200,0.25);
}

/* Text Content */
.table-games-content h3 {
    margin-top: 30px;
    color: #3cd4c2;
    font-size: 1.3rem;
}

.table-games-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Comparison Table */
.comparison-table {
    margin: 40px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th, 
.comparison-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-table th {
    background: rgba(108,0,255,0.2);
    color: #3cd4c2;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Button */
.custom-btn.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(90deg, #6f2da8, #3cd4c2);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.custom-btn.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(60,212,194,0.5);
}

/* Live Casino Section */
.live-casino-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-color);
    color: #fff;
    overflow: hidden;
}

.live-casino-section .section-title {
    font-size: 2rem;
    color: #3cd4c2;
    font-weight: 700;
}

/* Tags */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.tag {
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 40px;
    padding: 8px 18px;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.05);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.tag:hover {
    border-color: #3cd4c2;
    color: #3cd4c2;
}

/* Image */
.float-image-left {
    float: left;
    max-width: 400px;
    margin: 0 25px 25px 0;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,255,200,0.25);
}

/* Content */
.live-casino-content h3 {
    margin-top: 30px;
    color: #3cd4c2;
    font-size: 1.3rem;
}

.live-casino-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Highlight List */
.highlight-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0 25px;
}

.highlight-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.highlight-list li::before {
    content: "▶";
    color: #3cd4c2;
    position: absolute;
    left: 0;
}

/* Table */
.comparison-table {
    margin: 40px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th, 
.comparison-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-table th {
    background: rgba(108,0,255,0.2);
    color: #3cd4c2;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Button */
.custom-btn.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(90deg, #6f2da8, #3cd4c2);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.custom-btn.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(60,212,194,0.5);
}

/* Games Banner Section */
#games-banner {
    position: relative;
    padding: 100px 0;
    color: #fff;
    background: linear-gradient(135deg, #0d0d1a, #1c1c2c);
    border-top: 2px solid rgba(0,255,200,0.4);
    border-bottom: 2px solid rgba(0,255,200,0.4);
    overflow: hidden;
}

#games-banner .container {
    position: relative;
    z-index: 1;
}

#games-banner .banner-image {
    text-align: center;
}

#games-banner .banner-image .bonus-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0,255,200,0.3);
    transition: 0.3s ease;
}

#games-banner .banner-image .bonus-img:hover {
    transform: scale(1.03);
}

#games-banner .banner-text {
    text-align: left;
    padding-left: 40px;
}

#games-banner .banner-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #6f2da8, #3cd4c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#games-banner .banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

#games-banner .banner-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

#games-banner .banner-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

#games-banner .banner-list i {
    color: #3cd4c2;
    margin-right: 10px;
}

@media (max-width: 991px) {
    #games-banner .banner-text {
        text-align: center;
        padding-left: 0;
        margin-top: 30px;
    }
}

/* Login & Registration Section */
.login-registration-section {
    position: relative;
    background: linear-gradient(180deg, #0d0d1a 0%, #1a1a2e 100%);
    color: #fff;
    padding: 100px 0;
}

.login-registration-section .section-header {
    margin-bottom: 40px;
}

.login-registration-section .section-title {
    background: linear-gradient(90deg, #6f2da8, #3cd4c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
    font-weight: 700;
}

.login-registration-section .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    color: #e6e6e6;
}

/* Info Blocks */
.info-block {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(60, 212, 194, 0.4);
    transition: 0.3s ease;
}

.info-block:hover {
    box-shadow: 0 0 25px rgba(60, 212, 194, 0.3);
    transform: translateY(-5px);
}

.info-block h3 {
    color: #3cd4c2;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-block p, .info-block ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

.info-block ul {
    margin: 15px 0;
    list-style: none;
    padding-left: 0;
}

.info-block ul li::before {
    content: "◆";
    color: #6f2da8;
    margin-right: 10px;
}

/* FAQ */
.faq-section {
    margin-top: 60px;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(111, 45, 168, 0.4);
}

.faq-title {
    color: #3cd4c2;
    font-size: 1.7rem;
    margin-bottom: 25px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item p {
    color: #ccc;
    margin-top: 5px;
    padding-left: 25px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .info-block, .faq-section {
        padding: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .faq-title {
        font-size: 1.4rem;
    }
}

/* Casino App Section */
.casino-app-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d1a, #1c1c2c);
    color: #fff;
    overflow: hidden;
}


.app-image {
    text-align: center;
}
.app-img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(60, 212, 194, 0.4);
    transition: 0.3s ease;
    margin-bottom: 15px;
}
.app-img:hover {
    transform: scale(1.03);
}
.image-caption {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 25px;
}


.app-content {
    padding-right: 40px;
}
.casino-app-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #6f2da8, #3cd4c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.casino-app-section .section-subtitle {
    margin: 15px 0 25px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e6e6e6;
}


.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.feature-item {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(60,212,194,0.4);
    transition: 0.3s ease;
    text-align: left;
}
.feature-item:hover {
    background: rgba(60,212,194,0.05);
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(60,212,194,0.3);
}
.feature-item i {
    font-size: 1.8rem;
    color: #3cd4c2;
    margin-bottom: 10px;
}
.feature-item h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.2rem;
}
.feature-item p {
    font-size: 0.95rem;
    color: #ccc;
}


.app-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}
.store-btn {
    height: 60px;
    width: auto;
    transition: 0.3s ease;
}
.store-btn:hover {
    transform: scale(1.05);
}


.install-guide {
    margin-top: 25px;
}
.install-guide h3 {
    font-size: 1.4rem;
    color: #3cd4c2;
    margin-bottom: 10px;
}
.install-guide ul {
    list-style: none;
    padding-left: 0;
}
.install-guide ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #ccc;
}
.install-guide ul li::before {
    content: "◆";
    color: #6f2da8;
    margin-right: 8px;
}


@media (max-width: 991px) {
    .app-content {
        padding-right: 0;
        text-align: center;
    }
    .app-features {
        grid-template-columns: 1fr;
    }
    .app-buttons {
        justify-content: center;
    }
    .image-caption {
        margin-bottom: 40px;
    }
}

.casino-app-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d1a, #1c1c2c);
    color: #fff;
    overflow: hidden;
}


.app-image {
    text-align: center;
}
.app-img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(60, 212, 194, 0.4);
    transition: 0.3s ease;
    margin-bottom: 15px;
}
.app-img:hover {
    transform: scale(1.03);
}
.image-caption {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 25px;
}


.app-extra {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(60,212,194,0.3);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    text-align: left;
}
.extra-title {
    font-size: 1.3rem;
    color: #3cd4c2;
    margin-bottom: 15px;
    text-align: center;
}
.extra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.extra-card {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(60,212,194,0.2);
    transition: 0.3s ease;
}
.extra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(60,212,194,0.3);
}
.extra-card i {
    font-size: 1.5rem;
    color: #3cd4c2;
    margin-bottom: 10px;
}
.extra-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}
.extra-card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}


.app-content {
    padding-right: 40px;
}
.casino-app-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #6f2da8, #3cd4c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.casino-app-section .section-subtitle {
    margin: 15px 0 25px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e6e6e6;
}


.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.feature-item {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(60,212,194,0.4);
    transition: 0.3s ease;
    text-align: left;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(60,212,194,0.3);
}
.feature-item i {
    font-size: 1.8rem;
    color: #3cd4c2;
    margin-bottom: 10px;
}
.app-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}
.store-btn {
    height: 60px;
    width: auto;
    transition: 0.3s ease;
}
.store-btn:hover {
    transform: scale(1.05);
}
.install-guide h3 {
    color: #3cd4c2;
    margin-bottom: 10px;
}
.install-guide ul li {
    color: #ccc;
    line-height: 1.6;
}


@media (max-width: 991px) {
    .app-content {
        padding-right: 0;
        text-align: center;
    }
    .app-features, .extra-grid {
        grid-template-columns: 1fr;
    }
}

.payment-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0d0d1a, #1a1a2b);
  color: #fff;
}

.payment-section .section-title {
  background: linear-gradient(90deg, #6f2da8, #3cd4c2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.payment-table {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 50px;
  box-shadow: 0 0 25px rgba(111, 45, 168, 0.15);
  overflow-x: auto;
}

.payment-table table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  text-align: left;
}

.payment-table th,
.payment-table td {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: middle;
  font-size: 1rem;
}

.payment-table th {
  color: #3cd4c2;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}


.pay-icon {
  width: 65px;
  height: 40px;
  object-fit: contain;
  margin-right: 12px;
  vertical-align: middle;
  filter: none !important;
}

.payment-table td:first-child {
  display: flex;
  align-items: center;
}

.payment-table tr:hover {
  background: rgba(111, 45, 168, 0.15);
  transition: 0.3s ease;
}


@media (max-width: 768px) {
  .payment-table th, .payment-table td {
    padding: 12px;
    font-size: 0.9rem;
  }

  .pay-icon {
    width: 55px;
    height: 35px;
  }
}

.trust-security-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0d0d1a, #1c1c2b);
  color: #fff;
}

.trust-security-section .section-title {
  background: linear-gradient(90deg, #6f2da8, #3cd4c2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-security-section .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-top: 10px;
}


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


.trust-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(60,212,194,0.25);
  transition: 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(60,212,194,0.3);
}

.trust-card h3 {
  color: #3cd4c2;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.trust-card p {
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 15px;
}

.trust-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.8);
}

.trust-card ul li::before {
  content: "◆";
  color: #6f2da8;
  position: absolute;
  left: 0;
}


.trust-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 15px;
  flex-shrink: 0;
}

/* Footer */
.trust-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-footer p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.cert-icon {
  width: 80px;
  height: auto;
  opacity: 0.85;
  transition: 0.3s ease;
}

.cert-icon:hover {
  opacity: 1;
  transform: scale(1.05);
}


.faq-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0d0d1a, #1a1a2b);
  color: #fff;
}

.faq-section .section-title {
  background: linear-gradient(90deg, #6f2da8, #3cd4c2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(111, 45, 168, 0.4);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.faq-card:hover {
  background: rgba(111, 45, 168, 0.1);
  box-shadow: 0 0 25px rgba(60, 212, 194, 0.3);
  transform: translateY(-4px);
}

.faq-card h3 {
  font-size: 1.15rem;
  color: #3cd4c2;
  margin-bottom: 10px;
}

.faq-card p {
  color: #dcdcdc;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .faq-section .row {
    flex-direction: column;
  }
}

.providers-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d0d1a, #1a1a2b);
  color: #fff;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.provider-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(60, 212, 194, 0.3);
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.provider-card:hover {
  box-shadow: 0 0 20px rgba(60, 212, 194, 0.4);
  transform: translateY(-4px);
}

.provider-logo {
  max-width: 120px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
}

.provider-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.provider-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.tags span {
  display: inline-block;
  background: rgba(60, 212, 194, 0.1);
  color: #3cd4c2;
  border: 1px solid rgba(60, 212, 194, 0.3);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.8rem;
  margin-right: 5px;
  margin-bottom: 5px;
}

.casino-footer {
  background: #0d0d1a;
  color: #ccc;
  padding-top: 60px;
  border-top: 2px solid rgba(60, 212, 194, 0.4);
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 15px;
}

.footer-about p {
  color: #ccc;
  margin-bottom: 10px;
  line-height: 1.6;
}

.store-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.store-icon {
  height: 40px;
  transition: 0.3s ease;
}

.store-icon:hover {
  transform: scale(1.05);
}

.footer-links h4 {
  color: #3cd4c2;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

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

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

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

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

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  color: #3cd4c2;
  font-size: 1.1rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.footer-payments h4 {
  color: #3cd4c2;
  margin-bottom: 15px;
}

.payment-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.payment-logos img {
  height: 32px;
  object-fit: contain;
  background: rgba(255,255,255,0.05);
  padding: 6px;
  border-radius: 6px;
}

.responsible-info {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 15px;
  font-size: 0.9rem;
  color: #bbb;
}

.footer-bottom {
  background: #111122;
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  color: #999;
  margin: 6px 0;
}

.footer-bottom a {
  color: #3cd4c2;
  text-decoration: none;
}

.footer-badges {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 10px 0;
  padding: 0;
}

.footer-badges li {
  background: rgba(255,255,255,0.08);
  color: #ccc;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}
