#popup,
.nav-bar-panel {
    justify-content: center
}

.close-btn,
.menu-toggle {
    font-size: 24px;
    cursor: pointer
}

.vertical-div,
body.no-scroll {
    overflow: hidden
}

.footer-nav ul,
.menu-section,
.second-eighth-sub-sub-container ul {
    list-style: none
}

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


html,
body {
    width: 100%;
    min-height: 100vh;
    /* Ensures full-page height */
    font-family: Arial, sans-serif;
    overflow-y: auto;
    background-color: #000;
    /* Enables vertical scrolling */
}



.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 70px;
    height: 70px;
    z-index: 1000
}

.whatsapp-float img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    transition: transform .3s ease-in-out
}

.whatsapp-float img:hover {
    transform: scale(1.1)
}

#popup {
    display: none;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    box-sizing: border-box;
}

.popup-content {
    background: #036;
    padding: 25px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    position: relative;
    text-align: left;
    color: #fff;
    z-index: 10000;
    padding-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);

    /* Hides scrollbar but allows scroll */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.popup-content::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.popup-content h2,
.popup-content p {
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

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

.main-container,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.main-top-container,
body {
    justify-content: center;
    display: flex;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 10px 0 5px;
    color: #fff;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    font-size: 14px;
}

form input::placeholder,
form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

form select {
    background-color: #036;
}

form button {
    margin-top: 15px;
    padding: 12px;
    background-color: #0056b3;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

form button:hover {
    background-color: #049;
}

/* Contact Radio Buttons */
.contact-radio-group {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* File Upload Line */
.file-upload-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

input[type="file"] {
    color: #fff;
    font-size: 0.85rem;
    width: 100%;
}




@media (max-width:768px) {
    body {
        flex-direction: column;
        align-items: center
    }
}

.main-container {
    width: 100%;
    height: auto;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

@media (max-width:768px) {
    .main-container {
        width: 100%;
        padding: 0
    }
}

.first-container {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    background: radial-gradient(circle, rgba(11, 23, 58, 0.9) 50%, #000 100%);
    background-position: 0 100%;
    background-size: 200% 100%;
    align-items: center
}

/* Container for the entire navbar */
.nav-bar-panel {
    width: 100%;
    padding: 1% 2%;
    position: absolute;
    display: flex;
    justify-content: center;
    z-index: 10;
}

/* Outer navbar styling */
.nav-bar {
    width: 100%;
    max-width: 100%;
    background: #323232b0;
    border-radius: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    box-sizing: border-box;
}

/* Logo section */
.logo-section {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo-section a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-image {
    height: 100%;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 9px;
}

.menu-section li a {
    position: relative;
    text-decoration: none;
    color: #0056b3;
    padding: 8px 16px;
    display: inline-block;
    transition: background 0.3s ease;
    border-radius: 8px;
}

/* On hover: gray background, no underline */
.menu-section li a:hover {
    background-color: #76b5f834;
}

/* Active link: underlined */
.menu-section li a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #0056b3;
    border-radius: 2px;
}



.menu-container {
    width: 45%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center
}

.menu-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.menu-section li a {
    color: #fff;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-style: inherit;
    text-decoration: none
}

.menu-toggle {
    display: none
}


.quote-section {
    width: 15%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none
}

.quote-button {
    width: 100%;
    height: auto;
    border-radius: 40px;
    background: rgba(122, 153, 247, .856);
    color: #4484fa;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 35px;
    border: none;
    transition: .3s ease-in-out;
    text-decoration-color: none
}

.contact-btn a,
.footer-links a,
.footer-nav ul li a,
.get-quote-btn a,
.material-catalog a,
.quote-btn a,
.quote-button a {
    text-decoration: none;
    color: #fff
}

.quote-button:hover {
    background: #2c5be0;
    transform: scale(1.05);
    text-decoration: none
}

@media (max-width:1024px) {

    .nav-bar-panel,
    .rectangle-15 {
        border-radius: 50px;
        width: 90%
    }

    .nav-bar-panel {
        left: 5%;
        top: 20px
    }

    .rectangle-15 {
        height: 80px
    }

    .inner-nav {
        width: 90%;
        height: 50px;
        border-radius: 30px;
        padding: 4px 15px
    }

    .logo-section {
        width: 160px;
        height: 38px
    }

    .menu-container {
        width: 400px
    }

    .menu-section li a {
        font-size: 16px
    }

    .quote-section {
        width: 140px;
        height: 44px
    }

    .quote-button {
        font-size: 14px;
        padding: 12px 30px;
        text-decoration: none
    }
}

@media (max-width:768px) {
    .main-top-bg {
        object-fit: cover !important
    }

    .nav-bar-panel {
        width: 100%;
        height: 70px;
        top: 15px;
        left: 0;
        justify-content: space-between;
        padding: 0 15px;
        border-radius: 50px
    }

    .inner-nav,
    .rectangle-15 {
        width: 100%;
        border-radius: 40px
    }

    .rectangle-15 {
        height: 60px
    }

    .inner-nav {
        height: 45px;
        padding: 4px 10px
    }

    .logo-section {
        width: 120px;
        height: 45px
    }

    .menu-container {
        width: auto;
        justify-content: flex-end
    }

    .menu-section {
        position: fixed;
        top: 60px;
        right: 15px;
        width: 200px;
        background: #323232;
        padding: 10px;
        border-radius: 8px;
        display: none;
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
        z-index: 10000
    }

    .menu-toggle {
        position: absolute;
        font-size: 24px;
        cursor: pointer;
        z-index: 1000;
        display: block;
        color: #fff
    }

    .menu-section.active {
        display: flex
    }

    .hero-text-box.menu-open-adjust {
        transform: translateY(50px);
        transition: transform .3s ease-in-out
    }

    body.menu-open {
        overflow: hidden
    }

    .menu-section li {
        list-style: none;
        padding: 8px 12px;
        text-align: left
    }

    .menu-section li a {
        color: #fff;
        text-decoration: none;
        font-size: 16px
    }

    .quote-section {
        width: 120px;
        height: 40px;
        display: none
    }

    .quote-button {
        font-size: 13px;
        padding: 10px 25px
    }
}
@media (max-width:480px) {
    .main-top-container {
        height: 500px
    }

    .nav-bar-panel,
    .rectangle-15 {
        height: 60px;
        padding: 0 10px
    }

    .nav-bar-panel {
        top: 10px
    }

    .inner-nav {
        height: 40px;
        padding: 4px 8px
    }

    .logo-section {
        width: 120px;
        height: 45px
    }

    .menu-section {
        width: 180px
    }

    .info-box span,
    .menu-section li a {
        font-size: 16px
    }
    

    .quote-section {
        width: 100px;
        height: 36px
    }

    .quote-button {
        font-size: 12px;
        padding: 8px 20px
    }
}

.text-box {
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin: 20px 0 0 5%;
    margin-top: 12%;
    margin-top: 20px;
    color: #fff
}

.text-box h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5%;
    text-align: left;
    font-family: 'Abhaya Libre ExtraBold', serif;

}

.text-box p {
    width: 80%;
    color: #e6e6e6;
    font-family: Poppins, sans-serif;
    font-size: 1.5rem;
    line-height: 2.0rem;
    margin-top: 2%;
}

.image-container {
    width: 35%;
    height: auto;
    align-items: center;
    justify-content: left;
    margin-top: 4.8%;
    padding-right: 5%
}

.image-container img {
    width: 100%;
    height: 100%
}

.Second-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: auto;
    background-color: #111a36fd;
    padding: 5%;
    flex-wrap: wrap
}

.text-container {
    flex: 1;
    min-width: 320px;
    width: 50%
}

.text-container h2 {
    font-size: 2.7rem;
    font-weight: 400;
    color: #f0f0f0;
    text-align: left
}

.text-container h2 span {
    font-weight: 700;
    color: #3a6afd
}

.text-container p {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-top: 3%;
    width: 90%;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif
}

.card-container {
    flex: 1;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: var(--card-gap)
}

.card {
    width: var(--card-width);
    height: var(--card-height);
    border-radius: 10px;
    background-color: #ccc;
    display: flex;
    flex-direction: column;
    color: #fff;
    background-size: cover;
    background-position: center
}

.card-1 {
    background-image: url('Images/image1.jpg');
    background-color: #575448;
    width: 25%;
    height: auto;
    margin: 2%
}

.card-2 {
    background-image: url('Images/image2.jpg');
    background-color: #013b46;
    width: 25%;
    height: auto;
    margin: 2%
}

.card-3 {
    background-image: url('Images/image3.jpg');
    background-color: #403b56;
    width: 25%;
    height: auto;
    margin: 2%
}

.card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    justify-content: left;
    margin: 5%
}

.card p {
    font-size: 1.5rem;
    justify-content: left;
    padding: 6%
}

.third-container {
    width: 100%;
    width: auto;
    display: flex;
    flex-direction: column;
    padding: 5%
}

.third-first-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column
}

.third-first-container h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ededed;
    font-family: 'Abhaya Libre ExtraBold', serif;
}

