/* Reset & Base Styles */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  :root {
      --primary-color: #8B0000;
      --secondary-color: #A52A2A;
      --accent-color: #DC143C;
      --dark-bg: #0f172a;
      --dark-secondary: #1e293b;
      --text-primary: #ffffff;
      --text-secondary: #cbd5e1;
      --gradient-1: linear-gradient(135deg, #8B0000 0%, #A52A2A 50%, #DC143C 100%);
      --gradient-2: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
  }
  
  html {
      scroll-behavior: smooth;
  }
  
  body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--dark-bg);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
  }
  
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }
  
  /* Navigation */
  .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(15, 23, 42, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 0;
      transition: all 0.3s ease;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
  }
  
  .logo-img {
      height: 45px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 2px 10px rgba(99, 102, 241, 0.3));
      transition: transform 0.3s ease;
  }
  
  .logo-img:hover {
      transform: scale(1.05);
  }
  
  .logo h2 {
      font-size: 1.8rem;
      font-weight: 700;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin: 0;
  }
  
  .logo span {
      color: var(--accent-color);
  }
  
  .nav-menu {
      display: flex;
      list-style: none;
      gap: 2rem;
  }
  
  .nav-link {
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
  }
  
  .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-1);
      transition: width 0.3s ease;
  }
  
  .nav-link:hover {
      color: var(--text-primary);
  }
  
  .nav-link:hover::after {
      width: 100%;
  }
  
  .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
  }
  
  .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--text-primary);
      border-radius: 3px;
      transition: all 0.3s ease;
  }
  
  /* Hero Section */
  .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background: var(--gradient-1);
      background-size: 200% 200%;
      animation: gradientShift 15s ease infinite;
      overflow: hidden;
      z-index: 0;
  }
  
  @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
  }
  
  .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.7);
  }
  
  .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 800px;
      padding: 2rem;
      animation: fadeInUp 1s ease;
  }
  
  .hero-logo {
      margin-bottom: 2rem;
      display: flex;
      justify-content: center;
      animation: fadeInUp 1s ease 0.1s both;
  }
  
  .hero-logo-img {
      max-width: 300px;
      width: 100%;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
      animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
  }
  
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  .hero-title {
      font-size: 4.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 1s ease 0.2s both;
  }
  
  .hero-subtitle {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: var(--text-secondary);
      animation: fadeInUp 1s ease 0.4s both;
  }
  
  .hero-description {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      color: var(--text-secondary);
      line-height: 1.8;
      animation: fadeInUp 1s ease 0.6s both;
  }
  
  .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 1s ease 0.8s both;
  }
  
  .btn {
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
  }
  
  .btn-primary {
      background: var(--text-primary);
      color: var(--dark-bg);
      box-shadow: var(--shadow);
  }
  
  .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
  }
  
  .btn-secondary {
      background: transparent;
      color: var(--text-primary);
      border: 2px solid var(--text-primary);
  }
  
  .btn-secondary:hover {
      background: var(--text-primary);
      color: var(--dark-bg);
      transform: translateY(-3px);
  }
  
  .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
      color: var(--text-primary);
      font-size: 1.5rem;
  }
  
  @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-10px); }
  }
  
  /* Section Styles */
  section {
      padding: 5rem 0;
      position: relative;
      z-index: 1;
  }
  
  .section-header {
      text-align: center;
      margin-bottom: 4rem;
  }
  
  .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }
  
  .section-subtitle {
      font-size: 1.2rem;
      color: var(--text-secondary);
  }
  
  /* About Section */
  .about {
      background: var(--dark-secondary);
      position: relative;
      z-index: 2;
  }
  
  .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
  }
  
  .about-text h3 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: var(--primary-color);
  }
  
  .about-text p {
      margin-bottom: 1.5rem;
      color: var(--text-secondary);
      line-height: 1.8;
  }
  
  .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2rem;
  }
  
  .stat-item {
      text-align: center;
      padding: 1.5rem;
      background: var(--dark-bg);
      border-radius: 10px;
      transition: transform 0.3s ease;
  }
  
  .stat-item:hover {
      transform: translateY(-5px);
  }
  
  .stat-item h4 {
      font-size: 2.5rem;
      font-weight: 700;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.5rem;
  }
  
  .stat-item p {
      color: var(--text-secondary);
      font-size: 0.9rem;
  }
  
  .about-image {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .image-placeholder {
      width: 100%;
      height: 400px;
      background: var(--gradient-1);
      border-radius: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 3rem;
      position: relative;
      overflow: hidden;
  }
  
  .image-placeholder i {
      font-size: 5rem;
      color: rgba(255, 255, 255, 0.3);
      animation: float 3s ease-in-out infinite;
  }
  
  .image-placeholder i:nth-child(2) {
      animation-delay: 1.5s;
  }
  
  @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
  }
  
  /* Services Section */
  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
  }
  
  .service-card {
      background: var(--dark-secondary);
      padding: 2.5rem;
      border-radius: 20px;
      text-align: center;
      transition: all 0.3s ease;
      border: 2px solid transparent;
  }
  
  .service-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary-color);
      box-shadow: var(--shadow-lg);
  }
  
  .service-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: var(--gradient-1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--text-primary);
  }
  
  .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--text-primary);
  }
  
  .service-card p {
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
      line-height: 1.8;
  }
  
  .service-features {
      list-style: none;
      text-align: left;
  }
  
  .service-features li {
      padding: 0.5rem 0;
      color: var(--text-secondary);
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }
  
  .service-features i {
      color: var(--primary-color);
  }
  
  /* Portfolio Section */
  .portfolio {
      background: var(--dark-secondary);
  }
  
  .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
  }
  
  .portfolio-item {
      border-radius: 15px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 16/9;
      cursor: pointer;
  }
  
  .portfolio-image {
      width: 100%;
      height: 100%;
      background: var(--gradient-1);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
      min-height: 200px;
  }
  
  .portfolio-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gradient-1);
      opacity: 0.2;
      transition: opacity 0.3s ease;
      z-index: 1;
  }
  
  .portfolio-item:hover .portfolio-image::before {
      opacity: 0.05;
  }
  
  .portfolio-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9));
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease, background 0.3s ease;
      padding: 2rem;
      text-align: center;
  }
  
  .portfolio-item:hover .portfolio-overlay {
      opacity: 1;
      background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95));
  }
  
  .portfolio-overlay h4 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--text-primary);
  }
  
  .portfolio-overlay p {
      color: var(--text-secondary);
      margin-bottom: 1rem;
  }
  
  .portfolio-link {
      width: 50px;
      height: 50px;
      background: var(--gradient-1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-primary);
      text-decoration: none;
      transition: transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.2rem;
  }
  
  .portfolio-link:hover {
      transform: scale(1.1);
  }
  
  /* Video Modal */
  .video-modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(5px);
      animation: fadeIn 0.3s ease;
  }
  
  .video-modal.active {
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  @keyframes fadeIn {
      from {
          opacity: 0;
      }
      to {
          opacity: 1;
      }
  }
  
  .video-modal-content {
      position: relative;
      width: 90%;
      max-width: 900px;
      background: var(--dark-bg);
      border-radius: 20px;
      padding: 2rem;
      box-shadow: var(--shadow-lg);
      animation: slideUp 0.3s ease;
  }
  
  @keyframes slideUp {
      from {
          transform: translateY(50px);
          opacity: 0;
      }
      to {
          transform: translateY(0);
          opacity: 1;
      }
  }
  
  .video-modal-close {
      position: absolute;
      top: 15px;
      right: 20px;
      color: var(--text-primary);
      font-size: 2.5rem;
      font-weight: bold;
      cursor: pointer;
      z-index: 10;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
  }
  
  .video-modal-close:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: rotate(90deg);
  }
  
  .video-container {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      border-radius: 15px;
      overflow: hidden;
  }
  
  .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
  }
  
  /* Team Section */
  .team {
      background: var(--dark-bg);
  }
  
  .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
  }
  
  .team-member {
      background: var(--dark-secondary);
      padding: 2rem;
      border-radius: 20px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      border: 2px solid transparent;
  }
  
  .team-member:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
  }
  
  .team-member.top-member {
      border-color: var(--primary-color);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  }
  
  .team-member[data-rank="1"] {
      border-color: #ffd700;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  
  .team-member[data-rank="2"] {
      border-color: #c0c0c0;
      box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
  }
  
  .team-member[data-rank="3"] {
      border-color: #cd7f32;
      box-shadow: 0 0 20px rgba(205, 127, 50, 0.3);
  }
  
  .rank-badge {
      position: absolute;
      top: -15px;
      right: 20px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--text-primary);
      z-index: 10;
      box-shadow: var(--shadow);
  }
  
  .rank-badge.rank-1 {
      background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
      color: var(--dark-bg);
  }
  
  .rank-badge.rank-2 {
      background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
      color: var(--dark-bg);
  }
  
  .rank-badge.rank-3 {
      background: linear-gradient(135deg, #cd7f32 0%, #e6a057 100%);
      color: var(--text-primary);
  }
  
  .rank-badge.rank-other {
      background: var(--dark-bg);
      border: 2px solid var(--primary-color);
      color: var(--text-primary);
      font-size: 1rem;
  }
  
  .rank-badge i {
      font-size: 1.5rem;
      margin-right: 5px;
  }
  
  .member-image {
      width: 150px;
      height: 150px;
      margin: 0 auto 1.5rem;
      background: var(--gradient-1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      color: var(--text-primary);
      position: relative;
  }
  
  .team-member[data-rank="1"] .member-image {
      box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  }
  
  .team-member[data-rank="2"] .member-image {
      box-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
  }
  
  .team-member[data-rank="3"] .member-image {
      box-shadow: 0 0 30px rgba(205, 127, 50, 0.5);
  }
  
  .team-member h3 {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: var(--text-primary);
  }
  
  .member-role {
      color: var(--text-secondary);
      margin-bottom: 1rem;
      font-size: 0.95rem;
  }
  
  .member-stats {
      margin: 1rem 0;
      display: flex;
      justify-content: center;
      gap: 0.5rem;
  }
  
  .stat-badge {
      background: var(--dark-bg);
      padding: 0.5rem 1rem;
      border-radius: 20px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: var(--text-primary);
      border: 1px solid var(--primary-color);
  }
  
  .stat-badge i {
      color: var(--primary-color);
  }
  
  .member-social {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
  }
  
  .member-social a {
      width: 40px;
      height: 40px;
      background: var(--dark-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-primary);
      text-decoration: none;
      transition: all 0.3s ease;
  }
  
  .member-social a:hover {
      background: var(--gradient-1);
      transform: translateY(-3px);
  }
  
  /* Management Section */
  .management {
      background: var(--dark-secondary);
  }
  
  .management-image {
      background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
      box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
  }
  
  .management .team-member {
      border: 2px solid rgba(251, 191, 36, 0.3);
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  }
  
  .management .team-member:hover {
      border-color: rgba(251, 191, 36, 0.6);
      box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
  }
  
  /* Contact Section */
  .contact {
      background: var(--dark-secondary);
  }
  
  .contact-content {
      display: flex;
      justify-content: center;
      max-width: 800px;
      margin: 0 auto;
  }
  
  .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
  }
  
  .info-item {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 1.5rem;
      background: var(--dark-bg);
      border-radius: 15px;
      transition: transform 0.3s ease;
  }
  
  .info-item:hover {
      transform: translateX(10px);
  }
  
  .info-icon {
      width: 60px;
      height: 60px;
      background: var(--gradient-1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--text-primary);
  }
  
  .info-text h4 {
      margin-bottom: 0.5rem;
      color: var(--text-primary);
  }
  
  .info-text p {
      color: var(--text-secondary);
      margin-bottom: 1rem;
  }
  
  .whatsapp-item {
      background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
      border: 2px solid rgba(37, 211, 102, 0.3);
  }
  
  .whatsapp-icon {
      background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  }
  
  .whatsapp-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
      color: var(--text-primary);
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      margin-top: 0.5rem;
  }
  
  .whatsapp-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  }
  
  .whatsapp-link i {
      font-size: 1.2rem;
  }
  
  .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
  }
  
  .form-group {
      position: relative;
  }
  
  .form-group input,
  .form-group textarea {
      width: 100%;
      padding: 1rem;
      background: var(--dark-bg);
      border: 2px solid transparent;
      border-radius: 10px;
      color: var(--text-primary);
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
      outline: none;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  }
  
  .form-group textarea {
      resize: vertical;
      min-height: 150px;
  }
  
  /* Footer */
  .footer {
      background: var(--dark-bg);
      padding: 3rem 0 1rem;
      border-top: 1px solid var(--dark-secondary);
  }
  
  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
  }
  
  .footer-logo {
      margin-bottom: 1rem;
      display: flex;
      justify-content: flex-start;
  }
  
  .footer-logo-img {
      max-width: 150px;
      width: 100%;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 5px 15px rgba(99, 102, 241, 0.3));
      transition: transform 0.3s ease;
  }
  
  .footer-logo-img:hover {
      transform: scale(1.05);
  }
  
  .footer-section h3 {
      margin-bottom: 1rem;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }
  
  .footer-section h4 {
      margin-bottom: 1rem;
      color: var(--text-primary);
  }
  
  .footer-section p {
      color: var(--text-secondary);
      margin-bottom: 1rem;
      line-height: 1.8;
  }
  
  .footer-section ul {
      list-style: none;
  }
  
  .footer-section ul li {
      margin-bottom: 0.5rem;
  }
  
  .footer-section ul li a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
      color: var(--primary-color);
  }
  
  .social-links {
      display: flex;
      gap: 1rem;
  }
  
  .social-links a {
      width: 40px;
      height: 40px;
      background: var(--dark-secondary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-primary);
      text-decoration: none;
      transition: all 0.3s ease;
  }
  
  .social-links a:hover {
      background: var(--gradient-1);
      transform: translateY(-3px);
  }
  
  .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid var(--dark-secondary);
      color: var(--text-secondary);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .logo-img {
          height: 35px;
      }
      
      .logo h2 {
          font-size: 1.4rem;
      }
      
      .hero-logo-img {
          max-width: 200px;
      }
      
      .footer-logo-img {
          max-width: 120px;
      }
      .hamburger {
          display: flex;
      }
  
      .nav-menu {
          position: fixed;
          top: 70px;
          left: -100%;
          width: 100%;
          height: calc(100vh - 70px);
          background: var(--dark-bg);
          flex-direction: column;
          justify-content: flex-start;
          align-items: center;
          padding-top: 2rem;
          transition: left 0.3s ease;
          gap: 0;
      }
  
      .nav-menu.active {
          left: 0;
      }
  
      .nav-menu li {
          width: 100%;
          text-align: center;
          padding: 1rem 0;
      }
  
      .hero-title {
          font-size: 2.5rem;
      }
  
      .hero-subtitle {
          font-size: 1.3rem;
      }
  
      .about-content,
      .contact-content {
          grid-template-columns: 1fr;
      }
  
      .stats {
          grid-template-columns: 1fr;
      }
  
      .services-grid,
      .portfolio-grid,
      .team-grid {
          grid-template-columns: 1fr;
      }
  
      .section-title {
          font-size: 2rem;
      }
  }
  
  @media (max-width: 480px) {
      .hero-title {
          font-size: 2rem;
      }
  
      .hero-subtitle {
          font-size: 1.1rem;
      }
  
      .btn {
          padding: 0.8rem 1.5rem;
          font-size: 0.9rem;
      }
  }
  
  