@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Fonts/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Shreelipi';
    src: url('../Fonts/Shreelipi_4672.TTF') format('truetype');
}

/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gelion', sans-serif;
    color: #000;
    -webkit-font-smoothing: antialiased;
}

/* Header Container Settings */
.header {
    width: 100%;
    position: relative;
    z-index: 100;
}

/* Top thin bar */
.top-bar {
    height: 12px;
    background-color: #333333;
    /* Dark gray border above */
    width: 100%;
}

/* Main header */
.header-main {
    background-color: #fff100;
    /* Vibrant yellow */
    padding: 15px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Area */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #000;
}

.logo-placeholder img {
    max-height: 50px;
}

.logo-text {
    display: block;
    font-family: 'Shreelipi', sans-serif;
    transform: skewX(5deg);
}

/* Navigation */
.main-nav {
    margin-left: auto;
    margin-right: 40px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* Call to Action Button */
.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
    /* space between toggle and button if they sit side-by-side */
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: 0.3s ease;
}

/* Toggle active animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.call-btn {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    position: relative;
}

/* Pill shape for text */
.call-text {
    border: 1.5px solid #000;
    border-radius: 6px;
    padding: 4px 12px 4px 12px;
    /* Extra padding on left for icon overlap */
    margin-left: 15px;
    /* Space for the icon circle to jut out */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    min-width: 140px;
}

