/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    /* padding-top: 130px; */
    font-family: "Rubik", sans-serif;
    /* Offset for fixed header */
}

/* Navbar Customization */
.navbar-brand {
    font-weight: 700;
    color: #2563EB !important;
    /* Example Brand Color */
}

.navbar-brand svg {
    width: 64px;
    height: 82px;
}


.fixed-top {
    height: 110px;
    z-index: 1;
    position: absolute !important;
}

.btn-primary {
    background: #366fa0 !important;
    border: 1px solid #366fa0 !important;
}

/* .btn-primary:hover {
    background: #243b5d !important;
    border: 1px solid #243b5d !important;
} */

.nav-link {
    font-weight: 500;
    color: #4B5563;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563EB;
}

/* Button Styling */
.btn-primary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #2563EB;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #243b5d;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: #fff;
    border-color: #1D4ED8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover::before {
    width: 100%;
}

/* Mobile Tweaks */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding-top: 1rem;
    }

    .navbar-nav {
        margin-bottom: 1rem !important;
        text-align: center;
    }


    .d-flex {
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    z-index: 1;
}

/* Dark overlay to improve text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}


/* About Section */

.about {
    padding: 80px 0;
}

.about img {
    width: 55%;
    margin: 0 auto;
    display: table;
}

.about h4 {
    line-height: 35px;
    font-size: 18px;
    color: #263D5F;
}

.about p {
    width: 80%;
    line-height: 24px;
    font-size: 16px;
}



/* Team Section */

.team {
    padding: 80px 0;
    background: #eee;
}

.team img {
    width: 55%;
    margin: 0 auto;
    display: table;
}

.team h4 {
    line-height: 35px;
    font-size: 18px;
    color: #263D5F;
}

.team p {
    width: 100%;
    line-height: 24px;
    font-size: 16px;
}

.team_cnt {
    padding-left: 12%;
}

.features {
    padding: 80px 0;

}


.featureBox {
    display: flex;
    gap: 20px;
}

.features img {
    width: 80%;
    margin: 0 auto;
    display: table;
}

.featureGrid {
    border: 1px solid #233968;
    padding: 40px;
    border-radius: 10px;
    width: 35%;
}

.featureGrid img {
    padding-bottom: 30px;
}

.featureGrid ul {
    padding-left: 15px;
}

.featureGrid ul li {
    padding-top: 10px;
}

.featureGrid:hover {
    background: #233968;
}

.featureGrid:hover h2,
.featureGrid:hover ul li {
    color: #fff;
}


/* Product */


.product {
    background: #eee;
    padding: 80px 0;
}

.product img {
    max-width: 100%;
    height: auto;
}

.wg-box-content {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.wg-box-content .wg-box-content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.wg-box-content:hover .wg-box-content-overlay {
    opacity: 1;
}

.wg-box-content-image {
    width: 100%;
}

.wg-box-content-title {
    display: none;
}

.wg-box-content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.wg-box-content:hover .wg-box-content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.wg-box-content-details h3 {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

.wg-box-content-details p {
    color: #fff;
    font-size: 0.8em;
}

.wg-box-fadeIn-bottom {
    top: 80%;
}

.product h2 {
    color: #233968;
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 30px;
}

/* .contact-info:hover,
.contact-form:hover {
    transform: translateY(-5px);
} */

.contact-info h5 {
    font-weight: 600;
    color: #233968;
    margin-bottom: 5px;
}

.form-control:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

.form-floating>label {
    color: #6c757d;
}

footer {
    padding: 60px 0 0;
    background: #eee;
}

footer h5 {
    font-weight: 600;
    color: #233968;
    margin-bottom: 20px;
}

footer a img {
    margin-bottom: 30px;
    width: 60%;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #6c757d;
    text-decoration: none;
}

footer ul li a:hover {
    color: #233968;
}

.footer-btm {
    margin-top: 30px;
    background: #000;
    padding: 30px 0;
    color: #fff;
    text-align: center;
}

.footer-btm p {
    margin-bottom: 0;
}

.soicial-icon {
    width: 50px;
    height: 50px;
    border: 1px solid;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    border: 1px solid #366fa0;
}

.soicial-icon svg {
    color: #366fa0;
}

.soicial-icon:hover {
    background: #366fa0;
}

.soicial-icon:hover svg {
    color: #fff;
}

@media (max-width: 767px) {
    .featureGrid {
        width: 100%;
    }

    .featureBox {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    #contact .d-flex {
        justify-content: left;
    }
}