
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    position: relative;

    background: linear-gradient(135deg, #B2C3ED, #8B9CC6, #E1DDF6);
    color: #104EA6;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    padding: 20px;
    width: 100%;
}

/* Pure CSS Noise */
body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image:
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);

    background-size: 3px 3px, 4px 4px;
    background-position: 0 0, 1px 1px;

    opacity:1;
    pointer-events: none;
    z-index: 0;
}

/* Keep content above noise */
body>* {
    position: relative;
    z-index: 1;
}


/* Custom Select */
.custom-select {
    position: relative;
    width: 120px;
}

.select-selected {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
}

.select-options {
    position: absolute;
    top: 110%;
    width: 100%;
    background: rgba(143, 159, 211, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    display: none;
    z-index: 10;
}

.select-options div {
    padding: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.select-options div:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Container */
.container {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

/* Heading */
h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Drag Area */
.drop-area {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    padding: 25px;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.drop-area:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Inputs */
.row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

input,
select {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #104EA6;
}

/* Button */
button {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(45deg, #1D2E58, #104EA6);
    color:#dad9e6;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.02);
}

/* Preview */
.preview-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.preview-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 15px;
    text-align: center;
}

.preview-box img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

.size-text {
    margin-top: 8px;
    font-size: 13px;
    opacity: 0.8;
}

/* Reduction */
.reduction {
    margin-top: 5px;
    font-size: 13px;
    color: #00ffcc;
}

/* Rename */
.rename {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.rename input {
    flex: 1;
}

/* Footer */
.footer {
    margin-top: 40px;
    padding: 20px;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.footer p {
    font-size: 13px;
    color: #104EA6;
}

.footer a {
    color: #1D2E58;
    text-decoration: none;
}

.socials {
    margin-top: 10px;
}

.socials a {
    margin: 0 8px;
    font-size: 18px;
    color: #1D2E58;
    transition: 0.3s;
}

.socials a:hover {
    color: #104EA6;
    transform: scale(1.2);
}

/* ============================================
           PROMOTIONAL SECTIONS - STRICT ALIGNMENT
           ============================================ */

/* MAIN CONTAINER - All sections align to this */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

/* TOP WRAPPER FOR HERO STRIP */
.top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

/* SPACING BETWEEN SECTIONS */
.hero-strip {
    margin-bottom: 60px;
}

.features-section {
    margin-top: 40px;
    margin-bottom: 60px;
}

.branding-section {
    margin-top: 70px;
    margin-bottom: 60px;
}

.educational-section {
    margin-bottom: 60px;
}

.cta-section {
    margin-bottom: 0;
}

/* ===== 1. HERO INFO STRIP ===== */
.hero-strip {
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.1), rgba(0, 114, 255, 0.1));
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(45deg, #1D2E58, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    color: #104EA6;
    line-height: 1.6;
}

/* ===== 2. WHY CHOOSE US (4 CARDS GRID) ===== */
.features-section {
    width: 100%;
}

.section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #104EA6;
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #2259AB;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px #2259ab65;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    transition: all 0.3s ease;
    color: #1D2E58;
    z-index: 100;
}

.feature-icon i {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    color: #2259AB;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1D2E58;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    color: #2259AB;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== 3. BRANDING SECTION ===== */
.branding-section {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.25);
    border-radius: 20px;
    padding: 10px 40px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.branding-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.08) 0%, transparent 70%);
    animation: glow-pulse 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.branding-logo {
    position: relative;
    z-index: 1;
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: -10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0);
    padding: 10px;
    transition: all 0.3s ease;
}



.branding-heading {
    position: relative;
    z-index: 1;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(45deg, #1D2E58, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.branding-tagline {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 600;
    color: #1D2E58;
    margin-bottom: 20px;
    font-style: italic;
}

.branding-text {
    position: relative;
    z-index: 1;
    font-size: 15px;
    color: #2259AB;
    line-height: 1.8;
}

/* ===== 4. EDUCATIONAL SECTION (2 COLUMNS) ===== */
.educational-section {
    width: 100%;
}

.educational-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.edu-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 114, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.edu-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #2259ab;
    box-shadow: 0 15px 40px #2259ab65;
}

.edu-title {
    font-size: 20px;
    font-weight: 600;
    color: #1D2E58;
    margin-bottom: 16px;
}

.edu-text {
    font-size: 14px;
    color: #2259AB;
    line-height: 1.6;
    margin-bottom: 16px;
}

.edu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edu-list li {
    font-size: 14px;
    color: #2259AB;
    line-height: 1.7;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.edu-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.edu-list strong {
    color: #1D2E58;
    font-weight: 600;
}

/* ===== 5. CALL TO ACTION SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.15), rgba(0, 114, 255, 0.15));
    border: 2px solid rgba(0, 198, 255, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(45deg, #1D2E58, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 16px;
    color: #104EA6;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(45deg, #1D2E58, #0072ff);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    width: auto;
}

.cta-button:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 35px #2259ab65;
}

.cta-button:active {
    transform: scale(0.98);
}

span{
    font-family:"Syne",sans-serif;
    font-weight: 700;
}
/* ============================================
           RESPONSIVE DESIGN - TABLET (768px and below)
           ============================================ */

@media (max-width: 768px) {
    .container {
        max-width: 95%;
        padding: 20px 15px;
    }

    .top {
        padding: 15px;
    }

    .section-container {
        padding: 15px;
    }

    /* Hero Strip */
    .hero-strip {
        padding: 40px 25px;
        margin-bottom: 50px;
    }

    .hero-heading {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 14px;
    }

    /* Features Section - 2 COLUMNS */
    .features-section {
        margin-bottom: 50px;
    }

    .section-heading {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-icon {
        font-size: 40px;
        margin-bottom: 15px;
        height: 55px;
    }

    .feature-icon i {
        font-size: 40px;
    }

    .feature-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feature-description {
        font-size: 13px;
    }

    /* Branding Section */
    .branding-section {
        padding: 40px 25px;
        margin-bottom: 50px;
        max-width: 100%;
    }

    .branding-logo {
        width: 70px;
        height: 70px;
    }

    .branding-heading {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .branding-tagline {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .branding-text {
        font-size: 14px;
    }

    /* Educational Section - STACKED 1 COLUMN */
    .educational-section {
        margin-bottom: 50px;
    }

    .educational-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .edu-card {
        padding: 25px;
    }

    .edu-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .edu-text {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .edu-list li {
        font-size: 13px;
        padding: 6px 0;
    }

    /* CTA Section */
    .cta-section {
        padding: 40px 25px;
        margin-bottom: 0;
        max-width: 100%;
    }

    .cta-heading {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .cta-text {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 12px 35px;
        font-size: 14px;
    }
}

/* ============================================
           RESPONSIVE DESIGN - MOBILE (480px and below)
           ============================================ */

@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 20px 12px;
        border-radius: 15px;
    }

    .top {
        padding: 12px;
    }

    .section-container {
        padding: 12px;
    }

    /* Hero Strip */
    .hero-strip {
        padding: 30px 16px;
        margin-bottom: 40px;
        border-radius: 15px;
    }

    .hero-heading {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 13px;
    }

    /* Features Section - 1 COLUMN */
    .features-section {
        margin-bottom: 40px;
    }

    .section-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .feature-icon {
        font-size: 36px;
        margin-bottom: 12px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 36px;
    }

    .feature-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .feature-description {
        font-size: 12px;
    }

    /* Branding Section */
    .branding-section {
        padding: 30px 16px;
        margin-bottom: 40px;
        border-radius: 15px;
    }

    .branding-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .branding-heading {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .branding-tagline {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .branding-text {
        font-size: 13px;
    }

    /* Educational Section - STACKED */
    .educational-section {
        margin-bottom: 40px;
    }

    .educational-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .edu-card {
        padding: 20px;
        border-radius: 12px;
    }

    .edu-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .edu-text {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .edu-list li {
        font-size: 12px;
        padding: 5px 0;
    }

    /* CTA Section */
    .cta-section {
        padding: 30px 16px;
        border-radius: 15px;
    }

    .cta-heading {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .cta-text {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 11px 30px;
        font-size: 13px;
    }
}