/* Remove tap highlight on mobile */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

a, button, input, select, textarea {
    -webkit-tap-highlight-color: transparent;
}

.modern-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
    /* min-height: 100vh; */
    /* padding: 1rem 0; */
    padding-top: 20px; /* Space for fixed navbar */
}

.top-navbar {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-link:focus, .nav-link:hover {
    color:#ffd700;
}

/* Modern Cards */
.modern-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: unset;
    transition: transform 0.3s
ease, box-shadow 0.3s
ease;}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #1f2438, #764ba2);
    border-radius: 2px;
}

/* Profile Hero Section */
.profile-hero {
    background: linear-gradient(135deg, #1a5443 46%, #144207 100%);

    border-radius: 1px;
    padding: 4rem 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

/* Profile Text Styles */
.profile-subtitle {
    font-size: 1.5rem;
}

.profile-name-from {
    font-size: 1.5rem;
    font-weight: 600;
}

.profile-maghfor {
    font-size: 1.8rem;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
}

/* Message Card Styles */
.message-icon {
    font-size: 4rem;
    color: white;
}

.message-title {
    color: white;
    font-weight: 700;
}

.message-text {
    color: white;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Quran Card Styles */
.quran-verse {
    color: #1f2438;
    font-weight: 700;
    font-size: 1.8rem;
}

.quran-request {
    font-size: 1.3rem;
    color: #4a5568;
}

.quran-request strong {
    color: #1f2438;
}

.audio-player {
    border-radius: 50px;
}

/* Dua Intro Section */
.dua-intro-card {
    background: linear-gradient(135deg, #465e0d 0%, #14503e 100%);

    color: white;
}

.dua-intro-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.dua-intro-text {
    font-size: 1.3rem;
    font-weight: 600;
}

.dua-intro-highlight {
    color: #37f103 ;
    background: linear-gradient(135deg, #465e0d 0%, #14503e 100%);
}

/* Dua Card Icons and Text */
.dua-icon {
    font-size: 2.5rem;
}

.dua-text {
    font-size: 1.15rem;
    line-height: 2;
}

.dua-name-highlight {
    color: #37ff00 ;
}

/* Section Cards */
.section-card-gradient {
    background: linear-gradient(135deg, #1f2438 0%, #144207 100%);
   background:linear-gradient(135deg, #465e0d 0%, #14503e 100%);;
    color: white;
}

.section-card-blue {
    background: linear-gradient(135deg, #144207  0%, #8fd3f4 100%);
}

.section-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.section-icon-medium {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
}

.section-icon-regular {
    font-size: 3rem;
    color: #1f2438;
    margin-bottom: 1rem;
}

.section-title-large {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.section-title-white {
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.section-text-large {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.section-text-medium {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

.section-text-bold {
    font-size: 1.2rem;
    font-weight: 600;
}

.section-name-highlight {
    font-size: 2rem;
    font-weight: 800;
    color: #37f103 ;
    margin: 1.5rem 0;
}

/* Iframe Container */
.iframe-container {
    padding: 0;
    overflow: hidden;
}

.iframe-header {
    background: linear-gradient(135deg, #1f2438 0%, #144207 100%);
    color: white;
}

.iframe-header i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.iframe-header h4 {
    font-weight: 700;
    margin: 0;
}

.iframe-content {
    border: none;
}

/* Buttons */
.btn-custom {
    font-weight: 700;
    border-radius: 12px;
    padding: 1rem 2rem;
}

.profile-img-wrapper {
    position: relative;
    display: inline-block;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    position: relative;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #144207 , #144207 , #1f2438, #144207 ) border-box;
    animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
    0% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(0deg, #144207 , #144207 , #1f2438, #144207 ) border-box;
    }
    25% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(90deg, #144207 , #144207 , #1f2438, #144207 ) border-box;
    }
    50% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(180deg, #144207 , #144207 , #1f2438, #144207 ) border-box;
    }
    75% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(270deg, #144207 , #144207 , #1f2438, #144207 ) border-box;
    }
    100% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(360deg, #144207 , #144207 , #1f2438, #144207 ) border-box;
    }
}

/* Golden Crown Above Image */
.golden-crown {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 2.5rem;
    color: #ffd700;

    animation: crownFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

@keyframes crownFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Golden Stars Around Image */
.golden-stars {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    pointer-events: none;
    z-index: 5;
}

.golden-stars i {
    position: absolute;
    color: #ffd700;
    font-size: 1.5rem;

    animation: starTwinkle 2s ease-in-out infinite;
}

.golden-stars .star-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.golden-stars .star-2 {
    top: 50%;
    right: 5%;
    animation-delay: 0.6s;
}

.golden-stars .star-3 {
    top: 50%;
    left: 5%;
    animation-delay: 1.2s;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Lifetime Profile Image */
.profile-img-lifetime {
    border-width: 6px;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #ffd700, #ffed4e, #ffa500, #ffd700) border-box;
    animation: rotateBorderGold 3s linear infinite;

}

/* Lifetime Wrapper Glow Effect */
.lifetime-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border-radius: 50%;
    /* background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%); */
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes rotateBorderGold {
    0% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(0deg, #ffd700, #ffed4e, #ffa500, #ffd700) border-box;
    }
    25% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(90deg, #ffd700, #ffed4e, #ffa500, #ffd700) border-box;
    }
    50% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(180deg, #ffd700, #ffed4e, #ffa500, #ffd700) border-box;
    }
    75% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(270deg, #ffd700, #ffed4e, #ffa500, #ffd700) border-box;
    }
    100% {
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(360deg, #ffd700, #ffed4e, #ffa500, #ffd700) border-box;
    }
}

.stats-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem;
    font-weight: 600;
}

/* Message Card */
.message-card {
    background: linear-gradient(135deg, #144207 0%, #076b1fc7 100%);
    border-radius: 20px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(132, 250, 176, 0.3);
}

/* Quran Audio Section */
.quran-audio-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Duas Cards */
.dua-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.dua-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dua-card i {
    color: #1f2438;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f2438 0%, #144207 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

/* Action Buttons */
.action-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1f2438 0%, #144207 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Tasbih Buttons */
.tasbih-btn {
    background: linear-gradient(135deg, #1f2438 0%, #144207 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1.5rem;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.tasbih-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Islamic Navbar - Same as Home Page */
.islamic-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(15, 76, 58, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.islamic-navbar.scrolled {
    background: rgba(15, 76, 58, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.nav-logo {
    display: block;
    height: 50px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    align-items: center;
}

.nav-link {
    display: block;
    padding: 8px 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #144207 ;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff ;
    background: rgba(232, 199, 8, 0.639);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link-cta {
    background: linear-gradient(135deg, #d4af37 0%, #144207  100%);
    color: #0f4c3a !important;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.nav-link-cta:hover {
    background: linear-gradient(135deg, #144207  0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #0f4c3a !important;
}

.nav-link-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: bounceWhatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
    font-size: 2rem;
}

.whatsapp-float::after {
    content: 'تواصل معنا';
    position: absolute;
    right: 70px;
    background: white;
    color: #2d3748;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: ripple 2s infinite;
    z-index: -1;
}

@keyframes bounceWhatsapp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Install App Button */
.install-app-btn {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1f2438 0%, #144207 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
    animation: pulse 2s infinite;
}

.install-app-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6);
}

.install-app-btn i {
    color: white;
    font-size: 1.8rem;
}

.install-app-btn.show {
    display: flex;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(102, 126, 234, 0.8);
    }
}

/* Install Prompt */
.install-prompt {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
    max-width: 280px;
    animation: slideUp 0.3s ease;
}

.install-prompt.show {
    display: block;
}

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

.install-prompt h4 {
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.install-prompt p {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.install-prompt-buttons {
    display: flex;
    gap: 0.5rem;
}

.install-prompt-buttons button {
    flex: 1;
    padding: 0.7rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.install-btn-yes {
    background: linear-gradient(135deg, #1f2438 0%, #144207 100%);
    color: white;
}

.install-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.install-btn-no {
    background: #e2e8f0;
    color: #4a5568;
}

.install-btn-no:hover {
    background: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    /* Mobile Menu Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        animation: fadeIn 0.3s ease;
    }

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

    /* Nav Toggle Button */
    .nav-toggle {
        display: flex;
        z-index: 1002;
    }

    /* Nav Menu Mobile */
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: rgba(15, 76, 58, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 10px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        z-index: 999;
    }

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

    .nav-menu li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(8) { transition-delay: 0.45s; }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .nav-link-cta {
        margin-top: 10px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float i {
        font-size: 1.7rem;
    }

    .whatsapp-float::after {
        display: none;
    }

    /* Install Button */
    .install-app-btn {
        right: 15px;
        bottom: 85px;
        width: 55px;
        height: 55px;
    }

    .install-prompt {
        right: 15px;
        left: 15px;
        max-width: none;
        padding: 0.8rem;
    }

    /* تقليل المسافات على الموبايل */
    .modern-page {
        padding: 0.5rem 0;
        padding-top: 65px;
    }

    .modern-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

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

    .profile-hero {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .dua-card,
    .message-card,
    .feature-item {
        padding: 1rem;
    }
}

/* Flying Birds Animation */
.bird {
    background-image: url(../imgs/bird-cells-new.svg);
    background-size: auto 100%;
    width: 88px;
    height: 125px;
    will-change: background-position;
    animation-name: fly-cycle;
    animation-timing-function: steps(10);
    animation-iteration-count: infinite;
}

.bird--one {
    animation-duration: 1s;
    animation-delay: -0.5s;
}

.bird--two {
    animation-duration: 0.9s;
    animation-delay: -0.75s;
}

.bird--three {
    animation-duration: 1.25s;
    animation-delay: -0.25s;
}

.bird--four {
    animation-duration: 1.1s;
    animation-delay: -0.5s;
}

.bird-container {
    position: absolute;
    top: 20%;
    left: -10%;
    transform: scale(0) translateX(-10vw);
    will-change: transform;
    animation-name: fly-right-one;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.bird-container--one {
    animation-duration: 15s;
    animation-delay: 0;
}

.bird-container--two {
    animation-duration: 16s;
    animation-delay: 1s;
}

.bird-container--three {
    animation-duration: 14.6s;
    animation-delay: 9.5s;
}

.bird-container--four {
    animation-duration: 16s;
    animation-delay: 10.25s;
}

@keyframes fly-cycle {
    100% {
        background-position: -900px 0;
    }
}

@keyframes fly-right-one {
    0% {
        transform: scale(0.3) translateX(-10vw);
    }
    10% {
        transform: translateY(2vh) translateX(10vw) scale(0.4);
    }
    20% {
        transform: translateY(0vh) translateX(30vw) scale(0.5);
    }
    30% {
        transform: translateY(4vh) translateX(50vw) scale(0.6);
    }
    40% {
        transform: translateY(2vh) translateX(70vw) scale(0.6);
    }
    50% {
        transform: translateY(0vh) translateX(90vw) scale(0.6);
    }
    60% {
        transform: translateY(0vh) translateX(110vw) scale(0.6);
    }
    100% {
        transform: translateY(0vh) translateX(110vw) scale(0.6);
    }
}
