/* We don’t need your web services... 
   but we’ll gladly take your cookies. 
   – Klerkscale DEV Team <3 */

   

/* Color Palette */
:root {
    --gold: #d2A24C;
    --white: #fff;
    --light-blue: #dfe9f5;
    --blue-dark: #1E3F66;
    --blue-darker: #16305D;
}

/* General Reset ahoooooo */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Add a soft gradient background to body... maybe later */
body {
    font-family: 'Tahoma', Arial, sans-serif;
    background: white;
    color: var(--blue-darker);
    min-height: 100vh;
}

/* Typography */
.main-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(22, 48, 93, 0.10);
    margin-top: 24px;
    margin-bottom: 28px;
    letter-spacing: 2px;
}

.main-heading .apps-gold {
    color: var(--gold);
}

h2 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Header Styling */
header.modern-header {
    background: var(--white);
    padding: 18px 0;
    box-shadow: 0 2px 10px rgba(22, 48, 93, 0.07);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo {
 
    width: 100%;
    height: auto;
}

/* Content Layout */
.content-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 30px auto;
    max-width: 80%;
    padding: 0 16px;
}

.left-content {
    flex: 2;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
}

/* Paragraph Styling */
p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--blue-darker);
    background: var(--white);
    margin: 0 0 12px 0;
    padding: 16px 18px;
    border-radius: 10px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 2px 8px rgba(22, 48, 93, 0.07);
    transition: box-shadow 0.3s;
    text-align: justify;
}

p:hover {
    box-shadow: 0 4px 16px rgba(22, 48, 93, 0.13);
}

/* Hide element utility */
.hidden {
    display: none !important;
}

/* CTA Button - more inviting */
.cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #d2A24C 80%, #f7c873 100%);
    color: var(--blue-darker);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 1.15rem;
    margin-top: 10px;
    box-shadow: 0 6px 24px rgba(210, 162, 76, 0.13), 0 2px 8px rgba(22, 48, 93, 0.07);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    border: 1px solid var(--gold);
    cursor: pointer;
    max-width: 50%;
    align-self: center;
}

