/* Global Styles */
:root {
    --brand-green: #175555;
    --accent: #ff580b;
    --muted: #6c757d;
    --bs-light: #F3F5F6; 
    --bs-white: #FFFFFF;     
      --bs-muted: #a0a0a0;
    --card-border-radius: 24px;
    --hover-shadow: 0 12px 24px rgba(46, 204, 113, 0.3);
    --primary-gradient: linear-gradient(135deg, var(--brand-green) 0%, #27ae60 100%);
}

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

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    background-color: #f8f9fa;
    overflow-x: hidden;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #222;
    line-height: 1.6;
}

/* Font Styles */
.font {
    color:var(--accent);
}

/* Brand Mark */
.brand-mark {
    font-size: 1.25rem;
    color: var(--accent);
}

/* Cards - Enhanced definition */
.card {
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hover-elevate {
    transition: transform .18s ease, box-shadow .18s ease;
}

.hover-elevate:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(30, 30, 30, 0.08);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(25, 135, 84, 0.25);
}

.card-body {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0 0 1rem 1rem;
}

.card h5 {
    font-weight: 600;
    transition: color 0.3s ease;
}

.card:hover h5 {
    color: var(--accent);
}

.card img {
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.05);
}

/* Hero Card */
.hero-card {
    border-radius: 12px;
}

/* Contact Cards */
.contact-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

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

.card-body {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0 0 1rem 1rem;
}

.card-body h5 {
    margin-bottom: 1rem;
    color: var(--accent);
    transition: color 0.3s ease;
}

.card-body p {
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.card-body ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.card-body li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: none;
}

.card-body li:before {
    content: "✓";
    position: absolute;
    left: -1.2rem;
    color: var(--accent);
    font-weight: bold;
}

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

.fw-bold {
    font-weight: 700 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.container {
    max-width: 1200px;
}

/* Hero Section with Wave Enhancement */
.hero-section {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: #000; /* Prevent background flash */
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #0000004f; /* No white flash */
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlide 12s infinite;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    filter: brightness(1.0); /* Increase image brightness */
}

/* Your Images */
.slide-1 {
    background-image: url("/static/img/home1.jpg");
    animation-delay: 0s;
}

.slide-2 {
    background-image: url("/static/img/home2.jpeg");
    animation-delay: 4s;
}

.slide-3 {
    background-image: url("/static/img/home.jpg");
    animation-delay: 8s;
}

/* Smooth Fade – No Flash */
@keyframes fadeSlide {
    0% { opacity: 0; }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; }
    100% { opacity: 0; }
}

/* Soft Overlay (not dark) */
.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.392),
        rgba(0, 0, 0, 0.257)
    );
    z-index: 1;
}

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







/* Text Animation */
.display-6 {
    animation: fadeInUp 1s ease-out;
}

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

