/* Main CSS Styles for Parama Solutions */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    overflow-x: hidden;
}

/* Header styles */
.top-bar {
    background-color: #2c2c2c;
    color: white;
    padding: 10px 80px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffc107;
}

/* Logo and navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0 80px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 70px; /* Fixed container height for consistent navbar */
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 80px; /* Maximum height for logo */
    max-width: 230px; /* Maximum width for logo */
    width: auto; /* Auto width to maintain aspect ratio */
    height: auto; /* Auto height to maintain aspect ratio */
    object-fit: contain; /* Ensure logo fits within container while maintaining aspect ratio */
    transition: transform 0.5s ease;
}

.logo-container:hover .logo-image {
    transform: scale(1.05); /* Changed from rotate to scale for better effect */
}

/* Ensure placeholder has same dimensions */
.logo .placeholder-image {
    max-height: 50px;
    max-width: 200px;
    min-width: 80px;
    min-height: 30px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links > a, .dropdown > a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 25px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links > a:hover, .nav-links > a.active,
.dropdown > a:hover, .dropdown > a.active {
    color: #ffc107;
}

.nav-links > a::after, .dropdown > a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffc107;
    transition: width 0.3s ease;
}

.nav-links > a:hover::after, .nav-links > a.active::after,
.dropdown > a:hover::after, .dropdown > a.active::after {
    width: 100%;
}

/* Dropdown functionality */
.dropdown {
    position: relative;
}

.dropdown > a::before {
    content: "▼";
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::before {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #ffc107;
    transform: translateX(5px);
}

.quote-btn {
    background-color: #2c2c2c;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quote-btn:hover {
    background-color: white;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 10px;
}

/* Hero section */

.hero-content {
    max-width: 800px;
    padding: 40px;
    text-align: center;
}

/* ===== UPDATED HERO TITLE WITH LETTER-BY-LETTER SHINE ANIMATION ===== */
.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffee00; /* Kept original yellow color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative; /* Added for shine overlay */
    overflow: hidden; /* Added for shine overlay */
}

/* Shine overlay effect that sweeps across entire title */
.hero-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: shine 3s ease-in-out infinite;
}

/* Individual letter styling for letter-by-letter animation */
.hero-title span {
    display: inline-block;
    animation: letterShine 4s ease-in-out infinite;
}

/* Staggered animation delays for each letter - creates wave effect */
.hero-title span:nth-child(1) { animation-delay: 0s; }
.hero-title span:nth-child(2) { animation-delay: 0.1s; }
.hero-title span:nth-child(3) { animation-delay: 0.2s; }
.hero-title span:nth-child(4) { animation-delay: 0.3s; }
.hero-title span:nth-child(5) { animation-delay: 0.4s; }
.hero-title span:nth-child(6) { animation-delay: 0.5s; }
.hero-title span:nth-child(7) { animation-delay: 0.6s; }
.hero-title span:nth-child(8) { animation-delay: 0.7s; }
.hero-title span:nth-child(9) { animation-delay: 0.8s; }
.hero-title span:nth-child(10) { animation-delay: 0.9s; }
.hero-title span:nth-child(11) { animation-delay: 1s; }
.hero-title span:nth-child(12) { animation-delay: 1.1s; }
.hero-title span:nth-child(13) { animation-delay: 1.2s; }
.hero-title span:nth-child(14) { animation-delay: 1.3s; }
.hero-title span:nth-child(15) { animation-delay: 1.4s; }
.hero-title span:nth-child(16) { animation-delay: 1.5s; }
.hero-title span:nth-child(17) { animation-delay: 1.6s; }
.hero-title span:nth-child(18) { animation-delay: 1.7s; }
.hero-title span:nth-child(19) { animation-delay: 1.8s; }
.hero-title span:nth-child(20) { animation-delay: 1.9s; }
.hero-title span:nth-child(21) { animation-delay: 2s; }
.hero-title span:nth-child(22) { animation-delay: 2.1s; }
.hero-title span:nth-child(23) { animation-delay: 2.2s; }
.hero-title span:nth-child(24) { animation-delay: 2.3s; }
.hero-title span:nth-child(25) { animation-delay: 2.4s; }
.hero-title span:nth-child(26) { animation-delay: 2.5s; }
.hero-title span:nth-child(27) { animation-delay: 2.6s; }
.hero-title span:nth-child(28) { animation-delay: 2.7s; }
.hero-title span:nth-child(29) { animation-delay: 2.8s; }
.hero-title span:nth-child(30) { animation-delay: 2.9s; }

