
    /* Global Styles */
    body {
        font-family: 'Times New Roman', Times, serif;
        line-height: 1.6;
        scroll-behavior: smooth;
        color: #333;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
    }

    .navbar ul li a.active {
        color: #007BFF !important;
        font-weight: 600;
    }

    .nav-link{
        font-size: x-large;
    }

    /* Navigation */
    .navbar {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        background-color: #ffffff;
    }

    #production-services p {
        text-align: justify;
    }

    /* Text Animation */
    @keyframes fadeUp {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .bordercard {
        background: rgb(225, 225, 228);
        border-radius: 16px;
        padding: 20px;
        justify-content: center;
        width: 110%;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .container1 {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        justify-content: center;
        align-items: stretch;
    }


    #card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
        width: calc(22.888% - 10px);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        flex-direction: column;
    }

    #card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    }

    #card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 12px;
        background: white;
    }

    /* Section Spacing */
    .py-5 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .bg-light {
        background-color: #f8f9fa !important;
    }

    .bg-dark {
        background-color: #343a40 !important;
    } 

    /* Products & Services Specific */
    #products-services h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #007BFF;
    }

    #products-services .card-text {
        font-size: 0.95rem;
        color: #6c757d;
    }

    /* Team Section Specific */
    #team .card-img-top {
        object-fit: cover;
        border: 3px solid #007BFF;
        width: 150px;
        height: 150px;
    }

    #team .card-title {
        /* color: #007BFF; */
        margin-bottom: 0.5rem;
    }

    #team .card-text {
        font-weight: 500;
        color: #495057;
        margin-bottom: 0.25rem;
    }

    #team p.text-muted {
        font-size: 0.875rem;
    }

    /* About Section Image */
    #about img {
        max-width: 100%;
        height: auto;
    }

    /* Contact Section */
    #contact h5 {
        /* color: #007BFF; */
        margin-bottom: 1rem;
    }

    #contact a {
        color: #007BFF;
        text-decoration: none;
    }

    #contact a:hover {
        color: #0056b3;
    }

    /* Form Styling */
    form .form-control {
        border-radius: 0.5rem;
        border: 1px solid #ccc;
        padding: 0.75rem;
    }

    form .form-control:focus {
        border-color: #A67B5B;
    }

    form .btn {
        padding: 0.75rem 2rem;
        font-weight: 600;
    }

    #dialogBox, #dialogBox1, #dialogBox2 {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        overflow-y: scroll;
    }

    #box, #box1,  #box2 {
        background: white;
        padding: 20px;
        max-width: 500px;
        margin: 100px auto;
        position: relative;
        border-radius: 8px;
    }

    #closeDialog,  #closeDialog1, #closeDialog2 {
        position: absolute;
        top: 10px;
        right: 15px;
        cursor: pointer;
        font-size: 20px;
    }

    .logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
        gap: 50px;
        justify-items: center;
        align-items: center;
        padding: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 1.0);
    }

    .client-logo img {
        width: 200px;
        height: 110px;
        object-fit: contain;
        margin-bottom: -5px;
        padding: 20px;
        transition: transform 0.3s ease;
    }

    .client-logo p {
        font-size: 12px;
        font-weight: 500;
        color: #333;
        margin-bottom: 10px;
        text-align: center;
    }


    #products-services {
        background: linear-gradient(180deg, #f9fafc 0%, #eef3f8 100%);
    }

    .service-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.4s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: linear-gradient(135deg, #007bff, #00c6ff);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-card img {
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .service-card:hover img {
        transform: scale(1.05);
    }

    img {
        pointer-events: none;
    }

    @media (max-width: 767px) {
        .service-card {
            margin-bottom: 1rem;
        }
    }

    @media (max-width: 600px) {
        .logo-grid {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        }

        .container img {
            display: flex;
            width: 107%;
            height: 60%;
        }
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {

        #home img {
            margin-top: 15%;
        }

        .logo-grid {
            width: 90%;
            margin-left: 5%;
        }

        #card {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 12px;
            background: white;
        }

        .navbar-brand {
            font-size: 1.2rem;
        }

        /* Products & Services: Stack cards and sub-sections */
        #products-services .row>div {
            text-align: center;
        }

        #products-services h3 {
            font-size: 1.75rem;
        }

        /* Team: Full-width cards on mobile */
        #team .col-md-3 {
            flex: 0 0 100%;
            max-width: 100%;
        }

        #team .card-img-top {
            width: 120px;
            height: 120px;
        }

        /* Contact: Stack info columns */
        #contact .row>div.col-md-4 {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        /* General section padding reduction on mobile */
        .py-5 {
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }
    }

    @media (max-width: 576px) {
        h1.display-4 {
            font-size: 2rem;
        }

        h2 {
            font-size: 1.75rem;
        }

        .card img {
            width: 60px;
            height: 60px;
        }

        /* Navigation: Adjust padding */
        .navbar-nav .nav-link {
            padding: 0.5rem 1rem;
        }
    }

    html {
        scroll-padding-top: 56px;
    }

    .ticker-wrap {
        background-color: #02245B;
        overflow: hidden;
        position: relative;
        height: 2rem;
        color: #ecf0f1;
        font-size: 1rem;
        line-height: 2rem;
    }

    .ticker {
        position: relative;
        animation: mymove 30s infinite;
    }

    @keyframes mymove {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-100%);
        }
    }