/* Enhanced Button Styling */
.btn-custom {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid white;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-custom:hover::before {
    left: 100%;
}

/* .btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
} */

/* Wave SVG Styling */
/* .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 2;
    overflow: hidden;
} */



@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Industry Cards */
.industry-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

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

.card-body {
    padding: 1rem;
    text-align: center;
    background-color: #fff;
}

/* Industry Image Container */
.industry-image-container {
    height: 200px;
    overflow: hidden;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
}

/* Industry Image - Normal color by default */
.industry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    cursor: pointer;
    border-radius: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Hover effect without color change */
.industry-card:hover .industry-image {
    transform: scale(1.05);
}

/* Card Content */
.industry-card h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.industry-card p {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

/* Learn More Button */
.learn-more-btn {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.2);
    position: relative;
    overflow: hidden;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.learn-more-btn:hover::before {
    left: 100%;
}

.learn-more-btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(25, 135, 84, 0.3);
    color: white;
}

/* Section Title */
.section-title {
    font-weight: 700;
    color: #198754;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* View All Link */
.view-all-link {
    color: #198754;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.view-all-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #198754;
    transition: width 0.3s ease;
}

.view-all-link:hover {
    color: #157347;
    text-decoration: underline;
}

.view-all-link:hover::after {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .industry-image-container {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .industry-card {
        border-radius: 1rem;
    }
    
    .industry-image-container {
        height: 160px;
    }
    
    .industry-card h6 {
        font-size: 1rem;
    }
    
    .industry-card p {
        font-size: 0.8rem;
    }
    
    .learn-more-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Hero Section Responsive Adjustments */
    .hero-section {
        min-height: 60vh;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .wave {
        height: 80px;
    }
}

@media (max-width: 576px) {
    .industry-image-container {
        height: 140px;
    }
    
    .industry-card h6 {
        font-size: 0.9rem;
    }
    
    .industry-card p {
        font-size: 0.75rem;
    }
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.bg-body-tertiary {
    background-color: #f8f9fa !important;
}

/* Lists */
ul {
    padding-left: 1rem;
}

ul li::marker {
    color: var(--accent);
}

/* Fixed Learn More Button for Service Cards */
.service-card .btn {
    margin-top: auto;
    transition: all 0.3s ease;
    border: 2px solid;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.service-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.service-card .btn:hover::before {
    left: 100%;
}

.service-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ================learn more=============================== */
.service-card .btn-outline-success {
    color: #198754;
    border-color: #198754;
}

.service-card .btn-outline-success:hover {
    background-color: #198754;
    color: white;
}

.service-card .btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}

.service-card .btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
}

.service-card .btn-outline-info {
    color: #0dcaf0;
    border-color: #0dcaf0;
}

.service-card .btn-outline-info:hover {
    background-color: #0dcaf0;
    color: white;
}

/* Icon hover effects */
.icon-wrapper {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.icon-wrapper i {
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Add pointer cursor to all interactive elements */
a, button, .btn, .learn-more-btn, .icon-wrapper, .card, .industry-card {
    cursor: pointer;
}

/* Work Cards */
.work-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    transition: all 0.5s ease;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.work-card h3 {
    position: relative;
    display: inline-block;
}

.work-card h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--brand-green);
    transition: width 0.4s ease;
}

.work-card:hover h3::after {
    width: 100px;
}

.work-card .btn:hover {
    box-shadow: 0 0 15px rgba(25, 135, 84, 0.5);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Industry Grid Section Styles */
.industry-grid-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.industry-block {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.industry-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.industry-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.industry-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #4e73df;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industry-content {
    padding: 25px;
}

.industry-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 12px;
}

.industry-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.industry-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4e73df;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.industry-button:hover {
    background: #2e59d9;
    color: white;
}

/* Industry Blocks */
.industry-block {
    position: relative;
    overflow: hidden;
    border-radius: var(--card-border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 40px;
    height: 320px;
    display: flex;
    flex-direction: column;
}

/* Industry image for blocks */
.industry-image-block {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: var(--card-border-radius);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.industry-block:hover .industry-image-block {
    transform: scale(1.05);
}

/* Badge positioned at the top center */
.industry-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b6b;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Content area at the bottom */
.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5));
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    border-bottom-left-radius: var(--card-border-radius);
    border-bottom-right-radius: var(--card-border-radius);
}

.industry-block:hover .industry-content {
    transform: translateY(0);
}

/* Industry title */
.industry-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.industry-block:hover .industry-title {
    opacity: 1;
    transform: translateY(0);
    font-weight: 700;
}

/* Industry description */
.industry-description {
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}

.industry-block:hover .industry-description {
    opacity: 1;
    transform: translateY(0);
    font-weight: 600;
}

/* Industry button */
.industry-button {
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;
}

.industry-block:hover .industry-button {
    opacity: 1;
    transform: translateY(0);
    font-weight: 700;
}

.industry-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    color: white;
}

/* Industry grid section */
.industry-grid-section {
    padding: 80px 0;
    background-color: #fff;
}

/* Industry header styling */
.industry-header {
    background-color: #f8f9fa;
    padding: 80px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.industry-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.industry-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Remove default margin from last child elements */
.col-md-6>.industry-block:last-child {
    margin-bottom: 40px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: #4e73df;
    color: white;
    padding: 20px 30px;
    position: relative;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s;
    background: rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 30px;
}

.detail-section {
    margin-bottom: 25px;
}

.detail-section h4 {
    color: #4e73df;
    margin-bottom: 15px;
    font-weight: 600;
}

.detail-section ul {
    padding-left: 20px;
}

.detail-section li {
    margin-bottom: 10px;
    color: #555;
}

.detail-section p {
    color: #555;
    line-height: 1.6;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    text-align: right;
}

.btn-secondary {
    background: #6c757d;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .industry-grid-section {
        padding: 40px 0;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .industry-header h1 {
        font-size: 2rem;
    }

    .industry-header p {
        font-size: 1rem;
    }

    .industry-block {
        height: 300px;
    }

    .industry-title {
        font-size: 1.2rem;
    }

    .industry-description {
        font-size: 0.9rem;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        min-height: 250px;
    }

    .about-right-content {
        padding: 1.5rem;
    }

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

    .about-subtitle {
        font-size: 1.25rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }

    .tab-content-area.active {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tab-button {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .info-section h2 {
        font-size: 1.3rem;
    }

    .brand-header h1 {
        font-size: 1.6rem;
    }

    .visual-section img {
        height: 280px;
    }

    .display-5 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .industry-block {
        height: 300px;
    }

    .industry-title {
        font-size: 1.1rem;
    }

    .industry-description {
        font-size: 0.85rem;
    }
}

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    background-color: #000;
}

.about-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-right-content {
    flex: 1;
    padding: 2.5rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--brand-green);
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #495057;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Stats Container */
.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon,
.factory-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-icon {
    color: var(--brand-green);
}

.factory-icon {
    color: var(--brand-green);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Purpose and Co-founders Sections */
.purpose-section,
.co-founders-section {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.founder-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.founder-image {
    flex-shrink: 0;
}

.founder-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e9ecef;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.founder-card:hover .founder-image img {
    border-color: #28a745;
    transform: scale(1.05);
}

.founder-content {
    padding-left: 25px;
    padding-right: 15px;
}

.founder-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 12px;
}

.founder-role .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin-right: 8px;
    margin-bottom: 10px;
}

.founder-description {
    font-size: 1rem;
    color: #495057;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: justify;
    text-justify: inter-word;
}

/* Purpose section styling */
.purpose-section {
    border-left: 5px solid #28a745;
}

.purpose-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #28a745;
}

.vision-mission {
    background-color: rgba(40, 167, 69, 0.05);
    border-radius: 8px;
    padding: 15px;
}

.locations-list i {
    font-size: 1.1rem;
}

/* Founders section styling */
.founders-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Achievements section styling */
.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.achievement-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-basis: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.achievement-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    transform: rotate(360deg);
}

.achievement-icon i {
    font-size: 2.5rem;
    color: white;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: black;
    margin-bottom: 15px;
}

.achievement-description {
    font-size: 0.9rem;
    color: black;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .achievement-card {
        flex-basis: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .achievement-card {
        flex-basis: 100%;
    }

    .founder-card {
        flex-direction: column !important;
        text-align: center;
    }

    .founder-content {
        padding: 20px 0;
    }
}

/* Main Wrapper */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Brand Header */
.brand-header {
    background-color: var(--brand-green);
    padding: 25px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.brand-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-green), var(--accent));
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.brand-header h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.brand-header p {
    font-size: 1rem;
    opacity: 0.95;
}

/* Section Tabs */
.section-tabs {
    display: flex;
    background: #e9f7ef;
    border-bottom: 2px solid var(--brand-green);
    overflow-x: auto;
}

.tab-button {
    flex: 1;
    padding: 10px 10px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-green);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.tab-button:hover {
    background: rgba(30, 132, 73, 0.1);
    color: var(--accent);
}

.tab-button.active {
    color: var(--accent);
    background: transparent;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-green) 0%, var(--accent) 100%);
}