/* Keyframe animation for overall shine sweep */
@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Keyframe animation for individual letter shine effect */
@keyframes letterShine {
    0%, 80%, 100% {
        color: #ffee00; /* Normal state - original yellow */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
        transform: scale(1);
    }
    10%, 20% {
        color: #FFFF99; /* Bright shine state */
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.6),
            0 0 15px rgba(255, 238, 0, 1),
            0 0 25px rgba(255, 238, 0, 0.8),
            0 0 35px rgba(255, 238, 0, 0.6);
        transform: scale(1.1); /* Slight grow effect */
    }
}
/* ===== END OF HERO TITLE SHINE ANIMATION ===== */

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333333;
    letter-spacing: 1px;
}

.hero-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555555;
    font-weight: 500;
}


.about-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #000000, #333333);
    color: #FFD700;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.about-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 4px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }
    
    /* Updated responsive animation for mobile */
    .hero-title span {
        animation: letterShine 4s ease-in-out infinite;
    }
    
    /* Adjusted letter shine for mobile screens */
    @keyframes letterShine {
        0%, 80%, 100% {
            color: #ffee00;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
            transform: scale(1);
        }
        10%, 20% {
            color: #FFFF99;
            text-shadow: 
                1px 1px 3px rgba(0, 0, 0, 0.6),
                0 0 10px rgba(255, 238, 0, 1),
                0 0 18px rgba(255, 238, 0, 0.8),
                0 0 25px rgba(255, 238, 0, 0.6);
            transform: scale(1.05); /* Smaller scale for mobile */
        }
    }

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

    .hero-text {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 20px;
    }
}

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

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

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

/* Animation enhancements */
.animate__fadeInUp {
    animation-duration: 1s;
}

.animate__delay-1s {
    animation-delay: 0.5s;
}

.animate__delay-2s {
    animation-delay: 1s;
}

.animate__delay-3s {
    animation-delay: 1.5s;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
    background-color: white;
    overflow: hidden;
}





.hero-subtitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.hero-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.about-btn {
    background-color: #ffc107;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-btn:hover {
    background-color: white;
    color: #ffc107;
    border: 2px solid #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-image-container {
    width: 45%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

/* Stats section */
.stats-section {
    background-color: #f9f9f9;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.stats-image-container {
    width: 100%;
    height: auto;
    position: relative;
}

.stats-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.stats-counters {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 50px;
    background-color: white;
    margin-top: -20px;
    position: relative;
    z-index: 10;
    box-shadow: 0 -20px 30px rgba(0,0,0,0.1);
}

/* Stats Section Styles */
.stats-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

/* Stats Image Container */
.stats-image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Stats Image & Video */
.stats-image,
.stats-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: none;
    filter: none;
}

/* Auto-playing video specific styles */
.stats-video {
    border: none;
    outline: none;
}

/* Placeholder Image */
.placeholder-image {
    width: 100%;
    height: 100vh;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

/* Video Overlay Styles (removed background overlay) */
.stats-image-container {
    position: relative;
    z-index: 1;
}

/* Loading indicator for video */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 3;
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-section {
        min-height: 100vh;
    }
    
    .stats-image-container {
        height: 100vh;
    }
    
    .placeholder-image {
        height: 100vh;
        font-size: 16px;
    }
    
    .video-loading {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        min-height: 100vh;
    }
    
    .stats-image-container {
        height: 100vh;
    }
    
    .placeholder-image {
        height: 100vh;
        font-size: 14px;
    }
}