.third-first-container p {
    font-size: 2rem;
    color: #e4e4e4;
    width: 80%;
    margin-top: 2%;
    font-family: Arial, Helvetica, sans-serif
}

.third-second-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 5%
}

.third-second-container h2 {
    font-size: 2rem;
    color: #fff;
    margin-left: 7.8%;
    font-family: Arial, Helvetica, sans-serif
}

.cards-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: left;
    padding: 0 5%
}

.cards {
    width: var(--card-width);
    height: var(--card-height);
    border-radius: 10px;
    background-color: #ccc;
    display: flex;
    flex-direction: column;
    color: #fff;
    background-size: cover;
    background-position: center;
    margin: 3%;
    padding: 1.5%;
    height: auto;
    min-height: 700px;
    width: 40%
}

.cards-1 {
    background-image: url('Images/image1.jpg');
    background-color: #575448
}

.cards-2 {
    background-image: url('Images/image2.jpg');
    background-color: #013b46
}

.cards-3 {
    background-image: url('Images/image3.jpg');
    background-color: #403b56
}

.cards-image-1 {
    width: 15%;
    height: 8%;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    background: #e2c152;
    padding: 9px
}

.cards-image-1 img {
    width: 25px;
    height: 30px
}

.cards-image-2 {
    width: 15%;
    height: 8%;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    background: #00c9f1;
    padding: 9px
}

