/* ==========================
   Aadhya Enterprises Website
   Version 1.0
========================== */
html {

    scroll-behavior: smooth;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
    color: #333;
    overflow-x: hidden;
}

/* ==========================
        HEADER
========================== */

header {

    position: sticky;

    top: 0;

    z-index: 9999;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);

}

.logo h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin: 0;
}

.logo p {
    color: #fff;
    font-size: 14px;
    margin-top: 5px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 18px;
    font-weight: 500;
    transition: .3s;
}

nav a:hover {
    color: #FFD700;
}

/* ==========================
        HERO SECTION
========================== */

.hero {

    background: linear-gradient(rgba(11, 61, 145, .90), rgba(2, 27, 70, .90)),
        url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1600");

    background-size: cover;
    background-position: center;

    color: #fff;

    padding: 120px 0;
}

.hero h5 {

    color: #FFD700;

    font-size: 22px;

    margin-bottom: 15px;

}

.hero h1 {

    font-size: 60px;

    font-weight: 700;

    margin-bottom: 10px;

}

.hero h2 {

    font-size: 35px;

    margin-bottom: 20px;

}

.hero p {

    font-size: 20px;

    line-height: 34px;

}

.hero-logo {

    width: 430px;

    animation: float 4s ease-in-out infinite;

}

@keyframes float {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-18px);

    }

    100% {

        transform: translateY(0px);

    }

}

/* ==========================
       BUTTON
========================== */

.btn {

    padding: 15px 35px;

    border-radius: 50px;

    font-weight: 600;

}

/* ==========================
      SERVICES
========================== */

.services {

    padding: 90px 0;

}

.services h2 {

    text-align: center;

    font-size: 42px;

    margin-bottom: 60px;

    color: #0B3D91;

    font-weight: 700;

}

.cards {

    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;

}

.card {

    width: 320px;

    border: none;

    padding: 35px;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;

}

.card:hover {

    transform: translateY(-10px);

}

.card h3 {

    margin: 20px 0;

    color: #0B3D91;

}

.card p {

    color: #666;

}

/* ==========================
        FOOTER
========================== */

footer {

    background: #021B46;

    color: #fff;

    text-align: center;

    padding: 25px;

    margin-top: 60px;

}

/* ==========================
     RESPONSIVE
========================== */

@media(max-width:992px) {

    header {

        flex-direction: column;

    }

    nav {

        margin-top: 20px;

    }

    nav a {

        display: inline-block;

        margin: 10px;

    }

    .hero {

        text-align: center;

        padding: 80px 20px;

    }

    .hero h1 {

        font-size: 42px;

    }

    .hero h2 {

        font-size: 26px;

    }

    .hero p {

        font-size: 18px;

    }

    .hero-logo {

        width: 260px;

        margin-top: 40px;

    }

    .cards {

        flex-direction: column;

        align-items: center;

    }

}

.hero {

    min-height: 90vh;

    display: flex;

    align-items: center;

    background:
        linear-gradient(rgba(8, 32, 77, .92),
            rgba(8, 32, 77, .92)),
        url("../images/hero1.jpg");

    background-size: cover;

    background-position: center;

    color: white;

}

.hero-logo {

    width: 420px;

    animation: float 4s infinite ease-in-out;

}

@keyframes float {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-15px);

    }

    100% {

        transform: translateY(0px);

    }

}

.service-card {

    background: white;

    padding: 40px;

    border-radius: 15px;

    text-align: center;

    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);

    transition: .4s;

    height: 100%;

}

.service-card:hover {

    transform: translateY(-12px);

}

.service-card i {

    font-size: 45px;

    color: #0B3D91;

    margin-bottom: 20px;

}

.service-card h4 {

    margin-bottom: 15px;

    font-weight: 600;

}

.service-card p {

    color: #666;

}

.about {
    padding: 100px 0;
    background: #ffffff;
}

.about h2 {
    color: #0B3D91;
    font-weight: 700;
}

.about p {
    font-size: 18px;
    line-height: 30px;
    color: #555;
}

.about li {
    margin-bottom: 12px;
    font-size: 18px;
}

/* Counter Section */

.counter-section {

    background: #0B3D91;

    padding: 90px 0;

    color: white;

}

.counter-box {

    padding: 20px;

}

.counter-box h2 {

    font-size: 55px;

    font-weight: 700;

    color: #FFD700;

}

.counter-box p {

    font-size: 20px;

    margin-top: 10px;

}

/* Latest Jobs */

.latest-jobs {
    background: #f8f9fa;
}

.job-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.job-card:hover {
    transform: translateY(-8px);
}

.job-card h4 {
    color: #0B3D91;
    margin-bottom: 20px;
}

.job-card p {
    color: #555;
    margin-bottom: 12px;
}

.job-card i {
    color: #0B3D91;
    margin-right: 8px;
}

.job-card {

    transition: .4s ease;

    cursor: pointer;

}

.job-card:hover {

    transform: translateY(-15px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);

}

