/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Navbar ===== */
.navbar-custom {
    background: white;
    transition: all 0.4s ease-in-out;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-custom.scrolled {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.navbar-brand .logo {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar-brand .logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 600;
    margin: 0 12px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ff9800 !important;
    transform: scale(1.05);
}
.dropdown-item:hover {
    color: #ffb84d !important;
    /* light orange */
    text-decoration: underline;

}
.nav-item .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 6px;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 9999;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333 !important;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #f3f3f3;
}
.nav-btn {
    background: linear-gradient(45deg, #ff9800, #ff5722);
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-btn a {
    color: #fff;
    text-decoration: none;
}

.nav-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.6);
}

.navbar-toggler {
    border: none;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}









/* header section */



.industry-header {
    width: 100%;
    height: 520px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.industry-header .bg-img {
    position: absolute;
    width: 110%;
    height: 110%;
    object-fit: cover;
    z-index: 1;
}

.industry-header .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 18, 50, 0.75);
    z-index: 2;
}

.industry-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 20px;
    animation: fadeUp 1.2s ease-in-out;
}

.industry-content h1 {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: 2px;
}

.industry-content h1 span {
    color: #ff7a00;
}

.industry-content p {
    color: #e0e0e0;
    font-size: 22px;
    max-width: 800px;
    margin: 10px auto 0;
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 767px) {
    .industry-header {
        height: 380px;
    }

    .industry-content h1 {
        font-size: 40px;
    }

    .industry-content p {
        font-size: 16px;
        max-width: 90%;
    }
}


/* contant section */


.contact-section {
    position: relative;
    padding: 40px 6%;
    background: #f7f9fc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.contact-card {
    background: #ffffffc7;
    padding: 30px 25px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 28px;
    border-radius: 18px;
    margin-bottom: 18px;
}

.icon-wrapper.first {
    background: linear-gradient(135deg, #ff3c3c, #b90101);
}

.icon-wrapper.second {
    background: linear-gradient(135deg, #ff9800, #c66900);
}

.icon-wrapper.third {
    background: linear-gradient(135deg, #007bff, #003c8f);
}

.contact-modern {
    padding: 60px 20px;
    background: #f8fafd;
}

.contact-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-illustration img {
    box-shadow: 15px 13px 20px rgb(221, 221, 221);
    max-width: 520px;
    border-radius: 50px;
    width: 100%;
}

.contact-box {
    background: hsl(0, 0%, 100%);
    padding: 40px;
    border-radius: 30px;
    width: 100%;
    max-width: 550px;
    box-shadow: 15px 20px 40px rgba(73, 72, 72, 0.08);
}

.contact-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #df6706;
    margin-bottom: 6px;
}

.contact-box p {
    color: #555;
    margin-bottom: 25px;
}

.input-field {
    position: relative;
    margin-bottom: 22px;
}

.input-field input,
.input-field textarea {
    width: 100%;
    padding: 14px;
    background: #f1f4f7;
    border-radius: 12px;
    border: none;
    font-size: 16px;
}

.input-field label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: #777;
    transition: 0.3s ease;
    pointer-events: none;
}

.input-field input:focus+label,
.input-field input:valid+label,
.input-field textarea:focus+label,
.input-field textarea:valid+label {
    top: -20px;
    font-size: 13px;
    color: #0c0600;
}

.submit-modern {
    width: 100%;
    background: #df6706;
    color: #fff;
    padding: 14px;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(226, 100, 16, 0.4);
}


/* futter section */



.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.social-icon {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #F7941E, #173E84);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.social-icon i {
    z-index: 1;
    transition: transform 0.4s ease;
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon:hover i {
    transform: scale(1.2);
}

.social-icon.facebook:hover {
    text-decoration: none;
    background: #3b5998;
}

.social-icon.instagram:hover {
    text-decoration: none;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.linkedin:hover {
    text-decoration: none;
    background: #0077b5;
}

.social-icon.whatsapp:hover {
    text-decoration: none;
    background: #25D366;
}

@media (max-width: 767px) {
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.footer {
    margin-top: 5px;
    position: relative;
    color: #fff;
    padding: 80px 20px 30px;
    overflow: hidden;
}


.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(50 48 48 / 61%);
    z-index: 0;
}

@keyframes fadeBg {
    0% {
        filter: brightness(0.85) saturate(1);
    }

    50% {
        filter: brightness(1) saturate(1.1);
    }

    100% {
        filter: brightness(0.85) saturate(1);
    }
}

.footer {
    animation: fadeBg 15s ease-in-out infinite;
}

.footer-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f4f4f4;
    max-width: 320px;
}

.futter-num {
    text-decoration: none;
    color: white;
}

.futter-num:hover {
    text-decoration: none;
    color: white;
}

.futter-mail {
    text-decoration: none;
    color: white;
}

.futter-mail:hover {
    text-decoration: none;
    color: white;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-col h4:hover::after {
    width: 80px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #f4f4f4;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.contact-info li {
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #fff;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    font-size: 0.9rem;
    color: #eee;
}

@media (max-width: 991px) {
    .footer-row {
        gap: 30px;
    }

    .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 767px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .footer-about {
        margin: 0 auto 20px;
    }
}



/* whatsapp icon */

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 6px 6px 8px #999;
    z-index: 100;
}

.float:hover {
    color: white;
}

.my-float {
    margin-top: 16px;
}

.nav-item:hover>.dropdown-menu {
    display: block;
}




/* font */


.font-links {
    font-family: "Momo Trust Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}