/* ==========================================================================
   1. Global Styles & Variables
   ========================================================================== */
:root {
    --primary-color: #3B82F6; /* A modern, accessible blue */
    --primary-color-darker: #2563EB;
    --accent-color: #10B981; /* A vibrant green/teal for accents */
    --text-dark: #1F2937; /* Dark gray for primary text */
    --text-medium: #4B5563; /* Medium gray for secondary text */
    --text-light: #9CA3AF; /* Light gray for muted text */
    --background-light: #F3F4F6; /* Very light gray for page background */
    --background-white: #FFFFFF;
    --border-color: #D1D5DB; /* Light gray for borders */
    --border-radius-sm: 0.375rem; /* 6px */
    --border-radius-md: 0.5rem; /* 8px */
    --border-radius-lg: 0.75rem; /* 12px */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --font-primary: 'Poppins', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--font-primary);
    background-color: var(--background-light);
    color: var(--text-medium);
    line-height: 1.6;
}

/* ==========================================================================
   2. Utility Classes
   ========================================================================== */
.blue-bg { /* Now uses primary color variable */
    background-color: var(--primary-color);
    padding: 20px;
    color: var(--background-white); /* Ensuring text contrast */
}

.white-text {
    color: var(--background-white) !important; /* Important to override other text colors */
}

/* ==========================================================================
   3. Location Info & Icons
   ========================================================================== */
.location-info {
    display: flex;
    align-items: center;
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.location-info i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.location-info span {
    font-weight: 600;
}

.location-separator {
    margin: 0 0.5rem;
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-color); /* Consistent icon color */
}

.location-container {
    margin-bottom: 2rem;
}

.location-text {
    text-align: center;
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */
.btn-container {
    display: flex;
    justify-content: center;
    gap: 15px; /* Modern way to add space */
}

.btn { /* General button enhancements */
    padding: 0.65rem 1.5rem;
    font-size: 1rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary { /* Example primary button, can be used by #home.hero-section */
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--background-white);
}

.btn-primary:hover {
    background-color: var(--primary-color-darker);
    border-color: var(--primary-color-darker);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   5. Navbar
   ========================================================================== */
.navbar {
    padding: 1rem 0;
    background-color: var(--background-white); /* Giving navbar a solid background */
    box-shadow: var(--shadow-sm); /* Subtle shadow for depth */
}

.navbar-brand img {
    max-height: 45px; /* Slightly larger logo */
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.8rem 1.5rem; /* Balanced padding */
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: var(--border-radius-sm);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    /* background-color: rgba(var(--primary-color-rgb), 0.1); /* Optional: subtle background on hover/active */
}

.offcanvas-header {
    border-bottom: 1px solid var(--border-color);
}

.offcanvas-title {
    font-weight: 600;
    color: var(--text-dark);
}

/* ==========================================================================
   6. Hero Section (#home)
   ========================================================================== */
#home.hero-section {
    background: linear-gradient(135deg, #E0E7FF, #C7D2FE, #EEF2FF); /* Softer, modern gradient */
    /* Or use a subtle pattern or image: background-image: url('path/to/subtle-pattern.svg'); background-repeat: repeat; */
    min-height: 90vh; /* Slightly less than full to account for navbar sometimes */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}

#home.hero-section .container {
    width: 100%;
    padding: 40px 20px; /* Adjusted padding */
}

#home.hero-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), #cf23cf, #715bbd);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

#home.hero-section h4 {
    color: var(--text-medium);
    font-size: clamp(1.2rem, 3vw, 1.6rem); /* Responsive font size */
    margin-bottom: 2rem;
}

#home.hero-section .lead {
    color: var(--text-medium);
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Responsive font size */
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

/* Button style from global .btn-primary will apply, or you can override */
/* #home.hero-section .btn-primary { ... } */


#home.hero-section .location-info {
    color: var(--primary-color-darker);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1.5rem;
    justify-content: center;
    font-weight: 500;
}