.cards-image-2 img {
    width: 25px;
    height: 30px
}

.cards-image-3 {
    width: 15%;
    height: 8%;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    background: #714eff;
    padding: 9px
}

.cards-image-3 img {
    width: 25px;
    height: 30px
}

.cards h3 {
    font-size: 1.8rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-top: 1%
}

.cards p {
    font-size: 1.5rem;
    color: #ececec;
    font-family: Poppins, sans-serif;;
    margin-top: 1%;
    text-align: left
}

@media (max-width:767px) {
    .first-container {
        flex-direction: column
    }
}

@media (max-width:767px) {
    .text-box {
        width: 100%;
        margin: 30% 0 0 2.5%
    }

    .text-box h1 {
        font-size: 2.3rem;
        width: 100%;
        padding-left: 5%
    }

    .text-box p {
        font-size: 1.3rem;
        width: 100%;
        text-align: left;
        padding: 0 5%;
        line-height: 1.4rem
    }

    .image-container {
        width: 90%;
        padding-right: 0
    }

    .image-container img {
        width: 100%;
        height: 100%;
        padding-right: 0
    }

    .Second-container {
        flex-direction: column
    }

    .text-container h2 {
        width: 90%;
        text-align: left;
        font-size: 2rem;
        padding-right: 2.9%
    }

    .text-container p {
        width: 90%;
        font-size: 1.3rem;
        line-height: 1.5rem;
        margin: 5% 0;
        color: #fff;
        font-family: Arial, Helvetica, sans-serif
    }

    .text-container,
    .card-container {
        width: 100%
    }

    .card {
        width: 100%;
        margin: 2% 0
    }

    .card p {
        width: 100%;
        margin: 2% 0;
        font-size: 1.3rem;
        font-family: Arial, Helvetica, sans-serif
    }

    .third-first-container h1 {
        font-size: 2.5rem
    }

    .third-first-container p {
        font-size: 1.3rem;
        width: 100%
    }

    .cards-container {
        flex-direction: column
    }

    .cards {
        width: 100%;
        margin: 2% 0;
        min-height: auto
    }

    .third-second-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        margin-top: 5%
    }

    .third-second-container h2 {
        font-size: 2rem;
        color: #fff;
        margin-left: 0;
        font-family: Arial, Helvetica, sans-serif
    }

    .cards {
        width: 100%;
        height: auto;
        min-height: 500px;
        padding: 2%
    }

    .cards h3 {
        font-size: 1.5rem;
        margin-top: 10%
    }

    .cards p {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-top: 5%
    }
}

