/* Global Styles */
        :root {
            --primary: #6a1b9a;
            --secondary: #ff9800;
            --dark: #121212;
            --light: #f5f5f5;
            --accent: #00bcd4;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
       h1 {
  text-shadow: 
    0 2px 1px rgba(0, 0, 0, 0.1),
    0 4px 2px rgba(0, 0, 0, 0.1),
    0 8px 4px rgba(0, 0, 0, 0.1);    
}


        h1, h2, h3, .logo-text {
  font-family: 'Audiowide', sans-serif;
  font-weight: 700; /* Bold */
}
        
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: var(--accent);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: var(--secondary);
            text-align: center;
            position: relative;
        }
        
        h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent);
            margin: 15px auto;
        }
        
        h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background: var(--primary);
            color: white;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }
        
        .btn:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary), #4a148c);
            color: white;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
        }
        
        .logo span {
            color: var(--secondary);
            font-family: 'Audiowide', sans-serif;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--secondary);
        }
        
        /* Hero Section */
        #hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(18, 18, 18, 1)), url('images/CoverOCS.jpg') no-repeat center center/cover;
            text-align: center;
            color: white;
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .project-card {
            background: #1e1e1e;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
        }
        
        .project-image {
            height: 200px;
            overflow: hidden;
        }
        
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .project-card:hover .project-image img {
            transform: scale(1.1);
        }
        
        .project-info {
            padding: 20px;
        }
        
        .project-info h3 {
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        .project-info p {
            margin-bottom: 15px;
            color: #ccc;
        }
        
        .platform-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        
        .platform-btn {
            display: inline-block;
            padding: 5px 10px;
            background: #333;
            color: white;
            border-radius: 3px;
            font-size: 0.7rem;
            transition: all 0.3s ease;
        }
        
        .platform-btn:hover {
            background: var(--accent);
            color: var(--dark);
        }
        
        .platform-btn i {
            margin-right: 5px;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background: #1e1e1e;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            border-left: 4px solid var(--primary);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-left-color: var(--accent);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        /* News Section */
        .twitter-timeline-container {
            max-width: 600px;
            margin: 0 auto;
            background: #1e1e1e;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-text {
            margin-bottom: 30px;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }
        
        .social-link {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-5px);
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-info a {
            color: var(--secondary);
            font-weight: bold;
        }
        
        /* Footer */
        footer {
            background: #121212;
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid #333;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-logo span {
            color: var(--secondary);
        }
        
        .copyright {
            color: #777;
            font-size: 0.9rem;
        }
        .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 50px; /* Adjust size as needed */
  width: auto;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.logo-text span {
  color: var(--secondary); /* Keeps your orange "Fox" accent */
}
.logo-img {
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: rotate(10deg) scale(1.1); /* Fun twist on hover */
}

/* Video Button - Distinct Style */
.video-btn {
    display: inline-block;
    padding: 1px 5px;
    background: #850505; /* YouTube red */
    color: white;
    border-radius: 4px;
    margin-bottom: 0px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(255, 0, 0, 0.2);
}

.video-btn i {
    margin-right: 8px;
    font-size: 1.2em;
}

.video-btn:hover {
    background: #CC0000; /* Darker red on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  animation: fadeIn 0.3s;
}

.modal-content {
  position: relative;
  margin: 5% auto;
  width: 80%;
  max-width: 900px;
}

.close-modal {
  position: absolute;
  right: -25px;
  top: -25px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: var(--secondary);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.twitter-feed {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Dark theme tweaks */
.twitter-timeline {
  background: #1e1e1e !important;
}

/* Keep platform buttons smaller */
.platform-btn {
    padding: 5px 10px !important; 
    font-size: 0.8em !important;
}
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }


        .twitter-feed {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Light theme alternative */
[data-theme="light"] .twitter-timeline {
  background: white !important;
}
/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none; /* Hidden by default */
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

.nav-links {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

/* Mobile styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block; /* Show toggle button */
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: #1e1e1e;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links li {
    margin: 20px 0;
  }
  
  .nav-links a {
    font-size: 1.2rem;
  }
}