#home.hero-section .location-info i {
    margin-right: 0.75rem;
    font-size: 1.8em; /* Relative to parent */
}

@media (max-width: 768px) {
    #home.hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    #home.hero-section h2 {
        font-size: 2rem;
    }
    #home.hero-section h4 {
        font-size: 1.1rem;
    }
    #home.hero-section .lead {
        font-size: 1rem;
    }
    #home.hero-section .location-info {
        font-size: 1.2rem;
        flex-direction: column; /* Stack location items */
        gap: 0.5rem;
    }
    #home.hero-section .d-flex.btn-container { /* If using btn-container for hero buttons */
        flex-direction: column; /* Stack buttons on mobile */
        gap: 10px;
    }
     #home.hero-section .d-flex:not(.btn-container){ /* Restore default for non-button flex containers if any */
        flex-direction: row;
    }
}


/* ==========================================================================
   7. About Section
   ========================================================================== */
.about-section {
    padding: 5rem 0;
    background-color: var(--background-white); /* Alternate with light gray for section distinction */
}

.about-section h2 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.about-section p.lead-text { /* Add a class for the lead paragraph if needed */
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-section .card {
    border: none;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-color: var(--background-white);
    border-radius: var(--border-radius-lg);
}

.about-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.about-section .card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-section .card-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background-color: rgba(var(--primary-color-rgb, 59, 130, 246), 0.1); /* Using placeholder for RGB until actual variable definition */
    padding: 1rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* To use var(--primary-color-rgb), define it in :root like: --primary-color-rgb: 59, 130, 246; */


.about-section .card-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.about-section .card-text {
    color: var(--text-medium);
    flex-grow: 1;
    line-height: 1.7;
}

.about-section .highlight {
    color: var(--primary-color);
    font-weight: 600;
}


/* ==========================================================================
   8. Home Services Section (#home-services)
   ========================================================================== */
#home-services {
    background-color: var(--background-light);
    padding: 80px 0; /* Increased padding */
}

#home-services h2 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem; /* Standardized margin */
    text-align: center;
}

#home-services .lead {
    color: var(--text-medium);
    margin-bottom: 3rem; /* Standardized margin */
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-group {
    background-color: var(--background-white); /* Cards on light bg */
    padding: 30px;
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem; /* Space between cards if they stack */
}

.service-group:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-group h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    font-size: 1.3rem;
}

.service-group .list-unstyled {
    padding-left: 0;
    list-style: none;
}

.service-group .list-unstyled li {
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 25px; /* Increased padding for icon */
}

.service-group .list-unstyled li::before {
    content: "\2713"; /* Checkmark icon, or use FontAwesome: content: "\f00c"; font-family: "Font Awesome 5 Free"; font-weight: 900; */
    position: absolute;
    left: 0;
    color: var(--accent-color); /* Using accent color for list items */
    font-weight: bold;
}

/* The .btn-outline-primary style is defined globally */
.service-group .btn-outline-primary {
    margin-top: 1rem; /* Space above button */
}

/* Responsive for Service Group Columns */
@media (max-width: 991px) and (min-width: 769px) { /* For tablets where col-md-4 stacks but isn't full width */
    .service-group {
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    #home-services .col-md-4 { /* If using Bootstrap col-md-4 for service groups */
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .service-group:last-child {
        margin-bottom: 0;
    }
}


/* ==========================================================================
   9. Team Section
   ========================================================================== */
#team {
    padding: 5rem 0;
    background-color: var(--background-white); /* Alternating background */
}

#team h2 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.team-member {
    margin-bottom: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}
.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 160px; /* Slightly larger */
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--background-white); /* Border to lift from potential bg */
    margin-bottom: 1.5rem;
    display: block; /* Already block, fine */
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-lg); /* Prominent shadow */
}

