:root {
    /* Light mode colors - White with mixtures (DEFAULT) */
    --bg-primary: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --bg-card: rgba(255,255,255,0.95);
    --bg-card-hover: #ffffff;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-light: rgba(33, 37, 41, 0.8);
    --text-credit: red;
    --card-title: black;
    --bg-modal: white;
    --darkx-bg: linear-gradient(to right, #00051c, #00051c, #00051c, #00051c);

    --border-color: rgba(0,0,0,0.1);
    --border-highlight: rgba(102, 126, 234, 0.5);
    --shadow: rgba(0,0,0,0.15);
    --shadow-hover: rgba(0,0,0,0.25);
    --testimonial-bg: #f8f9fa;
    --faq-border: #e9ecef;
    --profile-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --card-border: 1px solid rgba(0,0,0,0.1);
    --card-shadow: 0 4px 15px rgba(0,0,0,0.08);
    --card-shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
}

[data-theme="dark"] {
    /* Dark mode colors - Grey10 (#1a1a1a) with mixtures */
    --bg-primary: linear-gradient(25deg, #120018 0%, #34023a 100%);
    --bg-card: rgb(32 3 41 / 95%);
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-light: rgba(255, 255, 255, 0.8);
    --text-credit: yellow;
    --card-title: black;
    --bg-modal: white;

    --border-color: rgba(255,255,255,0.1);
    --border-highlight: rgba(102, 126, 234, 0.5);
    --shadow: rgba(0,0,0,0.5);
    --shadow-hover: rgba(0,0,0,0.7);
    --testimonial-bg: rgba(45, 45, 45, 0.8);
    --faq-border: rgba(255,255,255,0.1);
    --profile-bg: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
    --card-border: 1px solid rgba(255,255,255,0.15);
    --card-shadow: 0 4px 20px rgba(0,0,0,0.3);
    --card-shadow-hover: 0 10px 30px rgba(0,0,0,0.5);
}

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

body {
    font-family: 'Montserrat', sans-serif !important;
    line-height: 1.1;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    transition: all 0.3s ease;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
    border: var(--card-border);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--card-shadow-hover);
}

/* Stylish Profile Section */
.profile-section {
    position: relative;
    background: linear-gradient(135deg, #273d9d 0%, #440d7d 50%, #6b2374 100%);
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 1.1;
}

/* Animated Background Elements - EXTREMELY SLOW */
.profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: float 40s ease-in-out infinite;
}

.profile-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: drift 120s linear infinite;
}

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

@keyframes drift {
    0% { transform: translateX(0px); }
    100% { transform: translateX(60px); }
}

.profile-content {
    position: relative;
    z-index: 10;
    max-width: 500px;
    padding: 2rem;
}

/* Floating Profile Image with Glow - EXTREMELY SLOW */
.profile-image-container {
    position: relative;
    margin: 0 auto 2rem;
    width: 150px;
    height: 150px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.3);
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    animation: profileFloat 15s ease-in-out infinite;
}

.profile-image:hover {
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.8);
}

/* Glowing Ring Around Profile - EXTREMELY SLOW */
.profile-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #667eea, #764ba2, #f093fb, #667eea);
    animation: rotate 25s linear infinite;
    z-index: 1;
}

.profile-glow::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

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

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Stylish Text with Animations - EXTREMELY SLOW */
.profile-name {
    font-size: 2rem;
    font-weight: bold; 
    background: linear-gradient(45deg, #ffffff, #f0f0f0, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 15s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255,255,255,0.5);
    line-height: 1.5;
}

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

.profile-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    display: inline-block;
    line-height: 1.1;
}

.profile-title::before,
.profile-title::after {
    content: '♪';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    animation: musicNote 12s ease-in-out infinite;
}

.profile-title::before {
    left: -30px;
    animation-delay: 0s;
}

.profile-title::after {
    right: -30px;
    animation-delay: 6s;
}

@keyframes musicNote {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.7; }
    50% { transform: translateY(-60%) scale(1.2); opacity: 1; }
}

.profile-bio {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Social Links with Brand Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgb(228 0 255 / 83%);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.5);
}

/* Brand-specific colors on hover */
.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-link.youtube:hover {
    background: #FF0000;
}

.social-link.tiktok:hover {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
}

.social-link.facebook:hover {
    background: #1877F2;
}

.social-link.x:hover {
    background: #34495e;
}


.social-link.snapchat:hover {
    background: #FFFC00;
}

/* Brand Icons using SVG */
.social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Scroll Indicator - EXTREMELY SLOW */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 2rem;
    animation: bounce 8s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Content Section */
.content-section {
    padding: 20px;
}

/* Link Cards */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    border-left: 3px solid #667eea;
    line-height: 1.1;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    background: var(--bg-card-hover);
    border-left: 3px solid #764ba2;
}

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

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

.link-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.link-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.link-description {
    font-size: 0.9rem;
    opacity: 1;
    line-height: 1.1;
    color: var(--text-primary);
}

.link-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: orangered;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px var(--shadow);
}

/* Photo Gallery Slider */
.gallery-slider {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    border-left: 3px solid #667eea;
}

.gallery-slider:hover {
    box-shadow: var(--card-shadow-hover);
    border-left: 3px solid #764ba2;
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.gallery-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-primary);
    line-height: 1.1;
}

.gallery-counter {
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: rgba(102, 126, 234, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid var(--border-highlight);
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16/10;
    background: #f0f0f0;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px var(--shadow);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
 
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.slider-nav:hover {
    background: rgba(0,0,0,0.7);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
    border: 1px solid var(--border-color);
}

.dot.active {
    background: #667eea;
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
}

/* Featured Section */
.featured-section {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    border-top: 3px solid #667eea;
}

.featured-section:hover {
    box-shadow: var(--card-shadow-hover);
}

.featured-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.1;
}

.student-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.video-thumbnail {
    aspect-ratio: 16/9;
    background: var(--testimonial-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow);
}

.video-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px var(--shadow-hover);
    border-color: var(--border-highlight);
}

