:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-purple: #7c3aed;
    --accent-cyan: #D7DFA3;
    --light-gray: #f8fafc;
    --dark-gray: #1f2937;
    --text-gray: #6b7280;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --error-red: #ef4444;
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #D7DFA3 100%);
    --gradient-secondary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}
li {
    list-style: none;
}
body {
   
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Enhanced Container */
.container-fluid {
    max-width: 1768px;
    padding-left: 2rem;
    padding-right: 2rem;
}

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Enhanced HR Styles */
hr {
    border: none;
    border-top: 2px solid #e5e7eb;
    margin: 2rem 0;
}

.hr-white {
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
}

/* Spacing Utilities */
.py-5 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.mt-32 {
    margin-top: 4rem;
}

.p-32 {
    padding: 4rem;
}

/* Enhanced Button Styles */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

/* Enhanced Card Styles */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.card-header {
    background: var(--light-gray);
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem;
}

.card-body {
    padding: 2rem;
}

.card-footer {
    background: var(--light-gray);
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem;
}

/* Enhanced Form Styles */
.form-control {
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #ffffff;
}


.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

/* Enhanced Alert Styles */
.alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

/* Enhanced Badge Styles */
.badge {
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.badge-primary {
    background: var(--gradient-primary);
    color: white;
}

.badge-secondary {
    background: var(--gradient-secondary);
    color: white;
}

/* Enhanced Progress Bar */
.progress {
    height: 8px;
    border-radius: 50px;
    background-color: #e5e7eb;
    overflow: hidden;
}

.progress-bar {
    background: var(--gradient-primary);
    transition: width 0.6s ease;
}

/* Enhanced Modal Styles */
.modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-heavy);
}

.modal-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 2rem 2rem 1rem 2rem;
}

.modal-body {
    padding: 1rem 2rem 2rem 2rem;
}

.modal-footer {
    border-top: 1px solid #e5e7eb;
    padding: 1rem 2rem 2rem 2rem;
}

/* Enhanced Table Styles */
.table {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.table thead th {
    background: var(--light-gray);
    border: none;
    font-weight: 600;
    color: var(--dark-gray);
    padding: 1rem;
}

.table tbody td {
    border: none;
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.table tbody tr:hover {
    background-color: #f8fafc;
}

/* Enhanced List Styles */
.list-group {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #f3f4f6;
    padding: 1rem 1.5rem;
    transition: var(--transition);
}

.list-group-item:hover {
    background-color: #f8fafc;
}

.list-group-item:last-child {
    border-bottom: none;
}

/* Enhanced Pagination */
.pagination {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 0.5rem;
}

.page-link {
    border: none;
    color: var(--accent-purple);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.page-link:hover {
    background: var(--gradient-primary);
    color: white;
}

.page-item.active .page-link {
    background: var(--gradient-primary);
    color: white;
}

/* Enhanced Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item {
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--accent-cyan);
}

.breadcrumb-item.active {
    color: var(--text-gray);
}

/* Enhanced Dropdown */
.dropdown-menu {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border-radius: 0;
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: white;
}

/* Enhanced Navbar (Additional styles for existing navbar) */
.navbar-custom {
    background:#06213E;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-custom.scrolled {
     background:#06213E;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    color: white !important;
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.75rem 0.5rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
}



.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
   
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgb(193 142 101);
   
    text-decoration: none;
}

/* Enhanced Footer Styles */
.footer {
 background-color: #06213E; 
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrain)"/></svg>');
    opacity: 0.3;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced Service Cards */
.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    padding: 2rem;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-card.market-entry {
    background: linear-gradient(135deg, #e1f5fe 0%, #81d4fa 100%);
}

.service-card.global-growth {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.service-card.incorporation {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}

.service-card.investment {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc02 100%);
}

.service-card.tech-digital {
    background: linear-gradient(135deg, #e3f2fd 0%, #90caf9 100%);
}

.service-card.business-matchmaking {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
}

.service-card.post-launch {
    background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%);
}

.service-card.regulatory-tax {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.service-card.ip-legal {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}

.service-card.training-workshops {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    
}

.service-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.service-tag {
    background: rgba(255, 255, 255, 0.8);
    color: #2d3748;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-explore {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-explore:hover {
    color: var(--accent-purple);
    text-decoration: none;
    transform: translateX(5px);
}

/* Enhanced Hero Sections */
.hero-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 8rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
        position: absolute;
    top: 0;
        left: 0;
        right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23heroGrain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-banner h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
  
    line-height: 1.2;
}

.hero-banner p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: white;
    color: #1e3a8a;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.btn-primary-custom:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #1e3a8a;
    text-decoration: none;
}

.btn-outline-custom {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
        display: inline-block;
}

.btn-outline-custom:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Enhanced Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
  
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #6b7280;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Stats Section */
.impact-stats {
    padding: 6rem 0;
    background: var(--light-gray);
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 1rem;
   
}

.stat-label {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Enhanced Client Logos */
.client-logos {
    padding: 4rem 0;
    background: white;
}

.logo-strip {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    overflow: hidden;
}

.logo-item {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6b7280;
    padding: 1rem 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    white-space: nowrap;
}

.logo-item:hover {
  
    color: white;
    transform: translateY(-3px);
}

/* Enhanced Testimonial */
.testimonial-carousel {
    padding: 6rem 0;
    background: var(--light-gray);
}

.testimonial-card-home {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote-home {
    font-size: 1.5rem;
    font-style: italic;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.6;
   
}

.testimonial-author-home {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 600;
}

/* Enhanced CTA Section */
.closing-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
        text-align: center;
}

.closing-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
  
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-fluid {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-banner {
        padding: 6rem 0 4rem 0;
    }
    
    .hero-banner h1 {
        font-size: 2rem !important;
    }
    
    .hero-banner p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-quote-home {
        font-size: 1.25rem;
    }
    
    .logo-strip {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .py-5 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    .mt-32 {
        margin-top: 2rem;
    }
    
    .p-32 {
        padding: 2rem;
    }
    
    .hero-banner h1 {
        font-size: 1.75rem;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-card-home {
        padding: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .contact-btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .card {
        page-break-inside: avoid;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #000080;
        --accent-purple: #800080;
        --accent-cyan: #008080;
    }
    
    .btn-primary {
        background: #000080;
        border: 2px solid #000080;
    }
    
    .btn-outline-primary {
        border: 2px solid #000080;
        color: #000080;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .scale-in {
        opacity: 1;
        transform: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --light-gray: #1f2937;
        --dark-gray: #f9fafb;
        --text-gray: #d1d5db;
    }
    
    body {
      
        color: #f9fafb;
    }
    
    .card {
        background-color: #1f2937;
        color: #f9fafb;
    }
    
    .form-control {
        background-color: #1f2937;
        border-color: #374151;
        color: #f9fafb;
    }
    
    .table {
        color: #f9fafb;
    }
    
    .table thead th {
        background-color: #374151;
        color: #f9fafb;
    }
    
    .table tbody tr:hover {
        background-color: #374151;
    }
}




