/* Custom CSS for IRCOM Website */

:root {
  --primary-color: #6366f1;
  --secondary-color: #8b5cf6;
  --accent-color: #a855f7;
  --dark-color: #1e1b4b;
  --light-color: #f8fafc;
  --text-dark: #312e81;
  --text-light: #6b7280;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  --gradient-secondary: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 992px) {
  .ct {
    max-width: 100%;
    font-size: 8px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Navigation Styles */
.navbar {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 1rem 0;
  box-shadow: var(--shadow-light);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.98);
  padding: 0.5rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-icon {
  font-size: 2rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.subsidiary-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.brand-logo {
  width: 100%;
  height: 60px;
  object-fit: contain !important;
  border-radius: 8px;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.navbar-brand:hover .brand-icon {
  transform: rotate(10deg) scale(1.1);
}

.navbar-brand:hover .brand-logo-img {
  transform: scale(1.1);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: white !important;
  background: var(--gradient-primary);
  transform: translateY(-2px);
}

/* Hero Section with Carousel */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 80px; /* Space for fixed navbar */
}

.carousel {
  height: 100vh;
}

.carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 100vh;
  transition: transform 1s ease-in-out;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 64, 175, 0.6) 50%, rgba(6, 182, 212, 0.4) 100%);
  z-index: 1;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: 2rem;
}

.carousel-control-next {
  right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: 2rem;
  margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin: 0 8px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.3);
  z-index: 2;
}

.hero-content {
  color: white;
  z-index: 3;
  position: relative;
}

/* Hero Stats (Slide 2) */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 3;
  position: relative;
}

.stat-item-hero {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  transform: translateY(30px);
  opacity: 0;
}

.stat-item-hero:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-number-hero {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label-hero {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Hero Features (Slide 3) */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 3;
  position: relative;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  transform: translateX(-30px);
  opacity: 0;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.2);
  border-radius: 50%;
}

.feature-item span {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(30deg);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.hero-buttons .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: var(--shadow-medium);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-3px);
  color: white;
}

/* Hero Logo */
.hero-logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 4;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-logo:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.hero-logo h3 {
  color: white;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.floating-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  animation: float 6s ease-in-out infinite;
}

.floating-logo i {
  font-size: 8rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.5));
}

.floating-logo .logo-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  margin: 0 auto 0.5rem;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    top: 6px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.about-image img {
  transition: transform 0.5s ease;
  border-radius: 20px;
}

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

.about-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(34, 197, 94, 0.9);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.about-badge i {
  font-size: 1rem;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.about-highlight {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  color: white;
  font-size: 1.25rem;
}

.highlight-content h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.highlight-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

#readMoreBtn {
  background: var(--gradient-primary);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

#readMoreBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Stats Section */
.stats-section {
  background: var(--light-color);
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* News Section */
.news-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-card.featured {
  /* border: 2px solid #667eea; */
  position: relative;
}

.news-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  z-index: 1;
}

.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.news-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-badge.featured-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.news-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #6c757d;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-source {
  background: #e9ecef;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.75rem;
}

.news-title {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-excerpt {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.news-link:hover {
  color: #764ba2;
  transform: translateX(5px);
}

.news-link i {
  transition: transform 0.3s ease;
}

.news-link:hover i {
  transform: translateX(3px);
}

/* Services Preview */
.services-preview {
  background: white;
  padding: 5rem 0;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--gradient-secondary);
  color: white;
}

.footer-brand .brand-logo {
  margin-bottom: 1rem;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent-color);
}
.privacy {
  padding-top: 6rem;
}
/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .privacy {
    padding-top: 6rem;
  }
  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
  }

  .carousel-control-prev {
    left: 1rem;
  }

  .carousel-control-next {
    right: 1rem;
  }

  .hero-logo {
    top: 1rem;
    left: 1rem;
    padding: 0.75rem;
  }

  .hero-logo h3 {
    font-size: 1.25rem;
  }

  .stat-item-hero {
    padding: 1.5rem;
  }

  .stat-number-hero {
    font-size: 2rem;
  }

  .feature-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .feature-item i {
    margin-bottom: 0.5rem;
  }

  .hero-stats,
  .hero-features {
    gap: 1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .carousel-indicators {
    bottom: 1rem;
  }

  .floating-logo i {
    font-size: 4rem;
  }

  .floating-logo .logo-text {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* News Section Mobile */
  .news-card {
    margin-bottom: 2rem;
  }

  .news-image {
    height: 180px;
  }

  .news-content {
    padding: 1.25rem;
  }

  .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .news-title {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }

  .hero-logo {
    padding: 0.5rem;
  }

  .hero-logo h3 {
    font-size: 1rem;
  }

  .stat-item-hero {
    padding: 1rem;
  }

  .stat-number-hero {
    font-size: 1.75rem;
  }

  .stat-label-hero {
    font-size: 0.875rem;
  }

  .feature-item {
    padding: 0.75rem;
  }

  .feature-item span {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-outline-light {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-highlight {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .highlight-icon {
    margin-bottom: 1rem;
  }

  #readMoreBtn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }

  .about-badge {
    top: 15px;
    right: 15px;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  .stats-section {
    padding: 3rem 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  .social-links {
    justify-content: center;
  }

  /* News Section Small Mobile */
  .news-image {
    height: 160px;
  }

  .news-content {
    padding: 1rem;
  }

  .news-title {
    font-size: 0.95rem;
  }

  .news-excerpt {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
  }

  .news-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
}

/* Loading Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Timeline Styles */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 80px;
}

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-content h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.milestone-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.milestone-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.milestone-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 0.8rem;
}

.achievement-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #333;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.commitment-section {
  margin-top: 3rem;
}

.commitment-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.commitment-icon {
  font-size: 3rem;
  opacity: 0.9;
}

.commitment-content h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.commitment-content p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.95;
}

/* Management Team Styles */
.management-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.management-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

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

.management-photo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.management-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--primary-color);
}