.cta-btn:hover, .cta-btn:focus {
    background: linear-gradient(90deg, #16305D 80%, #1E3F66 100%);
    color: var(--gold);
    border: none;
    box-shadow: 0 8px 32px rgba(22, 48, 93, 0.18);
}

/* Unified Card Style */
.card-group {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: fadeInUp 0.7s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}

.card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(22, 48, 93, 0.13);
    border-left: 6px solid var(--gold);
    padding: 24px 20px;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s, border-left 0.2s;
    background: linear-gradient(120deg, #fff 85%, #f7f9fc 100%);
}

.card:hover {
    box-shadow: 0 6px 24px rgba(22, 48, 93, 0.16);
    transform: translateY(-2px) scale(1.03);
    border-left: 6px solid #e8c16c;
    background: linear-gradient(120deg, #f7f9fc 85%, #fff 100%);
}

.card-title {
    font-size: 1.18rem;
    color: var(--blue-dark);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, var(--blue-dark) 70%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(22, 48, 93, 0.10);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-desc {
    font-size: 1.05rem;
    color: var(--blue-darker);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Contact Card */
.contact-card {
    background: #f7f9fc;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(22, 48, 93, 0.13);
    border: 1.5px solid #e0e0e0;
    border-top: 5px solid var(--gold);
    padding: 32px 24px 24px 24px;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.contact-card h2 {
    font-size: 1.35rem;
    color: var(--blue-dark);
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.contact-row {
    font-size: 1.08rem;
    color: var(--blue-darker);
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.contact-label {
    font-weight: 600;
    color: var(--gold);
    min-width: 80px;
}

.contact-card a {
    color: var(--blue-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-card a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Contact Box - softer look */
.contact-us {
    background: #16305D;
    color: var(--white);
    padding: 18px 16px;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(22, 48, 93, 0.13);
    border: 2px solid var(--blue);
    background: #16305D;
    transition: box-shadow 0.3s, border 0.3s;
    max-width: 100%;
    margin: 0 auto;
}

.contact-us h2 {
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.contact-us p {
    background: none;
    color: var(--white);
    font-size: 1rem;
    margin: 8px 0;
    padding: 0;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.contact-us a {
    color: var(--blue-dark);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.contact-us a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-us img {
    max-width: 22px;
    height: auto;
    margin-right: 6px;
    filter: drop-shadow(0px 1px 3px rgba(0,0,0,0.18));
}

/* Footer */
footer.modern-footer {
    background: var(--blue-darker);
    color: var(--white);
    padding: 16px 0;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 -4px 18px rgba(210, 162, 76, 0.10);
    border-top: 6px solid var(--gold);
    margin-top: 48px;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 1rem;
}

.footer-content a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.footer-content a:hover {
    color: var(--white);
    text-decoration: underline;
}

.logo2 {
    max-width: 28px;
    height: auto;
    margin-right: 6px;
    filter: drop-shadow(0px 1px 3px rgba(0,0,0,0.18));
}

/* Features Section */
.features-section {
    margin: 32px auto 0 auto;
    max-width: 900px;
    padding: 0 16px;
    text-align: center;
    animation: fadeInUp 1s;
    margin-top: 18px;
    margin-bottom: 18px;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(22, 48, 93, 0.07);
    background: linear-gradient(120deg, #fff 90%, #dfe9f5 100%);
    padding-top: 24px;
    padding-bottom: 24px;
}

.features-heading {
    font-size: 1.5rem;
    color: var(--blue-dark);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(210, 162, 76, 0.10);
    font-size: 1.7rem;
    margin-bottom: 32px;
}

.features-heading .apps-gold {
    color: var(--gold);
}

.features-images {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: nowrap;
}

.feature-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #dfe9f5;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(210, 162, 76, 0.13), 0 2px 8px rgba(22, 48, 93, 0.07);
    padding: 24px 16px 16px 16px;
    border: 1.5px solid var(--gold);
    transition: transform 0.25s, box-shadow 0.25s;
    min-width: 220px;
    max-width: 340px;
    background: linear-gradient(120deg, #dfe9f5 80%, #fff 100%);
}

.feature-item:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 12px 36px rgba(210, 162, 76, 0.18), 0 4px 16px rgba(22, 48, 93, 0.13);
}

.feature-img {
    width: 160px;
    height: 160px;
    object-fit:scale-down;
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(22, 48, 93, 0.13);
    border: 0.5px solid var(--blue-darker);
    background: var(--light-blue);
    display: block;
    transform: scale(1.08);
    transition: transform 0.3s;
}

.feature-item:hover .feature-img {
    transform: scale(1.15);
}

.feature-caption {
    font-size: 1.15rem;
    color: var(--blue-darker);
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 0.5px;
    color: var(--gold);
    text-shadow: 0 2px 8px rgba(210, 162, 76, 0.10);
}

/* Responsive: stack only if screen is very narrow */
@media (max-width: 900px) {
    .features-images {
        gap: 18px;
    }
    .feature-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 600px) {
    .features-images {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .feature-item {
        width: 95%;
        min-width: 0;
        max-width: 100%;
        padding: 14px 6px 10px 6px;
    }
    .feature-img {
        width: 96px;
        height: 96px;
    }
}

/* Intro Highlight Section */
.intro-highlight {
    background: linear-gradient(120deg, #fff 80%, #dfe9f5 100%);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(22, 48, 93, 0.08);
    border-left: 4px solid var(--gold);
    border-top: 2px solid var(--blue-dark);
    padding: 24px 28px 18px 28px;
    margin-bottom: 18px;
    transition: box-shadow 0.3s;
}

.intro-highlight:hover {
    box-shadow: 0 8px 32px rgba(22, 48, 93, 0.16);
}

.intro-title {
    font-size: 1.35rem;
    color: var(--blue-dark);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-align: left;
}

.intro-list {
    margin: 14px 0 14px 0;
    padding-left: 24px;
    text-align: left;
}

.intro-list li {
    font-size: 1.08rem;
    color: var(--blue-darker);
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
}

.intro-list li::before {
    content: "✔";
    color: var(--gold);
    font-weight: bold;
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Intro Card Section */
.intro-card {
    display: flex;
    gap: 18px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(22, 48, 93, 0.08);
    border-left: 4px solid var(--gold);
    border-top: 2px solid var(--blue-dark);
    padding: 24px 18px;
    margin-bottom: 18px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.intro-card-col {
    flex: 1 1 220px;
    background: var(--light-blue);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(22, 48, 93, 0.07);
    padding: 18px 12px;
    margin: 0 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.intro-card-col:hover {
    box-shadow: 0 8px 24px rgba(210, 162, 76, 0.13);
    transform: translateY(-2px) scale(1.03);
}

.intro-card-title {
    font-size: 1.15rem;
    color: var(--blue-dark);
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.intro-card-desc {
    font-size: 1.02rem;
    color: var(--blue-darker);
    text-align: center;
    margin-bottom: 0;
}

/* Modern Contact Box */
.contact-us-modern {
    background: var(--white);
    color: var(--blue-darker);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    border-left: 3px solid var(--gold);
    margin: 0 auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-header h2 {
color: var(--blue-darker);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    background: none;
    border-radius: 0;
    padding: 0;
    color: var(--blue-darker);
}

.contact-label {
    font-weight: 600;
  color: var(--blue-darker);
    min-width: 80px;
}

.contact-us-modern a {
    color: var(--blue-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-us-modern a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Remove icon styles */
.intro-icon,
.contact-icon {
    display: none;
}

/* Contact Modal Styles */
.contact-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(22, 48, 93, 0.45);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.contact-modal.hidden {
    display: none !important;
}

.contact-modal-content {
    background: rgba(255,255,255,0.95);
    border-radius: 22px;
    box-shadow: 0 12px 48px rgba(22, 48, 93, 0.22);
    padding: 0;
    position: relative;
    min-width: 320px;
    max-width: 95vw;
    width: 400px;
    animation: fadeIn 0.4s;
}

.contact-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: #fff;
    border: none;
    font-size: 2rem;
    color: var(--blue-darker);
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, color 0.2s;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(22, 48, 93, 0.07);
}

.contact-modal-close:hover {
    background: var(--gold);
    color: var(--white);
}

.contact-modal .contact-card {
    box-shadow: none;
    border-radius: 22px;
    margin: 0;
    padding: 40px 32px 32px 32px;
    max-width: none;
    min-width: 0;
    width: 100%;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(120deg, #fff 80%, #f7f9fc 100%);
    border-top: 6px solid var(--gold);
    border-radius: 22px;
    box-shadow: 0 2px 12px rgba(22, 48, 93, 0.10);
}

/* Responsive Design */
@media (max-width: 900px) {
    .content-container {
        max-width: 100%;
        padding: 0 8px;
    }
    .features-images {
        gap: 16px;
    }
    .feature-item {
        padding: 14px 8px 8px 8px;
    }
    .intro-card {
        flex-direction: column;
        gap: 16px;
        padding: 18px 8px;
    }
    .intro-card-col {
        width: 100%;
        margin-bottom: 10px;
    }
    .card-group {
        gap: 16px;
    }
    .card, .contact-card {
        min-width: 180px;
        max-width: 100%;
        padding: 18px 10px;
    }
}

@media (max-width: 700px) {
    .card-group {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        margin-bottom: 24px;
        padding: 0 0 0 0;
    }
    .card, .contact-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0;
        border-radius: 14px;
        padding: 18px 12px;
        box-sizing: border-box;
        box-shadow: 0 2px 10px rgba(22, 48, 93, 0.09);
    }
    .card-title {
        font-size: 1.08rem;
        margin-bottom: 10px;
    }
    .card-desc {
        font-size: 0.98rem;
    }
    .contact-card h2 {
        font-size: 1.08rem;
        margin-bottom: 12px;
    }
    .contact-row {
        font-size: 0.98rem;
        gap: 6px;
        margin-bottom: 8px;
    }
    .contact-label {
        min-width: 60px;
    }
}

@media (max-width: 480px) {
    .card-group {
        gap: 14px;
        padding: 0 2px;
    }
    .card, .contact-card {
        padding: 12px 6px;
        border-radius: 10px;
    }
    .card-title {
        font-size: 1rem;
    }
    .card-desc {
        font-size: 0.95rem;
    }
    .contact-card h2 {
        font-size: 1rem;
    }
}

/* LIVE dot animation */
.live-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #e82828;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    box-shadow: 0 0 8px #e8bb28, 0 0 2px #fff;
    animation: pulseLive 0.75s infinite;
}
@keyframes pulseLive {
    0% { box-shadow: 0 0 8px #ff0000, 0 0 2px #fff;}
    50% { box-shadow: 0 0 18px #e82828, 0 0 6px #fff;}
    100% { box-shadow: 0 0 8px #910000, 0 0 2px #fff;}
}