body {
    padding-top: 80px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}


.dropdown-menu {
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
    display: block;
    visibility: hidden;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Chevron rotate on open */
#mobileProducts.show+.nav-link i,
.nav-link[aria-expanded="true"] i {
    transform: rotate(180deg);
    transition: 0.3s;
}

/* Indent submenu */
#mobileProducts .nav-link {
    padding-left: 20px;
}

.navbar {
    padding: 14px 0;
}

.nav-link {
    font-weight: 500;
    margin-left: 18px;
}

.nav-link {
    position: relative;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #f0bf2d;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    box-shadow: 0 6px 18px rgba(240, 191, 45, 0.35);
    transform: translateY(-2px);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: #f0bf2d;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

/* Mobile offcanvas links */
.offcanvas .nav-link {
    margin-left: 0;
    padding: 12px 0;
    font-size: 16px;
}

/* Half screen offcanvas */
.mobile-offcanvas {
    width: 50vw !important;
    /* half screen */
    max-width: 400px;
    /* optional safety limit */
}

/* Smooth look */
.offcanvas-body .nav-link {
    font-size: 17px;
    padding: 12px 0;
}

/* crouswl btn */
.custom-arrow {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control-prev.custom-arrow {
    left: 25px;
}

.carousel-control-next.custom-arrow {
    right: 25px;
}

.custom-arrow i {
    color: #000;
    font-size: 18px;
}

.custom-arrow:hover {
    background: #f8e21e;
    transform: translateY(-50%) scale(1.1);
}

.custom-arrow:hover i {
    color: #fff;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section p {
    color: #000000;
    line-height: 1.7;
}

/* ===== Left Content ===== */
.content h2 {
    font-size: 32px;
}

.content p {
    font-size: 16px;
}
.hr-dark {
    width: 80px;
    height: 6px;
    background-color: #0e39e7;
    border: none;
    opacity: 1;
}
/* ===== Form Card ===== */
.php-email-form {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.php-email-form h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #0d15fd;
}

.php-email-form p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* ===== Inputs ===== */
.php-email-form .form-control {
    border-radius: 10px;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s;
}

.php-email-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(5, 16, 230, 0.2);
}

/* ===== Button ===== */
.php-email-form button {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.php-email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 14, 213, 0.4);
}

/* ===== Status Messages ===== */
.loading {
    display: none;
    font-size: 14px;
    color: #0d6efd;
}

.sent-message {
    display: none;
    color: #198754;
    font-size: 14px;
    margin-bottom: 10px;
}

.error-message {
    display: none;
    color: #dc3545;
    font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .content h2 {
        font-size: 26px;
    }
}

/* .service-card */
.services-section {
    padding: 80px 0;
    background: #d3e1ef;
}

.section-title {
    font-weight: 700;
    position: relative;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title::before,
.section-title::after {
    content: "";
    flex: 1;
    height: 3px;
    background: #ffc107;
    max-width: 80px;
}

.section-title span {
    white-space: nowrap;
}

.section-subtitle {
    max-width: 700px;
    margin: auto;
    color: #555;
}

/* Card */
.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    height: 100%;
    display: block;
    text-decoration: none;
    color: #000;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card hr {
    width: 50px;
    height: 4px;
    background: #ffc107;
    border: none;
    margin: 12px 0 18px;
    transition: 0.3s;
}

/* Icon */
.service-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    transition: 0.35s;
}

.icon.yellow {
    background: rgba(11, 45, 95, 0.563);
    color: #ffc107;
}

/* Hover Effects */
.service-card:hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-8px);
}

.service-card:hover hr {
    background: #000;
}

.service-card:hover .icon {
    background: #000;
    color: #ffc107;
}

.service-card:hover .learn {
    transform: translateX(6px);
}

/* Learn more */
.learn {
    display: inline-block;
    font-weight: 500;
    margin-top: 15px;
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 25px;
    }
}

/* About file */
.about-us {
    margin-top: 0;
}

.about-us {
    padding: 50px 0;
    /* small screen default */
}

@media (min-width: 768px) {
    .about-us {
        padding: 100px 0;
    }
}

@media (min-width: 1200px) {
    .about-us {
        padding: 150px 0;
    }
}

/* home book-card */
.book-card {
    position: relative;
    height: 360px;
    /* fixed height */
    border: 2px solid #ddd;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: 0.4s;
}

