body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Target the entire scrollbar */
::-webkit-scrollbar {
    width: 10px;
    /* Width of the vertical scrollbar */
    height: 12px;
    /* Height of the horizontal scrollbar */
}

/* Style the track (background of the scrollbar) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Light gray track */
    border-radius: 10px;
    /* Rounded edges */
}

/* Style the thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: rgb(189, 189, 189);
    /* Gray thumb */
    border-radius: 10px;
    /* Rounded edges */
}

/* Style the thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(168, 168, 168);
    /* Darker gray on hover */
}

/* custom container css */

.custom-container {
    padding: 0 5vw;
}

p {
    font-size: 1.3vw !important;
    line-height: 2.3rem !important;
    word-spacing: 0.3vw;


}

h3 {
    font-size: 1.3vw;
}

h2 {
    font-size: 2vw !important;
}

h1 {
    font-size: 2.3vw !important;
}

a {
    font-size: 0.95vw !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.overlay::before {
    background: transparent;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    padding: 0 20px;
    width: 100%;
    font-size: 5.5vw !important;
    letter-spacing: 0.1vw;
    opacity: 0;
    /* Start with text invisible */
    animation: fadeUp 1s ease-out forwards;
    /* Apply fade-up animation */
}

.img-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.vision-mission h2 {
    line-height: 10vh;
}

.vision-mission p {
    font-size: 1.3vw !important;
    text-align: justify;
}

.drop-cap::first-letter {
    font-weight: bold;
    font-size: 2rem;
}

.btn{
    font-size: 0.95vw !important;
}

/* Keyframes for fade-up animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -30%);
        /* Start slightly below */
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
        /* End at original position */
    }
}







@media (max-width: 1024px) {

    p,
    .form-label,
    .breadcrumb,
    .vision-mission p {
        font-size: 2.3vw !important;
    }

    h1 {
        font-size: 3vw !important;
    }

    h2 {
        font-size: 4vw !important;
    }

    .vision-mission h2 {
        line-height: 4vh;
    }

    .vision-mission h2 {
        line-height: normal;
    }
}

@media (max-width: 768px) {

    p,
    .form-label,
    .breadcrumb,
    .vision-mission p {
        font-size: 3.2vw !important;
    }

    .process-icon {
        gap: 1rem;
    }

    h3 {
        font-size: 1.7vw !important;
    }

    .card-content {
        padding: 1rem !important;
    }

    h2 {
        font-size: 4vw !important;
    }

    h1{
        font-size: 5vw !important;
    }

    .btn{
        font-size: 2vw !important;
    }
}

@media (max-width: 425px) {

    p,
    .form-label,
    .breadcrumb,
    .vision-mission p {
        font-size: 4vw !important;
    }

    .process-icon {
        gap: 1rem;
    }

    h3 {
        font-size: 3vw !important;
    }

    .card-content {
        padding: 1rem !important;
    }

    h2 {
        font-size: 6vw !important;
    }

    h1,
    .hero-h1 {
        font-size: 6vw !important;
    }

    .designing-manufacturing {
        gap: 1rem;
    }


    .designing-manufacturing {
        flex-direction: column;
    }

    .process-icon {
        flex-direction: column !important;
        padding: 0 2rem;
        text-align: center;
    }

    .btn{
        font-size: 2.5vw !important;
    }
}