﻿/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.logo {
    display: flex;
    align-items: center;
}
/* Fixed Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #F8FBFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Logo */
.logo img {
    height: 70px;
}

/* Navigation Menu */
.navmenu {
    flex: 1; /* Allows the menu to take available space */
    display: flex;
    justify-content: center; /* Centers the menu */
}

    .navmenu ul {
        list-style: none;
      
        margin: 0;
        display: flex;
    }

        .navmenu ul li {
            margin: 0 12px;     
         cursor:pointer;
        }

            .navmenu ul li a {
                font-size: 15px;
                text-decoration: none;
                color: #1E3A5F;
                font-weight: bold;
                transition: color 0.3s;
                padding: 10px 12px 10px 12px;
                display: block;
                user-select: none;
                border-radius: 10px;
            }

                .navmenu ul li a:hover {
                    color: white;
                    background: linear-gradient(to left, rgb(62,175,155), rgb(66,79,113));
                    border-radius: 10px;
                }

.dropdownaccount a:hover {
    color:white;
    background: linear-gradient(to left, rgb(62,175,155), rgb(66,79,113));
    border-radius: 10px;
}
/* Social Media & Login */
.header-right {
    display: flex;
    align-items: center;
}

.header-social a {
    margin: 0 10px;
    color: #333;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s;
}

    .header-social a:hover {
        color: #007bff;
    }

.login-btn {
    background: #2196F3;
    color: #FFFFFF;
    padding: 8px 18px;
    font-size: 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 15px;
}

    .login-btn:hover {
        background: #1976D2;
        color: #FFFFFF;
    }

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    text-align: center;

}

    .mobile-nav a {
        padding: 12px;
        font-size: 35px;
        text-decoration: none;
        color: #0D47A1;
        font-weight: bold;
        display: block;
    }
        .mobile-nav a:hover {
            color: #0D47A1;
            background-color: #BBDEFB;
        }
/* Mobile Menu Toggle Button */
.mobile-nav-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    margin-left: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .navmenu {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .logo img {
        height: 70px;
    }

    /* Arrange mobile header layout */
    .header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .header-right {
        display: flex;
        align-items: center;
    }

        .header-right .header-social {
            margin-right: 10px;
        }

}

/* Show Mobile Menu */
.mobile-nav.active {
    display: flex;
}

/* Change Hamburger to Close (✖) */
.mobile-nav-toggle.active {
    content: '✖';
}

/* Push the body down to avoid content hiding behind fixed header */
body {
    padding-top: 70px;
}

.howdy {
    font-size: 30px;
    font-weight: bold;
    color: rgb(66,79,113);
  display:block;
  margin-top: 30px;
  margin-left:7px;
}

.software {
    font-size: 20px;
    font-weight: bold;
    color: rgb(62,175,155);
    display: block;
    margin-top: 40px;
}
/* Header Styling End */


/* Footer Styling Start */
.logoslogan{
    margin-left: -35px !important;
}

.footer {
    background-color: black;
    color: white;
    font-size: 14px;
    position: relative;
    bottom: 0;
}
f
    /* Footer body top spacing */
    .footer .footer-body {
        margin-top: 10px;
    }

    /* Inner container spacing */
    .footer .footer-top {
        padding: 40px 20px;
    }

    /* Row spacing */
    .footer .footer-body-row {
        margin-top: 20px;
        row-gap: 40px; /* ✅ vertical space between rows */
        column-gap: 50px; /* ✅ horizontal space between columns */
    }

        /* Columns spacing */
        .footer .footer-body-row > div {
            margin-top: 0px;
   
        }

    /* Logo styling */
    .footer .logo img {
        width: 140px;
        height: 140px;
    }

/* Footer slogan */
.footer-slogan {
    margin-top: 10px;
}

    .footer-slogan h5 {
        color: rgb(67, 180, 160);
        margin: 0;
    }

/* Section headings */
.footer-heading h5 {
    color: rgb(62, 175, 155);
    margin-bottom: 12px;
}