.call-subtitle {
    font-size: 11px;
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.call-number {
    font-size: 18px;
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.5px;
}

/* Circle shape for the icon overlapping the border */
.call-icon {
    width: 25px;
    height: 25px;
    border: 1.5px solid #000;
    border-radius: 50%;
    background-color: #fee614;
    /* Match header background */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    z-index: 2;
}

.call-icon svg {
    width: 14px;
    height: 14px;
    color: #000;
}

/* Hover effects for button */
.call-btn:hover .call-text {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Responsive considerations */
@media (max-width: 992px) {
    .container {
        flex-wrap: nowrap;
    }

    .logo {
        order: 1;
    }

    .header-action {
        order: 2;
        margin-left: auto;
        /* Pushes the call button to the right */
        margin-right: 20px;
        /* Space between call btn and toggle */
    }

    .mobile-toggle {
        display: flex;
        order: 3;
        /* Put toggle on the far right */
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        /* Slide in from left */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fee614;
        z-index: 100;
        padding-top: 80px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
        gap: 20px;
    }

    .main-nav a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    /* Let's shrink the logo image if we don't have enough space */
    .logo-placeholder img {
        max-height: 40px;
    }

    .call-btn {
        transform: scale(0.9);
        transform-origin: right center;
    }

    .header-action {
        margin-right: 15px;
        /* slightly less space on mobile */
    }
}

@media (max-width: 480px) {
    .call-btn {
        transform: scale(0.75);
    }

    .logo-placeholder img {
        max-height: 30px;
    }

    .header-action {
        margin-right: 10px;
    }
}

/* ================== Breadcrumb Section ================== */
.breadcrumb-section {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/about-us/WhatsApp-Image-2026-02-19-at-3.42.11-PM.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Ensure items start from left */
    position: relative;
}

.breadcrumb-section .container {
    width: 100%; /* Take full width of its max-width (1280px) */
    display: flex;
    justify-content: flex-start; /* Ensure content inside container is left-aligned */
}

.breadcrumb-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff; /* Changed to white for better visibility on dark background */
}

.breadcrumb-title {
    font-family: 'Gotham', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #fff;
}

.breadcrumb-nav {
    font-family: 'Gelion', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.breadcrumb-nav a {
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s;
}

.breadcrumb-nav a:hover {
    opacity: 0.7;
}

.breadcrumb-nav span {
    color: #fff;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        height: 200px;
    }

    .breadcrumb-title {
        font-size: 32px;
    }

    .breadcrumb-nav {
        font-size: 12px;
    }
}

/* ================== Footer Section ================== */
.main-footer {
    width: 100%;
    font-family: 'Gelion', sans-serif;
    position: relative;
    /* We don't need margin-top, because upper sections have padding */
}

.footer-top {
    background-color: #fee614;
    padding: 40px 0 50px 0;
    position: relative;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.relative-container {
    position: relative;
}

/* Catalogue Button */
.catalogue-btn {
    position: absolute;
    top: -60px;
    /* Touch the very top of the yellow */
    right: 40px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

.catalogue-btn:hover {
    background-color: #333;
}

.download-icon {
    width: 24px;
    height: 24px;
}

/* Footer Grid */
.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* Stretch columns to same height */
    gap: 40px;
    margin-top: 20px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-col-content {
    margin-top: auto;
    /* Push content to bottom */
    position: relative;
    padding: 0;
}

/* Column 1 */
.col-about {
    padding-right: 30px;
}

.footer-logo {
    max-width: 220px;
    margin: 0 auto 15px auto;
    /* Centered */
    display: block;
}

.col-about p {
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    font-weight: 500;
    margin: 0;
}

/* Column 2 */
.col-contact {
    padding: 0 40px;
}

.col-contact .footer-col-content::before,
.col-contact .footer-col-content::after {
    content: "";
    position: absolute;
    top: 10px;
    /* Added gap at top */
    bottom: 10px;
    /* Added gap at bottom */
    width: 1px;
    background-color: #000;
}

.col-contact .footer-col-content::before {
    left: -40px;
}

.col-contact .footer-col-content::after {
    right: -40px;
}

.footer-sankalp-logo {
    max-width: 180px;
    margin: 0 auto 15px auto;
    /* Centered */
    align-self: center;
    display: block;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.3;
    color: #000;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-icon {
    margin-top: 2px;
}

.mt-2 {
    margin-top: 0px;
}

.mt-3 {
    margin-top: 0px;
}

/* Column 3 */
.col-links {
    padding-left: 30px;
}

.footer-links-title {
    background-color: #808080;
    color: #fee614;
    display: inline-block;
    /* Full width bar */
    padding: 6px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

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

.col-links li {
    margin-bottom: 6px;
}

.col-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.col-links a:hover {
    opacity: 0.6;
}

/* Back To Top Button */
.back-to-top {
    position: absolute;
    bottom: -20px;
    /* Overlap the grey bar */
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fee614;
    border: none;
    padding: 12px 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 10;
    white-space: nowrap;
}

.back-to-top:hover {
    background-color: #333;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #DDE1E3;
    /* grey */
    padding: 25px 0 15px 0;
    text-align: left;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-columns {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

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

    .col-contact {
        border-left: none;
        border-right: none;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        padding: 30px 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .col-contact .footer-col-content::before,
    .col-contact .footer-col-content::after {
        display: none;
    }

    .footer-col-content {
        margin-top: 0;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .col-links {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .catalogue-btn {
        position: static;
        display: inline-flex;
        margin: 0 auto 30px 0;
    }

    .footer-top {
        padding: 40px 0 60px 0;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-logo {
        max-width: 170px;
    }

    .catalogue-btn {
        padding: 10px 20px;
        font-size: 10px;
        margin: 0 auto 20px 0;
    }

    .footer-bottom {
        text-align: center;
    }

    .back-to-top {
        padding: 10px 30px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 140px;
    }

    .catalogue-btn {
        padding: 8px 16px;
        font-size: 9px;
    }

    .footer-sankalp-logo {
        max-width: 140px;
    }

    .back-to-top {
        padding: 8px 20px;
        font-size: 10px;
        bottom: -15px;
    }
}

/* Solution Page Styles */
.solution-page-content {
    padding: 80px 0;
}

.solution-page-content .container {
    display: block;
}

.solution-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-page-header h2 {
    font-family: 'Gotham', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.solution-page-header p {
    font-family: 'Gelion', sans-serif;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.solution-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-page-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.solution-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.solution-card-body {
    padding: 25px;
}

.solution-card-body h3 {
    font-family: 'Gotham', sans-serif;
    margin-bottom: 15px;
    color: #000;
    text-transform: uppercase;
}

.solution-card-body p {
    font-family: 'Gelion', sans-serif;
    color: #666;
    line-height: 1.6;
}

.view-products-link {
    display: inline-block;
    margin-top: 20px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #FFF100;
    font-family: 'Gotham', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.view-products-link:hover {
    border-color: #000;
}

/* Infrastructure Section */
.infrastructure-section {
    background-color: #fff100;
    padding: 100px 0;
    text-align: center;
}

.infrastructure-content {
    max-width: 900px;
    margin: 0 auto;
}

.infrastructure-title {
    font-family: 'Gotham', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #000;
}

.infrastructure-subtitle {
    font-family: 'Gotham', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.infrastructure-text {
    font-family: 'Gelion', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
}

@media (max-width: 768px) {
    .infrastructure-title {
        font-size: 32px;
    }
    .infrastructure-subtitle {
        font-size: 20px;
    }
    .infrastructure-text {
        font-size: 16px;
    }
}

/* Roadmap Section (Collected from about-us) */
.roadmap-section {
    padding: 100px 0;
    background-image: url('../images/about-us/map-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: #fdfdfd;
}

.roadmap-section .container {
    display: block;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.roadmap-subtitle {
    color: #ec1c24;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-family: 'Gelion', sans-serif;
}

.roadmap-title {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    font-family: 'Gelion', sans-serif;
}

.roadmap-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #ffd6c5;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    width: 50%;
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
}

.timeline-item.left {
    padding-right: 80px;
}

.timeline-item.right {
    margin-left: auto;
    padding-left: 80px;
}

.timeline-box {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    border: 2px solid #ffd6c5;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    position: relative;
}

.timeline-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 15px;
}

.timeline-box-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
    white-space: nowrap;
}

.timeline-box-year-marker {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 10px;
}

.marker-line {
    flex: 1;
    height: 1.5px;
    background-color: #ffd6c5;
}

.marker-dot {
    width: 8px;
    height: 8px;
    background-color: #fff100;
    border-radius: 50%;
}

.marker-year {
    font-size: 24px;
    font-weight: 700;
    color: #ccc;
}

.timeline-box-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #888;
    margin: 0;
    font-weight: 400;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 12px;
    height: 12px;
    background-color: #fff100;
    border: 3px solid #ffd6c5;
    border-radius: 50%;
    z-index: 3;
}

.timeline-item.left::after {
    right: -9px;
}

.timeline-item.right::after {
    left: -9px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 36px;
    width: 80px;
    height: 2px;
    background-color: #ffd6c5;
    z-index: 1;
}

.timeline-item.left::before {
    right: 0;
}

.timeline-item.right::before {
    left: 0;
}

@media (max-width: 992px) {
    .timeline-item.left {
        padding-right: 50px;
    }
    .timeline-item.right {
        padding-left: 50px;
    }
    .timeline-item::before {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .roadmap-title {
        font-size: 36px;
    }
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
    }
    
    .timeline-item::after {
        left: 11px !important;
    }
    
    .timeline-item::before {
        left: 20px !important;
        width: 40px !important;
    }

    .timeline-box-header {
        flex-wrap: wrap;
    }

    .timeline-box-title {
        font-size: 22px;
    }
}

/* Key Infrastructure Components Table */
.components-section {
    background-color: #fff100;
    padding: 80px 0;
}

.components-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.components-title {
    font-family: 'Gotham', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #000;
}

.components-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.components-table th, .components-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Gelion', sans-serif;
}

.components-table th {
    background-color: #f9f9f9;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    width: 40%;
}

.components-table td {
    color: #555;
    font-size: 16px;
}

.components-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .components-title {
        font-size: 28px;
    }
    .components-table th, .components-table td {
        padding: 15px;
        font-size: 14px;
    }
}

/* Factory Floor Section */
.factory-floor-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.factory-header {
    margin-bottom: 50px;
}

.factory-title {
    font-family: 'Gotham', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.factory-subtitle {
    font-family: 'Gelion', sans-serif;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.factory-cards-container {
    background-color: #fff100;
    padding: 100px 0;
}

.factory-cards-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.factory-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.factory-card-icon {
    width: 40px;
    height: 40px;
    background-color: #fff100;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000;
}

.factory-card h3 {
    font-family: 'Gotham', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
}

.factory-card p {
    font-family: 'Gelion', sans-serif;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 768px) {
    .factory-cards-grid {
        flex-direction: column;
        padding: 0 20px;
    }
    .factory-cards-container {
        padding: 60px 0;
    }
}

/* Industry Verticals Section */
.industry-verticals-section {
    padding: 80px 0;
    text-align: center;
}

.industry-header {
    margin-bottom: 50px;
}

.industry-header h2 {
    font-family: 'Gotham', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.industry-header p {
    font-family: 'Gelion', sans-serif;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.industry-grid-container {
    background-color: #fff100;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.industry-grid-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#000 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

.industry-grid-container h3 {
    font-family: 'Gotham', sans-serif;
    text-transform: uppercase;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.industry-card {
    background-color: #fff;
    border: none;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: default;
}

.industry-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.industry-card-icon {
    width: 70px;
    height: 70px;
    background-color: #fff100;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 30px;
}

.industry-card h4 {
    font-family: 'Gotham', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #000;
    height: 50px; /* Force same alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card p {
    font-family: 'Gelion', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Project Highlights Table */
.project-highlights-section {
    padding: 80px 0;
    text-align: center;
}

.projects-header {
    margin-bottom: 40px;
}

.projects-header h2 {
    font-family: 'Gotham', sans-serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.projects-header p {
    font-family: 'Gelion', sans-serif;
    color: #666;
}

.projects-table-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #eee;
}

.projects-table th, .projects-table td {
    border: 1px solid #eee;
    padding: 20px;
    text-align: left;
    font-family: 'Gelion', sans-serif;
}

.projects-table th {
    background-color: #f9f9f9;
    font-weight: 700;
    color: #000;
}

.projects-table td {
    font-size: 15px;
    color: #555;
}

/* Testimonial Section */
.testimonials-section {
    background-color: #fff100;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-left h4 {
    font-family: 'Gotham', sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonials-left h2 {
    font-family: 'Gotham', sans-serif;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.testimonials-left p {
    font-family: 'Gelion', sans-serif;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.discover-more {
    font-family: 'Gotham', sans-serif;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.slider-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 30px;
    padding: 40px;
    min-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.client-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: absolute;
    top: -50px;
    left: 40px;
    object-fit: cover;
}

.client-info {
    text-align: right;
    margin-bottom: 20px;
}

.client-dept {
    color: #ec1c24;
    font-size: 12px;
    font-weight: 700;
}

.client-name {
    display: block;
    font-family: 'Gotham', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.client-stars {
    color: #fff100;
    margin-top: 5px;
    font-size: 14px;
}

.testimonial-text {
    font-family: 'Gelion', sans-serif;
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    text-align: center;
}

.clients-section h2 {
    font-family: 'Gotham', sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.clients-section p {
    font-family: 'Gelion', sans-serif;
    color: #666;
    margin-bottom: 40px;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.client-logos img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.client-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Sectors We Serve Yellow Section */
.sectors-serve-section {
    background-color: #fff100;
    padding: 80px 0;
    text-align: center;
}

.sectors-serve-section .container {
    display: block;
}

.sectors-serve-section h2 {
    font-family: 'Gotham', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.sector-col h3 {
    font-family: 'Gotham', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
}

.sector-col p {
    font-family: 'Gelion', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        min-width: 100%;
    }
}
