/* 
 * SJ Premium TV Installations
 * Main Stylesheet
 */

/* Base Styles & Variables */
:root {
  --primary: #0F172A;
  --primary-dark: #0B1221;
  --primary-light: #1E293B;
  --accent: #EAB308;
  --accent-dark: #CA8A04;
  --accent-light: #FDE68A;
  --light: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --body-font: 'Poppins', sans-serif;
  --heading-font: 'Playfair Display', serif;
}

body {
  font-family: var(--body-font);
  color: var(--gray-700);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--gray-900);
  line-height: 1.2;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
  color: var(--light);
  border-color: var(--light);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: var(--light);
  color: var(--primary);
  transform: translateY(-2px);
}

.section-title {
  position: relative;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

/* .section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--accent);
} */

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Header & Navigation */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-dark {
  background-color: transparent;
}

.navbar.scrolled {
  background-color: var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--light) !important;
}

.navbar-brand .dot {
  color: var(--accent);
}

.nav-link {
  color: var(--gray-200) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--light) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  color: var(--light);
  overflow: hidden;
}

.carousel-item {
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.5s ease-out;
  color: white;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.5s ease-out 0.2s;
  animation-fill-mode: both;
}

.hero-content .btn-group {
  animation: fadeInUp 0.5s ease-out 0.4s;
  animation-fill-mode: both;
}

.hero-indicators {
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 30px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--accent);
  width: 50px;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