/* Links */
.footer-heading ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-heading ul li {
        padding: 6px 0;
    }

    .footer-heading ul a {
        color: white;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-heading ul a:hover {
            color: rgb(62, 175, 155);
        }

/* Social icons */
.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 16px;
    color: white;
    margin-right: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

    .footer .social-links a:hover {
        background-color: rgb(62, 175, 155);
        color: black;
    }

/* Copyright */
.footer .copyright {
    text-align: center !important;
    display: flex;
    justify-content: center !important;
    align-items: center  !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 30px;
}

    .footer .copyright p {
        margin: 0;
        color: white;
    }

.copyright-howdy {
    color: rgb(66, 79, 113);
}

.copyright-software {
    color: rgb(62, 175, 155);
}

/* ✅ Responsive Design */
@media (max-width: 991px) {
    .footer .footer-body-row {
        text-align: center;
        row-gap: 20px; /* ✅ vertical space between rows */
        column-gap: 0px; /* ✅ horizontal space between columns */
    }

    .footer .social-links {
        justify-content: center;
    }

    .footer .logo img {
        margin-left: 90px;
    }
}

@@media (max-width: 575px) {
    .footer .footer-top {
        padding: 30px 15px;
    }

    .footer .footer-heading h5 {
        margin-top: 15px;
    }
}


/* Footer Styling End*/


/* Hero Carousel Styling */
/* Styling for the slider */
.carousel-inner img {
    width: 100%;
    height: auto;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

    .carousel-caption h5 {
        font-size: 1.8rem;
        font-weight: bold;
        color: #fff;
    }

    .carousel-caption p {
        font-size: 1rem;
        color: #ddd;
    }

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000;
    padding: 10px;
    border-radius: 50%;
}

.carousel-indicators [data-bs-target] {
    background-color: #333;
}

.carousel-indicators .active {
    background-color: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.8rem;
    }
}
/* Hero Carousel Styling End*/


/* Feature Styling */
.features-item-div {
    background-color: rgb(248, 248, 248);
    padding : 20px;
}
.features .features-item {
 
    display: table-row;
    align-items: center;
    border: 1px solid black;
    position: relative;
}

    .features .features-item i {
        font-size: 32px;
        padding-right: 10px;
        line-height: 0;
    }

    .features .features-item h3 {
        font-weight: 700;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-size: 16px;
    }

        .features .features-item h3 a {
            color: var(--heading-color);
            transition: 0.3s;
        }

    .features .features-item:hover {
        border-color: var(--accent-color);
    }

   
/* Feature Styling End*/

