:root {
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #0b1120;
    --accent: #E31837;
    --accent-hover: #C2122B;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.text-accent {
    color: var(--accent);
}

.center {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mt-2 { margin-top: 2rem; }

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--accent);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Header */
.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    background-color: #fff;
    color: #333;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

.top-contact {
    display: flex;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.contact-text strong {
    color: #111;
    font-size: 0.95rem;
}

.bottom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    color: #fff;
    margin-left: 20%;
    height: 60px;
    position: relative;
}

.bottom-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    /* Create the slanted left edge */
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Dropdown Menu */
.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 1000;
    padding: 1rem 0;
    list-style: none;
}

/* Invisible bridge to prevent hover loss */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

/* Arrow */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 25px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    color: #111;
    padding: 0.8rem 1.5rem;
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: none;
    opacity: 1;
}

.dropdown-menu li a:hover {
    color: var(--accent);
    opacity: 1;
    background-color: rgba(0,0,0,0.02);
}

.search-icon {
    font-size: 1.2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-bottom: 5rem; /* Space for overlapping cards */
}

.hero-bg {
    height: 80vh;
    background-color: #333;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('images/hero-bg.png'); /* Custom generic truck background */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    color: #fff;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Overlapping Cards */
.hero-cards-wrapper {
    position: relative;
    margin-top: -100px; /* Pulls cards up over the hero bg */
    z-index: 10;
}

.hero-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-card {
    background-color: var(--bg-card);
    color: #fff;
    padding: 2.5rem 2rem;
    flex: 1;
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-bottom: 4px solid var(--accent);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.hero-card:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
    background-image: linear-gradient(rgba(15,15,15,0.85), rgba(15,15,15,0.95)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.card-icon {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.card-icon svg {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

.hero-card:hover .card-icon svg {
    stroke: var(--accent);
}

.hero-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    position: relative;
    z-index: 2;
    transition: margin 0.3s ease;
}

.hero-card:hover h3 {
    margin-bottom: 0.5rem;
}

.card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.hero-card:hover .card-desc {
    max-height: 100px;
    opacity: 1;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.card-hover-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translate(20px, -20px);
    z-index: 1;
    pointer-events: none;
}

.card-hover-decor::before,
.card-hover-decor::after {
    content: '';
    position: absolute;
    transform: skewX(-20deg);
}

.card-hover-decor::before {
    top: 30px;
    right: 30px;
    width: 80px;
    height: 40px;
    background-color: var(--accent);
}

.card-hover-decor::after {
    top: 70px;
    right: 15px;
    width: 50px;
    height: 25px;
    background-color: #ffaa00;
}

.hero-card:hover .card-hover-decor {
    opacity: 1;
    transform: translate(0, 0);
}

.btn-card {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--accent);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 3px;
    transition: var(--transition);
}
.btn-card:hover {
    background-color: var(--accent-hover);
}

/* New Services Section */
.services-section {
    padding: 8rem 0 6rem;
    background-color: #fdfdfd;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
    overflow: hidden;
}

.relative-container {
    position: relative;
    z-index: 10;
}

.services-bg-watermark {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14rem;
    color: rgba(0,0,0,0.02);
    font-family: var(--font-heading);
    font-weight: 900;
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    -webkit-text-stroke: 1px rgba(0,0,0,0.05);
}

.title-underline {
    width: 50px;
    height: 2px;
    background-color: var(--accent);
    margin: 1.5rem auto 4rem;
}

.services-carousel {
    text-align: center;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card-new {
    background-color: transparent;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.service-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 8px 8px 0 0;
}

.service-content {
    background: #fff;
    margin: -50px 15px 0 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 120px;
    transition: all 0.4s ease;
}

.service-icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s ease;
}

.service-icon-box svg {
    transition: all 0.4s ease;
}

.service-text {
    padding: 1.5rem 1.5rem 1.5rem 110px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    transition: all 0.4s ease;
}

.service-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
    color: #222;
    font-weight: 800;
}

.service-category {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
    transition: all 0.3s ease;
}

.service-desc {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    transition: all 0.4s ease;
}

.btn-service {
    display: inline-block;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 3px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    align-self: flex-start;
}

/* Hover States */
.service-card-new:hover .service-content {
    height: 280px;
    margin-top: -210px;
}

.service-card-new:hover .service-icon-box {
    left: auto;
    right: 0;
    width: 60px;
    height: 60px;
}

.service-card-new:hover .service-icon-box svg {
    width: 24px !important;
    height: 24px !important;
}

.service-card-new:hover .service-text {
    padding: 2rem 2rem 2rem 1.5rem;
    justify-content: flex-start;
}

.service-card-new:hover .service-category {
    opacity: 0;
    max-height: 0;
    margin: 0;
    overflow: hidden;
}

.service-card-new:hover .service-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-card-new:hover .btn-service {
    opacity: 1;
    transform: translateY(0);
}

.carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.carousel-controls .arrow {
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}
.carousel-controls .arrow:hover {
    color: var(--accent);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: #fff;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.title {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: #111;
    line-height: 1.2;
}

.about-left p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-row {
    display: flex;
    gap: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
}

/* Gears & Badge */
.gears-container {
    position: relative;
    width: 400px;
    height: 450px;
}

.badge-container {
    position: relative;
    width: 160px;
    height: 160px;
    border: 2px dashed #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
    background-color: #fff;
}

.absolute-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.badge-inner {
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #333;
    animation: rotate-reverse 20s linear infinite;
}

.gear-wrapper {
    position: absolute;
    width: 220px;
    height: 220px;
    clip-path: url(#gear-clip);
    -webkit-clip-path: url(#gear-clip);
    animation: rotateGear 25s linear infinite;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
}

.gear-image {
    width: 150%;
    height: 150%;
    background-size: cover;
    background-position: center;
    animation: counterRotateGear 25s linear infinite;
}

.gear-1 {
    top: 0;
    right: 0;
}

.gear-2 {
    top: 140px;
    left: 20px;
    animation-direction: reverse;
}
.gear-2 .gear-image {
    animation-direction: reverse;
}

.gear-3 {
    bottom: -20px;
    right: 40px;
}

@keyframes rotateGear {
    100% { transform: rotate(360deg); }
}
@keyframes counterRotateGear {
    100% { transform: rotate(-360deg); }
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}
@keyframes rotate-reverse {
    100% { transform: rotate(-360deg); }
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    color: var(--text-muted);
    padding: 2rem 0;
}

@media (max-width: 992px) {
    .about-layout { grid-template-columns: 1fr; }
    .hero-cards { flex-direction: column; align-items: center; }
    .hero-cards-wrapper { margin-top: -50px; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stats Banner */
.stats-banner {
    background-color: #fff;
    padding: 6rem 0;
}

.stats-banner-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.banner-stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.banner-icon-box {
    width: 80px;
    height: 80px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.banner-stat-text {
    display: flex;
    flex-direction: column;
}

.banner-stat-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b1120;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.banner-stat-text p {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #050a11;
    padding: 3.5rem 0;
    overflow: hidden;
}

.cta-decor-left,
.cta-decor-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.cta-decor-left { left: 0; }
.cta-decor-right { right: 0; }

.decor-box {
    width: 60px;
    height: 30px;
    transform: skewY(-20deg);
}

.cta-decor-left .decor-orange { background-color: var(--accent); margin-left: -10px; margin-bottom: -15px; }
.cta-decor-left .decor-white { background-color: #fff; margin-left: -30px; }

.cta-decor-right .decor-orange { background-color: var(--accent); margin-right: -10px; margin-bottom: -15px; }
.cta-decor-right .decor-white { background-color: #fff; margin-right: -30px; }

.cta-content {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 800px;
}

.cta-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose {
    padding: 6rem 0;
    background-color: #fff;
}

.why-choose-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-image-col {
    position: relative;
}

.why-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #444;
}

.check-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

@media (max-width: 992px) {
    .why-choose-layout {
        grid-template-columns: 1fr;
    }
}

/* Global Presence Section */
.global-presence {
    padding: 6rem 0;
    background-color: #fff;
}

.map-container {
    margin: 3rem 0;
}

.world-map-img {
    max-width: 900px;
    width: 100%;
    height: auto;
}

.locations-content {
    max-width: 1000px;
    margin: 0 auto;
}

.country-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.country-header h3 {
    font-size: 1.5rem;
    color: #0b1120;
    font-weight: 800;
}

.flag-icon {
    font-size: 1.5rem;
}

.india-section {
    margin-bottom: 3rem;
}

.india-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-left: 2rem;
    border-left: 2px solid #eee;
}

.city h4 {
    font-size: 1rem;
    color: #0b1120;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.city p, .location-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.location-card {
    background-color: #fafafa;
    border-left: 3px solid var(--accent);
    padding: 1.5rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-header h4 {
    font-size: 1.1rem;
    color: #0b1120;
    font-weight: 800;
}

@media (max-width: 992px) {
    .global-grid { grid-template-columns: 1fr 1fr; }
    .india-cities { grid-template-columns: 1fr; border-left: none; padding-left: 0; }
}
@media (max-width: 768px) {
    .global-grid { grid-template-columns: 1fr; }
}

/* Blog Section */
.blog-section {
    padding: 8rem 0;
    background-color: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.bg-boxes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.box {
    position: absolute;
    background-color: #ffffff;
    opacity: 0.4;
    transform: rotate(30deg);
}

.box-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -150px;
}

.box-2 {
    width: 200px;
    height: 400px;
    top: 20%;
    left: -50px;
}

.box-3 {
    width: 400px;
    height: 400px;
    top: -50px;
    right: -200px;
}

.blog-bg-watermark {
    position: absolute;
    top: -10px;
    left: -20px;
    font-size: 8rem;
    color: rgba(0,0,0,0.03);
    font-family: var(--font-heading);
    font-weight: 900;
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    -webkit-text-stroke: 1px rgba(0,0,0,0.05);
}

.blog-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.blog-header-left {
    max-width: 600px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

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

.blog-img-container {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 220px;
    transition: all 0.4s ease;
    z-index: 1;
}
.blog-card:hover .blog-img-container {
    height: 100%;
}

.blog-img-overlay {
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(5, 10, 25, 0.75);
    opacity: 0;
    transition: all 0.4s ease;
}
.blog-card:hover .blog-img-overlay {
    opacity: 1;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--accent);
    color: #fff;
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    z-index: 3;
}
.blog-card:hover .blog-tag {
    opacity: 0;
}

.blog-hover-date {
    position: absolute; 
    top: 0; right: 0;
    background-color: var(--accent); color: #fff;
    width: 75px; height: 75px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(-20px); transition: all 0.4s ease;
    z-index: 4; text-align: center; line-height: 1.1;
}
.blog-hover-date .date-day { font-size: 1.4rem; font-weight: 800; margin-bottom: 2px;}
.blog-hover-date .date-month { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; }
.blog-card:hover .blog-hover-date {
    opacity: 1; transform: translateY(0);
}

.blog-content {
    padding: 2rem;
    padding-top: 240px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    display: flex; flex-direction: column; flex: 1;
}

.blog-card:hover .blog-content {
    padding-top: 50px;
    justify-content: center;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.4s ease;
}
.blog-card:hover .blog-meta {
    opacity: 0;
    height: 0; margin-bottom: 0; overflow: hidden;
}

.meta-icon {
    display: flex;
    align-items: center;
}

.blog-title {
    font-size: 1.25rem;
    color: #0d1e50;
    font-family: var(--font-heading);
    line-height: 1.4;
    font-weight: 800;
    transition: all 0.4s ease;
}
.blog-card:hover .blog-title {
    color: #fff;
}

.btn-blog {
    display: inline-block;
    background-color: var(--accent); color: #fff;
    padding: 0.6rem 1.2rem; text-decoration: none; font-weight: 700; font-size: 0.8rem;
    border-radius: 3px; align-self: flex-start;
    margin-top: 1.5rem;
    opacity: 0; transform: translateY(10px); transition: all 0.4s ease;
}
.blog-card:hover .btn-blog {
    opacity: 1; transform: translateY(0);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Footer Main */
.footer-main {
    position: relative;
    background-color: #0b0f15;
    background-image: url('images/world-map.png');
    background-size: cover;
    background-position: center;
    color: #e2e8f0;
    padding-top: 5rem;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 8, 12, 0.95);
    z-index: 1;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 350px;
}

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

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent);
    color: #fff;
}

.footer-heading {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.footer-gallery img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--transition);
}

.footer-gallery img:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.scroll-top {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background-color: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    z-index: 10;
    transition: var(--transition);
}

.scroll-top:hover {
    background-color: var(--accent-hover);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonial-section {
    padding: 6rem 0;
    background-color: #fff;
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.section-subtitle-wrap {
    margin-bottom: 1rem;
}

.subtitle-underline {
    width: 150px;
    height: 2px;
    background-color: var(--accent);
    margin-top: 5px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 4px;
    display: inline-flex;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
}

.contact-details p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: #0d1e50;
    font-weight: 800;
}

.testimonial-slider-col {
    position: relative;
    padding: 2rem 0;
}

.testimonial-slider-wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 4rem;
    overflow: hidden;
    color: #fff;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 15, 0, 0.85); /* Dark brown/orange tint */
    z-index: 1;
}

.testimonial-slide {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
}

.author-info {
    margin-bottom: 1.5rem;
}

.author-role {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ddd;
    display: block;
    margin-bottom: 0.3rem;
}

.author-name {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
}

.quote-text-wrapper {
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}

.quote-text {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
    color: #fff;
    margin: 0;
    display: inline;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 0;
    position: relative;
    top: 10px;
    margin-right: 5px;
    font-family: Georgia, serif;
}

.quote-icon-right {
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 0;
    position: relative;
    top: 10px;
    margin-left: 5px;
    font-family: Georgia, serif;
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    display: flex;
    gap: 0.5rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    display: block;
    cursor: pointer;
}

.slider-dots .dot.active {
    background-color: #fff;
}

@media (max-width: 992px) {
    .testimonial-layout {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   RESPONSIVE LAYOUTS (TABLET & MOBILE)
   ========================================================================= */

/* Mobile Menu Hidden Checkbox */
.mobile-menu-toggle {
    display: none;
}
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    color: #fff;
    padding: 0.5rem;
    order: -1;
}

@media (max-width: 992px) {
    /* About & Why Choose Us */
    .why-choose-layout, .about-layout {
        grid-template-columns: 1fr !important;
    }
    
    /* Global Presence */
    .global-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Testimonials */
    .testimonial-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Blog Grid */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    /* Global & Typography */
    html {
        font-size: 14px;
    }
    .container {
        padding: 0 1rem !important;
    }
    section, .services-section, .why-choose, .global-presence, .testimonial-section, .blog-section {
        padding: 4rem 0 !important;
    }

    /* Header & Navigation */
    .top-bar {
        padding: 1rem !important;
    }
    .top-contact {
        display: none !important; /* Hide extra contact info to save space */
    }
    .bottom-nav {
        position: relative;
        flex-wrap: wrap;
        padding: 1rem !important;
    }
    .mobile-menu-icon {
        display: block;
    }
    .nav-links {
        display: none !important;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--bg-dark);
        padding: 1rem 0;
        z-index: 100;
        gap: 0;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .search-icon {
        margin-left: auto;
    }
    .mobile-menu-toggle:checked ~ .nav-links {
        display: flex !important;
    }

    /* Hero Section */
    .hero-title {
        font-size: 3.2rem !important;
    }
    .hero-bg {
        padding: 6rem 0 8rem 0 !important;
    }
    .hero-cards-wrapper {
        margin-top: -60px !important;
    }
    .hero-cards {
        flex-direction: column;
        align-items: center;
    }
    .hero-card {
        width: 100%;
        max-width: 100%;
    }

    /* Services Section */
    .services-grid-new {
        grid-template-columns: 1fr !important;
    }

    /* Global Presence */
    .global-grid {
        grid-template-columns: 1fr !important;
    }
    .india-cities {
        grid-template-columns: 1fr !important;
        padding-left: 0 !important;
        border-left: none !important;
    }

    /* Blog Section */
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
    .blog-header-row {
        flex-direction: column;
        align-items: flex-start !important;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* CTA Section */
    .cta-title {
        font-size: 2.5rem !important;
    }
    .cta-decor-left, .cta-decor-right {
        display: none !important;
    }

    /* About Stats & Gears */
    .stats-row {
        gap: 1.5rem !important;
        flex-direction: column;
    }
    .stat-num {
        font-size: 2.5rem !important;
    }
    .gears-container {
        width: 100% !important;
        max-width: 400px;
        transform: scale(0.8);
        transform-origin: top center;
    }
    
    /* Stats Banner */
    .stats-banner-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* --- Inner Page Styles --- */
.inner-banner {
    background-color: #020617; /* Dark blue */
    padding: 12rem 0 6rem;
    color: #fff;
    text-align: center;
}

.breadcrumbs {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}
.breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumbs a:hover {
    color: var(--accent);
}

.inner-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
}

/* Vision Mission Section */
.vm-section {
    padding: 6rem 0;
    background-color: #fff;
}

.vm-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .vm-layout {
        grid-template-columns: 1fr;
    }
    .vm-empty {
        display: none;
    }
}

.vm-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #0b1120;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.vm-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.vm-tabs {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

.vm-tab-btn {
    background: none;
    border: none;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    position: relative;
    font-family: var(--font-heading);
}

.vm-tab-btn.active {
    color: var(--accent);
}

.vm-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
}

.vm-tab-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Investors Relation Page Styles --- */
.investor-intro {
    padding: 6rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.investor-intro-content {
    position: relative;
}

.investor-watermark {
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    font-family: var(--font-heading);
    z-index: -1;
}

.investor-mission {
    padding: 4rem 0;
}

.mission-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-card {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

.mission-icon {
    background-color: #3b82f6; /* bright blue */
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-text {
    padding: 1rem 2rem;
    font-weight: 700;
    color: #0b1120;
}

.corp-gov {
    padding: 4rem 0 6rem;
}

.gov-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gov-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.gov-number {
    background-color: #f59e0b; /* amber */
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: var(--font-heading);
    border-radius: 4px;
    flex-shrink: 0;
}

.gov-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #0b1120;
    margin-bottom: 0.5rem;
}

.gov-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
}

.gov-dot {
    text-align: center;
    margin-top: 4rem;
    color: var(--accent);
}

@media (max-width: 992px) {
    .investor-intro {
        grid-template-columns: 1fr;
    }
    .gov-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Product Categories Layout --- */
.products-page-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-card {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.product-img-placeholder {
    width: 100%;
    height: 180px;
    background-color: #f8f9fa;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.product-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.product-features li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.btn-enquire {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.btn-enquire:hover {
    background-color: #cc3700;
}

/* Sidebar Styles */
.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #0b1120;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background-color: var(--accent);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.8rem;
}

.sidebar-menu li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-menu a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.sidebar-menu a::before {
    content: '›';
    font-size: 1.2rem;
    color: var(--accent);
    margin-right: 0.5rem;
}

.sidebar-menu a:hover, .sidebar-menu a.active {
    color: var(--accent);
}

/* Featured product card in sidebar */
.sidebar-product {
    background-color: white;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    text-align: center;
}

.sidebar-product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.sidebar-product-title {
    color: #0b1120;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .products-page-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Newsroom Styles --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}
.news-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.news-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.news-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.news-date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.news-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #0b1120;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.news-excerpt {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}
.news-link {
    display: inline-block;
    color: #0b1120;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color 0.3s;
}
.news-link:hover {
    color: var(--accent);
}

/* --- Newsroom Styles --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}
.news-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.news-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.news-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.news-date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.news-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #0b1120;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.news-excerpt {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}
.news-link {
    display: inline-block;
    color: #0b1120;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color 0.3s;
}
.news-link:hover {
    color: var(--accent);
}


/* --- Responsive Inner Pages Fixes --- */
@media (max-width: 768px) {
    .inner-banner {
        padding: 8rem 0 4rem !important; 
    }
    .inner-title {
        font-size: 2rem !important;
    }
    .products-page-container {
        margin: 2rem auto !important;
        gap: 2rem !important;
    }
    .product-sidebar {
        gap: 1.5rem !important;
    }
}


/* --- Mobile Menu Layout Fix --- */
@media (max-width: 768px) {
    .bottom-nav {
        background-color: transparent !important;
        padding: 0 !important;
        position: static !important;
    }
    .mobile-menu-icon {
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
        color: var(--accent) !important;
        z-index: 1000;
    }
    .nav-links {
        top: 60px !important;
    }
    .search-icon {
        display: none !important;
    }
}

/* --- Mobile Inner Pages Fixes --- */
@media (max-width: 768px) {
    .investor-watermark {
        font-size: 4rem !important;
        top: -10px !important;
        left: 0 !important;
        opacity: 0.03 !important;
    }
    .title[style], h2[style*="font-size: 2"] {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    .gov-item {
        gap: 1rem !important;
    }
    .gov-number {
        min-width: 40px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
    .investor-card {
        padding: 1.5rem !important;
    }
    .investor-icon {
        min-width: 50px !important;
    }
}

/* --- REAL Mobile Inner Pages Fixes --- */
@media (max-width: 768px) {
    .mission-card {
        padding: 1rem !important;
        gap: 1rem !important;
    }
    .mission-icon {
        min-width: 45px !important;
        width: 45px !important;
        height: 45px !important;
    }
    .gov-card {
        gap: 1rem !important;
        align-items: flex-start !important;
        margin-bottom: 1.5rem !important;
    }
    .gov-number {
        min-width: 45px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
        line-height: 45px !important;
    }
}
