:root {
    --primary-color: #033489;
    --secondary-color: #f1af3d;
    --accent-color: #ea793c;
    --text-dark: #0b122a;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand {
    font-size: 1.5rem;
    padding: 0.5rem 0;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 50%, rgba(3, 52, 137, 0.05) 100%);
    /* padding-top: 40px; */
    position: relative;
    overflow: hidden;
}

/* Background Animations */
.hero-bg-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    top: 10%;
    right: 30%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Gradient Orbs */
.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    bottom: 20%;
    left: 60%;
    animation-delay: 6s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* Particles Canvas */
.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Z-index for content */
.z-1 {
    position: relative;
    z-index: 2;
}

/* Services Section */
#services {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(241, 175, 61, 0.03) 100%);
}

#services .card {
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 52, 137, 0.1);
    box-shadow: 0 8px 25px rgba(3, 52, 137, 0.1);
    background: white;
    position: relative;
    overflow: hidden;
}

#services .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#services .card:hover::before {
    transform: scaleX(1);
}

#services .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(3, 52, 137, 0.2);
    border-color: var(--primary-color);
}

#services .card-body {
    position: relative;
    z-index: 1;
}

/* Icon styling with brand colors */
#services .bg-primary {
    background: var(--primary-color) !important;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

#services .card:hover .bg-primary {
    background: var(--secondary-color) !important;
    transform: scale(1.1) rotate(5deg);
}

#services .text-primary {
    color: #fff !important;
    transition: all 0.3s ease;
}

#services .card:hover .text-primary {
    color: #fff !important;
}

/* Card title hover effect */
#services .card-title {
    transition: all 0.3s ease;
}

#services .card:hover .card-title {
    color: #033489 !important;
}

/* Feature list styling */
#services .list-unstyled li {
    transition: all 0.3s ease;
    color: #6c757d;
}

#services .list-unstyled li i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

#services .card:hover .list-unstyled li {
    transform: translateX(8px);
    color: var(--text-dark);
}

#services .card:hover .list-unstyled li i {
    color: var(--secondary-color);
    transform: scale(1.2);
}

/* Badge styling */
#services .badge {
    background: var(--primary-color) !important;
    color: white !important;
    border: none;
    transition: all 0.3s ease;
}

#services .badge:hover {
    background: var(--secondary-color) !important;
    color: white !important;
    transform: scale(1.05);
}

/* Section title styling */
#services h2 {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

#services:hover h2 {
    color: var(--secondary-color);
}

/* Card description styling */
#services .card-text {
    transition: all 0.3s ease;
}

#services .card:hover .card-text {
    color: var(--text-dark) !important;
}

/* Leadership Section */
#leadership {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(234, 121, 60, 0.03) 100%);
}

.leadership-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(3, 52, 137, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 52, 137, 0.1);
    height: 100%;
    position: relative;
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.leadership-card:hover::before {
    transform: scaleX(1);
}

.leadership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(3, 52, 137, 0.2);
    border-color: var(--primary-color);
}

.leader-image {
    position: relative;
    height: 200px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.leader-icon {
    font-size: 4rem;
    color: white;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.leadership-card:hover .leader-icon {
    transform: scale(1.1) rotate(5deg);
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(241, 175, 61, 0.9);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leadership-card:hover .leader-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.overlay-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.leader-info {
    padding: 30px 25px;
}

.leader-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.leadership-card:hover .leader-name {
    color: var(--secondary-color);
}

.leader-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.leadership-card:hover .leader-description {
    color: var(--text-dark);
}

.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background: rgba(3, 52, 137, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(3, 52, 137, 0.2);
    transition: all 0.3s ease;
}

.leadership-card:hover .expertise-tag {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Badge styling for leadership section */
#leadership .badge {
    background: var(--primary-color) !important;
    color: white !important;
    border: none;
    transition: all 0.3s ease;
}

#leadership .badge:hover {
    background: var(--secondary-color) !important;
    color: white !important;
    transform: scale(1.05);
}

/* Section title styling */
#leadership h2 {
    transition: all 0.3s ease;
}

#leadership:hover h2 {
    color: var(--secondary-color) !important;
}

/* Value Proposition Section */
#value-proposition {
    background: linear-gradient(135deg, #ffffff 0%, rgba(234, 121, 60, 0.02) 100%);
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(3, 52, 137, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 52, 137, 0.1);
    height: 100%;
    position: relative;
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(3, 52, 137, 0.2);
    border-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(241, 175, 61, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon::before {
    opacity: 1;
}

.value-icon i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--secondary-color);
}

.value-card:hover .value-icon i {
    transform: scale(1.1);
}

.value-content {
    position: relative;
    z-index: 1;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.value-card:hover .value-title {
    color: var(--secondary-color);
}

.value-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-description {
    color: var(--text-dark);
}

.value-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    background: rgba(3, 52, 137, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(3, 52, 137, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.value-card:hover .feature-item {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Badge styling for value proposition section */
#value-proposition .badge {
    background: var(--primary-color) !important;
    color: white !important;
    border: none;
    transition: all 0.3s ease;
}

#value-proposition .badge:hover {
    background: var(--secondary-color) !important;
    color: white !important;
    transform: scale(1.05);
}

/* Section title styling */
#value-proposition h2 {
    transition: all 0.3s ease;
}

#value-proposition:hover h2 {
    color: var(--secondary-color) !important;
}