.job-card .btn {

    background: linear-gradient(45deg, #0B3D91, #2563EB);

    border: none;

    font-weight: 600;

    border-radius: 40px;

}

.job-card .btn:hover {

    background: linear-gradient(45deg, #FFD700, #F4B400);

    color: black;

}

/* WHY CHOOSE US */

.why-us {

    background: #ffffff;

    padding: 100px 0;

}

.why-card {

    background: #fff;

    padding: 40px 30px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;

    height: 100%;

}

.why-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);

}

.why-card i {

    font-size: 55px;

    color: #0B3D91;

    margin-bottom: 20px;

}

.why-card h4 {

    font-weight: 700;

    margin-bottom: 15px;

}

.why-card p {

    color: #666;

    line-height: 28px;

}

/* Recruitment Process */

.process {

    padding: 100px 0;

    background: #f8f9fa;

}

.step-box {

    background: white;

    padding: 40px 20px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;

    position: relative;

    height: 100%;

}

.step-box:hover {

    transform: translateY(-10px);

}

.step-number {

    width: 45px;

    height: 45px;

    background: #FFD700;

    color: #000;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: bold;

    margin: auto;

    margin-bottom: 20px;

}

.step-box i {

    font-size: 45px;

    color: #0B3D91;

    margin-bottom: 20px;

}

.step-box h5 {

    font-weight: 700;

}

#topBtn {

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    background: #FFD700;

    color: #000;

    font-size: 22px;

    cursor: pointer;

    display: none;

    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);

    z-index: 999;

}

#topBtn:hover {

    background: #0B3D91;

    color: white;

}

/* CONTACT */

.contact-section {

    padding: 100px 0;

    background: #ffffff;

}

.contact-info {

    background: #0B3D91;

    padding: 40px;

    border-radius: 20px;

    color: white;

    height: 100%;

}

.contact-info h3 {

    margin-bottom: 30px;

}

.contact-info p {

    margin-bottom: 25px;

    line-height: 30px;

}

.contact-info i {

    color: #FFD700;

    margin-right: 10px;

}

.contact-form {

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.contact-form input,

.contact-form textarea {

    padding: 15px;

    border-radius: 10px;

}

.contact-form button {

    padding: 15px 40px;

    font-weight: 600;

    border-radius: 50px;

}

.footer {

    background: #0B3D91;

    padding: 70px 0 30px;

    color: white;

}

.footer h3,

.footer h4 {

    margin-bottom: 20px;

}

.footer ul {

    list-style: none;

    padding: 0;

}

.footer ul li {

    margin-bottom: 10px;

}

.footer a {

    color: white;

    text-decoration: none;

}

.footer a:hover {

    color: #FFD700;

}

.footer hr {

    margin: 30px 0;

    background: white;

}

/* APPLY */

.apply-section {

    background: #0B3D91;

    padding: 100px 0;

    color: white;

}

.apply-section h2 {

    font-size: 45px;

    font-weight: 700;

    margin-bottom: 20px;

}

.apply-section p {

    font-size: 20px;

    line-height: 35px;

    margin-bottom: 25px;

}

.apply-section ul {

    list-style: none;

    padding: 0;

}

.apply-section li {

    margin-bottom: 15px;

    font-size: 20px;

}

.apply-section img {

    width: 430px;

}

/* Testimonials */

.testimonials {

    background: #f8f9fa;

}

.testimonial-card {

    background: #fff;

    padding: 35px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;

    height: 100%;

}

.testimonial-card:hover {

    transform: translateY(-10px);

}

.testimonial-card img {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    margin-bottom: 20px;

    object-fit: cover;

}

.testimonial-card h4 {

    color: #0B3D91;

    font-weight: bold;

}

.industries {

    padding: 100px 0;

    background: #f8f9fa;

}

.industry-card {

    background: #fff;

    padding: 35px;

    text-align: center;

    border-radius: 20px;

    transition: .4s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    height: 100%;

}

.industry-card:hover {

    transform: translateY(-10px);

}

.industry-card i {

    font-size: 50px;

    color: #0B3D91;

    margin-bottom: 20px;

}

/* Gallery */

.gallery {

    padding: 100px 0;

    background: #ffffff;

}

.gallery img {

    height: 260px;

    width: 100%;

    object-fit: cover;

    transition: .4s;

    cursor: pointer;

    border-radius: 20px;

}

.gallery img:hover {

    transform: scale(1.05);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .20);

}

.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: #0d6efd;
    color: white;
}

.accordion-item {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.contact {

    padding: 100px 0;

    background: white;

}

.contact input,
.contact textarea {

    padding: 15px;

    border-radius: 12px;

}

.whatsapp {

    position: fixed;

    bottom: 25px;

    right: 25px;

    width: 65px;

    height: 65px;

    background: #25D366;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 35px;

    color: white;

    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .3);

    z-index: 999;

    transition: .3s;

}

.whatsapp:hover {

    transform: scale(1.1);

    color: white;

}

