/* index.php page css start  */

.hero {
    position: relative;
    overflow: hidden;
}

#crystal-planet-container canvas {
    pointer-events: none;
}

body {
    background-color: #121212;
    color: #ffffff;
}

.hero-section {
    padding: 2rem 0;
}

.feature-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: #1E1E1E;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.feature-tag {
    background-color: #008B8B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.feature-title {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: block;
}

.feature-title:hover {
    color: #00CED1;
}

.feature-meta {
    color: #888;
    font-size: 0.9rem;
}

/* Don't Miss Section Styles */
.dont-miss-section {
    background-color: #121212;
    color: #ffffff;
    padding: 2rem 0;
}

.section-header {
    background-color: #008B8B;
    color: white;
    padding: 0.5rem 1rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: bold;
    border-radius: 4px;
}

.article-card {
    background-color: #1E1E1E;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-info {
    padding: 1rem;
}

.article-date {
    color: #808080;
    font-size: 0.9rem;
}

.article-title {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0.5rem 0;
    text-decoration: none;
}

.article-title:hover {
    color: #008B8B;
}

.small-article {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    background-color: #1E1E1E;
}

.small-article img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.small-article-info {
    flex: 1;
}

.status {
    padding: 50px 20px;
    border-top: 1px solid #eee;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-content h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    color: #dddddd;
}

.stat-content p {
    margin: 0;
    font-size: 14px;
    color: #dddddd;
    line-height: 1.4;
}

.hire-section {
    display: flex;
    justify-content: center;
}

.hire-button {
    background-color: transparent;
    border: 2px solid #28e98c;
    color: #28e98c;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.hire-button:hover {
    background-color: #28e98c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

/* Mobile styles */
@media (min-width: 768px) {
    .status {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .stats-container {
        margin-bottom: 0;
    }

    .hire-section {
        margin-left: auto;
    }
}

/* index page css end  */

/* about page css start  */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.animated-text {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.7rem, 4vw, 3.2rem);
    color: #f8f9fa;
    text-align: center;
    white-space: nowrap;
}

.animated-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

/* Staggered animation delays for each letter */
.animated-text span:nth-child(1) {
    animation-delay: 0.1s;
}

.animated-text span:nth-child(2) {
    animation-delay: 0.15s;
}

.animated-text span:nth-child(3) {
    animation-delay: 0.2s;
}

.animated-text span:nth-child(4) {
    animation-delay: 0.25s;
}

.animated-text span:nth-child(5) {
    animation-delay: 0.3s;
}

.animated-text span:nth-child(6) {
    animation-delay: 0.35s;
}

.animated-text span:nth-child(7) {
    animation-delay: 0.4s;
}

.animated-text span:nth-child(8) {
    animation-delay: 0.45s;
}

.animated-text span:nth-child(9) {
    animation-delay: 0.5s;
}

.animated-text span:nth-child(10) {
    animation-delay: 0.55s;
}

.animated-text span:nth-child(11) {
    animation-delay: 0.6s;
}

.animated-text span:nth-child(12) {
    animation-delay: 0.65s;
}

.animated-text span:nth-child(13) {
    animation-delay: 0.7s;
}

.animated-text span:nth-child(14) {
    animation-delay: 0.75s;
}

.animated-text span:nth-child(15) {
    animation-delay: 0.8s;
}

.animated-text span:nth-child(16) {
    animation-delay: 0.85s;
}


.animated-text span:nth-child(17) {
    animation-delay: 0.9s;
}

.animated-text span:nth-child(18) {
    animation-delay: 0.95s;
}

.animated-text span:nth-child(19) {
    animation-delay: 1s;
}

.animated-text span:nth-child(20) {
    animation-delay: 1.05s;
}

.animated-text span:nth-child(21) {
    animation-delay: 1.1s;
}

.animated-text span:nth-child(22) {
    animation-delay: 1.15s;
}

.animated-text span:nth-child(23) {
    animation-delay: 1.2s;
}
.animated-text span:nth-child(24) {
    animation-delay: 1.25s;
}

.animated-text span:nth-child(25) {
    animation-delay: 1.3s;
}

.hire-button {
    background-color: transparent;
    border: 2px solid #28e98c;
    color: #28e98c;
    padding: 12px 35px;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards 1.5s;
}

.hire-button:hover {
    background-color: #28e98c;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(40, 233, 140, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Hover effect for letters */
.animated-text span:hover {
    color: #28e98c;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .animated-text {
        font-size: clamp(1.3rem, 6vw, 2rem);
    }

    .text-container {
        padding: 1rem;
    }
}
  /* about page css end  */