/* Footer Section */
#footer {
    background: var(--primary-color);
    color: white;
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.footer-brand {
    position: relative;
    z-index: 2;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.footer-brand-name {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-brand-name:hover {
    color: var(--secondary-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 175, 61, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-section {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-item i {
    width: 20px;
    height: 20px;
    background: rgba(241, 175, 61, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.contact-item:hover i {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--secondary-color);
}

.footer-bottom-link:hover::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-brand {
        text-align: center;
    }
}

.hero-content h1 {
    color: var(--primary-color);
    line-height: 1.2;
}

/* Hero Section Brand Colors */
.novo-niti-badge {
    /* background: var(--accent-color) !important; */
    border: none;
    color:var(--accent-color) !important;
    font-weight: 700!important;
    font-size:16px;
}

.regulatory-lab-badge {
    background: var(--primary-color) !important;
    border: none;
    color: white !important;
    font-weight: 600;
}

/* Hero section buttons inherit unified styling */

.hero-section .text-primary {
    color: #fff !important;
}

.hero-section .card {
    border: 1px solid rgba(3, 52, 137, 0.1);
    box-shadow: 0 5px 15px rgba(3, 52, 137, 0.1);
    transition: all 0.3s ease;
}

.hero-section .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 52, 137, 0.15);
    border-color: var(--primary-color);
}

.hero-section .badge.bg-light {
    background: rgba(3, 52, 137, 0.1) !important;
    color: var(--primary-color) !important;
    border: 1px solid rgba(3, 52, 137, 0.2);
    transition: all 0.3s ease;
}

.hero-section .badge.bg-light:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-1px);
}

.hero-visual .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* What We Do Section */
#what-we-do {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(241, 175, 61, 0.02) 100%);
}

.activity-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(3, 52, 137, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 52, 137, 0.1);
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.activity-card:hover::before {
    transform: scaleX(1);
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(3, 52, 137, 0.2);
    border-color: var(--primary-color);
}

.activity-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
    background: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.activity-icon i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon i {
    transform: scale(1.1);
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-title {
    color: var(--secondary-color);
}

.activity-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-description {
    color: var(--text-dark);
}

/* Guiding Principles Section */
#principles {
    background: linear-gradient(135deg, #ffffff 0%, rgba(234, 121, 60, 0.02) 100%);
}

.principle-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(3, 52, 137, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 52, 137, 0.1);
    height: 100%;
    position: relative;
    text-align: center;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.principle-card:hover::before {
    transform: scaleX(1);
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(3, 52, 137, 0.2);
    border-color: var(--primary-color);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.principle-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(241, 175, 61, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
}

.principle-card:hover .principle-icon::before {
    opacity: 1;
}

.principle-icon i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.principle-card:hover .principle-icon {
    background: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.principle-card:hover .principle-icon i {
    transform: scale(1.1);
}

.principle-content {
    position: relative;
    z-index: 1;
}

.principle-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.principle-card:hover .principle-title {
    color: var(--secondary-color);
}

.principle-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.principle-card:hover .principle-description {
    color: var(--text-dark);
}

/* Technology Section */
#technology {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(241, 175, 61, 0.02) 100%);
}

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

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-feature {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(3, 52, 137, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(3, 52, 137, 0.1);
    transition: all 0.3s ease;
}

.tech-feature:hover {
    background: rgba(3, 52, 137, 0.1);
    transform: translateX(10px);
    border-color: #033489;
}

.tech-feature i {
    font-size: 1.5rem;
}

.tech-feature span {
    font-weight: 600;
    color: var(--primary-color);
}

.tech-visual {
    position: relative;
    z-index: 2;
}

.tech-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 5px 15px rgba(3, 52, 137, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 52, 137, 0.1);
    text-align: center;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(3, 52, 137, 0.15);
    border-color: var(--primary-color);
}

.tech-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.tech-card:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.tech-card h6 {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    transition: all 0.3s ease;
}

.tech-card:hover h6 {
    color: var(--secondary-color);
}

/* Badge styling for new sections */
#what-we-do .badge,
#principles .badge,
#technology .badge {
    background: var(--primary-color) !important;
    color: white !important;
    border: none;
    transition: all 0.3s ease;
}

#what-we-do .badge:hover,
#principles .badge:hover,
#technology .badge:hover {
    background: var(--secondary-color) !important;
    color: white !important;
    transform: scale(1.05);
}

/* Section title styling */
#what-we-do h2,
#principles h2,
#technology h2 {
    transition: all 0.3s ease;
}

#what-we-do:hover h2,
#principles:hover h2,
#technology:hover h2 {
    color: var(--secondary-color) !important;
}

.hero-visual .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

/* Unified Button Styling */
.btn-primary,
.btn-outline-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 12px 24px;
}

.btn-primary:hover,
.btn-outline-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 175, 61, 0.3);
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

/* Sections */
section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 20px;
}

/* Icons */
.bi {
    transition: transform 0.3s ease;
}

.card:hover .bi {
    transform: scale(1.1);
}

/* Forms */
.form-control {
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(3, 52, 137, 0.25);
}

/* Footer */
footer {
    background-color: var(--text-dark) !important;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #022a6b;
}