#contact {

    padding: 80px 0;

}

#contact input,
#contact textarea {

    border-radius: 10px;

    padding: 15px;

}

#contact button {

    padding: 15px;

    font-size: 20px;

    font-weight: 600;

    border-radius: 50px;

}

.latest-jobs .row {
    align-items: stretch;
}

.job-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);

    display: flex;
    flex-direction: column;

    height: 100%;
}

.job-card .btn {
    width: 100%;
}

.job-card .btn:last-child {
    margin-top: 10px;
}

.latest-jobs .row {
    align-items: stretch;
}

.job-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-8px);
}

.job-card h4 {
    color: #0d47a1;
    font-weight: 700;
    margin: 15px 0;
}

.job-card p {
    margin-bottom: 10px;
    color: #555;
}

.job-card i {
    color: #0d6efd;
    width: 22px;
}

.job-card .btn {
    width: 100%;
}

.job-card .btn-warning {
    margin-top: 10px;
}

.employer-btn {
    width: 100%;
    padding: 16px 20px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
    /* टेक्स्ट एक ही लाइन में रहेगा */
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width:768px) {

    .employer-btn {

        font-size: 18px;

        padding: 14px;

        white-space: normal;

        line-height: 1.4;

    }

}

.employer-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 70px;
    background: #FFC107;
    color: #000;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.employer-btn:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
}

/* Admin Button */
.admin-btn {
    display: inline-block;
    background: #FFC107;
    color: #000 !important;
    font-weight: 700;
    font-size: 18px;
    padding: 14px 38px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid #FFC107;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.admin-btn:hover {
    background: #ffb300;
    color: #000 !important;
    transform: translateY(-2px);
}

/* ================= NAVBAR ================= */

.custom-navbar {
    background: #0d6efd;
    padding: 14px 0;
}

.custom-navbar .nav-link {
    color: #fff !important;
    font-size: 18px;
    font-weight: 600;
    margin: 0 12px;
    transition: .3s;
}

.custom-navbar .nav-link:hover {
    color: #ffd54f !important;
}

.admin-btn,
.apply-btn {

    background: #FFC107;
    color: #111 !important;
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;

}

.admin-btn:hover,
.apply-btn:hover {

    background: #ffb300;
    color: #000 !important;
    transform: translateY(-2px);

}

.navbar-brand img {

    transition: .3s;

}

.navbar-brand img:hover {

    transform: scale(1.05);

}

.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    transition: .3s;
}

.gallery-img:hover {
    transform: scale(1.03);
}

.hero-section {

    background: linear-gradient(135deg, #0052D4, #4364F7, #6FB1FC);

    padding: 120px 0;

    overflow: hidden;

}

.hero-section h1 {

    font-size: 58px;

    line-height: 1.2;

}

.hero-logo {

    max-width: 430px;

    animation: float 4s ease-in-out infinite;

}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

.hero-section .btn {

    padding: 15px 40px;

    font-weight: 700;

}

.hero-section .btn-warning {

    background: #FFC107;

    border: none;

    color: #111;

}

.hero-section .btn-warning:hover {

    background: #ffca2c;

    transform: translateY(-3px);

    transition: .3s;

}

/* ================= FOOTER ================= */

.footer-section {

    background: #081b38;

    color: #fff;

    padding: 70px 0 20px;

}

.footer-section h4 {

    margin-bottom: 20px;

    font-weight: 700;

}

.footer-links {

    list-style: none;

    padding: 0;

}

.footer-links li {

    margin-bottom: 12px;

}

.footer-links a {

    color: #ddd;

    text-decoration: none;

    transition: .3s;

}

.footer-links a:hover {

    color: #FFC107;

    padding-left: 6px;

}

.footer-section hr {

    border-color: #444;

    margin-top: 40px;

}

/* ===== Contact Page ===== */

#contactForm .form-control {

    height: 58px;

    border-radius: 14px;

    font-size: 17px;

    padding: 15px;

}

#contactForm textarea.form-control {

    height: 180px;

    resize: none;

}

#contactForm .btn {

    height: 55px;

    font-size: 18px;

    font-weight: 700;

    border-radius: 50px;

    padding: 0 40px;

}

.card {

    transition: .35s;

}

.card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .18) !important;

}

/* Social Icons */

.social-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: #ffc107;

    color: #000;

    margin-right: 10px;

    font-size: 20px;

    text-decoration: none;

    transition: .3s;

}

.social-icon:hover {

    background: #fff;

    color: #0d6efd;

    transform: translateY(-5px);

}

/* ===== Premium Social Buttons ===== */

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.social-icons a {
    width: 70px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 30px !important;
    text-decoration: none !important;
}

.facebook {
    background: #1877F2 !important;
}

.instagram {
    background: linear-gradient(45deg, #833AB4, #E1306C, #FCAF45) !important;
}

.whatsapp {
    background: #25D366 !important;
}

.social-icons a:hover {
    transform: scale(1.12);
    transition: .3s;
}