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

body {
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 120px;
    background-color: #111;
}


/* Logo */
.logo {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    width: 100%;
}

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

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    position: relative;
    transition: 0.3s ease;
}

/* Underline Hover Effect */
.nav-links li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #00c3ff;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #00c3ff;
}

/* Nav Button */

nav .nav-btn {
    padding: 10px 30px;
    background-color: #1a1f21;
    color: #fff;
    border: white 1px solid;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
}

/* mobile view nav */
/* =========================
   MOBILE VIEW ONLY
========================= */

.menu-toggle {
    display: none;
}

/* Mobile Screen */
@media (max-width:768px) {

    nav {
        padding: 15px 20px;
        position: relative;
    }
nav .right-nav button{
    display: none;
}
    /* Show hamburger */
    .menu-toggle {
        display: block;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
    }

    /* Hide menu initially */
    .right-nav {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #111;

        flex-direction: column;
        align-items: center;
        gap: 20px;

        padding: 25px 0;
        display: none;
        z-index: 1000;
    }

    /* Show when clicked */
    .right-nav.active {
        display: flex;
    }

    /* Vertical links */
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .nav-links li a {
        font-size: 18px;
        display: block;
        padding: 8px 0;
    }

    /* Button full width */
    nav .nav-btn {
        width: 80%;
        padding: 12px;
    }
}

.main {
    height: 95vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 50px;
}

