@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Horizon&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Horizon&display=swap');   

/* === FIX FOR NAVBAR OVERLAP === */
body {
  padding-top: 30px !important; /* Height of navbar */
}

@media (max-width: 768px) {
  body {
    padding-top: 16px !important; /* Slightly smaller on mobile */
  }
}
.logo-png {
      max-height: 50px;
      width: auto;
    }
    .banner-heading {
      font-size: calc(1.8rem + 1vw);
    }
    .banner-caption,  
    .banner-caption-2,
    .banner-description {
      font-size: 1rem;
      word-break: break-word;
    }
    .content {
      padding: 1rem;
    }
    .form-bg-section {
      background-color: #f8f9fa;
    }
    .lmc-card {
      border-radius: 1rem;
    }
    input, textarea, button, select {
      -webkit-appearance: none;
      appearance: none;
    }
.navbar-brand{
    margin-left: 10px;
}
.dropdown-menu {
    transition: all 0.5s ease-in-out;
}
.banner-section-bg-container{
    background-image: URL("Assets/Untitled-design.webp");
    background-size: cover;
    height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
}
.banner-heading{
    font-family: 'poppins', sans-serif;
    color: #F6CF30;
    font-weight: bold;
    font-size: 60px;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.banner-heading {
  animation: fadeInUp 1.2s ease-out forwards;
}
.content{
    padding: 48px;
}
.normal{
    color: #ffffff;
    font-family: 'poppins', sans-serif;
    font-weight: bold;
    font-size: 50px;
}
.banner-caption{
    font-family: 'poppins', sans-serif;
    color: #ffffff;
    font-weight: bold;
    font-size: 25px;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.banner-caption {
  animation: fadeInUp 1.8s ease-out forwards;
}
.banner-description{
    font-family: 'poppins', sans-serif;
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
    text-wrap: hard;
}
.banner-caption{
    font-family: 'poppins', sans-serif;
    color: #ffffff;
    font-weight: bold;
    font-size: 25px;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.banner-description{
  animation: fadeInUp 2.3s ease-out forwards;
}
.banner-section-bg-container-2{
    height: 100vh;
    background-image: linear-gradient(
    rgba(0, 0, 0, 0.69), 
    rgba(0, 0, 0, 0.795)
  ),
  url('Assets/adi-goldstein-f_0t4fYEauU-unsplash.webp'); /* Optional: Add neon image or abstract swirl */
  background-size: cover;
  padding: 10px 0;
}
.banner-caption-2{
    font-family: 'poppins', sans-serif;
    color: #F6CF30;
    font-weight: bolder;
    font-size: 30px;
}
.cta-button{
    width: 300px;
    font-family: 'poppins', sans-serif;
    font-weight: 900;
}
.icon-link{
    color: #ffffff;
    font-size: 25px;
    padding: 20px;
}
.icon-link:hover{
    color: #F6CF30;
}
.learn-more-section-bg-container{
    background-color: #000000;
    height: 100vh;
}
.lmc-section-heading{
    font-family: 'poppins', sans-serif;
    color: #F6CF30;
    font-weight: bolder;
    font-size: 30px;
}
.form-bg-section{
  background-image: url("Assets/m0ncbzs0tcasldozvzm5.webp");
  background-size: cover;
  height: 90vh;
}
.lmc-card {
  width: 80%;
  max-width: 100%; /* full width */
  margin: auto;
  background-color: #a2a2a2;
  border-radius: 10px;
}
.cta-button-bootstrap{
            /* Using Bootstrap's .btn and .btn-warning for initial look */
            /* Overriding/enhancing with custom properties */
            font-family: 'Poppins', sans-serif;
            font-weight: bold;
            height: 48px; /* Consistent height */
            padding: 0 24px; /* Consistent padding */
            display: inline-flex; /* For vertical centering */
            align-items: center; /* Centers text vertically */
            justify-content: center; /* Centers text horizontally */
            cursor: pointer;
            outline: none;
            white-space: nowrap;
            border-radius: 8px;
            border: none;

            /* Initial colors as per your request */
            color: #000; /* Text color before: Black */
            background-color: #F6CF30; /* Background before: #F6CF30 */
            border-color: #F6CF30; /* Ensure border matches background if present */


            /* Positioning context for the pseudo-element */
            position: relative;
            overflow: hidden; /* Ensures the pseudo-element stays within rounded corners */
            z-index: 1; /* Ensure button content is above the pseudo-element */

            /* Smooth transition for text color */
            transition: color 0.9s ease-in-out;
        }

        /* Pseudo-element for the left-to-right background fill effect */
        .cta-button-bootstrap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0; /* Starts with zero width */
            height: 100%;
            background-color: #000; /* Background after: Black */
            transition: width 0.5s ease-in-out; /* Smooth width animation */
            z-index: -1; /* Place it behind the text */
            border-radius: 0.375rem; /* Match Bootstrap's default button border-radius (rounded-2) */
            border-radius: 8px; 
        }

        /* Hover state for the button */
        .cta-button-bootstrap:hover {
            color: #fff; /* Text color after: White */
            /* Important: Prevent Bootstrap's default hover background from interfering */
            background-color: transparent; /* This will be covered by the ::before */
            border-color: #000; /* Change border color on hover if needed */
            border-radius: 8px; 
        }

        /* Hover state for the pseudo-element */
        .cta-button-bootstrap:hover::before {
            width: 100%; /* Expand width to cover the entire button */
            border-radius: 8px; 
          }
.footer-section{
    background-color: black;
    background-size: 10px;
    padding-top: 0 !important; /* CRUCIAL: Remove any default top padding on footer */
    margin-top: 0 !important; /* CRUCIAL: Remove any default top margin on footer */
    padding: 2px 0; /* Add desired padding to footer content */
}
.footer-text{
    font-family: 'poppins', sans-serif;
    color: #ffffff;
    font-weight: lighter;
    font-size: 15px;
    padding-top: 12px;
}
.service-section-img{
    height: 320px;
    width: 340px;
    box-shadow: #F6CF30 -10px 10px 0px;
    margin-right: 20px;
}
.service-section-heading{
    font-family: 'poppins', sans-serif;
    color: #F6CF30;
    font-weight: bolder;
    font-size: 30px;
}
.service-section-description{
    font-family: 'poppins', sans-serif;
    color: #ffffff;
    font-size: 16px;
}
.services-page-section{
    background-color: rgb(21, 21, 21);
}
.services-page-heading{
    font-family: 'poppins', sans-serif;
    color: #F6CF30;
    font-weight: bolder;
    font-size: 40px;
    margin-top: 25px;
}
.services-page-description{
    font-family: 'poppins', sans-serif;
    color: #ffffff;
    font-size: 16px;
}
.contact-container-bg{
    height: 100vh;
    background-image: linear-gradient(
    rgba(0, 0, 0, 0.60), 
    rgba(0, 0, 0, 0.650)
  ),
  url('Assets/pexels-brett-sayles-3990847.webp'); /* Optional: Add neon image or abstract swirl */
  background-size: cover;
  padding: 10px 0;
}
.contact-heading{
    font-family: 'poppins', sans-serif;
    color: #F6CF30;
    font-weight: bolder;
    font-size: 40px;
}
.contact-decription{
    font-family: 'poppins', sans-serif;
    color: #ffffff;
    font-size: 16px;
}
.brand-higlight{
    color: #F6CF30;
    font-weight: bolder;
}
.dropdown-item:hover{
    background-color: #F6CF30;
}
.dropdown-menu{
    background-color: rgb(38, 38, 38);
}
.dropdown-item{
    color: #ffffff;
}
.hire-us-heading{
    font-family: 'poppins', sans-serif;
    color: #F6CF30;
    font-weight: bolder;
    font-size: 40px;
}
.form-group {
      margin-bottom: 20px;
    }

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

    input[type="email"],
    input[type="text"],
    textarea {
      width: 100%;
      padding: 10px;
      font-size: 16px;
      border-radius: 6px;
      border: 1px solid #ccc;
      margin-top: 5px;
    }

    textarea {
      resize: vertical;
      min-height: 100px;
    }

    input[type="radio"] {
      display: none;
    }

    .radio-label {
      display: inline-block;
      padding: 10px 16px;
      margin: 5px 0;
      border: 2px solid #ccc;
      border-radius: 10px;
      background-color: #fff;
      transition: 0.2s all ease-in-out;
      position: relative;
      width: 100%;
    }

    .radio-label::before {
      content: attr(data-label);
      display: inline-block;
      background: #777;
      color: #fff;
      font-weight: bold;
      padding: 3px 8px;
      border-radius: 5px;
      margin-right: 10px;
      font-size: 0.9em;
    }

    input[type="radio"]:checked + .radio-label {
      border-color: #007bff;
      background-color: #e6f0ff;
      box-shadow: 0 0 0 2px #007bff33;
    }

    .submit-btn {
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

#deadline[type="date"] {
  width: 400px; /* Adjust as needed */
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.submit-btn:hover {
  background-color: #222;
  color: #F6CF30;
}

.submit-btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.submit-btn:hover .arrow {
  transform: translateX(6px);
  color: #F6CF30;
}
/* Process Page Specific Styles */
.process-container-bg {
  background-color: #222;
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

.process-page-content {
    margin-bottom: 3rem;
}

.process-heading {
    color: #F6CF30;
    font-size: 2.5rem;
    font-weight: bold;
}

.process-decription {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
}

/* Process Cards Styles */
.process-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-card-content {
    padding: 1.5rem;
}

.process-card-title {
    color: #F6CF30;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.process-card-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-heading,
    .audio-restoration-process-page-heading {
        font-size: 2rem;
    }
    
    .process-decription,
    .audio-restoration-process-page-decription {
        font-size: 1rem;
    }
    
    .process-card-title,
    .audio-restoration-process-page-card-title {
        font-size: 1.3rem;
    }
}

/* Title styling */
/* Global Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ffc107;
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Pricing Page Specific Styles */
.pricing-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    padding-top: 80px;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.glass-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.glass-card p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Navbar Styles */
.navbar {
    background-color: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.logo-png {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

/* Dropdown Styles */
.dropdown-menu {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.dropdown-item {
    color: var(--text-color) !important;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color) !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 2.5rem;
    }

    .glass-card {
        margin-bottom: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .pricing-title {
        font-size: 2rem;
    }

    .glass-card h4 {
        font-size: 1.3rem;
    }

    .glass-card p {
        font-size: 1rem;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffd54f;
}
/*Fedback CSS*/
.feedback-heading{
    font-family: 'poppins', sans-serif;
    color: #F6CF30;
    font-weight: bolder;
    font-size: 40px;
}
.feedback-description{
    font-family: 'poppins', sans-serif;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
}
.radio-label {
      display: inline-flex;
      align-items: center;
      margin: 5px 0;
      padding: 10px 15px;
      border-radius: 8px;
      border: 2px solid #ccc;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
      background-color: #f7f7f7;
    }

    .radio-label::before {
      content: attr(data-label);
      background: #666;
      color: white;
      font-weight: bold;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
    }

    input[type="radio"]:checked + .radio-label {
      border-color: #007bff;
      background-color: #e6f0ff;
    }

    input[type="radio"] {
      display: none;
    }

    #other-input-container {
      display: none;
    }

.rating-stars {
  font-size: 3rem;
  color: #555; /* default color - dark gray/black */
  cursor: pointer;
}

.rating-stars .star:hover,
.rating-stars .star.hovered {
  color: #F6CF30; /* gold on hover */
}

.rating-stars .star.selected {
  color: #F6CF30; /* gold when selected */
}
body {
    padding-top: 80px;
    min-height: 100vh;
    background-color: #f8f9fa;
}

/* Navbar Styles */
.navbar {
    background-color: #343a40;
}

.logo-png {
    height: 40px;
    margin-right: 10px;
}

/* Audio Restoration Page Specific Styles */
.audio-restoration-process-page-bg {
  background-color: #222;
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

.audio-restoration-process-page-content {
    margin-bottom: 3rem;
}

.audio-restoration-process-page-heading {
    color: #F6CF30;
    font-size: 2.5rem;
    font-weight: bold;
}

.audio-restoration-process-page-decription {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Process Cards Styles */
.process-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
}

.audio-restoration-process-page-card-content {
    padding: 1.5rem;
}

.audio-restoration-process-page-card-title {
    color: #F6CF30;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.audio-restoration-process-page-card-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .audio-restoration-process-page-heading {
        font-size: 2rem;
    }
    
    .audio-restoration-process-page-decription {
        font-size: 1rem;
    }
    
    .audio-restoration-process-page-card-title {
        font-size: 1.3rem;
    }
}
#process-page-link,
#audio-process-page-link,
#pricing-head-text,
#service-page {
  scroll-margin-top: 75px; /* Prevent overlap when jumping to sections */
}
/* ----------------------------
   MOBILE-FRIENDLY ADJUSTMENTS
   ---------------------------- */
@media (max-width: 768px) {

  /* Fix overlarge headings */
  .banner-heading,
  .normal,
  .hire-us-heading,
  .feedback-heading {
    font-size: 1.8rem !important;
    text-align: left;
  }

  .banner-caption,
  .banner-caption-2,
  .banner-description,
  .service-section-description,
  .services-page-description,
  .audio-restoration-process-page-decription,
  .contact-decription,
  .feedback-description {
    font-size: 1rem !important;
    text-align: left;
  }

  /* Ensure buttons scale nicely */
  .cta-button,
  .cta-button-bootstrap,
  .submit-btn {
    width: 100% !important;
    font-size: 1rem !important;
    padding: 12px 16px !important;
  }

  /* Adjust logo image size for iOS navbar */
  .logo-png {
    height: 32px !important;
  }

  /* Reduce fixed section heights for iOS Safari compatibility */
  .banner-section-bg-container,
  .banner-section-bg-container-2,
  .contact-container-bg,
  .learn-more-section-bg-container,
  .form-bg-section {
    height: auto !important;
    min-height: 100vh !important;
  }

  /* Prevent image overflow in service section */
  .service-section-img {
    width: 100% !important;
    height: auto !important;
    margin: 0 auto 20px auto;
    display: block;
  }

  /* Make process cards stack vertically with good spacing */
  .process-card {
    margin-bottom: 1.5rem;
  }

  /* Reduce padding in global containers */
  .content,
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Adjust navbar padding for iOS space */
  .navbar {
    padding: 0.5rem 1rem !important;
  }

  /* Fix dropdown flicker on iOS touch */
  .dropdown-menu {
    position: absolute !important;
    will-change: transform !important;
    transform: translate3d(0, 50px, 0) !important;
  }
}
.services-page-heading{
  text-align: center;
}
.services-page-description{
  text-align: center;
}
.audio-restoration-process-page-heading{
  text-align: center;
}
.process-decription{
  text-align: center;
}
.process-heading{
  text-align: center;
}
.contact-heading{
  text-align: center;
}