/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* ===== Hero Section ===== */
.hero {

    padding: 60px 20px;
}

.hero .container {
    max-width: 1300px;
}

/* Hero Card - Side by Side on Desktop */
.hero-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
    display: flex;
    height: 600px;
    margin-bottom: 30px;
}

/* Left Side - Image Section */
.hero-image-section {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf6 100%);
}

.hero-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; 
}

.hero-card:hover .hero-cover-img {
    transform: scale(1.08);
}

.hero-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #f093fb, #bb57f5);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.hero-discount-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4444;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Right Side - Content Section */
.hero-content-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

/* Scrollbar Styling */
.hero-content-section::-webkit-scrollbar {
    width: 6px;
}

.hero-content-section::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.hero-content-section::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
}

.note-category {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
}

.hero-content-section h1 {
    font-size: 30px;
    color: #1a1a2e;
    margin-bottom: 5px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f5f7fa;
    border-radius: 12px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #ffd700;
    font-size: 16px;
}

.students-icon {
    font-size: 18px;
}

.stat-text {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

/* Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f5f7fa;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateX(5px);
}

.feature-icon {
    font-size: 20px;
}

/* Pricing */
.hero-pricing {

    background: linear-gradient(135deg, #667eea, #e666eb);
    padding-bottom: 10px;
    border-radius: 15px;
    margin-bottom: 10px;
    text-align: center;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0px;
}

.hero-current-price {
    font-size: 32px;
    font-weight: bold;
    color: white;
}

.hero-original-price {
    font-size: 24px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
}

.hero-urgency {
    color: white;
    font-weight: 700;
    font-size: 14px;
    animation: pulse 2s infinite;
    margin: 0;
}

/* Buy Button */
.hero-buy-btn {
    width: 100%;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    animation: glow 2s infinite, buyShake 3s infinite ease-in-out;
}



/* Unique Buy Button Shake Animation */
@keyframes buyShake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    5% { transform: translateX(-3px) rotate(-2deg); }
    10% { transform: translateX(3px) rotate(2deg); }
    15% { transform: translateX(-4px) rotate(-1deg); }
    20% { transform: translateX(4px) rotate(1deg); }
    25% { transform: translateX(-3px) rotate(0deg); }
    30% { transform: translateX(3px) rotate(0deg); }
    35%, 100% { transform: translateX(0) rotate(0deg); }
}


.hero-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(17, 153, 142, 0.5);
}

/* Guarantees */
.hero-guarantees {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    border: 2px dashed #667eea;
}