.main .contents {
    background-color: white;
    padding: 50px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.main .contents .heading {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.main .contents .heading h1 {
    font-size: 60px;
    color: black;
}

.main .contents .heading p {
    font-size: 15px;
    color: black;
}

.main .contents .heading .top-head {
    color: blue;
}

.heading .address i {
    padding-right: 15px;
}

.main .contents .heading .discripation {
    text-align: justify;
}

.contents .btns {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.contents .btns .btn {
    padding: 15px 25px;
    background-color: rgb(0, 0, 0);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    cursor: pointer;
}

.main .image {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
}

.main .image img {
    width: 100%;
    border-radius: 30px;
}

:hover .btn {
    background-color: rgb(137, 137, 137);
}

/* ===================================
        TABLET RESPONSIVE
=================================== */
@media (max-width: 1024px) {

    .main {
        padding: 20px;
        gap: 30px;
    }

    .heading h1 {
        font-size: 38px;
    }

    .main .contents {
        width: 100%;
    }

    .contents .btns {
        margin-top: 20px;
        align-items: center !important;
    }
    .contents .btns button{
        width: 60% !important;
    }

    .about-us {
        flex-direction: column-reverse;
        width: 100%;
    }

    .about-us .about-image {
        width: 100% !important;
        padding-bottom: 25px;
    }

    .about-us .about-image img {
        width: 100%;
        height: auto;
    }

    .about-us .about-content {
        flex-direction: column;
        width: 100% !important;
    }

    .about-us .about-content h2,
    .about-content .about-content-top .about-top-head {
        text-align: center;
    }
    .about-us .about-content .about-grid-box{
        grid-template-columns: repeat(2,1fr) !important;
    }

    .services {
        flex-direction: column-reverse;
        width: 100%;
    }

    .services .service-left {
        width: 100% !important;
        align-items: center;
    }

    .services .service-left h2,
    p {
        text-align: center;
    }

    .services .service-right {
        width: 100% !important;
    }

    .services .service-right .service-right-card .service-btn {
        padding: 15px 25px !important;
        width: 60% !important;
    }

    .industries .industries-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-content h3 {
        padding: 0;
    }

    .process {
        flex-direction: column;
        text-align: center;
    }

    .process .industries-top p {
        text-align: center;
        max-width: 100%;
    }

    .process .process-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-us-box {
        flex-direction: column !important;
    }

    .contact-us-box .contact-us-left {
        width: 100% !important;
        text-align: center;
    }

    .contact-us-left .contact-top-head {
        text-align: center !important;
    }

    .call-to-action .call-to-action-container {
        flex-direction: column !important;
        width: 100%;
    }

    .call-to-action {
        padding: 0 !important;
    }

    .call-to-action .call-to-action-container .call-to-action-left,
    .call-to-action .call-to-action-container .call-to-action-right {
        width: 100% !important;
    }

    .call-to-action .call-to-action-container .call-to-action-right button {
        padding: 20px 60px;
        width: 100% !important;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-container .footer-content {
        width: 100% !important;
    }

    .footer-container .footer-content .footer-content-3 {
        text-align: left !important;
        align-items: start !important;
    }

}

/* ===================================
        MOBILE RESPONSIVE
=================================== */
@media (max-width: 768px) {

    .main {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
        width: 100% !important;
        height: auto;
    }

    .main .contents .heading h1 {
        font-size: 45px;
    }

    .main .contents {
        padding: 15px !important;
    }

    .main .contents .heading .discripation {
        text-align: center;
    }

    .main .image {
        display: none;
    }

    .address {
        justify-content: center;
    }

    .contents .btns {
        justify-content: center;
        flex-direction: column !important;
        padding-top: 20px;
        gap: 15px;
        width: 100% !important;
    }
    .contents .btns button{
        width: 100% !important;
    }
    .heading h1 {
        font-size: 32px;
    }

    .discripation {
        font-size: 15px;
    }

    .image {
        margin-top: 30px;
    }

    .process .process-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-us {
        flex-direction: column-reverse;
        width: 100%;
    }


    .about-us .about-image img {

        display: none;
    }

    .about-us .about-content {
        flex-direction: column;
        width: 100% !important;
        padding: 0 !important;
    }

    .about-us .about-content .about-grid-box {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .about-us .about-content .about-content-top h2 {
        font-size: 40px;
    }

    .about-us .about-content h2,
    .about-content .about-content-top .about-top-head {
        text-align: center;
    }

    .services {
        flex-direction: column-reverse;
        width: 100%;
        padding: 20px !important;
    }

    .services .service-left {
        width: 100% !important;
        align-items: center;
    }

    .services .service-left h2 {
        font-size: 40px !important;
    }

    /* .services .service-left p {
        text-align: center !important;
        font-size: 15px;
    } */

    .services .service-left h2,
    p {
        text-align: center;
    }

    .services .service-right {
        width: 100% !important;
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .services .service-right p {
        text-align: left !important;
    }

    .services .service-right .service-right-card .service-btn {
        padding: 15px 25px !important;
        width: 80% !important;
    }

    .industries {
        padding: 15px !important;
    }

    .industries .industries-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .industries-content h3 {
        padding: 0;
    }

    .industries .industries-container .industries-card {
        justify-content: center;
    }

    .industries .industries-container .industries-card p {
        font-size: 13px;
    }

    .process {
        flex-direction: column;
        text-align: center;
        padding: 15px !important;
        margin-top: 50px !important;
    }

    .process .industries-top p {
        text-align: center;
        max-width: 100%;
    }

    .process .process-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-us {
        padding: 0 !important;
    }

    .contact-us-box {
        flex-direction: column !important;
        padding: 15px !important;
    }

    .contact-us-box .contact-us-left {
        width: 100% !important;
        text-align: center;
    }

    .contact-us-left .contact-top-head {
        text-align: center !important;
    }

    .contact-us-left .footer-content-3 {
        display: none !important;
    }

    .contact-us-left h2 {
        font-size: 30px !important;
    }

    .call-to-action {
        padding: 15px !important;
        align-items: center;
    }

    .call-to-action .call-to-action-container {
        flex-direction: column !important;
        width: 100%;
        padding: 15px !important;
        align-items: center !important;
    }


    .call-to-action .call-to-action-container .call-to-action-left,
    .call-to-action .call-to-action-container .call-to-action-right {
        width: 100% !important;
    }

    .call-to-action .call-to-action-container .call-to-action-left h3 {
        font-size: 40px !important;
        text-align: center;
    }

    .call-to-action .call-to-action-container .call-to-action-right button {
        padding: 15px 45px;
        width: 100% !important;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-container .footer-content {
        width: 100% !important;
    }

    .footer-container .footer-content .footer-content-3 {
        text-align: left !important;
        align-items: start !important;
    }
    .footer-container .footer-content .footer-content-3 .locatn p{
        gap: 0 !important;
        text-align: left;
    }

}

.about-us {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    background-color: #f4f4f4;
    padding: 50px;
}

.about-content .about-content-top .about-top-head {
    color: blue;
    font-size: 20px;
}

.about-us .about-image {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us .about-image img {
    width: 80%;
    border-radius: 30px;
}

.about-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    gap: 30px;
}

.about-us .about-content h2 {
    font-size: 50px;
    color: black;
}

.about-us .about-content p {
    font-size: 15px;
    color: black;
    text-align: justify;
}

.about-us .about-content .about-content-top {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* .about-us .about-content .about-btn{
    padding: 15px 30px;
    background-color: rgb(0, 0, 0);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    cursor: pointer;
    width: 30%;
    margin-top: 30px;
} */

.about-us .about-content .about-grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-us .about-content .about-grid-box .about-grid-box-card {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.about-us .about-content .about-grid-box .about-grid-box-card h4 {
    font-size: 20px;
    color: blue;
    margin-bottom: 10px;
}

.about-us .about-content .about-grid-box .about-grid-box-card p {
    font-size: 15px;
    color: rgb(48, 48, 48);
    text-align: justify;
}

section {
    width: 100%;
}

.services {
    display: flex;
    justify-content: space-between;
    height: auto;
    background-color: #f4f4f4;
    padding: 50px;
    gap: 50px;
}

/* Left Side Services */
.services .service-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    gap: 35px;
}

.services .service-left .service-top-head {
    color: blue;
    font-size: 20px;
}

.services .service-left h2 {
    font-size: 50px;
    color: black;
}

.services .service-left p {
    font-size: 15px;
    color: black;
    text-align: justify;
}


.services .service-right {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-right .service-right-card {
    background-color: #fff;
    color: black;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s ease;
    height: auto;
    border: 0.5px solid rgb(48, 48, 48);
}

.service-right .service-right-card i {
    display: inline;
    width: 25%;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
}

.service-right .service-right-card:hover .service-btn {
    background-color: white;
    color: black;
}

.service-right .service-right-card h3 {
    color: rgb(0, 0, 0);
    font-size: 25px;
}

.service-right .service-right-card p {
    color: rgb(48, 48, 48);
    font-size: 15px;
}

.service-right-card .service-btn {
    padding: 10px 20px;
    background-color: rgb(45, 45, 45);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    width: 50%;
}

.service-right .service-right-card i {
    display: inline;
    width: 25%;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
}

.service-right-card .service-btn i {
    font-size: 20px;
}

/* Hover Effect */
.service-right .service-right-card:hover {
    background-color: black;
    color: white;
}

.service-right .service-right-card:hover h3,
.service-right .service-right-card:hover p,
.service-right .service-right-card:hover a {
    color: white;
}

.service-right .service-right-card .service-btn :hover i {
    color: rgb(0, 0, 0);
}

/* Indusriess We Serve */
.industries {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 50px;
    gap: 30px;
}

.industries-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding-bottom: 50px
}

.industries-top h2 {
    font-size: 40px;
    color: black;
    text-align: center;
}

.industries-top p {
    font-size: 15px;
    color: black;
    text-align: center;
    max-width: 75%;
}

.industries-top .industries-top-head {
    color: blue;
    font-size: 20px;
}

.industries-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 80%;
}

.industries-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.industries-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay */
.industries-content {
    position: absolute;
    bottom: 0;
    width: 100%;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
}

.industries-content h3 {
    margin-bottom: 10px;
    font-size: 30px;
    text-align: center;
}

.industries-content p {
    padding: 30px;
    font-size: 14px;
    transform: translateY(100%);
    transition: 0.5s ease;
}

/* Hover Effects */
.industries-card:hover img {
    transform: scale(1.1);
}

.industries-card:hover .industries-content p {
    transform: translateY(0);
}

.industries-card:hover .industries-content h3 {
    display: none;
}

/* Process We Follow */
.process {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 50px;
}

/* Make sure container is grid */
.process-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 90%;
}

.process-container .process-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    align-items: center;
}

.process-container .process-card p {
    text-align: center;
}

.process-container .process-card h3 {
    color: rgb(0, 0, 0);
    font-size: 25px;
}

.process-container .process-card .icon {
    font-size: 30px;
    padding: 10px;
}

.process-card:hover {
    background-color: black;
    color: white;
    transition: 0.5s ease;
}

.process-card:hover h3 {
    color: white;
}

.process-card:hover .icon {
    border-radius: 50%;
    background-color: white;
    padding: 10px;
    transform: translateY(-8px);
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
}

.footer-container .footer-content {
    width: 33%;
    padding: 25px;
}

.footer-container .footer-content .footer-content-1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-container .footer-content .footer-content-1 p {
    font-size: 15px;
    color: white;
    text-align: justify;
}

.footer-container .footer-content .footer-content-1 .logo {
    font-size: 30px;
}

.footer-container .footer-content .footer-content-1 .social-icons {
    display: flex;
    gap: 20px;
}

.footer-container .footer-content .footer-content-1 i {
    font-size: 20px;
    padding: 12px;
    border: 1px solid white;
    border-radius: 50%;
}

.footer-content .footer-content-1 :hover i {
    background-color: white;
    color: black;
}

.footer-content .footer-content-2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-content .footer-content-2 h3 {
    font-size: large;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    position: relative;
    transition: 0.3s ease;
}

/* Underline Hover Effect */
.footer-links li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #00c3ff;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.footer-links li a:hover::after {
    width: 100%;
}

.footer-links li a:hover {
    color: #00c3ff;
}

.footer-content .footer-content-3 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-content .footer-content-3 i {
    font-size: 20px;
    padding-right: 15px;
}

.footer-content .footer-content-3 i .email-1 {
    text-transform: lowercase !important;
}

.footer-content .footer-content-3 .locatn {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.footer .copyright {
    padding: 10px 25px;
    width: 100%;
    text-align: center;
}

.footer .horiLine {
    width: 70%;
    font-weight: 200;
}

.contact-us {
    display: flex;
    justify-content: center;
    padding: 50px;
    width: 100%;
}

.contact-us .contact-us-box {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.contact-us-box .contact-us-left {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 60%;
}

.contact-us-box .contact-us-left .contact-top-head {
    color: blue;
    font-size: 20px;
}

.contact-us .contact-us-left h2 {
    font-size: 40px;
    color: black;
}

.contact-us .contact-us-left p {
    font-size: 15px;
    color: black;
    text-align: justify;
}

.contact-us .contact-us-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-us .footer-content-3 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-us .footer-content-3 i {
    font-size: 20px;
    padding-right: 15px;
}

.contact-us .footer-content-3 i .email-1 {
    text-transform: lowercase !important;
}

.contact-us .footer-content-3 .locatn {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

/* Background Section */
.contact-us-right {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Form Card */
.input-form {
    backdrop-filter: blur(15px);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: black;
}

/* Title */
.input-form h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 5px;
}

/* Subtitle */
.input-form .subtitle {
    text-align: center;
    font-size: 16px;
    color: black;
    margin-bottom: 20px;
}

/* Inputs & Textarea */
.input-form input,
.input-form textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: black;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

/* Placeholder color */
.input-form input::placeholder,
.input-form textarea::placeholder {
    color: #747474;
}

/* Focus Effect */
.input-form input:focus,
.input-form textarea:focus {
    border-color: #a1a1a1;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 8px #7e7e7e;
}

/* Button */
.input-form button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: black;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Button Hover */
.input-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(105, 105, 105, 0.4);
    background-color: white;
    color: black;
    border: 1px solid rgb(0, 0, 0);
}


/* Call To Action Css */

.call-to-action {
    position: relative;
    /* VERY IMPORTANT */
    padding: 80px 20px;
    width: 100%;
    color: white;
    background: url("./About-us.jpg") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* Dark Overlay */
.call-to-action::before {
    content: "";
    position: absolute;
    inset: 0;
    /* better than top/left/width/height */
    background: rgba(61, 61, 61, 0.6);
    z-index: 0;
    /* keep it behind content */
}

/* Make sure content is above overlay */
.call-to-action>* {
    position: relative;
    z-index: 1;
}

.call-to-action-container {
    padding: 50px;
    margin: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    text-align: left;
}

.call-to-action-container .call-to-action-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    width: 60%;
}

.call-to-action-container .call-to-action-left h3 {
    font-size: 50px;
}

.call-to-action-container .call-to-action-left p {
    font-size: 15px;
}

/* Right Side Container */
.call-to-action-container .call-to-action-right {
    margin: 20px;
    padding: 20px;
    width: 40%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

/* Modern CTA Button */
.call-to-action-container .call-to-action-right button {
    padding: 14px 60px;
    border: none;
    border-radius: 50px;
    background-color: white;
    color: #000000;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;

    cursor: pointer;
    transition: all 0.3s ease;

    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4);
}

/* Hover Effect */
.call-to-action-container .call-to-action-right button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.6);
}

/* Active Click Effect */
.call-to-action-container .call-to-action-right button:active {
    transform: scale(0.96);
}