.feature-card {
  background-color: var(--light);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.icon-container {
  width: 70px;
  height: 70px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-container i {
  font-size: 1.75rem;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Technology Section */
.technology-section {
  padding: 5rem 0;
}

.tech-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-image img {
  transition: all 0.5s ease;
}

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

.brand-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary);
  color: var(--light);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.tech-content {
  padding: 2rem 0;
}

.tech-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.tech-features li:last-child {
  border-bottom: none;
}

.tech-features i {
  color: var(--accent);
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.tech-features span {
  font-weight: 600;
  color: var(--gray-900);
}

.installation-steps {
  margin-top: 2rem;
}

.step {
  display: flex;
  margin-bottom: 1.5rem;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-content h5 {
  margin-bottom: 0.5rem;
}

.step-content p {
  margin-bottom: 0;
  color: var(--gray-600);
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--primary);
  color: var(--light);
  padding: 5rem 0;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
  color: var(--light);
}

.testimonials-section .section-title::after {
  background-color: var(--accent);
}

.testimonial-card {
  background-color: var(--primary-light);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-700);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.testimonial-icon i {
  font-size: 1.25rem;
  color: var(--primary);
}

.testimonial-card h5 {
  color: var(--light);
  margin-bottom: 0.5rem;
}

.testimonial-role {
  color: var(--accent);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--gray-300);
  font-style: italic;
}

/* Business Model Section */
.business-model-section {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

.pricing-card {
  background-color: var(--light);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  text-align: center;
}

.pricing-card.highlight {
  background-color: var(--primary);
  color: var(--light);
  border-color: var(--accent);
  transform: translateY(-10px);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card.highlight:hover {
  transform: translateY(-15px);
}

.pricing-card h3 {
  margin-bottom: 1.5rem;
}

.pricing-card.highlight h3 {
  color: var(--light);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.pricing-card.highlight .price {
  color: var(--accent);
}

.pricing-subtitle {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.pricing-card.highlight .pricing-subtitle {
  color: var(--gray-300);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.pricing-features i {
  color: var(--accent);
  margin-right: 0.75rem;
}

.pricing-card.highlight .pricing-features i {
  color: var(--accent-light);
}

/* About Section */
.about-section {
  padding: 5rem 0;
}

.founder-intro {
  font-size: 1.25rem;
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.founder-image-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.founder-image {
  transition: all 0.5s ease;
}

.founder-image-container:hover .founder-image {
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--gray-100);
}


.contact-section2 {
  padding: 5rem 0;
  background-color: var(--accent);
}

.contact-form .form-control {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-300);
  background-color: var(--light);
}

.contact-form .form-label {
  color: var(--gray-700);
  font-weight: 500;
}

.contact-form .btn {
  width: 100%;
  margin-top: 1rem;
}

.partner-section {
  background-color: var(--light);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.program-cards {
  margin-top: 2rem;
}

.program-card {
  background-color: var(--gray-100);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.program-card:hover {
  background-color: var(--accent-light);
  transform: translateX(10px);
}

.program-card h5 {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.program-card h5 i {
  color: var(--accent);
}

.program-card p {
  margin-bottom: 0;
  color: var(--gray-600);
}

/* CTA Section */
.cta-section {
  background-color: var(--accent);
  padding: 4rem 0;
}

.cta-title {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  max-width: 600px;
  margin: 0 auto;
}

.cta-form .form-control {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem 0 0 0.5rem;
  border: none;
  height: 60px;
}

.cta-form .btn {
  border-radius: 0 0.5rem 0.5rem 0;
  height: 60px;
  font-weight: 600;
  background-color: var(--primary);
  border-color: var(--primary);
}

.cta-form .btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--gray-400);
}

.footer-logo {
  color: var(--light);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--light);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
  display: inline-block;
}

.footer-contact i {
  color: var(--accent);
  margin-right: 0.75rem;
}

.footer-form .form-control {
  background-color: var(--primary-light);
  border: 1px solid var(--gray-700);
  color: var(--light);
  border-radius: 0.5rem 0 0 0.5rem;
}

.footer-form .form-control::placeholder {
  color: var(--gray-500);
}

.footer-form .btn {
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.375rem 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
}

.copyright {
  color: var(--gray-500);
  margin-bottom: 0;
}

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

.footer-bottom-links a {
  color: var(--gray-500);
  font-size: 0.875rem;
}

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

/* Team Section Styles */
.team-section {
  background-color: var(--gray-100);
}

.team-category {
  margin-bottom: 4rem;
}

.team-category-title {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

/* .team-category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
} */

.team-card {
  background-color: var(--light);
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-card-header {
  background-color: var(--primary);
  padding: 1.5rem;
  position: relative;
}

.team-role-badge {
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: inline-block;
  font-size: 0.875rem;
}

.team-card-body {
  padding: 1.5rem;
}

.team-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.team-position {
  color: var(--gray-700);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-background {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.team-card.advisor {
  background-color: var(--primary);
  color: var(--light);
}

.advisor-badge {
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  display: inline-block;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.team-card.advisor .team-position {
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.team-card.advisor .team-background {
  color: var(--gray-300);
}

.conmail1:hover{
  color: #0B1221;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--primary);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
  }
  
  .hero-section {
    height: 80vh;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    height: 70vh;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .feature-card,
  .pricing-card,
  .testimonial-card {
    margin-bottom: 1.5rem;
  }
  
  .pricing-card.highlight {
    transform: none;
  }
  
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .cta-form .input-group {
    flex-direction: column;
  }
  
  .cta-form .form-control,
  .cta-form .btn {
    border-radius: 0.5rem;
    width: 100%;
  }
  
  .cta-form .btn {
    margin-top: 1rem;
  }
  
  .footer-form .input-group {
    flex-direction: column;
  }
  
  .footer-form .form-control,
  .footer-form .btn {
    border-radius: 0.5rem;
    width: 100%;
  }
  
  .footer-form .btn {
    margin-top: 1rem;
  }
}

.bg-dark-primary {
  background-color: #0d1b2a;
}
.text-gold {
  color: #ffc107;
}
.check-list li {
  list-style: none;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 28px;
}
.check-list li::before {
  content: "\f26e";
  font-family: "Bootstrap-icons";
  color: #ffc107;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.1rem;
}
.dot-list li {
  list-style: none;
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5rem;
}
.dot-list li::before {
  content: "•";
  color: #ffc107;
  position: absolute;
  left: 0;
}