/* Featured Clients Section */
.featured-clients {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.featured-clients h5 {
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.client-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.client-preview-item {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.client-preview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.client-preview-item img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.client-preview-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .client-preview-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .featured-clients {
    padding: 1.5rem;
  }
}

.photo-placeholder {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 3rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.management-info h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.management-info .position {
  color: var(--secondary-color);
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.management-description p {
  color: #666;
  line-height: 1.6;
  text-align: justify;
}

.leadership-note {
  margin-top: 2rem;
}

.note-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
}

.note-card p {
  color: #6c757d;
  font-style: italic;
}

/* Responsive Design for Timeline and Management */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-year {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }

  .timeline-content {
    padding: 1rem;
  }

  .commitment-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .commitment-icon {
    font-size: 2rem;
  }

  .management-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .management-card {
    padding: 1.5rem;
  }

  .photo-placeholder {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .timeline-item {
    margin-bottom: 2rem;
  }

  .timeline-content h5 {
    font-size: 1.1rem;
  }

  .achievement-badge {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  .management-info h4 {
    font-size: 1.3rem;
  }

  .management-info .position {
    font-size: 1rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* About Page Styles */
.about-hero {
  position: relative;
  min-height: 50vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px; /* Space for fixed navbar */
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>') no-repeat bottom;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
}

.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: white;
}

.breadcrumb-item.active {
  color: white;
}

/* About Content Styles */

.about-sidebar {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 0.5rem;
}

.sidebar-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.sidebar-link:hover {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-color);
  transform: translateX(5px);
  border-left-color: var(--accent-color);
}

.sidebar-link.active {
  background: var(--gradient-primary);
  color: white;
  border-left-color: var(--accent-color);
  box-shadow: var(--shadow-light);
}

/* Content Sections */
.content-section {
  display: none;
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-light);
  margin-bottom: 2rem;
}

.content-section.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

/* .content-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
} */

.content-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.content-body p {
  margin-bottom: 1.5rem;
}

.content-body .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.highlight-box h5 {
  color: var(--primary-color);
  font-weight: 600;
}

/* Vision Mission Cards */
.vision-card,
.mission-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

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

.card-icon i {
  font-size: 1.5rem;
  color: white;
}

/* Values Section */
.value-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-3px);
}

.value-item i {
  font-size: 2rem;
}

.value-item h6 {
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: var(--text-dark);
}

/* Business Grid */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.business-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-left: 4px solid var(--accent-color);
}

.business-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.business-number {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gradient-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.business-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.business-item .badge {
  margin-top: 1rem;
}

/* Services List */
.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

/* Subsidiaries Grid */
.subsidiaries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.subsidiary-card {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.subsidiary-card:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-3px);
}

.subsidiary-card h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Publishing Brands */
.publishing-brands {
  margin-top: 2rem;
}

.brand-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-light);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.brand-item:hover {
  transform: translateX(10px);
}

.brand-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
}

.brand-icon i {
  color: white;
  font-size: 1.2rem;
}

.brand-info h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Development Badge */
.development-badge {
  text-align: center;
}

/* Focus Areas */
.focus-areas,
.service-highlights {
  margin-top: 2rem;
}

.focus-item,
.highlight-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.focus-item:hover,
.highlight-item:hover {
  transform: translateY(-3px);
  background: rgba(59, 130, 246, 0.1);
}