.guarantee-item {
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

/* What's Included Card - Below Main Card */
.hero-includes-card {
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-includes-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
    text-align: center;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.include-item {
    font-size: 15px;
    color: #555;
    font-weight: 500;
    padding: 12px;
    background: #f5f7fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.include-item:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-3px);
}

/* ===== Tablet Responsive (768px - 1024px) ===== */
@media (max-width: 1024px) {
    .hero-card {
        height: auto;
        min-height: 550px;
    }

    .hero-content-section {
        padding: 30px;
    }

    .hero-content-section h1 {
        font-size: 28px;
    }

    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Mobile Responsive (Below 768px) ===== */
@media (max-width: 768px) {
    .hero {
        padding: 40px 1px;
    }

    /* Stack Image on Top, Content Below */
    .hero-card {
        flex-direction: column;
        height: auto;
    }

    .hero-image-section {
        flex: none;
        height: 400px;
        width: 100%;
    }

    .hero-content-section {
        padding: 30px 20px;
        overflow-y: visible;
    }

    .hero-content-section h1 {
        font-size: 26px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-current-price {
        font-size: 20px;
    }

    .hero-original-price {
        font-size: 20px;
    }

    .hero-buy-btn {
        font-size: 16px;
        
    }

    .hero-guarantees {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .includes-grid {
        grid-template-columns: 1fr;
    }

    .hero-includes-card {
        padding: 25px 20px;
    }

    .hero-badge,
    .hero-discount-tag {
        padding: 8px 16px;
        font-size: 12px;
    }

}

/* ===== Small Mobile (Below 480px) ===== */
@media (max-width: 480px) {
    .hero-image-section {
        height: 330px;
    }

    .hero-content-section h1 {
        font-size: 22px;
    }

    .hero-description {
        font-size: 14px;
    }

    .price-display {
        flex-direction: column;
        gap: 5px;
    }

    .hero-current-price {
        font-size: 25px;
    }

    .hero-original-price {
        font-size: 16px;
    }

    .hero-features {
        gap: 8px;
    }

    .hero-feature {
        padding: 10px;
        font-size: 13px;
    }

    .stat-text {
        font-size: 13px;
    }

    .guarantee-item {
        font-size: 12px;
    }
}


/* ===== Topics Section ===== */
.topics {
    padding: 20px 20px;
    background: #f5f7fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}


/* Grid - 3 columns on desktop, responsive */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Smaller, Compact Cards */
.topic-card {
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    animation: fadeInUp 0.6s ease both;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.topic-card:nth-child(1) { animation-delay: 0.05s; }
.topic-card:nth-child(2) { animation-delay: 0.1s; }
.topic-card:nth-child(3) { animation-delay: 0.15s; }
.topic-card:nth-child(4) { animation-delay: 0.2s; }
.topic-card:nth-child(5) { animation-delay: 0.25s; }
.topic-card:nth-child(6) { animation-delay: 0.3s; }
.topic-card:nth-child(7) { animation-delay: 0.35s; }
.topic-card:nth-child(8) { animation-delay: 0.4s; }
.topic-card:nth-child(9) { animation-delay: 0.45s; }
.topic-card:nth-child(10) { animation-delay: 0.5s; }
.topic-card:nth-child(11) { animation-delay: 0.55s; }
.topic-card:nth-child(12) { animation-delay: 0.6s; }

.topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

/* Topic Header */
.topic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.topic-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.topic-icon {
    font-size: 36px;
}

/* Topic Title & Description */
.topic-card h3 {
    font-size: 19px;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.topic-card > p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Topic List - New Addition */
.topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topic-list li {
    font-size: 15px;
    color: #555;
    padding: 3px 0;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.topic-list li::before {
    content: '';
    min-width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin-top: 6px;
}

/* Hover Effect on List Items */
.topic-card:hover .topic-list li {
    color: #333;
    transform: translateX(3px);
    transition: all 0.2s ease;
}

/* Responsive for Tablets */
@media (max-width: 1024px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .topics {
        padding: 60px 15px;
    }

    .topics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .topic-card {
        padding: 15px;
    }

    .topic-card h3 {
        font-size: 18px;
    }

    .topic-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .topic-icon {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .topic-card h3 {
        font-size: 17px;
    }

    .topic-list li {
        font-size: 14px;
    }
    .section-title {
    text-align: center;
    font-size: 20px;
   
}

}


/* ===== Gallery Section ===== */
.gallery {
    padding: 40px 20px;
    background: white;
    position: relative;
}

.gallery .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.gallery .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* Gallery Grid - 5 items per row on laptop */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1500px;
    margin: 0 auto 50px;

}

/* Gallery Item Card */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: fadeInUp 0.6s ease both;
    background: white; /* Changed to white */
}

/* Staggered Animation Delays */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-item:nth-child(6) { animation-delay: 0.35s; }

/* Hover Effect on Card */
.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.25);
    z-index: 10;
}

/* Image Wrapper - No padding or margins */
.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 490px;
    overflow: hidden;
    background: white;
}

/* Image - 100% Fill, No Space */
.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed from contain to cover - fills 100% */
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Zoom Effect on Hover */
.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.15);
}

/* Zoom Icon */
.gallery-zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

/* Overlay Text */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.overlay-text {
    color: white;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Focus State for Accessibility */
.gallery-item:focus {
    outline: 3px solid #667eea;
    outline-offset: 3px;
}

.gallery-item:focus-visible {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.35);
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf6 100%);
    padding: 20px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.gallery-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.gallery-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

.gallery-buy-btn {
 
    background: linear-gradient(135deg, #667eea, #e666eb);
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: glow 2s infinite;
}

.gallery-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(17, 153, 142, 0.4);
}

/* ===== Responsive Design ===== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Desktop (1024px - 1399px) */
@media (max-width: 1399px) {
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Laptop/Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .gallery {
        padding: 60px 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .gallery-image-wrapper {
        height:400px;
    }

    .gallery .section-title {
        font-size: 32px;
    }

    .gallery-cta h3 {
        font-size: 28px;
    }

    .gallery-cta p {
        font-size: 16px;
    }
}

/* Tablet Portrait (600px - 767px) */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-image-wrapper {
        height: auto;
    }

    .gallery .section-title {
        font-size: 28px;
    }

    .gallery .section-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .overlay-text {
        font-size: 13px;
    }

    .gallery-cta {
        padding: 40px 25px;
    }

    .gallery-cta h3 {
        font-size: 24px;
    }

    .gallery-buy-btn {
        font-size: 16px;
        padding: 16px 35px;
    }
}

/* Mobile (Below 600px) */
@media (max-width: 599px) {
    .gallery {
        padding: 50px 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image-wrapper {
        height: 550px;
    }

    .gallery .section-title {
        font-size: 24px;
    }

    .gallery .section-subtitle {
        font-size: 15px;
    }

    .gallery-item {
        border-radius: 12px;
    }

    .gallery-cta {
        padding: 35px 20px;
        border-radius: 20px;
    }

    .gallery-cta h3 {
        font-size: 22px;
    }

    .gallery-cta p {
        font-size: 15px;
    }

    .gallery-buy-btn {
        width: 100%;
        font-size: 15px;
        padding: 15px;
    }
}

/* Small Mobile (Below 400px) */
@media (max-width: 399px) {
    .gallery-image-wrapper {
        height: 400px;
    }

    .gallery .section-title {
        font-size: 22px;
    }

    .overlay-text {
        font-size: 12px;
    }
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

/* Background Animation Effect */
.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    margin-bottom: 0px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.testimonials .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

/* Testimonial Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 20px;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease both;
    position: relative;
    overflow: hidden;
}

/* Staggered Animation */
.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

/* Decorative Quote Mark */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 120px;
    color: rgba(102, 126, 234, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #ffd700;
    font-size: 20px;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

.rating-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Testimonial Text */
.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Testimonial Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: bold;
    color: #1a1a2e;
    font-size: 16px;
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: #666;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ===== Responsive Design ===== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop to Tablet (768px - 1199px) */
@media (max-width: 1199px) {
    .testimonials {
        padding: 70px 20px;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonials .section-title {
        font-size: 32px;
    }

    .testimonials .section-subtitle {
        font-size: 17px;
    }
}

/* Tablet (600px - 767px) */
@media (max-width: 767px) {
    .testimonials {
        padding: 60px 15px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonials .section-title {
        font-size: 28px;
    }

    .testimonials .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .stars {
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-role {
        font-size: 13px;
    }
}

/* Mobile (Below 600px) */
@media (max-width: 599px) {
    .testimonials {
        padding: 50px 15px;
    }

    .testimonial-grid {
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .testimonials .section-title {
        font-size: 24px;
    }

    .testimonials .section-subtitle {
        font-size: 15px;
    }

    .testimonial-header {
        margin-bottom: 18px;
    }

    .stars {
        font-size: 16px;
    }

    .rating-text {
        padding: 5px 14px;
        font-size: 13px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .testimonial-author {
        padding-top: 18px;
        gap: 12px;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 15px;
    }

    .author-name {
        font-size: 14px;
    }

    .author-role {
        font-size: 12px;
    }

    .testimonial-card::before {
        font-size: 80px;
        top: 5px;
        right: 15px;
    }
}

/* Small Mobile (Below 400px) */
@media (max-width: 399px) {
    .testimonials {
        padding: 40px 10px;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonials .section-title {
        font-size: 22px;
    }

    .testimonials .section-subtitle {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .author-name {
        font-size: 13px;
    }

    .author-role {
        font-size: 11px;
    }
}




/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-right h1 {
        font-size: 28px;
    }

    .key-features {
        grid-template-columns: 1fr;
    }

    .topics-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .bundle-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .current-price {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .bundle-header h2 {
        font-size: 24px;
    }

    .bundle-new-price {
        font-size: 36px;
    }

    .guarantees {
        flex-direction: column;
        gap: 10px;
    }
}





.topic-lines {
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.topic-lines li::marker {
  content: "";
}



































/* ✅ FULL WIDTH CENTER (Laptop max 1200px) + PHONE CENTER + MULTICOLOR TEXT */
.networks-topics-full{
  padding: 40px 0;
  position: relative;
  overflow: hidden;
 
}



.networks-container{
  position: relative;
  z-index: 1;
  max-width: 1200px;   /* ✅ laptop width */
  margin: 0 auto;
  padding: 0 24px;     /* ✅ phone padding */
  text-align: center;  /* ✅ center on phone + laptop */
}

/* ✅ badge */
.offer-badge-wrap{
  display:flex;
  justify-content:center;
  margin-bottom: 16px;
}
.offer-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 16px;
  border-radius: 999px;

  color:#101010;
  font-weight: 900;
  letter-spacing: .6px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}



/* ✅ unit boxes */
.unit-box{
  text-align: left; /* list readable */
  border-radius: 18px;
  padding: 18px 40px;
  margin: 16px auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}

/* each unit different border glow */
.unit1{ box-shadow: 0 18px 55px rgba(255,61,61,.12), 0 18px 55px rgba(0,0,0,.22); }
.unit2{ box-shadow: 0 18px 55px rgba(255,179,71,.12), 0 18px 55px rgba(0,0,0,.22); }
.unit3{ box-shadow: 0 18px 55px rgba(34,197,94,.12), 0 18px 55px rgba(0,0,0,.22); }
.unit4{ box-shadow: 0 18px 55px rgba(59,130,246,.12), 0 18px 55px rgba(0,0,0,.22); }
.unit5{ box-shadow: 0 18px 55px rgba(168,85,247,.12), 0 18px 55px rgba(0,0,0,.22); }
.unit6{ box-shadow: 0 18px 55px rgba(236,72,153,.12), 0 18px 55px rgba(0,0,0,.22); }
.unit7{ box-shadow: 0 18px 55px rgba(14,165,233,.12), 0 18px 55px rgba(0,0,0,.22); }
.unit8{ box-shadow: 0 18px 55px rgba(250,204,21,.12), 0 18px 55px rgba(0,0,0,.22); }

.unit-top{
  display:flex;
  align-items:center;
  gap: 14px;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.unit-tag{
  min-width: 78px;
  padding: 8px 10px;
  border-radius: 14px;
  font-weight: 1000;
  text-align:center;
     background: linear-gradient(to right, #6366f1, #ec4899);
  color:#0b0b0b;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}

.unit-head{
  margin:0;
  font-size: 1.15rem;
  font-weight: 1000;
  letter-spacing: .4px;
  background-color: #0004ff;
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.unit-pages{
  margin: 4px 0 0;
  font-size: .95rem;
  font-weight: 800;
  color: rgba(66, 63, 63, 0.86);
}

/* ✅ list */
.topic-lines{
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.topic-lines li{
  line-height: 1.65;
  font-weight: 700;
  color: rgba(65, 61, 61, 0.92);
}

/* multicolor page number highlight */
.topic-lines b{
  font-weight: 1000;
  background: blueviolet;
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

/* ✅ mobile center improvements */
@media (max-width: 640px){
  .unit-box{
    padding: 14px;
    text-align: left;
    font-size: 14px;
  }
  .unit-top{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .unit-head{
  font-size: 1rem;

}

  .unit-tag{
    align-self: flex-start;
  }
  .topic-lines{
    padding-left: 18px;
  }
}



/* what's include bundle */

        .section-wrapper {
            max-width: 1200px;
            margin: auto;
            height: auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding: 20px;
        }

        /* Card */
        .card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 15px;
            background: #fff;
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: 0.3s ease;
            animation: fadeUp 0.6s ease forwards;
            opacity: 0;
        }

        .card:nth-child(1) {
            animation-delay: 0.1s
        }

        .card:nth-child(2) {
            animation-delay: 0.2s
        }

        .card:nth-child(3) {
            animation-delay: 0.3s
        }

        .card:nth-child(4) {
            animation-delay: 0.4s
        }

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

        /* Image */
        .card img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Text */
        .card h4 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }

        /* Button */
        .card a {
            margin-top: 5px;
            text-decoration: none;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            transition: 0.3s;
        }

        .card a:hover {
            background: #1e40af;
            transform: translateY(-2px);
        }

        /* Animation */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Tablet */
        @media(max-width:1024px) {
            .section-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile */
        @media(max-width:600px) {
            .section-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }

            .card img {
                width: 120px;
                height: 120px;
            }
        }




        /* timer section */

        


/* Compact Countdown Timer Section - White Background */
.ct-countdown-section {
    padding: 0px 20px;
    position: relative;
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: center;
  
}


.ct-countdown-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ct-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    backdrop-filter: blur(10px);
    padding: 8px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 15px;
    animation: ct-pulse 2s ease-in-out infinite, ct-slideDown 0.6s ease-out;
    box-shadow: 0 8px 30px rgba(118, 75, 162, 0.4);
    border: 2px solid rgba(118, 75, 162, 0.3);
}

@keyframes ct-slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ct-urgency-badge i {
    color: #ff6b6b;
    animation: ct-flash 1.5s infinite;
    font-size: 14px;
    filter: drop-shadow(0 0 5px rgba(255, 107, 107, 0.5));
}

@keyframes ct-flash {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3) rotate(15deg);
    }
}

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

.ct-countdown-heading {
    font-size: 28px;
    color: #4976c9;
    margin-bottom: 25px;
    font-weight: 900;
    animation: ct-fadeInDown 0.8s ease-out;
    letter-spacing: -0.5px;
}

@keyframes ct-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Countdown Timer */
.ct-countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    animation: ct-scaleIn 1s ease-out;
}

@keyframes ct-scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ct-time-box {
    background: #ffffff;
    border: 3px solid #e2e8f0;
    padding: 20px 25px;
    border-radius: 16px;
    min-width: 100px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08),
                0 8px 20px rgba(102, 126, 234, 0.15);
    position: relative;
    overflow: hidden;
    animation: ct-float 3s ease-in-out infinite;
    animation-delay: calc(var(--ct-box-index) * 0.2s);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ct-time-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12),
                0 12px 30px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.ct-time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    animation: ct-shimmer 4s infinite;
}

.ct-time-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(240, 147, 251, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ct-time-box:hover::after {
    opacity: 1;
}

@keyframes ct-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes ct-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.ct-time-value {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: ct-numberChange 0.5s ease, ct-gradientShift 3s ease infinite;
    filter: drop-shadow(0 2px 4px rgba(118, 75, 162, 0.2));
}

@keyframes ct-gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes ct-numberChange {
    0% {
        transform: scale(1.2) rotate(5deg);
        opacity: 0.5;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.ct-time-label {
    font-size: 11px;
    color: #667eea;
    margin-top: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ct-time-separator {
    font-size: 36px;
    color: #667eea;
    font-weight: 900;
    animation: ct-blink 1s infinite;
}

@keyframes ct-blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.9);
    }
}

.ct-offer-text {
    font-size: 18px;
    color: #4a5568;
    margin: 25px 0 20px;
    font-weight: 700;
}

.ct-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    padding: 5px 18px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 900;
    font-size: 22px;
    border: 3px solid #764ba2;
    animation: ct-glow 2s ease-in-out infinite, ct-bgShift 3s ease infinite;
    box-shadow: 0 0 20px rgba(118, 75, 162, 0.4),
                0 0 40px rgba(118, 75, 162, 0.2),
                inset 0 2px 10px rgba(255, 255, 255, 0.3);
    display: inline-block;
    transform: rotate(-2deg);
}

@keyframes ct-bgShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes ct-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(118, 75, 162, 0.4),
                    0 0 40px rgba(118, 75, 162, 0.2);
        transform: rotate(-2deg) scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(118, 75, 162, 0.6),
                    0 0 60px rgba(118, 75, 162, 0.4);
        transform: rotate(-2deg) scale(1.05);
    }
}

/* CTA Button */
.ct-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(118, 75, 162, 0.4),
                0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: ct-bounceIn 1.2s ease-out, ct-buttonGradient 3s ease infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes ct-buttonGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes ct-bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        transform: scale(1.1) rotate(2deg);
    }
    70% {
        transform: scale(0.9) rotate(-1deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.ct-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.ct-cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.ct-cta-button:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 50px rgba(118, 75, 162, 0.5),
                0 10px 30px rgba(102, 126, 234, 0.4);
}

.ct-button-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.ct-button-content i {
    color: #ffd700;
    font-size: 16px;
    animation: ct-lockShake 2s ease-in-out infinite;
}

@keyframes ct-lockShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.ct-original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    opacity: 0.9;
}

.ct-sale-price {
    color: #ffd700;
    font-size: 22px;
    font-weight: 900;
    animation: ct-priceHighlight 1.5s ease-in-out infinite;
    text-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
}

@keyframes ct-priceHighlight {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
}

/* Restart Flash Animation */
@keyframes ct-restartFlash {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        border-color: #e2e8f0;
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
        border-color: #667eea;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ct-countdown-section {
        height: auto;
        min-height: 450px;
        padding: 40px 15px;
    }
    
    .ct-countdown-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .ct-countdown-timer {
        gap: 10px;
        margin: 20px 0;
    }
    
    .ct-time-box {
        padding: 15px 18px;
        min-width: 75px;
    }
    
    .ct-time-value {
        font-size: 28px;
    }
    
    .ct-time-separator {
        font-size: 24px;
    }
    
    .ct-offer-text {
        font-size: 15px;
        margin: 20px 0 15px;
    }
    
    .ct-highlight {
        font-size: 18px;
        padding: 4px 14px;
    }
    
    .ct-cta-button {
        padding: 12px 8px;
        font-size: 14px;
    }
    
    .ct-sale-price {
        font-size: 18px;
    }
    
    .ct-original-price {
        font-size: 13px;
    }
}




/* buy button for globle */

.notes-buy-section {
    text-align: center;
    padding: 10px 20px 30px;
  }

  .buy-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0px;
  }

  .buy-subtitle {
    color: #666;
    margin-top: 0px;
    margin-bottom: 20px;
  }

  .buy-btn-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  /* Indian Button */
  .buy-btn-india {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #667eea, #e666eb);
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
  }

  .buy-btn-india:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
  }

  /* International Button */
  .buy-btn-global {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(118, 75, 162, 0.4);
  }

  .buy-btn-global:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(118, 75, 162, 0.6);
  }

  @media (max-width: 600px) {
    .buy-btn-container {
      flex-direction: column;
      width: 80%;
      margin: auto;
    }
      .buy-title {
    font-size: 20px;
  }
    .buy-subtitle {
    font-size: 14px;
  }
  }







/* ==========================
   TOC CONTENT
========================== */

.toc-content{
    display:none;
}

.toc-content.active-content{
    display:block;
}

/* ==========================
   BUTTON WRAPPER
========================== */

.toc-buttons{
    max-width:1300px;
    margin:40px auto;
    padding:0 15px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

/* ==========================
   BUTTON STYLE
========================== */

.toc-btn{
    width:200px;
    padding:14px 18px;
    border:none;
    border-radius:12px;
    cursor:pointer;

    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;

    font-size:15px;
    font-weight:700;

    transition:.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.toc-btn:hover{
    transform:translateY(-3px);
}

.toc-btn.active{
    background:linear-gradient(135deg,#2563eb,#7c3aed);
}

/* ==========================
   TABLET
========================== */

@media (max-width:768px){

    .toc-buttons{
        gap:8px;
    }

    .toc-btn{
        width:calc(33.333% - 6px);
        padding:12px 6px;
        font-size:13px;
    }
}

/* ==========================
   VERY SMALL MOBILE
========================== */

@media (max-width:480px){

    .toc-btn{
        width:calc(33.333% - 6px);
        font-size:11px;
        padding:10px 4px;
    }
}




/* img cat title */
.gallery-category-title{
    font-size:2rem;
    font-weight:800;
    text-align:center;
    margin:60px 0 30px;
    color:#7a3fe1;
    position:relative;
    letter-spacing:0.5px;
}

.gallery-category-title::after{
    content:"";
    width:80px;
    height:4px;
    background:linear-gradient(90deg,#3b82f6,#8b5cf6);
    display:block;
    margin:12px auto 0;
    border-radius:50px;
}

@media (max-width:768px){

    .gallery-category-title{
        font-size:1.5rem;
        margin:45px 0 25px;
    }

    .gallery-category-title::after{
        width:60px;
        height:3px;
    }
}

@media (max-width:480px){

    .gallery-category-title{
        font-size:1.25rem;
        margin:35px 0 20px;
    }
}










/* ==========================
   FREE BONUS CARD
========================== */

.github-bonus-section{
    max-width:1300px;
    margin:70px auto;
    padding:0 15px;
}

.github-bonus-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;

    background:linear-gradient(
        135deg,
        #e0f2fe,
        #dbeafe,
        #ede9fe
    );

    border:2px solid rgba(99,102,241,.15);
    border-radius:30px;

    padding:50px;
    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

/* IMAGE */

.github-bonus-image{
    flex:1;
    text-align:center;
}

.github-bonus-image img{
    max-width:550px;
    width:100%;
    display:block;
    margin:auto;
    transition:.4s;
}

.github-bonus-image img:hover{
    transform:translateY(-8px) scale(1.03);
}

/* CONTENT */

.github-bonus-content{
    flex:1.2;
    margin-left: 100px;
}

.bonus-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;

    background:rgba(139,92,246,.12);
    color:#7c3aed;

    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.github-bonus-content h2{
    font-size:2.2rem;
    line-height:1.2;
    color:#4f46e5;
    margin-bottom:15px;
}

.bonus-subtitle{
    font-size:18px;
    color:#555;
    margin-bottom:25px;
}

.github-bonus-content h3{
    margin-bottom:18px;
    color:#111827;
}

.bonus-list{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.bonus-list li{
    font-size:18px;
    line-height:1.8;
    color:#374151;
}

.bonus-price{
    font-size:2rem;
    font-weight:800;
    color:#7c3aed;
    margin-bottom:25px;
}

.bonus-price span{
    color:#2563eb;
}

.bonus-btn{
    display:inline-block;
    text-decoration:none;

    background:linear-gradient(
        135deg,
        #4f46e5,
        #ec4899
    );

    color:#fff;
    font-size:18px;
    font-weight:700;

    padding:16px 32px;
    border-radius:14px;
  border: none;
    transition:.3s;
}

.bonus-btn:hover{
    transform:translateY(-4px);
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

    .github-bonus-card{
        gap:35px;
        padding:35px;
    }

    .github-bonus-content h2{
        font-size:2.2rem;
    }

}

/* ==========================
   MOBILE
   IMAGE TOP
   TEXT BOTTOM
========================== */

@media(max-width:768px){

    .github-bonus-card{
        flex-direction:column;
        text-align:center;
        padding:25px;
        gap:25px;
    }
    .github-bonus-content{
    
    margin-left: 0px;
}

    .github-bonus-image{
        order:1;
    }

    .github-bonus-content{
        order:2;
    }

    .github-bonus-image img{
        max-width:340px;
    }

    .github-bonus-content h2{
        font-size:1.8rem;
    }

    .bonus-subtitle{
        font-size:15px;
    }

    .bonus-list{
        text-align:left;
    }

    .bonus-list li{
        font-size:15px;
    }

    .bonus-price{
        font-size:1.5rem;
    }

    .bonus-btn{
        width:100%;
        text-align:center;
        padding:14px;
        font-size:16px;
    }

}