:root {
    --primary: #1976d2; /* Professional blue */
    --primary-dark: #1565c0;
    --secondary: #0288d1; /* Secondary blue */
    --accent: #29b6f6; /* Light blue accent */
    --light: #f8f9fa;
    --dark: #212529;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --dark-gray: #495057;
    --text-color: #212529;
    --border-color: #dee2e6;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --purple: #6f42c1;
    --light-purple: #d6c7e7;
    --dark-purple: #5a32a3;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Border radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light);
    color: var(--text-color);
    line-height: 1.6;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(25, 118, 210, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.3);
}

.card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    background-color: var(--white);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--primary);
}

.navbar.scrolled {
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-lg);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary);
    background-color: rgba(25, 118, 210, 0.1);
}

footer {
    background-color: var(--dark);
    color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.text-gold {
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1.5rem;
    }
}

.container {
    max-width: 90%;
}

/* Additional styles from design files */
.text-purple {
    color: var(--purple);
}

.text-dark-purple {
    color: var(--dark-purple);
}

.btn-purple {
    background-color: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}

.btn-purple:hover {
    background-color: var(--dark-purple);
    border-color: var(--dark-purple);
}

.bg-purple {
    background-color: var(--purple) !important;
}

.pricing-box {
    border: 1px solid var(--border-color);
    margin: 0;
    padding: 0;
    background: var(--white);
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.pricing-box .header {
    background-color: var(--primary);
    color: white;
    font-size: 25px;
    padding: 15px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    border-radius: 12px 12px 0 0;
}

.pricing-box .price {
    font-size: 36px;
    color: var(--primary);
    line-height: 46px;
    padding: 20px;
    text-align: center;
    font-weight: 700;
}

.pricing-box .features {
    list-style-type: none;
    padding: 0;
}

.pricing-box .features li {
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    text-align: center;
    color: var(--text-color);
    font-size: 16px;
}

.pricing-box .button {
    background-color: var(--primary);
    border: none;
    color: white;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    width: 100%;
    display: block;
    margin-top: 20px;
    transition: background-color 0.3s;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    border-radius: 8px;
}

.pricing-box .button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 0, 0, 0.3);
}

.four-box-content {
    min-height: 124px;
    line-height: 1.3;
    color: var(--text-color);
    padding: 15px;
    background: var(--white);
    box-shadow: 0px 0px 5px 1px rgba(141, 141, 141, 0.1);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.four-box-content:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    height: 80px;
    line-height: 115px;
    text-align: center;
    width: 80px;
    margin: 0 auto;
}

.icon-wrapper .title {
    font-size: 16px;
    line-height: normal;
    margin: 10px 0 3px;
}

.text-icon-box {
    line-height: 16px;
    font-size: 13px;
    min-height: 52px;
    color: var(--purple);
}

/* Oganro Specific Styles */
.top-bar {
    font-size: 14px;
}

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand .brand-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    color: var(--primary);
    font-size: 24px;
    vertical-align: middle;
}

.navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    padding: 10px 15px;
    margin: 0 5px;
    transition: all 0.3s;
    border-radius: 8px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
    background-color: rgba(25, 118, 210, 0.1);
}

.footer {
    background-color: var(--dark);
    border-top: 5px solid var(--primary);
}

.footer h5 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.footer ul li a {
    color: #94a3b8;
    transition: all 0.3s;
}

.footer ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.why-choose-section {
    padding: 80px 0;
    background-color: var(--light);
}

.why-choose-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-section .section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.why-choose-section .section-title p {
    font-size: 18px;
    color: var(--gray);
}

.icon-box {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    margin-bottom: 30px;
    border-radius: 12px;
}

.icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-box .icon {
    width: 80px;
    height: 80px;
    background-color: rgba(230, 0, 0, 0.1);
    border-radius: 50%;
    display: inline-block;
    line-height: 80px;
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 20px;
}

.icon-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.icon-box p {
    color: var(--gray);
}

.services-section {
    padding: 80px 0;
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.services-section .section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.services-section .section-title p {
    font-size: 18px;
    color: var(--gray);
}

.service-box {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    margin-bottom: 30px;
    border-radius: 12px;
    border-top: 4px solid var(--primary);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-box .icon {
    width: 100px;
    height: 100px;
    background-color: rgba(230, 0, 0, 0.1);
    border-radius: 50%;
    display: inline-block;
    line-height: 100px;
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-box p {
    color: var(--gray);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    border-top: 3px solid var(--primary);
}

.dropdown-item {
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--primary);
    color: var(--white);
}

.dropdown-divider {
    margin: 0.5rem 0;
}