:root {
    --primary-green: #145B30;
    --primary-green-light: #1E8345;
    --accent-yellow: #FFC107;
    --dark-blue: #0A1C35;
    --light-bg: #E8F5E9;
    --text-muted: #6C757D;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-blue);
    overflow-x: hidden;
	font-size:14pt;
}

/* Utilities */
.text-primary-green {
    color: var(--primary-green-light) !important;
}

.bg-primary-green {
    background-color: var(--primary-green-light) !important;
}

.text-dark-blue {
    color: var(--dark-blue) !important;
}

.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}

.bg-light-green {
    background-color: var(--light-bg) !important;
}


/* Topbar */
.topbar {
    background-color: var(--dark-blue);
    color: white;
    font-size: 0.85rem;
}

.topbar-icon {
    color: white;
    transition: 0.3s;
}

.topbar-icon:hover {
    color: var(--accent-yellow);
}

/* Navbar */
.navbar .nav-link {
    color: var(--dark-blue);
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-green-light) !important;
}

.get-quote-btn {
    border-radius: 0;
    transition: 0.3s;
}

.get-quote-btn:hover {
    background-color: var(--primary-green-light);
    color: white !important;
    border-color: var(--primary-green-light);
}

/* Navbar Dropdown styling */
.navbar .dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 10px 0;
    margin-top: 10px;
    border-top: 3px solid var(--primary-green-light);
}

.navbar .dropdown-item {
    font-weight: 500;
    padding: 10px 25px;
    color: var(--dark-blue);
    transition: 0.3s;
}

.navbar .dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--primary-green-light);
    padding-left: 30px;
}

.navbar .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 5px;
    border: none;
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 0.7rem;
    transition: 0.3s;
}

.navbar .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Desktop Hover Support */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.3s ease-in-out;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-left {
    background-color: var(--primary-green-light);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Adding a faint grid/pattern overlay to the left hero like in the image */
.hero-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#ffffff 10%, transparent 11%);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-right {
    background-size: cover;
    background-position: center;
    height: 100%;
}

.play-icon-wrapper {
    transition: 0.3s;
}

.play-video-link:hover .play-icon-wrapper {
    transform: scale(1.1);
}

/* Features Section */
.relative-images {
    position: relative;
    padding-bottom: 2rem;
    padding-right: 2rem;
}

.floating-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border: 10px solid white;
}

.iso-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    z-index: 2;
    background-color: white;
}

/* Stats Row */
.stats-row .bi {
    line-height: 1;
}

/* Services Section */
.service-card {
    transition: all 0.3s ease;
    border-top: 4px solid transparent !important;
}

.service-card:hover {
    border-top-color: var(--primary-green-light) !important;
    transform: translateY(-5px);
}

/* Projects Section */
.project-filters .nav-link {
    font-size: 1.05rem;
    transition: 0.3s;
}

.hover-opacity-100:hover {
    opacity: 1 !important;
    color: var(--primary-green-light) !important;
}

.project-item img {
    transition: transform 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    background: linear-gradient(to top, rgba(10, 28, 53, 0.9) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

/* Team Section */
.group-hover:hover .team-info {
    transform: translateY(-5px);
}

.transition-all {
    transition: all 0.3s ease;
}

.group-hover:hover .social-links {
    opacity: 1 !important;
}

/* Hover utilities */
.cursor-pointer {
    cursor: pointer;
}

.hover-opacity-80:hover {
    opacity: 0.8;
}

.hover-primary-text {
    transition: all 0.3s ease;
}

.hover-primary-text:hover {
    color: var(--primary-green-light) !important;
    padding-left: 5px;
}

/* Blog Section */
.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    overflow: hidden;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

/* Footer Section */
.footer-links li a {
    transition: all 0.3s ease;
}

.band {
	text-align:center;
	background:var(--primary-green);
	padding:10px;
	margin-bottom:20px;
	color:white;
}

button.btn {background:var(--dark-blue);color:white}
button.btn:hover {background:var(--dark-blue);color:white}
.display-3 {font-size:3em}
.bg {background:#f5f5f5;height:auto;box-sizing:border-box}
.bg1 {background:#f5f5f5;height:300px;box-sizing:border-box;border-radius:10px}
@media (min-width: 320px) and (max-width: 480px) { 
.display-3 {font-size:2em}
 }