/*
Theme Name: mytheme
Theme URI: https://example.com/mytheme
Author: Your Name
Author URI: https://example.com
Description: A minimal Bootstrap-based WordPress theme called mytheme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mytheme
Tags: bootstrap, custom, responsive
*/


/* You can add theme-wide CSS here or keep it minimal and use assets/css/custom.css */
/* Fullscreen Offcanvas Menu */
:root {
    --primary-bg-color: #002e5b;       /* Dark blue background */
    --primary-text-color: #ffffff;     /* White text on dark background */
    --secondary-text-color: #202124;   /* Dark gray for normal text */
    --primary-font-family: 'Roboto', sans-serif;
    --button-hover-color: #024080;     /* Hover color for buttons */
}

/* Body */
body {
    margin: 0;
    padding: 0;
    font-family: var(--primary-font-family);
}

/* Headings */
h1, h2, h3 {
    color: var(--primary-text-color);
    font-family: var(--primary-font-family);
}

/* Paragraphs */
p {
    font-size: 16px;
    line-height: 1.6;
}

/* Links */
a {
    color: var(--primary-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

/* Buttons */
button {
    background-color: var(--primary-bg-color);
    color: var(--primary-text-color);
    font-family: var(--primary-font-family);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: var(--button-hover-color);
    transform: scale(1.05);
}

img.custom-logo {
    width: 270px;
    height: 72px;
}
.offcanvas.full-menu {
  width: 100vw !important;
  height: 100vh !important;
  background: #ffffff;
  transition: transform 0.4s ease-in-out;
  z-index: 9999;
}
.top-header{
	background:#002e5b;
}
.offcanvas.full-menu .navbar-nav {
  gap: 1.5rem;
}

.offcanvas.full-menu .nav-link {
  color: #000 !important;
  font-weight: 600;
  text-transform: uppercase;
}

.offcanvas.full-menu .nav-link:hover {
  color: #0d6efd !important;
}

.offcanvas.full-menu .offcanvas-header {
  padding: 1.5rem;
}

.offcanvas.full-menu .btn-close {
  font-size: 1.5rem;
  opacity: 0.8;
}

.offcanvas.full-menu.show {
  transform: none !important;
}
.offcanvas.full-menu {
  background: rgba(0, 0, 0, 0.95);
}

.offcanvas.full-menu .nav-link {
  color: #fff !important;
}

.offcanvas.full-menu .nav-link:hover {
  color: #0d6efd !important;
}
a.nav-link {
    font-size: 16px;
    color: #000;
}

element.style {
}
#sp-testimonial-free-wrapper-145 .sp-testimonial-free {
    background: #c8d1d5;
    border: 0px solid #e3e3e3;
    border-radius: 0px;
    height: auto;
    min-height: 365px;
    padding: 31px;
    border-radius: 10px;
}
footer.site-footer {
    background: #002e5b !important;
    color: #FFF !important;
}
ul.list-unstyled li {
    margin-top: 13px;
}
/* ===== Dropdown Hover on Desktop ===== */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .navbar .dropdown-toggle::after {
    transition: transform 0.2s ease;
  }
  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
.one_box{
	height:150px !important;
		min-height:150px !important;
}
ul#menu-primary .nav-item .nav-link {
    text-decoration: none;
    font-weight: 700;
    color: #002e5b;
}
ul#menu-primary .nav-item .nav-link:hover {
    color: #337ab7;
}
ul#menu-primary .nav-item .nav-link:focus-visible {
	box-shadow:none;
	border:none;		
}
.navbar-nav .dropdown-menu .nav-link:hover {
        background: #ffa500 !important;
	    color:#FFF !important;
	    margin-bottom:3px !important;
    }