.team-member h3 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-member p.role { /* For team member's role */
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}
.team-member p { /* General description */
    color: var(--text-medium);
    font-size: 0.95rem;
}


/* ==========================================================================
   10. Partners Section
   ========================================================================== */
#partners {
    padding: 5rem 0;
    background-color: var(--background-light);
}

#partners h2 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

#partners .lead {
    color: var(--text-medium);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.partner-member {
    margin-bottom: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-image-wrapper {
    display: flex; /* For centering */
    justify-content: center;
    align-items: center;
    height: 100px; /* Fixed height for alignment, adjust as needed */
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--background-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.partner-member img {
    max-width: 80%;
    max-height: 60px; /* Max height within the wrapper */
    height: auto;
    object-fit: contain;
    filter: grayscale(100%); /* Modern look for logos */
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-member:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Hide textual partner info if logos are primary, or style them */
.partner-member h3, .partner-member p {
    display: none; /* Assuming logos are the focus. Remove if text is needed. */
}


@media (max-width: 768px) {
    #partners {
        padding: 4rem 0;
    }
    .partner-image-wrapper {
        height: 80px; /* Smaller on mobile */
    }
     .partner-member img {
        max-height: 40px;
    }
    /* Keep logos visible on mobile by not re-enabling display:none here */
}

/* ==========================================================================
   11. Generic Services Section (used to be #services)
   ========================================================================== */
#services { /* If this is a distinct section from #home-services */
    background-color: var(--background-white);
    padding: 80px 0;
}

#services h2 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

#services .lead {
    color: var(--text-medium);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#services .card {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-lg);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* For equal height cards in a row */
}

#services .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

#services .card-body {
    padding: 2rem;
    text-align: center; /* Center content in card */
}

#services .card-icon { /* Standardized card icon */
    font-size: 2.5rem;
    color: var(--primary-color);
    background-color: rgba(var(--primary-color-rgb, 59, 130, 246), 0.08);
    border-radius: 50%;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    line-height: 1; /* Ensure icon aligns well if it's text-based */
}

#services .card-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

#services .card-text {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
/*
#services .text-primary, .text-success, etc. can directly use Bootstrap classes
or define custom ones:
.text-service-feature { color: var(--accent-color); }
*/
/* Generic button styles apply (.btn, .btn-outline-primary) */
@media (max-width: 768px) {
    #services .col-md-6, /* If using BS col-md-6 */
    #services .col-lg-4 { /* If using BS col-lg-4 etc. */
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ==========================================================================
   12. Contact Section
   ========================================================================== */
#contact {
    background-color: var(--background-light);
    padding: 80px 0;
}

#contact h2 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

#contact .lead {
    color: var(--text-medium);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#contact .contact-info,
#contact form {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem; /* Space between info and form if they stack */
}

#contact .contact-info h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

#contact .contact-info p,
#contact .contact-info a {
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    text-decoration: none;
}
#contact .contact-info a:hover {
    color: var(--primary-color);
}
#contact .contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px; /* Ensure alignment */
    text-align: center;
}


#contact .form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

#contact .form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 12px 15px;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--background-white); /* Ensure it's not transparent */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb, 59, 130, 246), 0.25);
}

#contact button[type="submit"] { /* This will inherit .btn and .btn-primary styles */
    width: 100%; /* Full width submit button */
    padding: 12px 20px;
}

@media (max-width: 768px) {
    #contact {
        padding: 60px 0;
    }
}


/* ==========================================================================
   13. Home Sections (Generic Content Blocks)
   ========================================================================== */
