/* Main Content */
.container {
    display: flex;
    padding: 20px;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.main-content {
    flex: 0 0 67%;
    border: none;
    border-radius: 15px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}
.scroll-animate {
    transition: transform 0.5s ease-in-out 0.3s;
}

.main-content:hover .scroll-animate {
    transform: translateY(-20px);
}

.main-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.main-content h1 {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.main-content p {
    font-size: 1.3rem;
    color: #1e40af;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card {
    border-left: 3px solid #3b82f6;
    border-radius: 15px;
    padding: 2rem;
    background: white;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.2), transparent);
    transition: 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59,130,246,0.3);
    border-color: #1e3a8a;
}

.card h2 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3b82f6;
}

.card h3 {
    font-size: 1.3rem;
    color: #1e40af;
    margin: 1rem 0;
}

.card p {
    color: #475569;
    line-height: 1.0;
}

.updates-scroll {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.updates-scroll::-webkit-scrollbar {
    width: 8px;
}

.updates-scroll::-webkit-scrollbar-track {
    background: #e0e7ff;
    border-radius: 10px;
}

.updates-scroll::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 10px;
}

.update-item {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f0f9ff;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.ad-section {
    background: linear-gradient(135deg, #5f7ed3 0%, #194790 100%);
    color: white;
    padding: 0.5rem;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.ad-section:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(59,130,246,0.5);
}




/* Responsive */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }
    
    .main-content {
        flex: 1;
        min-height: 400px;
    }

    .sidebar {
        flex-direction: row;
    }

    .card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .sidebar {
        flex-direction: column;
    }

    .main-content h1 {
        font-size: 2rem;
    }

    .main-content p {
        font-size: 1.1rem;
    }
}

/* Main Container */
.container-1 {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    animation: fadeInUp 1s ease-out;
}

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


.ad-card {
    border: 3px solid #3b82f6;
    border-radius: 15px;
    padding: 1.5rem;
    background: white;
    box-shadow: 0 5px 15px rgba(59,130,246,0.2);
    transition: all 0.3s;
    cursor: pointer;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.ad-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(59,130,246,0.4);
    border-color: #1e3a8a;
}

.ad-card h2 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3b82f6;
}

.ad-card h3 {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.ad-card p {
    color: #475569;
    line-height: 1.6;
}

.psd-preview {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.psd-preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.psd-preview:hover img {
    transform: scale(1.05);
}

.download-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(59,130,246,0.3);
}

.download-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59,130,246,0.5);
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}


/* Right Sidebar */
.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: slideInRight 0.8s ease-out;
}

.left, .center, .right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.box {
    border: 3px solid #3b82f6;
    border-radius: 12px;
    padding: 1rem;
    background: #ffffff;
}

.update-box {
    background: #f0f9ff;
    border: 2px dashed #3b82f6;
    border-radius: 12px;
    min-height: 160px;
    padding: 1rem;
}

.yt-link img {
    width: 160px;
    max-width: 100%;
    height: auto;
    display: block;
}

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

.service-card {
    border: 3px solid #3b82f6;
    border-radius: 15px;
    padding: 1.5rem;
    background: white;
    box-shadow: 0 5px 15px rgba(59,130,246,0.2);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(59,130,246,0.4);
}

.service-card h2 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3b82f6;
}

.booking-info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.booking-info h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.price {
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: bold;
}

.booking-info p {
    color: #475569;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* Banner */
.banner {
    background: linear-gradient(90deg, #1e3a8a, #3b82f6, #60a5fa, #3b82f6, #1e3a8a);
    background-size: 100% 100%;
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-weight: bold;
    animation: bannerSlide 8s linear infinite;
    margin-top: 1rem;
    border-top: 5px solid #1e40af;
    border-bottom: 5px solid #1e40af;
}

@keyframes bannerSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Scroll Animations */
.scroll-animate {
    /* opacity: 0; */
    transform: translateY(25px);
    transition: all 0.8s ease-out;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .center-text { 
        font-size: 2.5rem; 
        white-space: normal;  /* ADDED */
    }
    .container-1 {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .center-text { 
        font-size: 1.8rem; 
        white-space: normal;  /* ADDED */
    }
    .container-1 {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    .banner {
        padding: 0.3rem;
        font-size: 1rem;
        position: relative;
        z-index: 10;
        margin-bottom: 80px;
    }
}



@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }
}