/* About Styling */
.slogan-container {
    text-align: left;

    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Company name styling */
.company-name {
    font-size: 2rem;
    color: rgb(123, 131, 155);
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Slogan text styling */
.slogan-text {
    font-size: 1.15rem;
    color: rgb(62,175,155);
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.4;
    animation: fadeIn 2s ease-in-out;
}

.about {
    padding:20px;
}
.about .inner-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 30px 0;
}

@media (min-width: 991px) {
    .about .inner-title {
        max-width: 65%;
        margin: 0 0 80px 0;
    }
}

.about .our-story {
    padding: 40px;
    background-color: rgb(248,248,248);
}

@media (min-width: 991px) {
    .about .our-story {
        padding-right: 35%;
    }
}

.about .our-story h4 {
    text-transform: uppercase;
    font-size: 1.1rem;
    /*color: color-mix(in srgb, var(--default-color), transparent 50%);*/
}

.about .our-story h3 {
    font-size: 2.25rem;
    font-weight: 700;
   /* color: color-mix(in srgb, var(--default-color), transparent 20%);*/
}

.about .our-story p:last-child {
    margin-bottom: 0;
}

.about ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .about ul li {
        padding: 5px 0;
        display: flex;
        align-items: center;
    }

    .about ul i {
        font-size: 1.25rem;
        margin-right: 0.5rem;
        line-height: 1.2;
        color: var(--accent-color);
    }

.about .watch-video i {
    font-size: 2rem;
    transition: 0.3s;
    color: var(--accent-color);
}

.about .watch-video a {
    font-weight: 600;
 /*   color: color-mix(in srgb, var(--default-color), transparent 20%);*/
    margin-left: 8px;
    transition: 0.3s;
}

.about .watch-video:hover a {
    color: var(--accent-color);
}

.about .about-img {
    min-height: 400px;
    position: relative;
}

@media (min-width: 992px) {
    .about .about-img {
        position: absolute;
        top: 0;
        right: 0;
        min-height: 600px;
    }
}

.about .about-img img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
/* About Styling End*/

/* Services Styling Start */

.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    height: 60%;
    width: 80%;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 5px;
}

    .services .service-item .icon {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: ease-in-out 0.3s;
        position: relative;
    }

        .services .service-item .icon i {
            font-size: 25px;
            transition: 0.5s;
            position: relative;
        }

        .services .service-item .icon svg {
            position: absolute;
            top: 0;
            left: 0;
        }

            .services .service-item .icon svg path {
                transition: 0.5s;
              /*  fill: color-mix(in srgb, var(--default-color), transparent 95%);*/
            }

    .services .service-item h3 {
        font-weight: 700;
        margin: 10px 0 15px 0;
        font-size: 18px;
    }

    .services .service-item p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .service-item:hover {
        box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
    }

    .services .service-item.item-cyan i {
        color: #0dcaf0;
    }

    .services .service-item.item-cyan:hover .icon i {
        color: #fff;
    }

    .services .service-item.item-cyan:hover .icon path {
        fill: #0dcaf0;
    }

    .services .service-item.item-orange i {
        color: #fd7e14;
    }

    .services .service-item.item-orange:hover .icon i {
        color: #fff;
    }

    .services .service-item.item-orange:hover .icon path {
        fill: #fd7e14;
    }

    .services .service-item.item-teal i {
        color: #20c997;
    }

    .services .service-item.item-teal:hover .icon i {
        color: #fff;
    }

    .services .service-item.item-teal:hover .icon path {
        fill: #20c997;
    }

    .services .service-item.item-red i {
        color: #df1529;
    }

    .services .service-item.item-red:hover .icon i {
        color: #fff;
    }

    .services .service-item.item-red:hover .icon path {
        fill: #df1529;
    }

    .services .service-item.item-indigo i {
        color: #6610f2;
    }

    .services .service-item.item-indigo:hover .icon i {
        color: #fff;
    }

    .services .service-item.item-indigo:hover .icon path {
        fill: #6610f2;
    }

    .services .service-item.item-pink i {
        color: #f3268c;
    }

    .services .service-item.item-pink:hover .icon i {
        color: #fff;
    }

    .services .service-item.item-pink:hover .icon path {
        fill: #f3268c;
    }

/* Services Styling End */


/* Clients Logo Styling Start */



.clients-section {
    background: #f8fbff;
    padding: 80px 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1rem;
}

.clients-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.client-logo {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    margin: 10px;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

    .client-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        background: linear-gradient(to bottom right, rgb(62,175,155), rgb(66,79,113));
    }

    .client-logo img {
        max-width: 80%;
        height: auto;
        filter: grayscale(100%);
        transition: all 0.4s ease;
    }

    .client-logo:hover img {
        filter: grayscale(0%);
        transform: scale(1.1);
    }

@@media (max-width: 991px) {
    .client-logo {
        padding: 25px;
        margin: 8px;
    }
}

@@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }

    .client-logo img {
        max-width: 70%;
    }
}

/* Client logo Styling End */


.section-title {
    text-align: center;
  
    position: relative;
}

    .section-title h2 {
        font-size: 27px;
        font-weight: 700;
        text-transform: uppercase;
        position: relative;
    }

        .section-title h2:after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: white;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .section-title p {
        margin-bottom: 0;
    }

    /* Breadcrumb */

@media (max-width: 576px) {
    .breadcrumb {
        font-size: 12px; /* Smaller text for smaller screens */
        padding: 0.5rem; /* Reduced padding */
    }
}
    /* Breadcrumb End  */


    /* Gallery styling */

