@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro");

/* Navbar Styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    padding: 10px 0;
}

.navbar .nav-link {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: white !important;
}

.navbar .nav-link.active {
    color: white !important;
    font-weight: bold;
}

/* Style for the container-fluid div */
.container1-fluid {
  height: 94vh;
  background-image: url('../img/services/1.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Style for the h1 inside the col-12 */
.col-12 h1 {
  display: flex;
  justify-content: center;
  text-align: center;
  background: 50% 100% / 50% 50% no-repeat
              radial-gradient(ellipse at bottom, #fff, transparent, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 10vw;
  font-family: "Source Sans Pro", sans-serif;
  animation: reveal 3000ms ease-in-out forwards 200ms,
             glow 2500ms linear infinite 2000ms;
}

/* Keyframes for the animations */
@keyframes reveal {
  80% {
    letter-spacing: 8px;
  }
  100% {
    background-size: 300% 300%;
  }
}

@keyframes glow {
  40% {
    text-shadow: 0 0 8px #fff;
  }
}

.card {
    border: none;
    transition: all 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
}

.songwriter-card:hover {
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
    border-bottom: 4px solid #9333EA;
}

.arranger-card:hover {
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-bottom: 4px solid #3B82F6;
}

.lyricist-card:hover {
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
    border-bottom: 4px solid #FD4C9B;
}

.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.section-heading {
    margin-top: 50px;
    position: relative;
    display: inline-block;
    /* padding-left: 350px; */
    padding-bottom: 20px;
    margin-bottom: 60px;
    background: #212529;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #787CD2, #B17AED);
    border-radius: 5px;
}

.role-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.additional-icons {
    margin-top: 20px;
    font-size: 1.2rem;
}

.additional-icons i {
    margin: 0 8px;
    transition: all 0.3s ease;
}

.card:hover .additional-icons i {
    transform: scale(1.2);
}

.tech-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-section:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.section-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #2563EB, #4F46E5);
    border-radius: 2px;
}

.engineer-item {
    padding: 20px 0;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.engineer-item:hover {
    border-left-color: #2563EB;
    padding-left: 15px;
    background: rgba(37, 99, 235, 0.05);
}

.engineer-title {
    color: #2563EB;
    font-weight: 600;
    margin-bottom: 10px;
}

/* .image-placeholder {
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(79, 70, 229, 0.1));
    min-height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
} */

.content-wrapper {
    padding: 40px;
}

.production-section {
    
    padding: 5rem 0;
}

.section-title {
    font-size: 4rem;
    font-weight: 700;

    margin-bottom: 6rem;
    color: #1a1a1a;
    position: relative;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.feature-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box.large {
    grid-column: span 8;
    grid-row: span 2;
    height: 500px;
}

.feature-box.small {
    grid-column: span 4;
    height: 240px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s ease;
}

.feature-box:hover .overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
}

.role-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.role-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.feature-box:hover .role-description {
    opacity: 1;
    transform: translateY(0);
}

.role-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .feature-box.large, .feature-box.small {
        grid-column: span 1;
        height: 300px;
    }
}

.service-item {
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.circle-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .circle-image img {
    transform: scale(1.1);
}

.sub-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .circle-image {
        width: 200px;
        height: 200px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-link {
    display: block;
    position: relative;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(147, 51, 234, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.hover-shadow {
    transition: box-shadow 0.3s ease;
}

.gallery-item:hover .hover-shadow {
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Modal improvements */
.modal-content {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
}

.modal-body {
    padding: 0;
}

#modalImage {
    width: 100%;
    height: auto;
}

.swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-slide {
    width: 300px;
    margin-right: 30px;
    perspective: 1000px;
    will-change: transform;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 20px;
    border-radius: 5px;
}

.swiper-pagination-bullet-active {
    background: #ffffff;
}

/* Music card styles - Updated */
.music-card {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    background: white;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
}

.services-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(147, 51, 234, 0.1);
    color: #9333EA;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
  
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.section-subtitle {
    color: #666666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.5rem;
    color: #9333EA;
    transition: all 0.3s ease;
}

.service-content h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-list li {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #9333EA;
    border-radius: 50%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #9333EA;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.1);
}

.service-card:hover .service-icon {
    background: #9333EA;
}

.service-card:hover .service-icon i {
    color: #ffffff;
}

.service-link:hover {
    color: #7928CA;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 25px;
    }
}
