:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F7B801;
    --success-color: #1A936F;
    --warning-color: #FFA400;
    --info-color: #00A8E8;
    --danger-color: #E63946;
    --light-bg: #FFF8F0;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-muted: #6C757D;
    --border-color: #E9ECEF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure you link Poppins and Inter in your HTML's <head> section from Google Fonts */

body {
    font-family: 'Inter', sans-serif; /* Excellent for readability */
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Times New Roman", Times, serif;
    font-weight: 700; /* Max practical weight */
    line-height: 1.3;
    margin-bottom: 1rem;
}

.brand-text {
    font-family: 'Poppins', sans-serif; /* Matches the new heading style */
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.footer-brand {
    font-family: 'Poppins', sans-serif; /* Matches the new heading style */
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700; /* Bold */
}

.footer-heading {
    color: #0d2950;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif; /* Matches the new heading style */
    font-weight: 600; /* Semi-bold for good visibility */
}
.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.bg-light {
    background-color: linear-gradient(180deg, #f5f8fc 0%, /* very light cool blue */ #eef3f9 100% /* slightly deeper blue-gray */)!important;
}

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

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

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

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

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

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

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

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}



.brand-accent {
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.btn-nav-contact {
    background-color: #1a7c5d;
    color: var(--white) !important;
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
}

.btn-nav-contact:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary {
    background-color: #001f3f;
    border-color: #001f3f;
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline-primary {
    border: 2px solid #0c6a7f;
    color: #035686;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    background-color: transparent;
    transition: all 0.3s 
ease;
}

.btn-outline-primary:hover {
    background-color: #1a7c5d;
    border-color: #1a7c5d;
    color: var(--white);
    transform: translateY(-2px);
}
.btn-light {
    background-color: var(--white);
    color: #01294d;
    border: none;
    font-weight: 600;
}

.btn-light:hover {
    background-color: var(--light-bg);
    color: #01294d;
}

.hero-section {
    padding: 50px 0 100px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1d8e6b 100%);
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #20976e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-tag {
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.industry-tag i {
    font-size: 1.3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cta-section {
        background: linear-gradient(135deg, var(--secondary-color) 0%, #20976e 100%);
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.footer {
    background: #cbdaed !important;
    color: var(--white);
}


.footer-brand span {
    color: var(--primary-color);
}

.footer-description {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.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: #0d2850;
    transition: all 0.3s ease;
  	border: 0.5px solid;
}

.social-link:hover {
    background: #0d2850;
    color: var(--white);
    transform: translateY(-3px);
}



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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

.footer-contact li {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.vision-mission-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.vm-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.vm-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.leadership-message {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.leadership-message h3 {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.leadership-message .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.leader-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.leader-info strong {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.leader-info span {
    color: var(--text-muted);
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-choose-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.why-choose-item i {
    font-size: 1.5rem;
    color: var(--success-color);
    flex-shrink: 0;
}

.why-choose-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.why-choose-item p {
    color: var(--text-muted);
    margin: 0;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-detail-icon i {
    font-size: 3rem;
    color: var(--white);
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: var(--success-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-detail-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-list-compact {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-list-compact li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.service-list-compact li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.industry-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.industry-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.industry-card-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.industry-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.industry-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.industry-features li::before {
    content: "→";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.process-timeline {
    position: relative;
}

.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.step-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.step-features li {
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.step-features li::before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.principle-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.principle-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.principle-icon i {
    font-size: 2rem;
    color: var(--white);
}

.article-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.article-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}

.article-content {
    padding: 2rem;
}

.article-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.article-link {
    color: #1a7c5d;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

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

.newsletter-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 3rem;
    border-radius: 25px;
    color: var(--white);
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem;
    border-radius: 10px 0 0 10px;
}

.newsletter-form .btn {
    border-radius: 0 10px 10px 0;
    padding: 1rem 2rem;
}

.career-benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.career-benefit-card:hover {
    transform: translateY(-10px);
}

.career-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.career-icon i {
    font-size: 2rem;
    color: var(--white);
}

.job-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.job-header h4 {
    margin: 0;
}

.job-type {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.job-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.process-step-simple {
    text-align: center;
}

.step-number-simple {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 1rem;
}

.contact-info-card {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-info-card h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-card p {
    margin: 0;
    color: var(--text-muted);
}

.social-links-contact {
    margin-top: 2rem;
}

.social-link-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    color: var(--white);
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.social-link-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

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

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 2px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.1);
}

.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.quick-contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.quick-contact-card:hover {
    transform: translateY(-10px);
}

.quick-contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quick-contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .page-title {
        font-size: 2.5rem;
    }

    .process-step {
        padding-left: 0;
        margin-bottom: 3rem;
    }

    .step-number {
        position: relative;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .cta-title {
        font-size: 1.75rem;
    }
}

.btn-outline-success {
    border: 2px solid var(--success-color);
    color: var(--success-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    background-color: transparent;
}

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

.btn-nav-contact:hover {
  color : white !important;
}

	/* Navbar base for white background */
      .top-social a {
        text-decoration: none !important;
      }

    .navbar {
        background: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        padding: 1rem 2rem;
    }

    .nav-link.premium-link {
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      color: #222;
      padding: 10px 25px !important;
      position: relative;
      transition: all 0.3s ease;
    }

    .nav-link.premium-link::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: 4px;
        left: 0;
        background: #ffffff;
        transition: width 0.3s 
    ease;
    }

    .nav-link.premium-link:hover,
    .nav-link.premium-link.active {
        color: #111;
    }
    .nav-link.premium-link:hover::after,
    .nav-link.premium-link.active::after {
        width: 72%;
        left: 50%;
        transform: translateX(-50%);
    }

   .navbar-toggler {
      color: rgb(255 255 255);
      background-color: #bdbdbd;
    }
    .whatsapp {
        position: fixed;
        bottom: 28px;
        left: 20px;
        z-index: 3;
    }
.navbar-toggler {
    color: rgb(255 255 255) !important;
    background-color: #ffffff !important;
}
      html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden; /* Prevents any horizontal scroll */
    box-sizing: border-box;
  }

      @media (max-width: 768px) { 
        .mobilemt { 
          margin-top : 70px;
        }
      }
          .imglogo {
      width: 170px; /* Default for desktop */
    }

    @media (max-width: 768px) { 
      .imglogo {
        width: 140px; /* For mobile */
      }
      .mobilemt { 
        margin-top : 70px;
      }
    }

  /* ===== Footer Base ===== */
footer {
    position: relative;
    color: #1a1a1a;
    backdrop-filter: blur(2px);
}

.footer-heading {
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #0f2a44; /* deep corporate blue */
}

/* ===== Footer Links ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Link Style */
.footer-links a {
    position: relative;
    display: inline-block;
    font-weight: 500;
    color: #1f1f1f;
    transition: all 0.25s ease;
}

/* Animated Underline */
.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, #20c997);
    transition: width 0.28s ease;
}

/* Hover Effect */
.footer-links a:hover {
    color: #0d6efd;
    transform: translateX(4px);
}

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


/* ===== Logo Hover (subtle) ===== */
.imglogo {
    transition: transform 0.3s ease;
}

.imglogo:hover {
    transform: scale(1.04);
}

/* ===== Divider ===== */
footer hr {
    opacity: 0.15;
}
.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color) !important;
    text-decoration: none;
    background-color: #0e2951 !important;
}
    #gaambitDropdown::after {
  display: none !important;
}