/* Toast Notification Styles */
.form-success-message {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 400px;
    background: rgba(41, 41, 97, 0.95); /* Updated background color */
    color: #fff; /* Added white text color */
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.form-success-message.show {
    opacity: 1;
    transform: translateY(0);
}

.success-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-icon {
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-message {
    border-left: 4px solid #00C851;
}

.success-message .success-icon {
    color: #00C851;
}

.error-message {
    border-left: 4px solid #ff4444;
}

.error-message .error-icon {
    color: #ff4444;
}

.success-title {
    color: #fff; /* Updated text color */
    font-weight: 500;
    padding-right: 20px;
}

.success-close {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8); /* Updated close button color */
    font-size: 18px;
    padding: 2px;
    background: none;
    border: none;
    transition: color 0.2s ease;
}

.success-close:hover {
    color: #fff; /* Updated hover color */
}

/* Toast Animation */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

.form-success-message.show {
    animation: slideInDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.form-success-message.hide {
    animation: slideOutUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Toast Styles */
@media screen and (max-width: 768px) {
    .form-success-message {
        width: calc(100% - 40px);
        max-width: none;
        padding: 12px 16px;
    }

    .success-title {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .form-success-message {
        width: calc(100% - 32px);
        padding: 10px 14px;
    }

    .success-icon {
        min-width: 20px;
        height: 20px;
    }

    .success-title {
        font-size: 12px;
    }

    .success-close {
        font-size: 16px;
    }
}

/* Toast Notification Styles */
.toast {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 400px;
    background: #545ea6c9;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-success {
    border-left: 4px solid #00C851;
}

.toast-success .toast-icon {
    color: #00C851;
}

.toast-error {
    border-left: 4px solid #ff4444;
}

.toast-error .toast-icon {
    color: #ff4444;
}

.toast-message {
    color: #333;
    font-weight: 500;
    padding-right: 20px;
}

.toast-close {
    cursor: pointer;
    color: #999;
    font-size: 18px;
    padding: 2px;
    background: none;
    border: none;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: #333;
}

/* Toast Animation */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

.toast.show {
    animation: slideInDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.toast.hide {
    animation: slideOutUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Toast Styles */
@media screen and (max-width: 768px) {
    .toast {
        width: calc(100% - 40px);
        max-width: none;
        padding: 12px 16px;
    }

    .toast-message {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .toast {
        width: calc(100% - 32px);
        padding: 10px 14px;
    }

    .toast-icon {
        min-width: 20px;
        height: 20px;
    }

    .toast-message {
        font-size: 12px;
    }

    .toast-close {
        font-size: 16px;
    }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  background: rgb(154,153,170);
background: linear-gradient(90deg, rgba(154,153,170,1) 0%, rgba(158,128,141,0.2862394957983193) 48%, rgba(145,161,164,1) 100%);
}

/* Add Navbar Styles */
.navbar {
  background: #f9f9f9;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.5rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: relative;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo,
img {
  padding-right: 15px;
  height: 60px;
  width: auto;
}
.brand-logo
img{
  width: auto;
  height: 200px;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-link {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.nav-buttons {
  display: flex;
  gap: 0.5rem; /* Adjusted gap */
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Update color scheme */
:root {
  --primary-color: #ff1f71; 
  --primary-gradient: linear-gradient(
    45deg,
    #ff1f71,
    #ff4e90
  ); 
  --secondary-color: #2d1f3f;
  --text-color: #333333;
  --bg-blue: #4285f4;
  --light-bg: #f8f9fa;
}

/* Additional styles omitted for brevity... */

/* Hero Section */
.hero {
  background: linear-gradient(90deg, rgb(23, 23, 51) 0%, rgba(20, 14, 16, 0.7) 48%, rgba(131, 128, 133, 0.853) 100%),
    url("wall.webp");
  color: white;
  text-align: center;
  padding: 8.5rem 1rem;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 12, 12, 0.022);
}

.hero * {
  position: relative;
  z-index: 1;
}

.hero h2 {
    text-transform: uppercase;
    color: #e2dbe8f7;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero p {
  color: #cdc7cd;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.cta-button {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Features Section */
.features {
  padding: 5rem 1rem;
  text-align: center;
}

.features h2 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.features h3 {
  font-size: 2.25rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  color: #1f1d22e6;
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon-container {
  width: 96px;
  height: 96px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f060a4e8;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.feature-icon {
  font-size: 2.5rem;
  color: rgba(53, 6, 110, 0.936);
}

.feature-card:hover .icon-container {
  transform: translateY(-10px) scale(1.05);
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 1rem;
  text-align: center;
}

.how-it-works h2 {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.how-it-works h3 {
  color: #430757;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  flex: 1;
  max-width: 250px;
  position: relative;
  padding: 0 1rem;
  border: 1px solid #251f22;
  box-shadow:  1px 1px 2px rgba(99, 93, 93, 0.526);
  border-radius: 12px;
  color: #f9eeee;
  padding: 2rem 1.5rem;
}

.step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -67px auto 2rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
}

.step h4 {
  color: #061851;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.step p {
  color: #6a0a37e2;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Platforms Section */
.platforms {
  padding: 4rem 1rem;
  text-align: center;
}

.platform-logos {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 2rem auto;
padding: 1rem;
justify-content: center;
align-items: center;
}

.platform-logos img {
  max-width: 150px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 1rem;
  transition: transform 0.3s ease;
}

.platform-logos img:hover {
  transform: scale(1.05);
}

/* Ensure proper sizing for specific logos */
.platform-logos img[alt="YouTube Music"] {
  height: 45px; /* Slightly larger for better visibility */
}

.platform-logos img[alt="TikTok"] {
  height: 35px; /* Slightly smaller to match other logos */
}

/* CTA Section */
.cta {
  padding: 5rem 1rem;
  text-align: center;
}

.cta h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bg-blue);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.4;
}

/* Modern Footer Styles */
footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Company Section */
.footer-company {
    max-width: 300px;
}

.footer-logo img {
    height: 120px;
    width: auto;
    margin-bottom: 1.5rem;
}

.company-description {
    color: #b3b3b3;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Links Sections */
.footer-links h3,
.footer-contact h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    text-decoration: none;
    color: #b3b3b3;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

/* Contact Section */
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #b3b3b3;
    font-size: 0.95rem;
}

.footer-contact ul li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* Bottom Section */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ffffff;
    background: #333;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-links a i {
    font-size: 1.2rem;
}

.copyright {
    color: #b3b3b3;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .nav-container {
      padding: 0 1rem;
    }
  
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      padding: 0 1rem;
    }
  
    .steps-container {
      flex-wrap: wrap;
      padding: 4rem 1rem 0;
    }
  
    .steps-container::before {
      display: none;
    }
  
    .step {
      flex: 0 0 calc(50% - 1rem);
      max-width: calc(50% - 1rem);
      margin-top: 67px;
    }
  
    .platform-logos {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-company {
        max-width: 100%;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo img {
        height: 150px;
    }
    
    .footer-links a,
    .company-description {
        font-size: 0.85rem;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 1rem;
    }
    .copyright {
        font-size: 0.8rem;
    }
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .step {
      flex: 0 0 100%;
      max-width: 100%;
      margin-top: 67px;
    }
  
    .platform-logos {
      grid-template-columns: repeat(2, 1fr);
      justify-items: center;
      gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 3rem 0 1rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-main {
        gap: 2rem;
    }
}

/* Add mobile menu styles */
.mobile-menu {
  display: none;
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(154, 153, 170, 0.955), rgba(77, 122, 130, 0.96));
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu .nav-link {
  display: block;
  padding: 1rem;
  /* border-bottom: 1px solid #eee; */
  font-size: 1.1rem;
}

.mobile-menu .nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

/* Update main content to account for fixed navbar */
main {
  padding-top: 70px;
}

/* Update mobile menu button styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-btn:hover {
  color: var(--secondary-color);
}

/* Add overlay when mobile menu is active */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.mobile-menu-overlay.active {
  display: block;
}

/* Page Header Styles */
.page-header {
  background: var(--primary-gradient);
  color: white;
  text-align: center;
  padding: 6rem 2rem 4rem;
  margin-bottom: 4rem;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* About Page Styles */
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.about-text h2 {
  color: var(--secondary-color);
  font-size: 2rem;
  margin: 2rem 0 1rem;
}

.about-text p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Page Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: #7173b096;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.75rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #555;
}

.service-features i {
  color: var(--primary-color);
  font-size: 0.875rem;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.learn-more:hover {
  transform: translateX(5px);
}

/* Contact Page Styles */
.contact-content {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.contact-info {
  background: var(--secondary-color);
  color: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  height: fit-content;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-intro {
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-of-type {
  border-bottom: none;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.info-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: white;
}

.info-details p {
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.social-connect {
  margin-top: 3rem;
}

.social-connect h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: white;
}
.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  text-decoration: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.form-intro {
  color: #666;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Checkbox Styles */
.checkbox-group {
  margin-top: 1.5rem;
}

.checkbox-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

.checkbox-item.terms {
  margin-top: 1rem;
}

.checkbox-item.terms a {
  color: var(--primary-color);
  text-decoration: none;
}

.checkbox-item.terms a:hover {
  text-decoration: underline;
}

/* Required Field Indicator - Update these blocks */
label:after {
  content: "*";
  color: #ff4444;
  margin-left: 4px;
}

/* Exclude specific labels from showing asterisk */
label[for="companyName"]:after,
label[for="whatsapp"]:after,
label[for="youtubeChannel"]:after,
label[for="roleL"]:after,
label[for="roleA"]:after,
label[for="roleD"]:after,
label[for="artist"]:after,
label[for="recordLabel"]:after,
label[for="distributor"]:after,
.checkbox-item label:after {  /* Add this line to remove asterisk from all checkbox labels */
  content: "";
  margin-left: 0;
}

/* Role Checkbox Styles - Add this new section */
.checkbox-item[for="roleL"] input[type="checkbox"],
.checkbox-item[for="roleA"] input[type="checkbox"],
.checkbox-item[for="roleD"] input[type="checkbox"] {
    display: none;
}

.checkbox-item[for="roleL"],
.checkbox-item[for="roleA"],
.checkbox-item[for="roleD"] {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item[for="roleL"]:hover,
.checkbox-item[for="roleA"]:hover,
.checkbox-item[for="roleD"]:hover {
    background: rgba(255, 31, 113, 0.1);
    border-color: var(--primary-color);
}

.checkbox-item[for="roleL"] input[type="checkbox"]:checked + label,
.checkbox-item[for="roleA"] input[type="checkbox"]:checked + label,
.checkbox-item[for="roleD"] input[type="checkbox"]:checked + label {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .checkbox-options {
    grid-template-columns: 1fr;
  }
}

/* General Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
    padding: 0 2rem;
  }
  .platform-logos {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 1.5rem;
  }
  .features-grid {
    gap: 1.5rem;
  }
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;

  }
  .footer-content {
    gap: 2.5rem;
  }
  .footer-text{
    font-size: 14px;
  }
  .contact-details{
    font-size: 16px;
  }
 .footer-bottom{
  padding-top: 0.4rem;
 }
 .footer-info .contact-details, span{
  font-size: 17px
}
 footer, .container{
  padding-top: 0.8rem;
 }
}


@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  /* Navigation */
  .nav-links,
  .nav-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Hero Section */
  .hero h2 {
    font-size: 2.75rem;
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns:1fr;
    justify-content: center;
    gap: 1.5rem;
    max-width: 700px;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr !important;  /* Force single column */
    gap: 2rem;
    width: 100%;
  }

  .contact-info {
    padding: 2rem;
    width: 100%;
    margin: 0 auto;
  }

  .contact-form {
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }  

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-text{
    padding-bottom: 1rem;
    font-size:13px;
  }
  .footer-info .contact-details, span{
    font-size: 17px
  }
  .footer-left {
    align-items: center;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  /* Hero Section */
  .hero {
    padding: 4rem 1rem;
  }

  .hero h2 {
    font-size: 2.25rem;
  }

  /* Features Section */
  .features h3 {
    font-size: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  /* About Page */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  /* Services Page */
  .services-grid {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 1.5rem;
    max-width: 700px;
  }

  /* Contact Page */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 2rem;
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-text{
    padding-bottom: 20px;
    font-size: 16px;
  }

  .contact-details {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  /* Hero Section */
  .hero h2 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 12px;
  }

  /* Features Section */
  .features {
    padding: 2rem 1rem;
  }

  .feature-card {
    padding: 0rem 0.5rem;
}

  .icon-container {
    width: 72px;
    height: 72px;
  }

  /* Footer */*

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Contact Form */
  .contact-form {
    padding: 1.5rem;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-text{
    padding-bottom: 20px;
    font-size: 13px;
  }
  .social-icons {
    justify-content: center;
  }
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: auto;
  }
}

/* Touch Device Optimizations */
@media (hover: none) {
  .service-card:hover,
  .feature-card:hover,
  .social-icons a:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}

/* Services Section Styles */
.services-content {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.service-features i {
    color: var(--primary-color);
}

/* Contact Section Styles */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    background: #48393e;
    color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
}

.contact-form {
    background: #b6b3b791;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #302e2e;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Form Validation Styles */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff4444;
}

.form-group input.success,
.form-group textarea.success {
    border-color: #00C851;
}

.error-message {
    color: #ff4444;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 400px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-success {
    border-left: 4px solid #00C851;
}

.toast-success .toast-icon {
    color: #00C851;
}

.toast-error {
    border-left: 4px solid #ff4444;
}

.toast-error .toast-icon {
    color: #ff4444;
}

.toast-message {
    color: #333;
    font-weight: 500;
    padding-right: 20px;
}

.toast-close {
    cursor: pointer;
    color: #999;
    font-size: 18px;
    padding: 2px;
    background: none;
    border: none;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: #333;
}

/* Toast Animation */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

.toast.show {
    animation: slideInDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.toast.hide {
    animation: slideOutUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Toast Styles */
@media screen and (max-width: 768px) {
    .toast {
        width: calc(100% - 40px);
        max-width: none;
        padding: 12px 16px;
    }

    .toast-message {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .toast {
        width: calc(100% - 32px);
        padding: 10px 14px;
    }

    .toast-icon {
        min-width: 20px;
        height: 20px;
    }

    .toast-message {
        font-size: 12px;
    }

    .toast-close {
        font-size: 16px;
    }
}

/* Submit Button Animation */
button[type="submit"] {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

button[type="submit"] .fa-spinner {
    margin-right: 0.5rem;
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

    .toast {
        left: 20px;
        right: 20px;
        text-align: center;
    }
}

/* Remove number input spinners */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="tel"] {
    -moz-appearance: textfield;
}

input[type="tel"]::-webkit-inner-spin-button,
input[type="tel"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