@media (min-width:768px) and (max-width:1700px) {
    .text-box {
        width: 100%;
        margin: 5% 0 0 10%
    }

    .text-box h1 {
        font-size: 3.5rem;
        width: 80%
    }

    .text-box p {
        font-size: 1.5rem;
        width: 80%
    }

    .image-container {
        width: 40%;
        margin-top: 0;
        padding-right: 5%
    }

    .image-container img {
        width: 100%;
        height: 100%;
        padding-right: 0
    }

    .cards-image-1 {
        width: 15%;
        padding: 5px
    }

    .cards-image-1 img {
        width: 100%;
        height: auto
    }

    .cards-image-2 {
        width: 15%;
        padding: 5px
    }

    .cards-image-2 img {
        width: 100%;
        height: auto
    }

    .cards-image-3 {
        width: 15%;
        padding: 5px
    }

    .cards-image-3 img {
        width: 100%;
        height: auto
    }

    .Second-container {
        padding: 8%
    }

    .card {
        width: 45%;
        margin: 2%
    }

    .third-first-container h1 {
        font-size: 3.5rem
    }

    .third-first-container p {
        font-size: 1.8rem;
        width: 90%
    }

    .cards {
        width: 100%;
        margin: 0;
        min-height: 600px
    }
}

@media (min-width:1200px) {
    .text-box {
        width: 65%;
        margin: 12% 0 5% 5%
    }

    .text-box h1 {
        font-size: 4rem;
        width: 60%
    }

    .text-box p {
        font-size: 1.6rem;
        width: 60%
    }

    .image-container {
        width: 45%;
        margin-top: 3%;
        padding-right: 5%
    }

    .image-container img {
        width: 75%;
        height: auto
    }

    .Second-container {
        padding: 5%
    }

    .card {
        width: 25%;
        margin: 2%
    }

    .third-first-container h1 {
        font-size: 4.5rem
    }

    .third-first-container p {
        font-size: 2rem;
        width: 80%
    }

    .cards {
        width: 100%;
        margin: 3%;
        min-height: 700px
    }
}

.sixth-container {
    background: url('Images/contactusbg.svg') no-repeat center center/cover;
    width: 100%;
    height: 25rem;
    /* Adjust based on your needs */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    /* Black overlay with 60% opacity */
    z-index: 1;
    /* Keeps it on top of the background but below content */
}

/* Text Box */
.sixth-header {
    position: relative;
    text-align: center;
    padding: 20px 40px;
    border-radius: 8px;
    color: white;
    z-index: 2;
}

/* Header */
.sixth-header h2 {
    font-size: 2rem;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

/* Description */
.sixth-header p {
    font-size: 1.5rem;
    margin: 10px 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* Highlighted Number */
.highlight {
    color: #2a75f3;
    /* Blue color */
    font-weight: bold;
}

.contact-but {
    display: inline-block;
    margin-top: 10%;
    width: 30%;
    height: 48px;
    padding: 1.7% 2%;
    background-color: #2a75f3;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    transition: background-color .3s
}

.contact-but:hover {
    background-color: #0c419d;
    text-decoration: none
}

.eighth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #111a36;
    width: 100%;
    height: auto;
    margin-bottom: 10px
}

.first-eighth-sub-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    height: auto;
    gap: 800px;
    margin-bottom: 10px
}