/* Animation for smooth loading */
.stats-image-container {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.stat-item {
    text-align: center;
    padding: 20px;
    margin: 10px;
    width: 200px;
    opacity: 0;
    transition: all 0.3s ease;
}

.stat-item.animate__animated {
    opacity: 1;
}

.stat-icon {
    font-size: 40px;
    color: #ffc107;
    margin-bottom: 15px;
    height: 50px;
}

.stat-icon i {
    transition: transform 0.5s ease;
}

.stat-item:hover .stat-icon i {
    transform: scale(1.2) rotate(10deg);
}

.stat-counter {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plus {
    font-size: 30px;
    color: #ffc107;
    position: relative;
    top: -10px;
}

.stat-title {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: white;
    padding: 40px 80px 20px;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-img {
    width: 50px;
    height: 50px;
}

.logo-text h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 12px;
    color: #ccc;
}

.footer-description p {
    line-height: 1.6;
    color: #ccc;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #ffc107;
}

.footer-subscribe form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 350px;       /* limit form width */
  margin: 0 auto;         /* center if parent is wider */
  box-sizing: border-box;
}

.footer-subscribe input,
.subscribe-btn {
  width: 100%;            /* fill the form's width */
  box-sizing: border-box; /* include padding/border in that width */
}

.footer-subscribe input {
  padding: 12px 16px;     /* you can tweak padding */
  border: none;
  border-radius: 5px;
  background-color: #444;
  color: white;
}

.footer-subscribe input::placeholder {
  color: #ccc;
}

.subscribe-btn {
  background-color: #ffc107;
  color: #333;
  border: none;
  padding: 14px;          /* a bit taller button */
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #e6a800;
  transform: translateY(-2px);
}




.footer-blog .blog-post {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
}

.footer-blog .blog-post:last-child {
    border-bottom: none;
}

.footer-blog .blog-post h3 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.footer-blog .blog-post a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-blog .blog-post a:hover {
    color: #ffc107;
}

.post-date {
    font-size: 12px;
    color: #999;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffc107;
}

/* Placeholder image for missing images */
.placeholder-image {
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 16px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .top-bar, .navbar {
        padding: 10px 30px;
    }
    
    .logo-container {
        height: 55px;
    }
    
    .logo-image {
        max-height: 45px;
        max-width: 180px;
    }
    
    .hero {
        padding: 60px 40px;
        flex-direction: column;
    }
    
    .hero-image-container {
        width: 100%;
        max-width: 400px;
    }
    
    .stats-counters {
        padding: 20px 10px;
    }
    
    .stat-item {
        width: 160px;
        padding: 15px 10px;
    }
    
    .stat-counter {
        font-size: 36px;
    }
    
    .stat-title {
        font-size: 16px;
    }

    .footer {
        padding: 40px 40px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo-container {
        height: 50px;
    }
    
    .logo-image {
        max-height: 40px;
        max-width: 150px;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.open {
        max-height: 400px;
    }
    
    .nav-links > a, .dropdown > a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .nav-links > a::after, .dropdown > a::after {
        display: none;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin-left: 20px;
    }

    .dropdown-content a {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .navbar {
        padding: 0 20px;
        flex-wrap: wrap;
    }
    
    .quote-btn {
        margin: 10px 20px;
        order: 3;
        width: calc(100% - 40px);
        text-align: center;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .stats-counters {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 250px;
    }

    .footer {
        padding: 30px 20px 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-container {
        height: 45px;
    }
    
    .logo-image {
        max-height: 45px;
        max-width: 130px;
    }
    
    .navbar {
        padding: 0 15px;
    }
    
    .mobile-menu-btn {
        padding: 8px;
    }
}

/* Product logo section under contact box styles */
.prod-logo-section {
    margin-top: 15px;
    text-align: center;
    padding: 15px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.prod-logo-section:hover {
    background: transparent;
    transform: none;
}

.prod-logo-section .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.prod-logo-section .logo-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe) border-box;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1);
    object-fit: contain;
}

.prod-logo-section .logo-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
    filter: brightness(1.05);
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #f093fb, #f5576c, #4facfe, #00f2fe, #667eea, #764ba2) border-box;
}

.prod-logo-section .placeholder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    min-height: 60px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)) padding-box,
                linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe) border-box;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.prod-logo-section .placeholder-image:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.01);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    border: 3px solid transparent;
    background: linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.15)) padding-box,
                linear-gradient(45deg, #f093fb, #f5576c, #4facfe, #00f2fe, #667eea, #764ba2) border-box;
}

.prod-logo-section .company-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.prod-logo-section:hover .company-tagline {
    color: rgba(255, 255, 255, 1);
}

/* Animation classes */
.prod-logo-fade-in {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Add shining animation keyframes */
@keyframes shine {
    0% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe) border-box;
    }
    25% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(90deg, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe, #667eea) border-box;
    }
    50% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(135deg, #f093fb, #f5576c, #4facfe, #00f2fe, #667eea, #764ba2) border-box;
    }
    75% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(180deg, #f5576c, #4facfe, #00f2fe, #667eea, #764ba2, #f093fb) border-box;
    }
    100% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(225deg, #4facfe, #00f2fe, #667eea, #764ba2, #f093fb, #f5576c) border-box;
    }
}

/* Auto-adjustable shiny border class */
.prod-logo-section .logo-image.shine-border {
    animation: shine 3s ease-in-out infinite;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .prod-logo-section {
        margin-top: 12px;
        padding: 12px 0;
    }

    .prod-logo-section .logo-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .prod-logo-section .placeholder-image {
        width: 100%;
        height: auto;
        min-height: 50px;
        font-size: 10px;
        padding: 12px;
    }

    .prod-logo-section .company-tagline {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .prod-logo-section {
        padding: 10px 0;
        margin-top: 10px;
    }

    .prod-logo-section .logo-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .prod-logo-section .placeholder-image {
        width: 100%;
        height: auto;
        min-height: 45px;
        font-size: 9px;
        padding: 10px;
    }

    .prod-logo-section .company-tagline {
        font-size: 0.75rem;
        margin-top: 6px;
    }
}

/* Dark theme support (optional) */
@media (prefers-color-scheme: dark) {
    .prod-logo-section {
        background: transparent;
    }
    
    .prod-logo-section:hover {
        background: rgba(255, 255, 255, 0.05);
    }
}