/* Bootstrap 5.3 + Font Awesome + Base Styles */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800;900&display=swap');

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

/* Remove outline on focus */
*:focus {
    outline: none !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

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

/* Utility Classes */
.fw-200 { font-weight: 200; }
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

/* Display utilities */
.fs-14 { font-size: 14px; }
.fs-15 { font-size: 15px; }
.fs-16 { font-size: 16px; }
.fs-17 { font-size: 17px; }
.fs-18 { font-size: 18px; }
.fs-19 { font-size: 19px; }
.fs-20 { font-size: 20px; }

/* Border radius */
.border-radius-6px { border-radius: 6px; }
.border-radius-10px { border-radius: 10px; }

/* Shadows */
.box-shadow-quadruple-large {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.box-shadow-quadruple-large-hover:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Transitions */
.transition-inner-all {
    transition: all 0.3s ease;
}

/* Padding utilities */
.p-16 { padding: 16px; }
.lg-p-10 { padding: 10px; }
.mb-25px { margin-bottom: 25px; }
.mb-15px { margin-bottom: 15px; }
.md-mb-15px { margin-bottom: 15px; }
.md-mb-30px { margin-bottom: 30px; }
.sm-mb-30px { margin-bottom: 30px; }

/* Header utilities */
.header-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
}

.header-light .navbar-nav .nav-link:hover {
    color: #A26FFD;
}

/* Navbar */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Feature boxes */
.feature-box {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    text-align: center;
}

.feature-box-icon {
    margin-bottom: 1.5rem;
}

.feature-box-content {
    flex: 1;
}

.last-paragraph-no-margin p:last-child {
    margin-bottom: 0;
}

/* Icon styles */
.w-60px {
    width: 60px !important;
    height: 60px !important;
}

/* Background utilities */
.bg-white {
    background-color: #fff !important;
}

/* Responsive utilities */
@media (max-width: 991px) {
    .lg-p-10 { padding: 10px; }
}

@media (max-width: 767px) {
    .md-mb-15px { margin-bottom: 15px; }
    .md-mb-30px { margin-bottom: 30px; }
}

@media (max-width: 575px) {
    .sm-mb-30px { margin-bottom: 30px; }
}