.play-button {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial {
    background: var(--testimonial-bg);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    box-shadow: 0 3px 10px var(--shadow);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.testimonial-author {
    font-weight: bold;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.1;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    border-right: 3px solid #667eea;
    text-align: justify;
}

.faq-section:hover {
    box-shadow: var(--card-shadow-hover);
}

.faq-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.1;
}

.faq-item {
    border-bottom: 1px solid var(--faq-border);
    margin-bottom: 1rem;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif !important;
}

.faq-question:hover {
    color: #667eea;
}

.faq-answer {
    padding: 0 0 1rem 0;
    display: none;
    color: var(--text-secondary);
    line-height: 1.1;
}

.faq-answer.active {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.rotated {
    transform: rotate(45deg);
}

/* Contact Section */
.contact-section {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    border-bottom: 3px solid #667eea;
}

.contact-section:hover {
    box-shadow: var(--card-shadow-hover);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.1;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 2rem 0rem 2rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 500;
    
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .profile-name {
        font-size: 1.5rem;
    }

    .profile-title {
        font-size: 1.2rem;
    }

    .profile-title::before,
    .profile-title::after {
        display: none;
    }

    .social-links {
        gap: 1rem;
    }

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

    .content-section {
        padding: 15px;
    }

    .link-card, .gallery-slider {
        padding: 1.2rem;
    }

    .link-title, .gallery-title {
        font-size: 1.2rem;
    }

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

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

    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-image-container {
        width: 120px;
        height: 120px;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 1.6rem;
    }

    .student-videos {
        grid-template-columns: 1fr;
    }

    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .slider-nav.prev {
        left: 5px;
    }

    .slider-nav.next {
        right: 5px;
    }
}

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

.link-card, .gallery-slider {
    animation: fadeInUp 0.6s ease forwards;
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.gallery-slider { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }
.link-card:nth-child(5) { animation-delay: 0.5s; }
.link-card:nth-child(6) { animation-delay: 0.6s; }
.link-card:nth-child(7) { animation-delay: 0.7s; }

}
}


    * {
      box-sizing: border-box;
    }
 
    .rate-modal, .form-modal {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: #4e4e4ecc;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }
    .modal-content {
      background: var(--bg-primary);
      padding: 1.2rem;
      border-radius: 10px;
      width: auto;
      max-width: 600px;
      text-align: center;
    } 

    /* Rate Card Pop Up CSS */
    .rate-card {
      background: var(--bg-card);
      margin: 1rem 0;
      padding: 1rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      border-left: 3px solid #667eea;
      border-bottom: 3px solid #667eea;
    }
    .rate-card h3 {
        margin: 0.1rem 0;
        color: var(--text-primary);
    }
    .rate-card p{
        font-size: 1rem;
        font-weight: bold;
         
    }
    
    .btn {
      padding: 0.3rem 1rem;
      background-color: orangered;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: bolder;
      font-family: 'Montserrat', sans-serif !important;
  }

    /* Form Pop Up CSS */
    .form-group {
      margin: 1rem 0;
      text-align: left;
    }
    .form-group label {
      display: block;
      margin-bottom: 0.3rem;
      font-weight: 700;
    }
    .form-group input {
      width: 100%;
      padding: 0.5rem;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

ul.custom-bullets {
  list-style-position: outside; /* Ensures bullet is outside the text box */
  padding-left: 1em;            /* Adjusts space from the left edge */
  margin-left: 0;               /* Removes default margin */
  text-align: left;
}

ul.custom-bullets li {
  margin-left: 0;
  padding-left: 0;
}


/* Thank You Page */

*{
  box-sizing:border-box;
 /* outline:1px solid ;*/
}
.wrapper-1{
  width:100%;
  height:100vh;
  display: flex;
flex-direction: column;
}
.wrapper-2{
  padding :30px;
  text-align:center;
}
h1{
    font-family: 'Kaushan Script', cursive;
  font-size:4rem;
  color: #34023a;
  margin:0;
  margin-bottom:20px;
}
.wrapper-2 p{
  margin:0;
  font-size:1.3em;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif !important;
}

.footer-like{
  margin-top: auto; 
  background:#D7E6FE;
  padding:6px;
  text-align:center;
}
.footer-like p{
  margin:0;
  padding:4px;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 500;
  font-size: 1rem;
}
.footer-like p a{
  text-decoration:none;
  color:#5892FF;
  font-weight:600;
}

@media (min-width:360px){
  h1{
    font-size:4rem;
  }
}

@media (min-width:600px){
  .content{
  max-width:1000px;
  margin:0 auto;
}
  .wrapper-1{
  height: initial;
  max-width:620px;
  margin:0 auto;
  margin-top:50px;
  box-shadow: 4px 8px 40px 8px rgba(88, 146, 255, 0.2);
}
}


#popupWrapper-ζ1 {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#popupBox-ζ2 {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
}
#popupBox-ζ2 h2 {
  margin-top: 0;
  font-size: 1.3rem;
}
#popupBox-ζ2 input,
#popupBox-ζ2 textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.7rem;
  border: 1.5px solid orangered;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif !important;
}
#popupBox-ζ2 button[type="submit"] {
  background: orangered;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bolder;
  font-family: 'Montserrat', sans-serif !important;
}
#popupClose-ζ3 {
  position: absolute;
  top: -1px;
  right: 20px;
  background: none;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: red;
}