.book-card:hover {
    border-color: #f0ad4e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Front Side */
.book-front {
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: 2;
    transition: transform 0.6s ease;
    transform-origin: left;
}

.book-card:hover .book-front {
    transform: rotateY(-120deg);
}

/* Title */
.book-title {
    text-align: center;
    padding: 10px;
    border-top: 2px solid #f0ad4e;
    margin: 0;
    font-weight: 600;
}

/* Content Side */
.book-content {
    position: absolute;
    inset: 0;
    padding: 15px;
    background: #f8f9fa;

    display: flex;
    flex-direction: column;
}

/* Heading */
.book-content h4 {
    border-bottom: 2px solid #f0ad4e;
    padding-bottom: 6px;
    margin-bottom: 8px;
}

/* Scrollable text area */
.book-content p {
    flex-grow: 1;
    overflow-y: auto;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Button area fixed */
.book-buttons {
    display: flex;
    gap: 10px;
}

/* CARD */
.construction-card {
    height: 100%;
    border-radius: 12px solid yellow;
    background: #eceaea;
    display: flex;
}

/* INNER ROW FULL HEIGHT */
.construction-card>.row {
    width: 100%;
    flex: 1;
}

/* IMAGE COLUMN */
.construction-card .col-xl-5 {
    display: flex;
}

/* IMAGE TOP FIX */
.construction-img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

/* CARD BODY */
.construction-card .card-body {
    display: flex;
    flex-direction: column;
    padding: 18px;
}

/* LEARN MORE FIXED BOTTOM */
.construction-card .learn {
    margin-top: auto;
    font-weight: 600;
    color: #f0a500;
}

/* CARD HOVER */
.construction-card {
    transition: 0.3s;
}

.construction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* // Why Choose Us Section */

.why-choose-us {
    background-color: #ffffff;
}

.choose-img img {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-box {
    gap: 20px;
}

.icon-box {
    min-width: 50px;
    height: 50px;
    background-color: #fff7e6;
    color: #feb900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-box h5 {
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .why-choose-us {
        text-align: left;
    }
}

/* popup form */
.modal-content {
    border-radius: 5px;
    overflow: hidden;
    background: rgba(4, 2, 2, 0.511);
    backdrop-filter: blur(5px);
}

.modal-header {
    background: rgba(18, 18, 18, 0.8);
    color: #fff;
}

.modal-header h5 {
    font-weight: 600;
    font-size: 1.25rem;
}

.form-control {
    border-radius: 5px;
    box-shadow: none;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, .5);
}

.btn-primary {
    border-radius: 10px;
    font-weight: 600;
    background: linear-gradient(45deg, #df9007, #4f0404);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #0095c2);
}

/* 🔹 Watermark transparent logo */
.modal-body {
    position: relative;
    background: transparent !important;
}

.modal-body::before {
    content: "";
    background: url("{{asset('frontend/assets/img/Logo-03@3x-1.png')}}") no-repeat center center;
    background-size: 250px;
    opacity: 0.09;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.modal-body form {
    position: relative;
    z-index: 5;
}

/* Footer */
.custom-footer {
    position: relative;
    padding: 80px 0 30px;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 25, 30, 0.88);
    z-index: 1;
}

.custom-footer .container {
    z-index: 2;
}

.footer-logo {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cfcfcf;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffc107;
    padding-left: 5px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    margin-right: 8px;
    border-radius: 5px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ffc107;
    color: #000;
}

.footer-line {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* about section */

.story-section {
    background: #fff;
}

.story-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.story-box {
    background: #f7f7f7;
    padding: 30px;
}

.story-box p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.story-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #333;
    font-size: 15px;
}

.story-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #f5a623;
}

.story-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-top-right-radius: 100px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .story-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .story-title {
        font-size: 2rem;
    }

    .story-box {
        padding: 20px;
    }
}

/* icons position fixed */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
    flex-direction: row;
}

.icon-btn:hover {
    transform: scale(1.1);
}

/* hardware section */
.hardware-section {
    background: #f3e9cd;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222;
}

.section-subtitle {
    color: #666;
    max-width: 650px;
    margin: auto;
}

.hardware-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.hardware-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.hardware-card .card-body {
    padding: 22px;
}

.hardware-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.hardware-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}

.hardware-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.btn-outline-warning {
    border-radius: 30px;
    padding: 6px 18px;
}

/* blog */

.blog-card {
    text-decoration: none;
    color: #000;
    display: block;
}

.blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 25PX;
    border-top-right-radius: 25PX;
}

.blog-img img {
    width: 100%;
    height: 250px;
    transition: 0.4s ease;
}

.blog-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: 0.4s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-card:hover .blog-img::after {
    opacity: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    z-index: 2;
}

.blog-card:hover .overlay {
    opacity: 1;
}

.read-more {
    padding: 10px 25px;
    background: #ffc107;
    color: #000;
    font-weight: 600;
    border-radius: 30px;
}

.blog-content {
    padding: 15px 5px;
}

.blog-content h4 {
    margin-bottom: 5px;
}

.blog-content p {
    color: #666;
    font-size: 14px;
}

/* Shadow on hover */
.blog-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}
/*//unbetable price*/


