/* Import a modern font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
     font-family: "Montserrat", sans-serif;
}
p,li{
    font-size: 18px;
}
a{
    font-size: 16px;
    color:black;
}

.nav-link{
    font-size: 16px;
    color:black !important;
}
h4{
    font-size:20px;
    color:#198754;
}
h2,h5,h6{
    color:#198754;
}
body {
    font-family: "Montserrat", sans-serif;
    color: #2d3436;
    line-height: 1.6;
}

/* Fix Images: This prevents images from "breaking" your layout */
img {
    max-width: 100%;
    height: auto;
    border-radius: 20px; /* Modern rounded corners */
}

/* Sections need breathing room */
section {
    padding: 30px 0;
}
.col-md-6 h1 {
    margin-top: 20px;
    font-weight: 700;
    font-display: ExtraBold;
}
#popup{
    left:-40vw;
    right:10%;
    top:8vh;
    z-index: 1021;
    max-width:80vw;
    width: 80vw;
    padding: 2rem !important;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    overflow: scroll;
    height:150vh;
    
}
.list-service li{
    position: relative;
    list-style: none;
    
}
.list-service li h6{
    font-size: 14px;
    font-weight:600;
}
.list-service li p{
    font-size: 13px;
   
}
.list-service li::before{
    content: '';
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32" fill="green"><path d="m25.7 9.3l-7-7A.9.9 0 0 0 18 2H8a2.006 2.006 0 0 0-2 2v24a2.006 2.006 0 0 0 2 2h16a2.006 2.006 0 0 0 2-2V10a.9.9 0 0 0-.3-.7M18 4.4l5.6 5.6H18ZM24 28H8V4h8v6a2.006 2.006 0 0 0 2 2h6Z" stroke-linejoin="round"></path></svg>');
    width:25px;
    height:25px;
    left:-30px;
    color:green;
    position: absolute;
}
.process-list li{
    position: relative;
    list-style: none;
    
}
.process-list li::before{
    content: '';
    background: url('../images/img\ 4.png');
    background-repeat: no-repeat;
    background-size: contain;
    width:50px;
    height:50px;
    left:-50px;
    color:green;
    position: absolute;
}
#process-main h2,#process-main p ,#process-main h4 {
    color: black !important;
}
.service-heading
{
    font-size:12px;
    text-transform: uppercase;
    color: #3b3e3e;
    font-weight: 600;
}
.service-q-h
{
    font-size: 30px;
    font-weight:600;
}
.service-q-p
{
    font-size: 12px;
    
   
}
.social-icon
{
    color:#6c757d ;
    font-size: 25px;
}
.social-icon:hover{
     color:green ;
}
@media (min-width:500px) {
#servicesDropdown:hover #popup{
    visibility: visible;
    opacity: 1;
   
}
}
@media (max-width:500px) {
  #popup
  {
    left:0;
    top:0;
    height: auto;
    z-index: 1020;
    position: static;
    width: 100vw;
    display: none;
    overflow-y: visible;
    padding:0 !important;
    box-shadow: none !important;
  } 
  #popup.active{
      visibility: visible;
    opacity: 1;
    display: block;
  }

}
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}
.dropdown-item
{
    padding:.25rem .5rem !important;
}
.dropdown-item.dropdown-toggle::after {
    float: right;
    margin-top: 6px;
}
.service-hero {
    width: 100%;
    height: 80vh; /* adjust height as needed */
    overflow: hidden;
}
.service-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills entire section without distortion */
}
.form-check-input:checked
{
background-color: #198754 !important;
  border-color: #198754 !important;
}
.form-control:focus{
    border:2px solid #198754 !important;
    box-shadow: none !important;
}
/* Align icons nicely */
.navbar .nav-item {
  display: flex;
  align-items: center;
}

/* Default icon style */
.navbar .nav-link i {
  font-size: 16px;
  transition: all 0.3s ease;
}

/* LinkedIn color */
.fa-linkedin {
  color: #0077b5;
}

/* Instagram gradient-style color */
.fa-instagram {
  color: #e4405f;
}

/* Hover effect */
.navbar .nav-link:hover i {
  transform: translateY(-2px) scale(1.1);
  opacity: 0.85;
}