
.list-style-none{
    list-style-type: disc;
}

.blog-item {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure all items stretch to the same height */
}

.blog-content {
    flex-grow: 1; /* This allows the content area to take up available space */
}

.blog-img {
    height: 250px; /* Set a fixed height for the images */
    overflow: hidden; /* Hide any overflow */
}

.blog-img img {
    height: 100%; /* Make the image fill the container */
    width: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure the image covers the container without distortion */
}


/* Initially hide the logo */


/* .navbar {
    background: transparent;
    transition: background 0.3s ease;
} */
.navbar {
    background-color: rgba(239, 239, 239, 0.95) !important; /* Slightly transparent white */
}
/* Container around the logo */
.navbar-brand {
    position: relative;
    display: inline-block;
    padding: 0; /* Remove default padding */
}


/* Container around the logo */
.navbar-brand {
    position: relative;
    display: inline-block;
    padding: 0; /* Remove default padding */
}

/* Circle background behind the logo when the class is added */
/* .circle-background::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; 
    height: 80px; 
    background-color: white; 
    border-radius: 50%; 
    z-index: -1; 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); 
} */

/* Style for the logo image */
.navbar-brand img {
    position: relative;
    z-index: 1; /* Ensure the image appears above the circle */
}

/* Ensure all service items have the same height */
.service-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.logo-image {
    height: 1em; /* Align the image height to the text height */
    /* margin: 0 0.2em; Add some spacing between the text and image */
}


.bestmatch .bestmatch-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px;
    margin-right: 30px; /* Mirrored */
}

.bestmatch .bestmatch-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: -20px;
    left: 0; /* Mirrored */
    border-radius: 10px;
    background: var(--bs-secondary);
}

.bestmatch .bestmatch-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    right: -20px; /* Mirrored */
    bottom: 20px;
    border-radius: 10px;
    background: var(--bs-secondary);
}

.bestmatch .bestmatch-img .bestmatch-exp {
    position: absolute;
    top: 0;
    right: 0; /* Mirrored */
    padding: 20px;
    font-size: 30px;
    font-weight: bold;
    background: var(--bs-secondary);
    color: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    margin-top: -20px;
    margin-right: -20px; /* Mirrored */
    border-radius: 10px;
}


#list{ 
    color: green; 
    background: white; 
    font-size: 30px; 
} 

li{ 
    list-style: none; 
} 


li::before{ 
    padding-right: 1rem;
    content: "\00BB"; 
} 


 /* Team section */
.team-member ul.social-links {
    top: 0;
  }
  
  .team-member ul li {
    padding: 5px;
    transform: rotatey(-90deg) perspective(100px);
    transform-origin: left;
    cursor: pointer;
    transition: .5s ease-in-out;
    background-color: var(--primary-color);
  }
  
  .team-member ul li:first-of-type {
    transition-delay: .3s;
  }
  
  .team-member ul li:nth-of-type(2) {
    transition-delay: 0.6s;
  }
  
  .team-member ul li:nth-of-type(3) {
    transition-delay: 0.9s;
  }
  
  .team-member ul li:last-of-type {
    transition-delay: 1.3s;
  }
  
  .team-member:hover ul li {
    transform: rotatey(0deg);
  }
  
  
  /* Zoom Effect*/
  .zoom-effect {
    position: relative;
    overflow: hidden;
  }
  
  .zoom-effect img {
    max-width: 100%;
    -webkit-transition: 0.6s ease-out;
    -moz-transition: 0.6s ease-out;
    transition: 0.6s ease-out;
  }
  
  .zoom-effect:hover img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  
  .zoom-effect:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    opacity: 0;
    -moz-transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  
  .zoom-effect:hover:before {
    opacity: 1;
    cursor: pointer;
  }

  /* Set max-height and ensure content doesn't overflow */
.max-height {
    max-height: 400px;
    overflow: hidden; 
    display: flex;          /* Enable flexbox */
    flex-direction: column; /* Arrange children in a column */
    justify-content: center; /* Center content vertically */
    align-items: center;    /* Center content horizontally */
    text-align: center;     /* Ensure text is centered */
}

.image-holder {
    display: flex;
    justify-content: center; /* Center image horizontally */
    align-items: center;     /* Center image vertically */
    width: 100%; 
    height: 100%;
}

.image-holder img {
    object-fit: cover; /* Ensure image covers the container */
    height: 100%;      
    width: 100%;       
}

.team-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center card body content */
    align-items: center;     /* Center card body content */
    height: 100%;            /* Ensure card body takes full height */
    padding: 0.5rem;         /* Adjust padding if necessary */
}


 /* Notification card in contact  */

 /* Notification Container */
.notification {
    position: fixed;
    top: 20px;
    right: -400px; /* Start offscreen */
    padding: 15px 30px;
    background-color: #28a745; /* Success color */
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 9999; /* Ensure it's above other elements */
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: right 0.5s ease; /* Smooth slide-in effect */
}

.notification.show {
    right: 20px; /* Slide-in to this position */
}

.close-notification {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}
/* Custom styles for the specific card layout */
/* Custom styles for the specific card layout */
.custom-feature-item {
    display: flex;
    align-items: center;
    text-align: left;
    background: var(--bs-white);
    border-radius: 10px;
    transition: 0.5s;
}

.custom-feature-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.custom-feature-icon {
    width: 100px; /* Set fixed width */
    height: 100px; /* Set fixed height */
    min-width: 100px; /* Ensure the width doesn't shrink */
    min-height: 100px; /* Ensure the height doesn't shrink */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    flex-shrink: 0; /* Prevent icon container from shrinking */
}

.custom-feature-icon i {
    transition: 0.5s;
}

.custom-feature-item:hover .custom-feature-icon i {
    transform: rotate(360deg);
}

/* Ensure the text takes the remaining space */
.custom-feature-item div.flex-grow-1 {
    flex: 1; /* Allows text container to take up remaining space */
    overflow-wrap: break-word; /* Ensures text wraps within its container */
}

/* Optional styling for the FAQ section */
.faq-list {
    padding-left: 0;
}

.faq-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.faq-item:not(:last-child) {
    margin-bottom: 15px;
}

.faq-question {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.faq-answer {
    margin: 0;
    color: #666;
}

/* Custom class for multi-line ellipsis */
.text-truncate-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 5   ; /* Number of lines you want to display */
    max-height: calc(1.5em * 5); /* Adjust based on line height, 4 is the number of lines */
    text-overflow: ellipsis;
    line-height: 1.5em;
}

.service-text-truncate-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3   ; /* Number of lines you want to display */
    max-height: calc(1.5em * 3); /* Adjust based on line height, 4 is the number of lines */
    text-overflow: ellipsis;
    line-height: 1.5em;
}



/* footer image */
.footer-img{
    max-height: 100px;
    object-fit: contain;
    flex:1;
}

/* @media screen and (max-width) {
    
} */