:root {
    --primary-color: #2196f3;
    --secondary-color: #2196f3;
    --text-color: #333;
    --bg-color: #071928;
    --menu-bg: #fff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    display: flex;
    min-height: 100vh;
}

/* Side Menu Styles */
.side-menu {
    width: 280px;
    background-color: var(--menu-bg);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
}

.logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.logo span {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

nav ul {
    list-style: none;
}

nav ul li {
    margin-bottom: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

nav ul li a i {
    margin-right: 1rem;
}

nav ul li a.active,
nav ul li a:hover {
    background-color: var(--primary-color);
    color: white;
}

.menu-social {
    padding: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-icon {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-2px);
}

.social-icon:hover .fa-facebook {
    background: #1877f2;
}

.social-icon:hover .fa-twitter {
    background: #1da1f2;
}

.social-icon:hover .fa-instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon:hover .fa-youtube {
    background: #ff0000;
}

.social-icon:hover .fa-linkedin {
    background: #0077b5;
}

.social-icon:hover .fa-spotify {
    background: #1db954;
}

.social-icon:hover .fa-telegram {
    background: #0088cc;
}

.social-icon:hover {
    background: currentColor;
}

.social-icon[title*="Facebook"]:hover {
    color: #1877f2;
}

.social-icon[title*="Twitter"]:hover {
    color: #1da1f2;
}

.social-icon[title*="Instagram"]:hover {
    color: #e1306c;
}

.social-icon[title*="YouTube"]:hover {
    color: #ff0000;
}

.social-icon[title*="LinkedIn"]:hover {
    color: #0077b5;
}

.social-icon[title*="Spotify"]:hover {
    color: #1db954;
}

.social-icon[title*="Telegram"]:hover {
    color: #0088cc;
}

/* Main Content Styles */
.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 2rem;
}

/* Slider Styles */
.slider {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
    display: none;
    height: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .slider {
        margin-bottom: 1rem;
        width: 100%;
        padding-bottom: 75%; /* 4:3 aspect ratio for mobile */
        position: relative;
        height: auto;
        overflow: hidden;
    }

    .slides {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .slide {
        height: 100%;
        width: 100%;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

@media screen and (max-width: 480px) {
    .slider-btn {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.8);
    }
    
    .slider-btn i {
        font-size: 1.2rem;
    }
    
    .prev {
        left: 0.5rem;
    }
    
    .next {
        right: 0.5rem;
    }
}

/* Player Controls Styles */
.player-controls {
    background: rgb(255, 255, 2);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.now-playing {
    text-align: center;
    margin-bottom: 1rem;
}

.now-playing h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.now-playing h3.odia-text {
    color: #800080 !important; /* Purple color */
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

.track-info {
    color: var(--text-color);
}

.timer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    width: 30%;
    height: 100%;
    background: var(--primary-color);
}

.controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.control-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.control-btn:hover {
    color: var(--primary-color);
}

.play-pause {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.play-pause:hover {
    transform: scale(1.1);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-slider {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #ddd;
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-ms-thumb {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

/* Shutdown Timer Styles */
.shutdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 0.5rem;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 8px;
}

.shutdown-timer label {
    color: var(--text-color);
    font-weight: 500;
}

.shutdown-timer select {
    padding: 0.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    background: white;
    color: var(--text-color);
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.shutdown-timer select:hover,
.shutdown-timer select:focus {
    border-color: var(--secondary-color);
}

.shutdown-countdown {
    font-weight: 500;
    color: var(--primary-color);
    min-width: 80px;
    text-align: center;
}

/* Equalizer Styles */
.equalizer-container {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.equalizer-container.active {
    opacity: 1;
}

.equalizer {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 100%;
    padding: 0 10px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 20px;
}

.equalizer .bar {
    width: 4px;
    height: 3px;
    background: linear-gradient(to top, #2196f3, #64b5f6);
    border-radius: 2px;
    animation: equalize 1s infinite;
    transform-origin: bottom;
}

.equalizer .bar:nth-child(1) { animation-delay: -1.1s; }
.equalizer .bar:nth-child(2) { animation-delay: -0.9s; }
.equalizer .bar:nth-child(3) { animation-delay: -0.7s; }
.equalizer .bar:nth-child(4) { animation-delay: -0.5s; }
.equalizer .bar:nth-child(5) { animation-delay: -0.3s; }
.equalizer .bar:nth-child(6) { animation-delay: -0.1s; }
.equalizer .bar:nth-child(7) { animation-delay: -0.2s; }
.equalizer .bar:nth-child(8) { animation-delay: -0.4s; }

@keyframes equalize {
    0% {
        height: 3px;
    }
    50% {
        height: 20px;
    }
    100% {
        height: 3px;
    }
}

/* Add rainbow gradient effect */
@property --gradient-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.equalizer .bar {
    background: linear-gradient(
        var(--gradient-angle),
        #ff0000,
        #ff7f00,
        #ffff00,
        #00ff00,
        #0000ff,
        #4b0082,
        #8b00ff
    );
    animation: 
        equalize 1s infinite,
        gradient 10s linear infinite;
}

@keyframes gradient {
    0% {
        --gradient-angle: 0deg;
    }
    100% {
        --gradient-angle: 360deg;
    }
}

/* When audio is paused */
.equalizer.paused .bar {
    animation-play-state: paused;
    height: 3px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .side-menu {
        width: 100%;
        height: auto;
        position: relative;
        padding: 1rem;
    }

    .logo {
        margin-bottom: 1rem;
    }

    nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    nav ul li {
        margin-bottom: 0.5rem;
    }

    nav ul li a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .social-links {
        margin-top: 1rem;
    }

    .main-content {
        margin-left: 0;
        padding: 1rem;
    }

    .slider {
        margin-bottom: 1rem;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 aspect ratio for better visibility */
        position: relative;
        height: auto;
        overflow: hidden;
    }

    .slides {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .slide {
        height: 100%;
        width: 100%;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Changed from cover to contain */
        background-color: #f5f5f5; /* Light background for letterboxing */
    }

    .player-controls {
        padding: 1rem;
    }

    .controls {
        gap: 1rem;
    }

    .control-btn {
        font-size: 1.2rem;
    }

    .play-pause {
        width: 40px;
        height: 40px;
    }

    .volume-control {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .volume-slider {
        width: 60px;
    }

    .shutdown-timer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .shutdown-timer select {
        width: 100%;
        max-width: 200px;
    }

    /* Equalizer responsive adjustments */
    .equalizer-container {
        height: 30px;
        margin: 0.5rem 0;
    }

    .equalizer {
        gap: 2px;
        padding: 0 8px;
    }

    .equalizer .bar {
        width: 3px;
    }

    @keyframes equalize {
        0% {
            height: 2px;
        }
        50% {
            height: 15px;
        }
        100% {
            height: 2px;
        }
    }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
    .side-menu {
        padding: 0.8rem;
    }

    nav ul li a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
    }

    .controls {
        gap: 0.8rem;
    }

    .control-btn {
        font-size: 1rem;
    }

    .play-pause {
        width: 35px;
        height: 35px;
    }

    .volume-slider {
        width: 50px;
    }

    .now-playing h3 {
        font-size: 1rem;
    }

    .track-info {
        font-size: 0.9rem;
    }

    .timer {
        font-size: 0.8rem;
    }

    .shutdown-timer label {
        font-size: 0.9rem;
    }

    .shutdown-timer select {
        font-size: 0.9rem;
        padding: 0.4rem;
    }

    /* Adjust equalizer for very small screens */
    .equalizer-container {
        height: 25px;
    }

    .equalizer {
        gap: 1px;
    }

    .equalizer .bar {
        width: 2px;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .side-menu {
        height: -webkit-fill-available;
    }
}

/* Ensure touch targets are large enough */
@media (hover: none) and (pointer: coarse) {
    nav ul li a,
    .control-btn,
    .slider-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .volume-slider {
        height: 44px;
        padding: 0 10px;
    }
}

/* Mobile Header and Menu Styles */
.mobile-header {
    display: none;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: var(--secondary-color);
}

@media screen and (max-width: 768px) {
    .mobile-header {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        bottom: 0;
        width: 250px;
        background-color: white;
        padding: 1rem;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .side-menu {
        padding: 0;
        box-shadow: none;
    }

    .logo {
        margin: 0;
        text-align: left;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 1rem;
    }

    nav ul li {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    nav ul li a {
        width: 100%;
        justify-content: flex-start;
    }

    .social-links {
        position: absolute;
        bottom: 1rem;
        left: 0;
        right: 0;
    }

    /* Overlay when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }
}

/* Audio Error Styles */
.audio-error {
    background-color: #fff3f3;
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    color: #d32f2f;
    display: none;
}

.audio-error p {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.audio-error ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    font-size: 0.9rem;
}

.audio-error ul li {
    margin-bottom: 0.3rem;
}

/* Show error when audio fails */
audio:not([src]) + .audio-error,
audio.error + .audio-error {
    display: block;
}

/* Shows Section Styles */
.shows-section {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 2rem;
}

.section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.show-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.show-card:hover {
    transform: translateY(-5px);
}

.show-image {
    position: relative;
    height: 200px;
}

.show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-time {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
}

.show-time i {
    margin-right: 0.5rem;
}

.show-content {
    padding: 1.5rem;
}

.show-content h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.show-host {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.show-category {
    display: inline-block;
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.show-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive styles for shows section */
@media screen and (max-width: 768px) {
    .shows-section {
        padding: 1rem;
        margin-top: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

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

    .show-card {
        max-width: 100%;
    }

    .show-image {
        height: 180px;
    }
}

/* Hover effects for show cards */
.show-card {
    position: relative;
    overflow: hidden;
}

.show-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(33, 150, 243, 0.1),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.show-card:hover::after {
    opacity: 1;
}

/* About & Contact Section Styles */
.about-contact-section {
    padding: 2rem;
    margin-top: 2rem;
}

.about-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    padding-top: 0.5rem;
}

.contact-details h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: #666;
    line-height: 1.5;
}

/* Responsive styles for about and contact sections */
@media screen and (max-width: 768px) {
    .about-contact-section {
        padding: 1rem;
    }

    .about-section,
    .contact-section {
        padding: 1.5rem;
    }

    .about-content p {
        font-size: 1rem;
    }

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

/* Social Media Section Styles */
.social-media-section {
    padding: 2rem 0;
    background: var(--bg-color);
    margin-bottom: 2rem;
}

.social-media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.social-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-card .social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    color: white;
}

.social-card .social-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.social-card .social-handle {
    font-size: 0.9rem;
    color: #666;
}

/* Social Media Brand Colors and Hover Effects */
.social-card.facebook .social-icon {
    background: #1877f2;
}

.social-card.instagram .social-icon {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-card.youtube .social-icon {
    background: #ff0000;
}

.social-card.twitter .social-icon {
    background: #1da1f2;
}

.social-card.spotify .social-icon {
    background: #1db954;
}

.social-card.telegram .social-icon {
    background: #0088cc;
}

/* Hover Effects */
.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .social-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .social-card {
        padding: 1.5rem 1rem;
    }

    .social-card .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .social-media-grid {
        grid-template-columns: 1fr;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

/* Adjust for mobile */
@media screen and (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

.odia-text {
    color: #800080; /* Purple color */
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

/* Developer Button Styles */
.developer-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

.developer-button i {
    font-size: 1.2rem;
}

.developer-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .developer-button {
        bottom: 80px;
    }
}