/* Tab Content */
.tab-content-area {
    display: none;
    padding: 35px;
    animation: fadeIn 0.4s ease;
}

.tab-content-area.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Info Section */
.info-section h2 {
    font-size: 1.5rem;
    color: var(--brand-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.info-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 15px;
}

/* Visual Section */
.visual-section {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.visual-section img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.visual-section:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 132, 73, 0.6), rgba(255, 159, 28, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.visual-section:hover .image-overlay {
    opacity: 1;
}

/* Feature Box */
.feature-box {
    margin-top: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
}

.feature-box h3 {
    color: var(--brand-green);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #495057;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
}

/* Footer */
.custom-footer {
    background-color: #1a2c3a;
    color: #e0e0e0;
    border-top: 2px solid var(--brand-green);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-green), var(--accent));
    animation: gradientMove 3s ease infinite;
}

.custom-footer .link-secondary {
    color: var(--accent);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.custom-footer .link-secondary:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 159, 28, 0.5);
}

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

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

.custom-footer .btn-outline-secondary {
    color: var(--accent);
    border-color: var(--accent);
    transition: all 0.3s ease;
}

.custom-footer .btn-outline-secondary:hover {
    background-color: var(--accent);
    color: #1a2c3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-footer .small {
    color: var(--muted);
}