.focus-item i,
.highlight-item i {
  font-size: 2rem;
}

.focus-item h6,
.highlight-item h6 {
  color: var(--text-dark);
  font-weight: 600;
  margin: 1rem 0 0.5rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .about-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }

  .content-section {
    padding: 1.5rem;
  }

  .content-title {
    font-size: 2rem;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .subsidiaries-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .about-sidebar {
    padding: 1.5rem;
  }

  .content-section {
    padding: 1rem;
  }

  .content-title {
    font-size: 1.75rem;
  }

  .vision-card,
  .mission-card {
    padding: 1.5rem;
  }
}

/* Contact Form Styles */
.contact-form {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Privacy Policy Styles */
.privacy-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  min-height: 60vh;
}

.privacy-content,
.terms-content {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.privacy-section,
.terms-section {
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.privacy-list {
  list-style: none;
  padding-left: 0;
}

.privacy-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.privacy-list li:before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.privacy-content a,
.terms-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.privacy-content a:hover,
.terms-content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Business Activities Page Styles */
.business-hero {
  position: relative;
  min-height: 50vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px; /* Space for fixed navbar */
}

.business-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>') no-repeat bottom;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.3);
}

.business-content {
  background: var(--light-color);
  min-height: 70vh;
}

.business-sidebar {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 0.5rem;
}

.sidebar-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.sidebar-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: white;
  transform: translateX(5px);
}

.sidebar-link:hover::before,
.sidebar-link.active::before {
  left: 0;
}

.content-section {
  display: none;
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: var(--shadow-medium);
  animation: fadeInUp 0.6s ease;
}

.content-section.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

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

.section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.5rem;
  position: relative;
  padding-left: 1rem;
}

.section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  /* background: var(--accent-color); */
  border-radius: 2px;
}

.company-logo {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
}

.logo-placeholder {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.logo-placeholder.large {
  width: 100px;
  height: 100px;
  font-size: 2.5rem;
}

.services-grid {
  margin-top: 2rem;
}

.service-card {
  background: rgba(59, 130, 246, 0.05);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
  height: 100%;
}

.service-card:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.service-card h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  background: rgba(6, 182, 212, 0.1);
  transform: translateX(5px);
}

.advantage-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.advantage-content h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.advantage-content p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.mission-statement {
  margin-top: 3rem;
}

.statement-card {
  background: var(--gradient-primary);
  color: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.statement-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.statement-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.statement-content {
  position: relative;
  z-index: 1;
}

.statement-content h5 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.clients-section {
  margin-top: 3rem;
}

.clients-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 15px;
  border: 2px dashed var(--accent-color);
}

.client-placeholder {
  text-align: center;
  color: var(--text-light);
}

.client-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.music-brands-grid,
.publishing-brands-grid {
  margin-top: 2rem;
}

.brand-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-color);
}

.brand-logo {
  /* background: var(--gradient-primary); */
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-light);
  width: 100px;
  height: 100px;
  /* overflow: hidden; */
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.brand-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.brand-info h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.brand-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.brand-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.brand-link:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.coming-soon-badge,
.no-website-badge {
  background: rgba(255, 193, 7, 0.1);
  color: #856404;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.development-stage-card {
  text-align: center;
  padding: 3rem;
  background: rgba(255, 193, 7, 0.05);
  border-radius: 20px;
  border: 2px dashed rgba(255, 193, 7, 0.3);
}

.stage-icon {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.brand-logo-section {
  margin: 2rem 0;
}

.development-badge .badge {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
}

/* Responsive Design for Business Activities */
@media (max-width: 992px) {
  .business-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }

  .content-section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .business-hero {
    min-height: 40vh;
  }

  .content-title {
    font-size: 2rem;
  }

  .business-sidebar {
    padding: 1.5rem;
  }

  .content-section {
    padding: 1.5rem;
  }

  .service-card,
  .brand-card {
    padding: 1.5rem;
  }

  .statement-card {
    padding: 2rem;
  }

  .company-logo {
    width: 60px;
    height: 60px;
  }

  .logo-placeholder {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .logo-placeholder.large {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .business-hero {
    min-height: 35vh;
  }

  .content-title {
    font-size: 1.75rem;
  }

  .business-sidebar {
    padding: 1rem;
  }

  .content-section {
    padding: 1rem;
  }

  .service-card,
  .brand-card {
    padding: 1rem;
  }

  .statement-card {
    padding: 1.5rem;
  }

  .development-stage-card {
    padding: 2rem;
  }

  .stage-icon {
    font-size: 3rem;
  }
}
