/* Reset some basic styling */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth; 
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #344767;
    padding-top: 75px;
    background-color: #F0F2F5;
}

body, html {
    height: 100%;
}

h1, h2, .slab {
    font-family: 'Roboto Slab', serif;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-12 {
    margin-bottom: 12px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.mt-12 {
    margin-top: 12px !important;
}

.mt-24 {
    margin-top: 24px !important;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

/* Background image top-right */
.bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 52vw;
    height: 98vh;
    background-image: url('assets/images/hero-bg.png');
    background-size: cover;
    background-position: top right;
    z-index: 1;
    pointer-events: none;
    border-bottom-left-radius: 164px;
}
  
/* Navigation */
.nav-bar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.nav-bar ul {
    list-style: none;
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-bar ul li {
    margin: 0 1rem;
}

.nav-bar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Colors */
.primary {
    color: #1591EA;
}

/* Buttons */
button,
.button {
    display: inline-block;
    padding: 0.8em 2em;
    font-size: 1.1em;
    font-weight: 600;
    border: 0px;
    text-decoration: none;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.15),
              -1px -1px 2px rgba(255,255,255,0.3);
    transition: all 0.15s ease-in-out;
    outline: none;
    border-radius: 8px;
}

button:hover,
.button:hover {
    cursor: pointer;
    filter: brightness(0.9);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2),
                -2px -2px 4px rgba(255, 255, 255, 0.3);
    transform: translateY(-0.5px);
}

button:active,
.button:active {
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.2),
              inset -1px -1px 2px rgba(255,255,255,0.25);
    transform: translateY(1px);
}

button.small,
.button.small {
    font-size: 0.8rem;
}

button.primary,
.button.primary {
    color: white;
    background: linear-gradient(to right, #00B2F4, #1591EA);
}

button.normal,
.button.normal {
    color: #7B809A;
    background-color: #F0F2F5;
    border: 1px solid #7B809A;
}

button.rounded,
.button.rounded {
    border-radius: 32px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #F0F2F5;
}

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text-box {
    width: 54%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.8rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 164px;
}

.hero-text-box .hero-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.75rem;
}

.hero-text-box .hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-text-box .hero-text {
    font-size: 1rem;
    color: #344767;
}

.hero-text-box .hero-actions {
    display: flex;
    margin-top: 2.4rem;
    font-size: 0.75rem;
    color: #344767;
    gap: 12px;
}

/* Product Section */
.product-section {
    padding: 4rem 1rem;
    color: #333;
    margin-top: 12px;
    background-color: #F0F2F5;
}

.product-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.product-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.text-column {
    flex: 1;
    min-width: 300px;
}

.text-column-title {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.2rem;
}

.text-column-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.2rem;
}
  
.text-column .highlight {
    color: #1378C7;
}
  
.text-column .text-column-content {
    font-size: 0.92rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #5f6b7a;
}

.link {
    display: inline-block;
    margin-top: 0.8rem;
    color: #1591EA;
    font-weight: bold;
    text-decoration: none;
}

/* Footer */
footer {
    background-color: #2980b9;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}