.custom-footer .small strong {
    color: var(--accent);
}

.custom-footer h5,
.custom-footer h6 {
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.custom-footer h5::after,
.custom-footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.custom-footer .social-icons a {
    margin: 0 0.5rem;
}

.custom-footer .copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--brand-green);
    color: #a0a0a0;
    transition: color 0.3s ease;
}

.custom-footer .copyright:hover {
    color: #ffffff;
}

/* Navbar Brand Small */
.navbar-brand small {
    font-size: .7rem;
    color: var(--muted);
}

/* Footer Links */
footer a {
    text-decoration: none;
}

/* Custom CSS for light color to full color hover effect */
.light-color-hover {
    filter: brightness(0.9) saturate(0.3);
    transition: filter 0.3s ease;
}

.light-color-hover:hover {
    filter: brightness(1) saturate(1);
}

/* Industry Header Section */
.industry-header-section {
    background: var(--brand-green);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.industry-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-green), var(--accent));
    animation: gradientMove 3s ease infinite;
}

.industry-header-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.industry-header-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* -----------------base css------------------------- */
.orange-icon {
    color: black;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: left;
    width: 70%;
    height: 20%;
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: -4px;
}

.social-img {
    width: 50%;
    height: 20%;
    object-fit: contain;
    display: block;
}

.footer-link i {
    color: var(--accent);
    transition: transform 0.2s ease;
}

.footer-link:hover i {
    transform: translateX(3px);
}

.contact-info i {
    color: var(--accent);
}

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

.nav-item {
    position: relative;
    transition: all 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 50%;
}

.nav-link {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-link i {
    margin-right: 8px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: translateY(-2px);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.active {
    color: var(--accent);
    font-weight: 600;
}

.theme-toggle-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    color: var(--accent);
    transform: rotate(180deg);
}

/* ============D&L================= */
/* Light Mode Styles */
.transparent-footer {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.transparent-footer h6 {
    color: var(--accent);
}

.transparent-footer p {
    color: black;
}

.transparent-footer .footer-link {
    color: var(--accent);
}

.transparent-footer .footer-link:hover {
    color: #ff9800;
}

.transparent-footer .contact-info a {
    color: var(--accent);
}

.transparent-footer .contact-info a:hover {
    color: var(--accent);
}

.transparent-footer .text-orange {
    color: #ff9800;
}

.transparent-footer .border-top {
    border-color: #dee2e6;
}

/* Light Navbar */
#main-navbar {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

#main-navbar .nav-link {
    color: var(--muted);
}

#main-navbar .nav-link:hover {
    color: var(--accent);
}

.theme-toggle-btn {
    background-color: transparent;
    border: 1px solid #ddd;
    color: #333;
}

.theme-toggle-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Light Mode Logo */
.logo {
    filter: none;
}

/* Light Mode Shadows */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* =======================my==================== */
.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.bg-body-tertiary {
    background-color: #f8f9fa !important;
}

/* Page Title */


