body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container-fluid {
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #787CD2, #B17AED);
    border-radius: 5px;
}

.image-col img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .content-col {
        padding: 2rem 0;
        text-align: center;
    }
    
    .process-flow {
        padding: 0 1rem;
    }
    
    .features-list {
        padding: 0 1rem;
    }
}


@media (max-width: 991px) {
    .navbar-brand.mx-auto {
        margin: 0 !important;
    }
    
    .nav-logo {
        max-width: 120px;
    }
}

.content-wrapper.scrolled {
    background-size: 50% auto;
}

.gradient-container {
    /* background: url('../img/services/bg.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    color: black;
}

.gradient-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url();
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}


.gradient-container .row {
    margin-top: 150px;
    position: relative;
    z-index: 2;
}


.company-highlight {
    font-weight: 700;
    font-size: 5rem;
    position: relative;
    display: inline-block;
    color: transparent;
    background: linear-gradient(
        65deg,
        #c533ee 0%,
        #c533ee 45%,
        #00ffcc 50%,
        #c533ee 55%,
        #c533ee 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shine-flow 7s linear infinite;
}

@keyframes shine-flow {
    0% {
        background-position: 100% center;
    }
    100% {
        background-position: -200% center;
    }
}

.display-4 {
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.5rem;
    font-weight: 400;
    color: #FF9100;
    letter-spacing: 1px;
}

.description p {
    line-height: 1.8;
    color: black;
}

.btn-primary {
    background:  #a991f7;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 89, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 89, 0, 0.3);
    background: #6b5ce7;
}


[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 768px) {
    .gradient-container {
        padding: 4rem 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 2rem;
    }
    
    .description p {
        font-size: 1.5rem;
    }

} 


.navbar {
    transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    padding: 2rem;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: transparent ;
    
}

.navbar .container-fluid {
    position: relative;
    display: flex;
    justify-content: center;
}

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1030;
}

.nav-logo {
    height: 300px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.menu-container {
    width: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, transform 0.8s ease-in-out;
}

.navbar-nav {
    font-size: 1rem;
}

/* Scrolled state */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem 1rem 2rem;
    min-height: 80px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-logo {
    height: 90px;
}

.navbar.scrolled .menu-container {
    display: flex;
    opacity: 0;
    animation: fadeIn 0.1s ease-in forwards;
    animation-delay: 0.3s;
    justify-content: flex-start;
}

.navbar.scrolled .nav-link {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar.scrolled .nav-link:hover {
    color: #fff !important;
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Fully Scrolled state */
.navbar.fully-scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .navbar {
        min-height: 160px;
    }
    
    .nav-logo {
        height: 200px;
    }
    
    .navbar.scrolled {
        min-height: 70px;
    }
    
    .navbar.scrolled .nav-logo {
        height: 50px;
    }
    
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-collapse .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 0.5rem 1rem;
    }

    .navbar-collapse .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
}

@media (max-width: 576px) {
    .navbar {
        min-height: 140px;
    }
    
    .nav-logo {
        height: 160px;
        content: url('../img/main/logo2.webp');
        display: none;
    }

    .nav-logo:nth-child(2) {
        display: block;
    }
}

.content-wrapper {
    height: calc(100vh - 56px); /* Adjust for navbar height */
  }

.gradient-text-container {
    background: linear-gradient(to right, #cb6ce6, #004aad);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.gradient-text-container p {
    color: white;
    font-size: 1.25rem;
    margin: 0;
    text-align: center;
}

.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('../img/main/backgroundImg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s ease;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(203, 108, 230, 0.3), rgba(0, 74, 173, 0.3));
    z-index: 1;
}

.center-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.center-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.hero-title {
    font-size: 2.5rem;
    color: #333;
    margin-top: 2rem;
    opacity: 1;
    transition: all 0.5s ease;
}

/* Scrolled state */
.hero-section.scrolled {
    height: auto;
    padding: 1rem;
    background-size: 120%;
    background-position: center;
}

.hero-section.scrolled::before {
    background: linear-gradient(135deg, rgba(203, 108, 230, 0.9), rgba(0, 74, 173, 0.9));
}

.hero-section.scrolled .center-logo {
    max-width: 200px;
}

.hero-section.scrolled .hero-title {
    font-size: 1.2rem;
    color: white;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(-20px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .center-logo {
        max-width: 80%;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-section.scrolled .center-logo {
        max-width: 150px;
    }

    .hero-section {
        background-size: cover;
    }
}

/* Text animations */
.fade-up-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.fade-up-text.active {
    opacity: 1;
    transform: translateY(0);
}

.split-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.split-text.active {
    opacity: 1;
    transform: translateY(0);
}

.gradient-text {
    background: linear-gradient(45deg, #8a2be2, #4169e1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    line-height: 1.4;
    padding-bottom: 0.1em;
}

.section-heading {
    margin-bottom: 1.5rem;
    padding: 0.2em 0;
}

/* Info Section Animations */
.info-title {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1.2s ease;
}

.info-title.active {
    opacity: 1;
    transform: translateX(0);
}

.info-quote {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.2s ease;
    transition-delay: 0.3s;
}

.info-quote.active {
    opacity: 1;
    transform: translateX(0);
}

.info-author {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    transition-delay: 0.6s;
}

.info-author.active {
    opacity: 1;
    transform: translateY(0);
}


/* Process Section Styles */
.process-section {
    background: white;
    margin-top: 100px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.process-title {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #333;
    text-align: left;
    font-weight: 600;
    position: relative;
    padding-left: 50px;
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 50px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
}

/* Process Flow Lighting Effect */
.process-flow {
    position: relative;
    padding-top: 30px;
}

/* Connecting line with animated gradient */
.process-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(0, 196, 255, 0.3),
        rgba(125, 42, 232, 0.3),
        rgba(247, 37, 133, 0.3),
        rgba(255, 107, 107, 0.3),
        rgba(78, 205, 196, 0.3));
    z-index: 1;
    border-radius: 2px;
}

/* Animated lighting effect */
.process-flow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    width: 100px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0));
    animation: flowLight 3s linear infinite;
    z-index: 2;
    border-radius: 2px;
}

@keyframes flowLight {
    0% {
        left: 0;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: calc(100% - 100px);
        opacity: 0;
    }
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds space between items */
    align-items: stretch; /* Ensures all items take the same height */
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds space between items */
    align-items: stretch; /* Ensures all items take the same height */
}

.process-item {
    flex: 1 1 calc(20% - 20px); /* Responsive width, adjusting for gap */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
    min-width: 200px;
    max-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: perspective(1000px) rotateX(10deg);
    transition: all 0.3s ease;
    overflow: visible;
}

.process-item:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.process-item::before {
    content: attr(data-number);
    position: absolute;
    top: -25px;
    left: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    color: #333;
    opacity: 0.8;
}

.process-icon {
    text-align: center;
    margin-bottom: 15px;
}




.process-icon {
    width: 70px;
    height: 70px;
    margin: 5px auto 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
}

.process-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: inherit;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
    transform: translateY(10px) scale(0.9);
}

