

/* Dark Mode Variables */
[data-theme="dark"] {
    --primary-blue: #2c5282;
    --secondary-blue: #1a365d;
    --accent-gold: #d4af37;
    --light-gold: #3c366b;
    --dark-text: #e2e8f0;
    --light-text: #a0aec0;
    --light-bg: #1a202c;
    --cream: #2d3748;
}

.bg-cream { background-color: var(--cream) !important; }
.bg-primary-blue { background-color: var(--primary-blue) !important; }
.text-primary-gold { color: var(--accent-gold) !important; }

body {
    color: var(--dark-text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.75;
    overflow-x: hidden !important;
    width: 100%; 
    background-color: var(--light-bg);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Prevent all horizontal scroll issues */
html, body {
    overflow-x: hidden !important;
    width: 100%;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
}


/* Utility Classes */
.text-gradient {
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

[data-theme="dark"] .navbar {
    background-color: rgba(45, 55, 72, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-blue);
}

.navbar-brand span {
    color: var(--accent-gold);
}

.whyus {
    background: linear-gradient(rgba(60, 100, 150, 0.6), rgba(60, 100, 150, 0.6));
}

.nav-link {
    margin: 0 10px;
    transition: color 0.3s;
    color: var(--dark-text);
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

[data-theme="dark"] .dropdown-menu {
    background-color: #2d3748;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: var(--light-gold);
    color: var(--accent-gold);
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: #b8941f;
    border-color: #b8941f;
    color: white;
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(rgba(26, 58, 95, 0.8), rgba(26, 58, 95, 0.9)), url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    position: relative;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.big-idea-section .section-title:after{
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    bottom: -15px;
    left: 20%;
    transform: translateX(-50%);

}

.footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 70px 0 20px;
}

.footer h5 {
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.footer a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--accent-gold);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
}

.service-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: left;
    background-color: white;
}

.report .service-card {
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: left;
    background-color: white;
    font-size: 14px;
    border-left: 5px solid var(--accent-blue);
}
.report .service-card:hover {
    transform: translateY(-5px);
    border-left: 5px solid var(--primary-gold);
}

[data-theme="dark"] .service-card {
    background-color: #2d3748;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.location-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    height: 100%;
    border-top: 4px solid var(--accent-gold);
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card h5 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.location-card .list-group li {
    font-size: 12px;
}
.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}


.cta-section {
    background: linear-gradient(rgba(26, 58, 95, 0.9), rgba(26, 58, 95, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    background-attachment: fixed;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
    font-size: 0.9rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-gold);
}

/* Blog Section Styles */
.blog-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

[data-theme="dark"] .blog-card {
    background-color: #2d3748;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: var(--light-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.blog-date {
    color: var(--light-text);
    font-size: 0.9rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 10px 0;
    line-height: 1.4;
    flex: 0 0 auto;
}

.blog-excerpt {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-blue);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--accent-gold);
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

.recommended-header {
    text-align: center;
    margin-bottom: 40px;
}

.recommended-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 80px 0;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 15px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: white;
}

/* Big Idea Section */
.big-idea-section {
    padding: 100px 0;
    background: linear-gradient(to right, var(--light-bg) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .big-idea-section {
    background: linear-gradient(to right, #1a202c 0%, #2d3748 100%);
}

.big-idea-content {
    position: relative;
    z-index: 2;
}

.big-idea-image {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.big-idea-image:hover {
    transform: scale(1.02);
}

.idea-highlight {
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
    margin: 30px 0;
}

.usp-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

[data-theme="dark"] .usp-card {
    background: #2d3748;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.usp-card:hover {
    transform: translateY(-5px);
}

.usp-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* Podcast Section */
.podcast-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--cream) 100%);
}

[data-theme="dark"] .podcast-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.podcast-video {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.podcast-video:hover {
    transform: scale(1.02);
}

.podcast-content {
    padding-left: 40px;
}

.podcast-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* Dark mode card adjustments */
[data-theme="dark"] .card {
    background-color: #2d3748;
    color: #e2e8f0;
    border-color: #4a5568;
}

[data-theme="dark"] .form-control {
    background-color: #4a5568;
    border-color: #4a5568;
    color: #e2e8f0;
}

[data-theme="dark"] .form-control::placeholder {
    color: #a0aec0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .big-idea-section {
        padding: 60px 0;
    }
    
    .podcast-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
}

@media (max-width: 992px) {
    .herocaro{
        display: none;
    }
}

.navbar-nav .nav-item .nav-link{
    border: 2px solid transparent;
}

.navbar-nav .nav-item .nav-link:hover{
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}

.navbar-nav .nav-item .active{
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}




