/* --- ROOT VARIABLES & RESET --- */
:root {
    --primary: #ff5722;
    --primary-dark: #e64a19;
    --secondary: #2d3436;
    --dark: #0f172a;
    --light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: grey;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    transition: var(--transition);
}

/* Scrolled State (Optional: trigger via JS) */
.navbar.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Logo Styling */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}

/* Desktop Links */
.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
    list-style: none;
}

.nav-links a.nav-item {
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

/* Animated Underline Effect */
.nav-links a.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a.nav-item:hover::after {
    width: 100%;
}

.nav-links a.nav-item:hover {
    color: var(--primary);
}

/* Button Styling */
.btn-nav {
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--primary);
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
    transition: var(--transition);
    display: inline-block;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 3px;
}

/* ==========================================
   RESPONSIVE STYLES (Mobile First)
   ========================================== */

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    /* Animate Hamburger to X */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 70%;
        /* Side drawer width */
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a.nav-item {
        font-size: 20px;
    }
}

/* --- ENHANCED HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    background: #050811;
    /* Deeper Background */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    z-index: 10;
}

/* Background Glows */
.hero-glow-1,
.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
}

.hero-glow-1 {
    top: -10%;
    right: -5%;
    background: var(--primary);
}

.hero-glow-2 {
    bottom: -10%;
    left: -5%;
    background: #2196f3;
}

/* Text Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    color: #cbd5e1;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(74, 222, 128, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), #ff8a65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 18px 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Visual Side (Right) */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-card {
    width: 280px;
    height: 380px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: floatCard 6s ease-in-out infinite;
}

.main-card img {
    width: 120px;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.card-status {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

/* Floating Service Pills */
.floating-pill {
    position: absolute;
    background: white;
    color: var(--dark);
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: floatPill 4s ease-in-out infinite;
}

.floating-pill i {
    color: var(--primary);
}

.pill-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.pill-2 {
    top: 20%;
    right: 0;
    animation-delay: 1s;
}

.pill-3 {
    bottom: 20%;
    left: -20px;
    animation-delay: 2s;
}

.pill-4 {
    bottom: 10%;
    right: -10px;
    animation-delay: 0.5s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes floatPill {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Divider */
.hero-divider {
    position: absolute;
    bottom: -2px;
    width: 100%;
    line-height: 0;
}

.hero-divider .shape-fill {
    fill: var(--light);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-visual {
        display: none;
    }
}

/* --- SERVICES --- */
.section-pad {
    padding: 100px 0;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 30px;
}

.section-title span {
    color: var(--primary);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-box {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 25px;
    width: 70px;
    height: 70px;
    background: rgba(255, 87, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card:hover .learn-more i {
    transform: translateX(5px);
}

/* --- STATS --- */
.stats-section {
    background: var(--dark);
    padding: 80px 0;
    margin-top: 50px;
    position: relative;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.counter {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    display: block;
}

.stat-box p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* CONTACT SECTION */

.contact-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    color: white;
}

.section-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 40px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Info Side */
.info-card {
    margin-bottom: 30px;
}

.info-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 87, 34, 0.2);
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: #f8fafc;
}

.info-item p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Socials */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    border-color: var(--primary);
}

/* Form Styles */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    /* background: rgba(15, 23, 42, 0.6); */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    /* color: white; */
    border-radius: 12px;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.2);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-submit:hover {
    background: #ff7043;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .contact-section {
        padding: 60px 0;
    }
}

/* --- PREMIUM APP DOWNLOAD POPUP --- */
#fsAppPopup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100000;
    display: none;
    animation: premiumPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes premiumPop {
    from {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }

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

.fs-premium-card {
    width: 330px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

.fs-popup-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary);
}

.fs-close-btns button {
    background: #f1f5f9;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 5px;
    font-size: 12px;
    color: #64748b;
    transition: 0.3s;
}

.fs-app-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.2);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.fs-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--dark);
    color: white !important;
    padding: 14px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    width: 100%;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

#fsAppMin {
    position: fixed;
    bottom: 10px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.4);
}

/* --- CHATBOT CSS --- */
.fastsewa-chatbot-toggle {
    position: fixed;
    bottom: 10px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 87, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

.fastsewa-chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 350px;
    height: 500px;
    max-height: 80vh;
    background: #fff;
    display: none;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    overflow: hidden;
    border: 1px solid #eee;
}

.fastsewa-chatbot-header {
    background: var(--primary);
    padding: 15px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fastsewa-chatbot-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fastsewa-message {
    max-width: 85%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.fastsewa-user-message {
    background: var(--primary);
    color: white;
    align-self: flex-end;
}

.fastsewa-bot-message {
    background: white;
    align-self: flex-start;
    border: 1px solid #eee;
}

.fastsewa-chatbot-footer {
    padding: 10px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.fastsewa-chatbot-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.fastsewa-chatbot-send-btn {
    background: var(--primary);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        width: 100%;
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .social-links {
        margin-top: 15px;
    }
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE: Hide FS App Popup & Icon */
@media (max-width: 768px) {

    #fsAppPopup,
    #fsAppMin {
        display: none !important;
    }
}


.hide-chatbot .fastsewa-chatbot-toggle,
.hide-chatbot .fastsewa-chatbot-container {
    display: none !important;
}

/* Initially hidden until scroll */
.fastsewa-chatbot-toggle,
#fsAppMin,
#fsAppPopup {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(20px);
}

/* Visible state */
.show-floating-ui .fastsewa-chatbot-toggle,
.show-floating-ui #fsAppMin,
.show-floating-ui #fsAppPopup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ============================= */
/* USER PROFILE NAV */
/* ============================= */

.user-nav-profile {
    position: relative;
    list-style: none;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: rgba(255, 87, 34, 0.1);
    padding: 5px 15px 5px 5px;
    border-radius: 30px;
    border: 1px solid rgba(255, 119, 34, 0.2);
}

.profile-avatar {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.profile-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

.profile-dropdown {
    display: none;
    position: absolute;
    right: -35px;
    top: 68px;
    background: white;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px;
    z-index: 1000;
    border: 1px solid #6085f6;
}

.dropdown-header {
    padding: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
    font-size: 13px;
}

.dropdown-header strong {
    display: block;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    font-size: 14px;
    color: #333;
}

.dropdown-link.logout {
    color: #ef4444;
}

.dropdown-link:hover {
    background: #f9fafb;
    border-radius: 8px;
}

@media (max-width: 992px) {

    .user-nav-profile {
        width: 100%;
        text-align: center;
    }

    .profile-trigger {
        justify-content: center;
    }

    .profile-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 15px;
    }
}