.process-item h3 {
    margin: 15px 0 9px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.process-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0%;
}

/* Icon Colors */
.blue { 
    background: linear-gradient(135deg, #00c8ff80, #0073ff80);
}

.purple { 
    background: linear-gradient(135deg, #7d2ae890, #b854eb90); 
}

.pink { 
    background: linear-gradient(135deg, #f72585a0, #ff0676a0);
}

.orange { 
    background: linear-gradient(135deg, #ff6b6ba0, #ff8e53a0);
}

.green { 
    background: linear-gradient(135deg, #4ecdc490, #45b7af90);
}

/* Floating animation for icons */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.process-icon {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-flow {
        gap: 30px;
        padding: 20px 30px;
    }
    
    .process-item {
        min-width: 180px;
        max-width: 220px;
    }
}

@media (max-width: 991px) {
    .process-flow::before,
    .process-flow::after,
    .process-item::after {
        display: none;
    }
    
    .process-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .process-title {
        font-size: 2.2rem;
        padding-left: 30px;
    }
    
    .process-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .process-item {
        flex: 0 0 100%;
        max-width: 280px;
        margin: 10px auto;
    }
}

/* Section Header Styles */
.section-header {
    text-align: center;
    font-size: 5rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    color: #0072ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}




.section-subtitle::before {
    right: -40px;
}

.section-subtitle::after {
    left: -40px;
}

.section-title {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-block;
}

.title-separator {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
}

/* Add glow effect to process items */
.process-item {
    /* Existing styles */
    position: relative;
    overflow: visible;
}

.process-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -40px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%) rotate(45deg);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

/* Remove arrow from last item */
.process-item:last-child::after {
    display: none;
}

/* Add subtle glow to icons */
.process-icon {
    /* Existing styles */
    position: relative;
}

.process-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    from {
        opacity: 0.3;
        transform: scale(0.9);
    }
    to {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Hover effect enhancement */
.process-item:hover .process-icon::before {
    animation-duration: 1s;
    opacity: 0.8;
}

/* Music Labels Section Styles */
.music-labels-section {
    padding: 5rem 0;
    background: white;
}

.feature-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: auto;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #6b5ce7, #a991f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #636e72;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .music-labels-section {
        padding: 3rem 0;
    }

    .feature-image {
        margin-bottom: 2rem;
    }

    .feature-image img {
        max-height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .title {
        font-size: 2.5rem !important;
        text-align: center;
    }

    .subtitle {
        font-size: 1.2rem !important;
        text-align: center;
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .title {
        font-size: 2rem !important;
    }

    .subtitle {
        font-size: 1.1rem !important;
    }

    .feature-image img {
        max-height: 250px;
    }
}

@media (max-width: 576px) {
    .music-labels-section {
        padding: 2rem 0;
    }

    .feature-image {
        margin: 0 -15px 1.5rem;
    }

    .feature-image img {
        border-radius: 0;
        max-height: 200px;
    }

    .title {
        font-size: 1.75rem !important;
    }

    .subtitle {
        font-size: 1rem !important;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 1.2rem;
    }
}

/* Strategy Section Styles */
.strategy-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.strategy-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.strategy-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
}

.strategy-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 2px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.strategy-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,198,255,0.1), rgba(247,37,133,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.strategy-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.strategy-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.strategy-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991px) {
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .strategy-section .section-title {
        font-size: 2.4rem;
    }
    
    .strategy-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .strategy-section {
        padding: 60px 0;
    }
    
    .strategy-section .section-title {
        font-size: 2rem;
    }
    
    .strategy-card h3 {
        font-size: 1.2rem;
    }
}

.partners-section {
    margin-top: 20vh;
    background-color: #fff;
}

.partner-description {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.partner-logos {
    margin-top: 50px;
}

.partner-logo {
    padding: 20px;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 180px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.title-separator {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    margin: 20px 0;
}

/* Add these responsive styles */
@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
        gap: 2rem;
    }

    .process-item {
        width: 100%;
        margin: 0;
    }

    .info-title {
        font-size: 1.5rem;
        text-align: center;
        padding: 1rem;
    }

    .info-quote, .info-author {
        font-size: 1.2rem !important;
    }

    .music-labels-section .content-col {
        padding: 2rem 1rem;
    }

    .feature-item {
        margin-bottom: 2rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-logo {
        max-width: 150px;
    }

    .content-col {
        padding: 2rem 1rem;
        text-align: center;
    }

    .image-col img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .partner-logo img {
        max-width: 80%;
        margin: 0 auto;
    }
}

/* Add these utility classes */
.fs-md-1 {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .fs-md-1 {
        font-size: 1.5rem;
    }
}

/* Updated Simple Navbar Styles */
.promises-section {
    padding: 4rem 0;
    background-color: #fff;
    width: 100%;
}

.promises-section .title,
.promises-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;  /* Changed to extra bold */
    color: #2d3436;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.5px;  /* Slight letter spacing adjustment for bold text */
}

.promise-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.promise-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 3rem;
}

.promise-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.promise-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.process-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
}

.process-icon.blue { background-color: #007bff; }
.process-icon.purple { background-color: #6f42c1; }
.process-icon.pink { background-color: #e83e8c; }

.promise-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
    .promise-card {
        min-width: 200px;
    }
}

@media screen and (max-width: 992px) {
    .promise-cards {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .promise-card {
        min-width: 100%;
        margin-bottom: 1.5rem;
    }
}

/* Handle zoom levels */
@media screen and (min-width: 1200px) and (max-width: 1400px) {
    .promise-card {
        min-width: 220px;
        padding: 1.5rem;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

/* Fix for specific zoom levels */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .promise-cards {
        justify-content: space-around;
    }
    
    .promise-card {
        flex: 0 1 calc(33.333% - 2rem);
        min-width: auto;
    }
}

/* Ready to Ignite Section */
.ignite-section {
    background: linear-gradient( #FFFFFF 0%, #CFC9F7 100%);
    padding: 8rem 0;  /* Increased padding */
    position: relative;
    overflow: hidden;
}

.ignite-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.ignite-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.section-heading {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #6c5ce7, #a367dc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    line-height: 1.4;  /* Added line height */
    padding-bottom: 0.2em;  /* Added padding at bottom */
}

.ignite-text {
    font-size: 1.4rem;
    color: #4a4a4a;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding-bottom: 0.5em;  /* Added padding at bottom */
}

.btn-primary {
    background: linear-gradient(45deg, #6c5ce7, #a367dc);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
    background: linear-gradient(45deg, #5b4bc4, #8f57c6);
}

/* Responsive styles */
@media (max-width: 768px) {
    .ignite-section {
        padding: 4rem 0;
    }

    .section-heading {
        font-size: 2.5rem;
    }

    .ignite-text {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 2rem;
    }

    .ignite-text {
        font-size: 1.1rem;
    }
}

/* Fix for AOS animations on mobile */
@media (max-width: 768px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Responsive Text Styles */
.text-responsive {
    font-size: clamp(1.5rem, 4vw, 2.5rem);  /* Fluid scaling between 1.5rem and 2.5rem */
}

.fs-5.text-responsive {
    font-size: clamp(0.9rem, 2vw, 1.25rem);  /* Fluid scaling between 0.9rem and 1.25rem */
}

/* Additional responsive adjustments if needed */
@media (max-width: 575.98px) {
    .text-responsive {
        line-height: 1.2;
    }
    
    .fs-5.text-responsive {
        line-height: 1.4;
    }
}


/* Partner Logos Mobile Scroll Styles */
.partner-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.partner-scroll::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.partner-logo-mobile {
    min-width: 150px; /* Adjust this value based on your needs */
}

.partner-logo-mobile img {
    width: 100%;
    height: auto;
}

/* Add padding to ensure last item is visible when scrolling */
.partner-scroll .d-flex {
    padding-right: 1rem;
} 