/* Global Styles */
:root {
    --primary-color: #7B61FF;
    --primary-glow: rgba(123, 97, 255, 0.3);
    --dark-bg: #0A0A1A;
    --text-color: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --gradient-1: linear-gradient(45deg, #7B61FF, #7B61FF, #FF61B6);
    --gradient-2: linear-gradient(45deg, #61FFAE, #61FFD9, #61B6FF);
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.loader-ring {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.loader-ring::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid rgba(123, 97, 255, 0.2);
    border-top-color: var(--primary-color);
    animation: spin 1s infinite linear;
}

.loader-logo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.loader-logo img {
    width: 40px;
    height: 40px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

/* .gradient-sphere-1 {
    background: var(--gradient-1);
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
    position: absolute;

}

.gradient-sphere-2 {
    background: var(--gradient-2);
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    animation-delay: -2s;
    position: absolute;

}

.gradient-sphere-3 {
    background: var(--gradient-1);
    width: 400px;
    height: 400px;
    top: 40%;
    right: 30%;
    animation-delay: -4s;
    position: absolute;

} */

/* Navbar Styles */
.navbar {
    padding: 1.5rem 0;
    background-color: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-color);
    margin: 0 1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.hire-btn {
    background: var(--gradient-1);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

/* Glow Effects */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    transition: all 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 0.5;
    filter: blur(10px);
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-intro {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}



.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.download-cv {
    background: var(--gradient-1);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

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

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

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

/* Floating Cards */
.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.1);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: 0;
    animation-delay: -3s;
}

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

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Stats Section */
.stats-row {
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-item h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(90deg, rgb(14 12 39) 39%, rgb(2 2 20) 67%);}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.service-item:hover,
.service-item.active {
    background: linear-gradient(95deg, rgba(123, 97, 255, 0.1) 0%, rgba(123, 97, 255, 0.05) 100%);
    border: 1px solid rgba(123, 97, 255, 0.2);
}

.service-content {
    padding: 2rem 3rem;
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(123, 97, 255, 0.3);
    line-height: 1;
}

.service-info {
    overflow: hidden;
}

.service-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.service-info .service-brief {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.service-info .service-details {
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
    overflow: hidden;
    margin-top: 0;
    visibility: hidden;
}

.service-item:hover .service-details,
.service-item.active .service-details {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
    visibility: visible;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.service-details li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(123, 97, 255, 0.1);
    color: var(--primary-color);
    transition: all 0.4s ease;
    border: 1px solid rgba(123, 97, 255, 0.2);
}

.service-icon i {
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.service-item:hover .service-icon,
.service-item.active .service-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(45deg);
}

.service-item:hover .service-icon i,
.service-item.active .service-icon i {
    transform: rotate(-45deg);
}

/* Responsive Styles for Services */
@media (max-width: 991.98px) {
    .services-section {
        padding: 6rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-content {
        padding: 1.5rem 2rem;
        grid-template-columns: 60px 1fr 60px;
        gap: 1.5rem;
    }
    
    .service-number {
        font-size: 2rem;
    }
    
    .service-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 1.25rem;
        grid-template-columns: 50px 1fr 50px;
        gap: 1rem;
    }
    
    .service-number {
        font-size: 1.75rem;
    }
    
    .service-info h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .service-info p {
        font-size: 0.9rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
    }
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background-color: transparent;
    /* position: relative; */
    overflow: hidden;
}

.projects-section .background-effects {
    position: absolute;
}

.projects-section .gradient-sphere-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    opacity: 0.1;
}

.projects-section .gradient-sphere-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    left: -100px;
    opacity: 0.1;
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: rgba(123, 97, 255, 0.1);
    border: 1px solid rgba(123, 97, 255, 0.2);
    color: var(--text-color);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.project-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--card-bg);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: all 0.3s ease;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-info {
    color: white;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.project-category {
    font-size: 14px;
    color: var(--primary-color);
    background: rgba(123, 97, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.project-stats {
    display: flex;
    gap: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.stat small {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 2px;
}

.project-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.project-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.project-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: white;
}

.project-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .projects-filter {
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 6px 15px;
        font-size: 14px;
    }
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background-color: transparent;
    overflow: hidden;
    background: linear-gradient(90deg, rgb(2 2 20) 39%, rgb(14 12 39) 67%);}

.experience-section .section-title i {
    font-size: 1.5rem;
    margin-right: 10px;
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline {
    position: relative;
    padding: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(123, 97, 255, 0.2) 0%,
        rgba(123, 97, 255, 0.4) 50%,
        rgba(123, 97, 255, 0.2) 100%
    );
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

.timeline-date {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 500;
}

.timeline-content {
    background: rgba(123, 97, 255, 0.05);
    border: 1px solid rgba(123, 97, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(123, 97, 255, 0.1);
    transform: translateX(5px);
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.timeline-company {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 45px;
    }

    .timeline-item::before {
        left: 11px;
    }
}

/* Skills Section */
.skills-section {
    padding: 100px 0;
    background-color: transparent;
    overflow: hidden;
}

.section-subtitle {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

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

.skill-item {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: rgba(123, 97, 255, 0.05);
    border: 1px solid rgba(123, 97, 255, 0.1);
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    background: rgba(123, 97, 255, 0.08);
}

.skill-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.skill-info {
    position: relative;
}

.skill-progress {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle-bg {
    fill: none;
    stroke: rgba(123, 97, 255, 0.1);
    stroke-width: 8;
}

.progress-ring-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 1s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.skill-name {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    /* background-color: transparent; */
    background: linear-gradient(90deg, rgb(14 12 39) 39%, rgb(2 2 20) 67%);
    overflow: hidden;
}

.testimonials-slider {
    padding: 30px 0;
    margin-top: 30px;
}

.testimonial-item {
    background: rgba(20, 20, 40, 0.5);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 2px;
}

.author-position {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Swiper Customization */
.swiper {
    padding-bottom: 40px !important;
}

.swiper-wrapper {
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: rgba(123, 97, 255, 0.2) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .testimonials-slider .swiper {
        max-width: 95%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .testimonial-item {
        padding: 25px 20px;
    }
}

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

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

.client-item {
    background: rgba(20, 20, 40, 0.3);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.client-item:hover {
    transform: translateY(-5px);
    background: rgba(20, 20, 40, 0.5);
}

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

.client-item:hover img {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .client-item {
        padding: 20px;
    }

    .client-item img {
        max-width: 120px;
    }
}

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

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

.contact-form {
    background: rgba(20, 20, 40, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
}

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

.form-control,
.form-select {
    background: rgba(20, 20, 40, 0.5);
    border: 1px solid rgba(123, 97, 255, 0.1);
    border-radius: 10px;
    padding: 12px 20px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: rgba(20, 20, 40, 0.7);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(123, 97, 255, 0.1);
    color: var(--text-color);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%237b61ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

.form-select option {
    background: #1a1a2e;
    color: var(--text-color);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    background: rgba(20, 20, 40, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(123, 97, 255, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item .icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.contact-info-item .content h4 {
    font-size: 1.1rem;
    margin: 0 0 5px;
    color: var(--text-color);
}

.contact-info-item .content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #6a4fff;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-info {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .contact-form,
    .contact-info {
        padding: 30px 20px;
    }

    .contact-info-item {
        padding: 15px 0;
    }
}

/* Call Button */
.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.call-btn:hover {
    background: #6a4fff;
    transform: translateY(-2px);
}

.call-btn:hover i {
    transform: rotate(15deg);
}

.call-btn:active i {
    transform: rotate(25deg);
}

@media (max-width: 992px) {
    .call-btn {
        margin-top: 10px;
    }
}

/* Footer */
.footer {
    position: relative;
    background: rgba(20, 20, 40, 0.95);
    padding-top: 100px;
    overflow: hidden;
}

.footer-top {
    position: relative;
    z-index: 1;
    padding-bottom: 70px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(123, 97, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.social-link[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-link[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

.widget-links li {
    margin-bottom: 12px;
}

.widget-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.widget-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary-color);
    margin-right: 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.widget-links a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.widget-links a:hover::before {
    width: 15px;
    margin-right: 10px;
    opacity: 1;
}

.newsletter-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.newsletter-form .form-group {
    position: relative;
    margin: 0;
}

.newsletter-form .form-control {
    padding-right: 50px;
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-form .btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--text-secondary);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.footer-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.1;
}

.footer-sphere-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    top: -100px;
    right: -100px;
}

.footer-sphere-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-2);
    bottom: -50px;
    left: -50px;
}

.footer-sphere-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding-top: 70px;
    }

    .footer-logo {
        font-size: 2rem;
    }

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

    .widget-title {
        text-align: center;
    }

    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .widget-links {
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .copyright {
        text-align: center;
        margin-bottom: 15px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.scroll-to-top:hover {
    background: #6a4fff;
    transform: translateY(-5px);
}

.scroll-to-top .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.scroll-to-top .progress-ring-circle {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 125.6;
    stroke-dashoffset: 125.6;
    transition: stroke-dashoffset 0.3s ease;
}

.scroll-to-top i {
    position: relative;
    z-index: 1;
}

@media (max-width: 576px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
    }
}

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

.hover-float {
    transition: transform 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .services-section {
        padding: 6rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .social-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .stats-row {
        margin-top: 2rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
    
    .gradient-sphere {
        opacity: 0.1;
    }
    
    .services-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .service-info h3 {
        font-size: 1.25rem;
    }
}

/* Advertisement Section */
.ads-section {
    margin-top: 2rem;
}

.ads-card {
    background: rgba(123, 97, 255, 0.05);
    border: 1px solid rgba(123, 97, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.ads-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    filter: blur(80px);
    opacity: 0.1;
    pointer-events: none;
}

.ads-content {
    position: relative;
    z-index: 1;
}

.ads-content h4 {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ads-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.ads-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    font-size: 1rem;
    color: var(--primary-color);
}

.feature-item span {
    color: var(--text-color);
    font-size: 0.9rem;
}

.ads-card .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.ads-card .btn:hover {
    transform: translateX(5px);
}
