html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

:root {
    --primary-color: #00BFFF;
}

/* Common hover effect */
.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Common button style */
.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #009acd;
}

/* NAVBAR */
.navbar {
    padding: 12px 0;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
}

.logo-circle:hover {
    transform: rotate(10deg) scale(1.05);
}

/* Menu links */
.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Underline hover effect */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.nav-link:hover::after,
.active-link::after {
    width: 100%;
}

/* Order button */
.order-btn {
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 191, 255, 0.3);
}

/* Space for fixed navbar */
body {
    padding-top: 80px;
}

/* Logo Image */
.logo-img {
    height: 45px;
    width: auto;
    transition: 0.3s ease;
}

/* Logo hover animation */
.logo-img:hover {
    transform: scale(1.1) rotate(-2deg);
}

/* Navbar brand text */
.navbar-brand strong {
    font-size: 18px;
    color: #000;
}

.navbar-brand small {
    font-size: 12px;
}

/* CAREER HERO SECTION */

.order-hero {
    background: linear-gradient(90deg, #009fd9, #00bfff);
    padding: 65px 20px 90px;
    color: white;
    text-align: center;
}

.order-hero h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
}

.order-hero h1 span {
    color: #eaf9ff;
}

.order-hero p {
    font-size: 25px;
    max-width: 750px;
    margin: auto;
    color: #e6f8ff;
}

@media (max-width:768px) {

    .order-hero {
        padding: 100px 20px 70px;
    }

    .order-hero h1 {
        font-size: 38px;
    }

    .order-hero p {
        font-size: 18px;
    }

}

/* how to order */

.order-process {
    padding: 80px 0;
    background: #f8fbfd;
}

/* Title */
.section-title h2 {
    font-size: 38px;
    font-weight: 700;
}

.section-title span {
    color: #1caad9;
}

.section-title p {
    color: #6c757d;
    margin-top: 10px;
}

/* Card */
.order-card {
    position: relative;
    background: #fff;
    padding: 40px 25px;
    margin-top: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    overflow: visible;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.order-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Step Number Circle */
.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #1caad9;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(28, 170, 217, 0.4);
    z-index: 2;
}

.row.equal-height {
    display: flex;
    flex-wrap: wrap;
}

/* Icon Box */
.icon-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #1caad9, #0d8ecf);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 15px;
    transition: 0.4s;
}

.icon-box i {
    color: #fff;
    font-size: 26px;
}

/* Hover icon animation */
.order-card:hover .icon-box {
    transform: rotate(8deg) scale(1.1);
}

/* Text */
.order-card h4 {
    font-weight: 700;
    margin-top: 10px;
}

.order-card p {
    color: #6c757d;
    font-size: 15px;
}

/* Scroll animation (your requirement) */
.order-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

.order-card:nth-child(1) {
    animation-delay: 0.2s;
}

.order-card:nth-child(2) {
    animation-delay: 0.4s;
}

.order-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DOWNLOAD PDF SECTION */

.download-section {
    padding: 80px 0;
    background: #f8fbff;
}

/* Title */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--primary-color);
}

/* Subtitle */
.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Button */
.download-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #00bfff, #009acd);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.3);
}

.download-btn i {
    margin-right: 8px;
}

/* Hover */
.download-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 191, 255, 0.4);
}

/* Scroll Animation (fast + smooth like you want) */
.download-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease;
}

.download-section.show {
    opacity: 1;
    transform: translateY(0);
}

/* ORDER FORM SECTION */

.order-form-section {
    padding: 80px 0;
    background: #f8fbff;

    /* scroll animation */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease;
}

.order-form-section.show {
    opacity: 1;
    transform: translateY(0);
}

/* Title */
.order-form-title {
    font-size: 2.8rem;
    font-weight: 700;
}

.order-form-title span {
    color: var(--primary-color);
}

.order-form-subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* Form Box */
.order-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.order-form-box:hover {
    transform: translateY(-5px);
}

/* Headings */
.form-heading {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Inputs */
.order-form-box input,
.order-form-box textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: 0.3s;
}

/* Focus effect */
.order-form-box input:focus,
.order-form-box textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(0, 191, 255, 0.2);
    outline: none;
}

/* Button */
.place-order-btn {
    background: linear-gradient(135deg, #00bfff, #009acd);
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.3);
}

.place-order-btn i {
    margin-right: 8px;
}

.place-order-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 191, 255, 0.4);
}

/* Responsive */
@media (max-width:768px) {
    .order-form-box {
        padding: 25px;
    }

    .order-form-title {
        font-size: 2rem;
    }
}




/* Floating call */
/* Floating call */
/* WHATSAPP FLOATING BUTTON */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    /* WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover Effect */
.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    background: #1ebe5d;
}

/* Notification Badge */
.wa-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 14px;
    height: 14px;
    background: red;
    border-radius: 50%;
    border: 2px solid white;
    animation: ping 1.5s infinite;
}

/* Ping Animation */
@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(1.6);
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}



/* FOOTER */
.footer-section {
    background: #122f43;
    color: #ffffff;
    padding: 70px 0 30px;
    margin-bottom: 0 !important;
    padding-bottom: 30px;
    /* keep nice spacing */

}

.footer-section h3 {
    font-size: 28px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 17px;
    color: #cfe9ff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    font-size: 17px;
    margin-bottom: 8px;
    color: #cfe9ff;
}

.footer-section ul li a {
    color: #cfe9ff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #00bfff;
}

.footer-bottom {
    font-size: 16px;
    color: #cfe9ff;
    margin-bottom: 0 !important;
    padding-bottom: 0;
}

.footer-section hr {
    margin-bottom: 10px;
}