.modal-img {
    width: 100%;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.gallery-img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .gallery-img:hover {
        transform: scale(1.05); /* Slight zoom effect */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Adds a shadow */
    }

    /* Gallery styling end */


    /* Contact styling start */

.contact {
    padding: 20px;
}

    .contact .info {
        background-color: rgb(215, 218, 225);
        padding: 40px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        height: 97%;
        border-radius: 10px;
    }

        .contact .info h3 {
            font-weight: 600;
            font-size: 24px;
        }

        .contact .info p {
         /*   color: color-mix(in srgb, var(--default-color), transparent 40%);*/
            margin-bottom: 30px;
            font-size: 15px;
        }

    .contact .info-item + .info-item {
        padding-top: 20px;
        margin-top: 20px;
     /*   border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);*/
    }

    .contact .info-item i {
        font-size: 24px;
        color: #1bbd36;
        transition: all 0.3s ease-in-out;
        margin-right: 20px;
        margin-top:20px;
    }

    .contact .info-item h4 {
        padding: 0;
        font-size: 18px;
        line-height: 24px;
        font-weight: 600;
        margin-bottom: 5px;
        color: rgb(123, 131, 155);
    }

    .contact .info-item p {
        padding: 0;
        margin-bottom: 0;
        font-size: 14px;
        color: black;
    }




.contact-container {
    max-width: 90%;
    background-color: rgb(62,175,155);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #333;
    margin-bottom: 20px;
    margin-left: 40px;
}
.joinus-container {
    max-width: 90%;
    background-color: rgb(62,175,155);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #333;
    margin-bottom: 20px;
    margin-left: 10px;
}
    .contact-container h1 {
        text-align: center;
        color: black;
        margin-bottom: 20px;
    }

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

    .form-control:focus {
        outline: none;
        border-color: #1bbd36;
        box-shadow: 0 0 5px rgba(27, 189, 54, 0.5);
    }

.btn-submit {
    background-color:  rgb(123, 131, 155);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
}

    .btn-submit:hover {
        background-color: rgb(66,79,113);
    }

.success-message {
    background-color: #d4edda; /* Light green background */
    color: #155724; /* Dark green text */
    border: 1px solid #c3e6cb; /* Soft green border */
    padding: 15px 20px; /* Add spacing around the message */
    border-radius: 8px; /* Rounded corners */
    font-size: 16px; /* Readable font size */
    font-weight: 500; /* Slightly bold text */
    text-align: center; /* Center-align the text */
    width: 100%; /* Full width of the container */
    max-width: 600px; /* Limit the maximum width */
    margin: 20px auto; /* Center horizontally with margin */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    animation: fade-in 0.5s ease-out, fade-out 3s ease-in 5s; /* Fade in and out animation */
}
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-out animation */
@keyframes fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}
.failure-message {
    background-color: #d4edda; /* Light green background */
    color: red; /* Dark green text */
    border: 1px solid #c3e6cb; /* Soft green border */
    padding: 15px 20px; /* Add spacing around the message */
    border-radius: 8px; /* Rounded corners */
    font-size: 16px; /* Readable font size */
    font-weight: 500; /* Slightly bold text */
    text-align: center; /* Center-align the text */
    width: 100%; /* Full width of the container */
    max-width: 600px; /* Limit the maximum width */
    margin: 20px auto; /* Center horizontally with margin */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    animation: fade-in 0.5s ease-out, fade-out 3s ease-in 5s; /* Fade in and out animation */
}
    /* Contact styling end */



    /* ######### Login Page Styling Start ############ */

.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Title of the form */
.login-title {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Form label style */
.form-label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

/* Input fields style */
.form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #4CAF50;
        outline: none;
    }

/* Remember me label */
.remember-label {
    font-size: 14px;
    color: #555;
}

