/* starter start */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar .nav-link {
    overflow: hidden;
}


.blog p {
    text-align: justify;
}

/* starter ends */
/* Header Start */
.navbar .nav-link,
.navbar .navbar-brand,
.navbar .dropdown-toggle,
.navbar .dropdown-item {
    color: white !important;
}

.navbar .dropdown-menu {
    background-color: #0B2B5B;
}

.navbar .dropdown-item:hover {
    background-color: #093166;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        width: 100% !important;
    }
}




/* Apply animation to navbar and footer links except dropdown-toggle */
.navbar a:not(.dropdown-toggle),
footer a {
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Apply animation only if not .no-underline-animation */
.navbar a:not(.dropdown-toggle):not(.no-underline-animation)::after,
footer a:not(.no-underline-animation)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.navbar a:not(.dropdown-toggle):not(.no-underline-animation):hover::after,
footer a:not(.no-underline-animation):hover::after {
    width: 100%;
}

/* Header Ends */
/* Home Page Start */
.hero {
    background-color: #0B2B5B;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}


.product-section-title {
    text-align: center;
    margin-bottom: 5px;
}

.card-button {
    background: linear-gradient(135deg, #0a74da, #004b9b);
    color: #fff !important;
    font-weight: 600;
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.card-button:hover {
    background: linear-gradient(135deg, #004b9b, #0a74da);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.card-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Home Page Ends */
/* About Page Start */


.about-img {
    width: 300px;
    height: auto;
    /* Maintains aspect ratio */
}

.about-heading {
    font-size: 4rem;
    text-transform: uppercase;
    color: #333;
}

.hero-section {
    background-color: #d9d9d9;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #222222;
}

.hero-section p {
    color: #222222;
}

.icon-box {
    background: #0B2B5B;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.icon-box:hover {
    background: #103c7a;
    transform: translateY(-5px);
}

.team img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* About Page Ends */
/* Blog Start */
.blog-hero {
    background: linear-gradient(180deg,
            rgba(28, 60, 124, 0.95),
            /* Deep navy */
            rgba(212, 224, 249, 0.85)
            /* Slightly transparent navy */
        ),
        url('../images/products/RFID-card.webp') no-repeat center;
    background-size: cover;
    color: #fff;
    padding: 4.5rem 0;
    border-bottom: 6px solid rgba(255, 255, 255, 0.04);
}

/* Blog Ends */
/* Contact Start */

.contact-img {
    width: 300px;
    height: auto;
    /* Maintains aspect ratio */
}

.contact-heading {
    font-size: 4rem;
    text-transform: uppercase;
    color: #333;
}

.contact-heading-2 {
    font-size: 3.6rem;
    text-transform: uppercase;
    color: #c3c3ae;
}

/* Contact Ends */