.first-eighth-sub-sub-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 50%
}

.footer-logo-section img {
    width: 150px;
    height: auto
}

.eighth-text-box {
    padding: 10px;
    text-align: left;
    width: 100%;
}

.eighth-text-box p {
    font-size: 1rem;
    margin: 0;
    color: #fff;
    line-height: 1.5rem;
}

.contact-details {
    max-width: 100%;
}

.contact-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    margin-bottom: 5px;
}

.single-line-url {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    max-width: 100%;
}

.second-eighth-sub-sub-container {
    width: 50%;
    text-align: left;
    margin-left: 10px
}

.second-eighth-sub-sub-container a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    line-height: 40px
}

.contact-details,
.second-eighth-sub-sub-container p {
    color: rgba(255, 255, 255, .8);
    font-family: Arial, Helvetica, sans-serif
}

.second-eighth-sub-sub-container p {
    margin: 0;
    font-size: 1.5rem;
    padding-bottom: 1.5%
}

.input-button-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center
}

.second-eighth-sub-sub-container input {
    width: 70%;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 5px;
    background-color: transparent;
    color: #fff;
    font-size: .9rem
}

.second-eighth-sub-sub-container input::placeholder {
    color: rgba(255, 255, 255, .7)
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    font-size: 15px
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px
}

.footer-nav {
    width: 100%;
    max-width: 1200px;
    text-align: left
}

.footer-nav ul {
    display: flex;
    gap: 15px;
    padding: 0;
    margin-bottom: 15px;
    font-size: 18px
}

.footer-divider {
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin: 20px 0
}

.footer-links {
    text-align: left;
    margin-top: 10px;
    font-size: 15px;
    opacity: .8;
    color: #fff
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px
}

.copy-right,
.footer-links {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif
}


@media (max-width:768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px
    }

    .quote-section {
        display: none
    }

    .contact-second-container {
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
        padding: 10px
    }

    .contact-address-container,
    .contact-form-container {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 40px;
        width: 100%;
        text-align: center
    }

    .contact-address-container h2,
    .contact-form-container h2 {
        font-size: 35px
    }

    .contact-address-container p {
        font-size: 18px;
        line-height: 40px;
        justify-content: center;
        flex-direction: column;
        gap: 5px
    }

    .contact-address-container img {
        width: 20px;
        height: 20px
    }

    .contact-form-container form {
        padding-left: 10px;
        padding-right: 10px
    }

    .contact-form-container input,
    .contact-form-container textarea {
        margin: 5px
    }

    .contact-form-container button {
        margin-left: .4rem
    }

    .contact-second-container {
        flex-direction: column;
        align-items: center
    }

    .contact-address-container p,
    .social-icons {
        justify-content: center
    }

    .sixth-container {
        width: 100%;
        height: auto;
        background: url('Images/contactusbg.svg') center center/cover no-repeat;
        overflow: hidden
    }

    .contact-but,
    .footer-links {
        text-align: center
    }

    .first-eighth-sub-container {
        flex-direction: column;
        align-items: center;
        gap: 30px
    }

    .first-eighth-sub-sub-container,
    .second-eighth-sub-sub-container {
        width: 100%;
        text-align: center
    }

    .input-button-wrapper {
        flex-direction: column
    }

    .second-eighth-sub-sub-container input {
        width: 100%
    }

    .contact-but {
        display: inline-block;
        margin-top: 10%;
        width: 60%;
        height: 48px;
        padding: 4% 5%;
        background-color: #2a75f3;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        font-size: 1rem;
        font-weight: 700;
        transition: background-color .3s
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 10px
    }
}

.copy-right {
    height: 50px;
    font-size: .9rem;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 5px
}

/* File Upload Styles */
.file-upload-wrapper {
    margin: 15px 0;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: block;
    border: 2px dashed #ccc;
    padding: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.file-upload-label:hover {
    border-color: #007bff;
}

.browse-btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    margin-right: 10px;
}

.file-name {
    color: #666;
}