/* Button style */
.btn-login {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-login:hover {
        background-color: #45a049;
    }

/* Alert message style */
.alert {
    font-size: 14px;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    border-radius: 4px;
}

.alert-danger {
    background-color: #f44336;
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .login-container {
        padding: 20px;
    }

    .login-title {
        font-size: 20px;
    }

    .form-control {
        font-size: 12px;
    }

    .btn-login {
        font-size: 14px;
    }
}
/* ############ Login Page Styling End ############ */

/* ############ Login Button header Styling Start ############ */
.header-buttons-login .btn-login-header {
    background-color: #4CAF50;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

    /* Hover effect */
.header-buttons-login .btn-login-header:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

    /* Focus effect */
    .header-buttons-login .btn-login-header:focus {
        outline: none;
        box-shadow: 0 0 5px #4CAF50;
    }

/* Responsive Design */
@media (max-width: 576px) {


    .header-buttons-login .btn-login-header {
        font-size: 14px;
        padding: 8px 16px;
    }
}
    /* ############ Login Button header Styling End ############ */


/* ############ Logout Button header Styling Start ############ */
.header-buttons-logout .btn-logout-header {
    background-color: #4CAF50;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

    /* Hover effect */
    .header-buttons-logout .btn-logout-header:hover {
        background-color: #45a049;
        transform: scale(1.05);
    }

    /* Focus effect */
.header-buttons-logout .btn-logout-header:focus {
    outline: none;
    box-shadow: 0 0 5px #4CAF50;
}

/* Responsive Design */
@media (max-width: 576px) {


    .header-buttons-logout .btn-logout-header {
        font-size: 14px;
        padding: 8px 16px;
    }
}
/* ############ Logout Button header Styling End ############ */

/* Contact Request Style Start */
table {
    width: 100%;
    border-collapse: separate; /* Allows border-radius to be applied */
    border-spacing: 0; /* Removes gaps between cells */
    table-layout: fixed; /* Fixed column alignment */
    border-radius: 10px;
    overflow: hidden; /* Ensures rounded corners apply cleanly */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
}

thead {
    background-color: #f9f9f9;
    text-align: left;
}

tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

tbody tr:hover {
    background-color: #eaeaea;
}

td, th {
    padding: 10px;
    overflow: hidden; /* Prevent content overflow */
    word-wrap: break-word; /* Allow breaking of long words */
    white-space: normal; /* Allow text to wrap to the next line */
    text-align: left; /* Keep text alignment consistent */
    border: 1px solid #ddd; /* Optional: Add border to cells */
}

.contreqheading {
    text-align: center;
    padding: 20px;
}

table thead th:first-child {
    border-top-left-radius: 10px; /* Round top-left corner */
}

table thead th:last-child {
    border-top-right-radius: 10px; /* Round top-right corner */
}

table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px; /* Round bottom-left corner */
}

table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px; /* Round bottom-right corner */
}
/* Contact Request Style End */

/* Join us styling start */
.join-us-banner {
    height: 97%;
    width: 100%;
    border-radius: 10px;
}
/* Join us styling end */








/* Dropdown Base */
.navmenu ul li.dropdown {
    position: relative;
}

.navmenu ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #F8FBFF;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    min-width: 220px;
    z-index: 999;
    overflow: hidden;
    flex-direction: column;
    padding: 8px 0;
    transition: all 0.3s ease;
}

/* Show dropdown on hover (desktop) */
.navmenu ul li.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Dropdown links */
.navmenu ul li .dropdown-menu li {
    width: 100%;
}

    .navmenu ul li .dropdown-menu li a {
        display: block;
        padding: 10px 16px;
        font-size: 14px;
        font-weight: bold;
        color: #1E3A5F;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        /* Hover gradient effect */
        .navmenu ul li .dropdown-menu li a:hover {
            color: white;
            transform: scale(1.05);
            background: linear-gradient(to left, rgb(62,175,155), rgb(66,79,113));
        }

/* Dropdown arrow hover (main link) */
.navmenu ul li.dropdown > a:hover {
    background: linear-gradient(to left, rgb(62,175,155), rgb(66,79,113));
    color: white;
    border-radius: 10px;
    transform: scale(1.05);
}

/* Smooth zoom animation */
.navmenu ul li a,
.navmenu ul li .dropdown-menu li a {
    transition: all 0.3s ease-in-out;
}

/* Dropdown spacing */
.navmenu ul li.dropdown {
    margin-right: 15px;
}

/* -----------------------------------------------------------
   📱 MOBILE VIEW FIX — Show submenu centered below parent
----------------------------------------------------------- */
@media (max-width: 992px) {

    .nav-item.dropdown {
        position: relative;
    }

        /* Center & position submenu properly */
        .nav-item.dropdown .dropdown-menu,
        .nav-item.dropdown .dropdown-menu.show {
            position: absolute !important;
            left: 50% !important; /* center horizontally */
            transform: translateX(-50%) !important; /* align exact center */
            top: 100% !important; /* show below parent menu */
            margin-top: 8px !important; /* gap between parent and submenu */
            background: #f9f9f9;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border-radius: 8px;
            text-align: center !important;
            min-width: 220px;
            z-index: 1000;
        }

            .nav-item.dropdown .dropdown-menu .dropdown-item {
                padding: 10px 16px;
                text-align: center !important;
                justify-content: center !important;
            }

                .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
                    background-color: #e9ecef;
                    border-radius: 5px;
                }

        /* Make parent category text centered */
        .nav-item.dropdown > a {
            text-align: center;
            width: 100%;
        }
}