/* Fix breadcrumb */
.page-title .breadcrumb {
    background: none;
    padding: 0;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.202);
    z-index: 1;
}

.page-title .container {
    position: relative;
    z-index: 2;
}

.title-breadcrumb {
    color: white;
}

.title-breadcrumb h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    border-radius: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '/';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .page-title {
        padding: 100px 0;
    }

    .title-breadcrumb h2 {
        font-size: 2rem;
    }
}

/* Service Card Image */
.service-card .card-img-top {
    height: 180px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0.5rem 0.5rem 0 0;
    transition: transform 0.4s ease;
    background-color: #f8f9fa;
}

/* Service Card Image Hover Effect */
.service-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Ensure cards maintain consistent height */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
}

/* Card body takes remaining space */
.service-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Make content area responsive */
.service-card .card-body h5 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card .card-body p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.service-card .card-body ul {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.service-card ul {
    text-align: left;
    padding-left: 1.2rem;
    list-style-position: outside;
}

.btn-custom {
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .btn-custom {
        font-size: 1rem;
        padding: 0.45rem 1rem;
    }
}

@media (min-width: 1200px) {
    .btn-custom {
        font-size: 1.05rem;
        padding: 0.5rem 1.1rem;
    }
}

@media (max-width: 768px) {
    .founder-card {
        padding: 20px;
        text-align: center;
    }

    .founder-card .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .founder-image {
        margin-bottom: 15px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .founder-image img {
        width: 140px !important;
        height: 140px !important;
        border-radius: 50%;
        object-fit: cover;
    }

    .founder-content {
        padding: 0 !important;
        text-align: center !important;
    }

    .founder-role .badge {
        margin-bottom: 8px;
        display: inline-block;
    }

    .founder-description {
        text-align: center !important;
        font-size: 0.95rem;
        line-height: 1.5;
        margin-top: 10px;
    }
}

/* ----------------------------------------------------
   FINAL MOBILE FIX CSS (CLEAN, NO DUPLICATES)
   Works for 320px – 768px screens
-----------------------------------------------------*/
@media (max-width: 768px) {
    /* HERO SECTION */
    .hero-section {
        min-height: 55vh;
        padding: 40px 0 !important;
        text-align: center;
    }
    .hero-section .container {
        padding-top: 60px;
    }
    .hero-section h1 {
        font-size: 1.7rem !important;
        line-height: 1.3;
    }
    .hero-section p {
        font-size: 1rem !important;
    }
    .hero-slider .slide {
        background-position: center !important;
    }

    /* SERVICES SECTION */
    .service-card {
        margin-bottom: 20px;
        padding: 10px;
    }
    .service-card .card-body {
        padding: 1rem !important;
        text-align: center;
    }
    .service-card h5 {
        font-size: 1rem !important;
    }
    .service-card p {
        font-size: 0.85rem !important;
    }

    /* INDUSTRY CARDS */
    .industry-card {
        border-radius: 1rem;
        text-align: center;
        padding-bottom: 15px;
    }
    .industry-image-container {
        height: 130px !important;
    }
    .industry-image {
        object-fit: cover !important;
    }
    .industry-card h6 {
        font-size: 0.95rem !important;
    }
    .industry-card p {
        font-size: 0.75rem !important;
        padding: 0 5px;
    }

    /* Set 1 card per row on mobile */
    .col-6 {
        width: 100% !important;
    }

    /* ABOUT SECTION */
    .about-section {
        flex-direction: column !important;
        padding: 0 !important;
    }
    .about-image {
        min-height: 220px !important;
    }
    .about-right-content {
        padding: 1.2rem !important;
    }
    .about-title {
        font-size: 1.7rem !important;
    }
    .about-subtitle {
        font-size: 1.1rem !important;
    }

    /* FOUNDER CARDS */
    .founder-card {
        flex-direction: column !important;
        padding: 20px !important;
        text-align: center !important;
    }
    .founder-card .d-flex {
        flex-direction: column !important;
        align-items: center !important;
    }
    .founder-image {
        margin-bottom: 15px !important;
    }
    .founder-image img {
        width: 120px !important;
        height: 120px !important;
    }
    .founder-content {
        padding: 0 !important;
        text-align: center !important;
    }
    .founder-name {
        font-size: 1.1rem !important;
    }
    .founder-description {
        font-size: 0.9rem !important;
        padding: 0 10px;
        text-align: center !important;
    }

    /* ACHIEVEMENTS */
    .achievements-grid {
        flex-direction: column !important;
    }
    .achievement-card {
        width: 100% !important;
        margin-bottom: 20px;
    }

    /* PAGE TITLE */
    .page-title {
        padding: 80px 0 !important;
    }
    .title-breadcrumb h2 {
        font-size: 1.6rem !important;
    }

    /* BUTTONS */
    .btn-custom {
        font-size: 0.85rem !important;
        padding: 0.4rem 0.9rem !important;
    }
}

.page-title1 {
    background: url('/static/img/service.jpg') no-repeat center center/cover;
    padding: 150px 0;
    position: relative;
    text-align: center;
    color: white;
    margin-top: 5%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-title1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.page-title1 .container {
    position: relative;
    z-index: 2;
}

.page-title1 .breadcrumb-link {
    color: var(--accent) !important;
}

.page-title1 .breadcrumb-link:hover {
    color: var(--accent) !important;
}

.page-title2 {
    background: url('/static/img/abou.jpg') no-repeat center center/cover;
    padding: 150px 0;
    position: relative;
    text-align: center;
    color: white;
    margin-top: 5%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-title2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.page-title2 .container {
    position: relative;
    z-index: 2;
}

.page-title2 .breadcrumb-link {
    color: var(--accent) !important;
}

.page-title2 .breadcrumb-link:hover {
    color: var(--accent) !important;
}

.page-title3 {
    background: url('/static/img/pro.jpg') no-repeat center center/cover;
    padding: 150px 0;
    position: relative;
    text-align: center;
    color: white;
    margin-top: 5%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-title3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.page-title3 .container {
    position: relative;
    z-index: 2;
}

.page-title3 .breadcrumb-link {
    color: var(--accent) !important;
}

.page-title3 .breadcrumb-link:hover {
    color: var(--accent) !important;
}

.page-title4 {
    background: url('/static/img/demo.jpg') no-repeat center center/cover;
    padding: 150px 0;
    position: relative;
    text-align: center;
    color: white;
    margin-top: 5%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-title4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.page-title4 .container {
    position: relative;
    z-index: 2;
}

.page-title4 .breadcrumb-link {
    color: var(--accent) !important;
}

.page-title4 .breadcrumb-link:hover {
    color: var(--accent) !important;
}

.page-title5 {
    background: url('/static/img/contact.jpg') no-repeat center center/cover;
    padding: 150px 0;
    position: relative;
    text-align: center;
    color: white;
    margin-top: 5%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-title5::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.page-title5 .container {
    position: relative;
    z-index: 2;
}

.page-title5 .breadcrumb-link {
    color: var(--accent) !important;
}

.page-title5 .breadcrumb-link:hover {
    color: var(--accent) !important;
}





.page-title0{
    background: url('/static/img/ind.jpg') no-repeat center center/cover;
    padding: 150px 0;
    position: relative;
    text-align: center;
    color: white;
    margin-top: 5%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-title0::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.page-title0 .container {
    position: relative;
    z-index: 2;
}

.page-title0 .breadcrumb-link {
    color: var(--accent) !important;
}

.page-title0 .breadcrumb-link:hover {
    color: var(--accent) !important;
}


#footer a {
    color: var(--muted) !important;
}

#footer a:hover {
    color: #fd7e14 !important;
}

#footer .text-orange {
    color: #fd7e14 !important;
}

#footer .fw-bold {
    font-weight: bold !important;
}

/* Remove hover effects for the Book a Demo card */
.card.border-0.shadow-sm.p-3 {
    transition: none;
}

.card.border-0.shadow-sm.p-3:hover {
    transform: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Make the map container taller */
.contact-card:first-child .ratio {
    height: 280px; /* Adjust this value as needed */
}