.home-sections { /* Renamed for clarity, was .home-sections */
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.home-sections:last-child {
    border-bottom: none;
}

.home-sections h2 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.home-sections p {
    color: var(--text-medium);
    margin-bottom: 1.5rem; /* Default paragraph margin */
}

@media (max-width: 768px) {
    .home-sections {
        padding: 40px 0;
    }
    .home-sections .col-md-6 { /* Assuming Bootstrap grid */
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .home-sections .col-md-6:last-child {
        margin-bottom: 0;
    }
    .home-sections img { /* Making images responsive within these sections */
        max-width: 100%;
        height: auto;
        border-radius: var(--border-radius-md);
    }
}


/* ==========================================================================
   14. Tabs & Collapse Styles
   ========================================================================== */
/* Tabs Style */
.nav-tabs {
    border-bottom: 2px solid var(--border-color); /* More defined base for tabs */
}
.nav-tabs .nav-link {
    color: var(--text-medium);
    font-weight: 500;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 1.25rem;
    transition: color 0.3s ease, border-color 0.3s ease;
    border-top-left-radius: var(--border-radius-sm);
    border-top-right-radius: var(--border-radius-sm);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background-color: var(--background-white); /* Active tab visually lifts up */
}

.nav-tabs .nav-link:hover:not(.active) {
    color: var(--text-dark);
    border-bottom-color: var(--text-light); /* Subtle hover indication */
}

.tab-content {
    padding: 2rem 0; /* More padding after tabs for content separation */
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-top: none; /* Tab bar acts as top border */
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    padding: 2rem;
}

/* Collapse Style (Accordion) */
.accordion-item { /* Assuming Bootstrap 5 accordion structure */
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: var(--border-radius-md);
}
.accordion-header button {
    background-color: transparent; /* Keep button background clean */
    color: var(--text-dark);
    font-weight: 600;
    padding: 1rem 1.25rem;
    width: 100%;
    text-align: left;
    border: none;
    box-shadow: none !important; /* Remove BS focus shadow */
}
.accordion-header button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(var(--primary-color-rgb, 59, 130, 246), 0.05);
}
.accordion-body {
    padding: 1rem 1.25rem;
    color: var(--text-medium);
}


/* AI Section Specific Styles (if inside tabs/collapse) */
.ai-benefits-list {
    list-style-type: none; /* Using custom bullets */
    padding-left: 0;
}

.ai-benefits-list li {
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
}
.ai-benefits-list li::before {
    content: "\272A"; /* Or use a FontAwesome icon like \f005 (star) */
    position: absolute;
    left: 0;
    color: var(--accent-color); /* Use accent for AI benefits */
    font-size: 1.1em;
}

/* Cybersecurity content specific classes */
#cybersecurity .cybersecurity-intro,
#cybersecurity .cybersecurity-expertise {
    margin-bottom: 2rem;
}
#cybersecurity .cybersecurity-expertise h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ==========================================================================
   15. Footer
   ========================================================================== */
footer {
    background-color: var(--text-dark); /* Dark footer for contrast */
    color: var(--text-light);
    padding: 3rem 0;
    margin-top: auto; /* Pushes footer to bottom in flex container */
}

footer .container {
    max-width: 1200px;
}

footer .footer-column { /* If using columns */
    margin-bottom: 2rem;
}

footer .footer-column h5 { /* Footer column titles */
    color: var(--background-white);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

footer p, footer .copyright-wrapper {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--text-light); /* Subtler links */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color); /* Highlight links on hover */
    text-decoration: underline;
}

footer .social-icons .list-inline-item {
    margin: 0 8px;
}

footer .social-icons a i {
    font-size: 1.5rem; /* Larger social icons */
    color: var(--text-light);
    transition: color 0.3s ease, transform 0.3s ease;
}

footer .social-icons a:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* For copyright specific row or section */
.footer-bottom {
    border-top: 1px solid var(--text-medium); /* Separator for copyright */
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0;
        text-align: center; /* Center footer content on mobile */
    }
    footer .footer-column {
        margin-bottom: 2rem;
        align-items: center; /* Ensure content aligns center in flex columns */
    }
    .footer-bottom {
         margin-top: 1rem;
         padding-top: 1rem;
    }
}