/* ===============================
   Global Default
   =============================== */
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

/* ===============================
   Pre-Loader 
   =============================== */
#dvPreLoader {
	/*background: url(../images/loader.gif) no-repeat center center #fff;*/
  display: flex;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: #504e4e98; /* background while loading */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  border-top: 4px solid #27b351;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-left: 4px solid #1635c2;
  border-bottom: 4px solid transparent;
  animation: rotation 0.5s linear infinite reverse;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

/* ===============================
   Top Wrapper
   =============================== */
.top-wrapper {
    width: 100%;
    background-color: #0f151c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
}

/* Keep main content below the fixed top bar + header */
main {
    padding-top: 80px;
}

/* Ensure anchored sections display below the fixed header */
html {
    scroll-padding-top: 80px;
}
.top-wrapper a{
    color: #dcdbe4;
    font-size: 16px;
    transition: color 0.3s ease;
    text-decoration: none;
    
}
.top-wrapper a:hover {
    color: #38d610ce;
    transform: translateY(-3px);
    
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background-color: #27b351;
    transform: translateY(-3px);
    color: #fff !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-wrapper {
        padding: 10px;
        display: block;
    }
    .top-wrapper-left{
         display: flex;
         justify-content: space-between;
    }
    .top-wrapper-right{
        display: none;
    }
    .social-icons {
        gap: 15px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .top-wrapper {
        padding: 10px 10px;
        display: block;
    }
    .top-wrapper-left{
         display: flex;
         justify-content: space-between;
    }
    .top-wrapper-right{
        display: none;
    }
    .social-icons {
        gap: 12px;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}
.header {
    position: fixed;
    top: 44px;
    left: 0;
    width: 100%;
    align-items: center;
    background-color: #27b351;
    /*padding: 15px;*/
    z-index: 1040;
}.carousel-item {
    position: relative;
    height: 600px;
}

.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 70, 8, 0.6), rgba(5, 61, 104, 0.411));
    z-index: 1;
}

/* Slide-specific overlay gradients */
.carousel-item:nth-child(1)::before {
    background: linear-gradient(135deg, rgba(13, 19, 26, 0.65), rgba(31, 70, 6, 0.45));
}
.carousel-item:nth-child(2)::before {
    background: linear-gradient(225deg, rgba(2, 56, 13, 0.829), rgba(21, 16, 31, 0.726));
}
.carousel-item:nth-child(3)::before {
    background: linear-gradient(45deg, rgba(8, 28, 82, 0.678), rgba(22, 13, 0, 0.774));
}
.carousel-item:nth-child(4)::before {
    background: linear-gradient(315deg, rgba(1, 29, 26, 0.65), rgba(7, 0, 19, 0.74));
}
.carousel-item:nth-child(5)::before {
    background: linear-gradient(230deg, rgba(62, 62, 77, 0.829), rgba(23, 21, 32, 0.692));
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    z-index: 0;
    filter: brightness(0.60);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 2;
    /*background: rgba(0,0,0,0.6);*/
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
   
}

.carousel-caption h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    animation: slideInFromLeft 0.5s ease-out;
 
}

.carousel-caption p {
    font-size: 1.25rem;
    margin-top: -1rem;
    margin-bottom: 2.5rem;
    animation: slideInFromRight 1s ease-out 1s both;
    
}

.carousel-caption .btn {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    border-radius: 10px;
    background-color: #161618c7;
    padding: 10px 30px;
    border-color: #141414c0;
    animation: slideInFromBottom 1.5s ease-out 1.5s both;
   
    
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    80% {
        transform: translateY(-10px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/* ===============================
   Service Section
   =============================== */
.services-section{
    background: #f8f9fa;
    min-height: 600px;
    padding: 10px;
}

.services-section h1 {
    color: #27b351;
    position: relative;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
}

.services-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: #27b351;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.service-icon {
    margin-right: 20px;
    font-size: 3rem;
    color: #27b351;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    color: #27b351;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-content .btn {
    background-color: #27b351;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.service-content .btn:hover {
    background-color: #218838;
    color: #fff;
}
/* ===============================
   Portfolio Section
   =============================== */
.portfolio-section{
    background: #020e29cb;
    min-height: 600px;
    padding: 10px;
}

.portfolio-section h2 {
    color: #27b351;
    position: relative;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
}

.portfolio-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: #27b351;
}

.portfolio-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.portfolio-image {
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 20px;
    text-align: center;
}

.portfolio-content h4 {
    color: #27b351;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.portfolio-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.portfolio-content .btn {
    background-color: #27b351;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.portfolio-content .btn:hover {
    background-color: #218838;
    color: #fff;
}
/* ===============================
   About Us Section
   =============================== */
.about-section{
    background: #edededc4;
    min-height: 600px;
    padding: 10px;
}
.about-section h2 {
    color: #27b351;
    position: relative;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: #27b351;
}








.about-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-stats {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-stats h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.about-stats p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-us-points{
    color:#27b351 ;
    padding-right: 10px;
    font-size: 18px;
   
}



/* ===============================
   Contact Us Section
   =============================== */
.contact-section{
    background: #020e29cb;
    min-height: 600px;
    padding: 10px;
}

.contact-section h2 {
    color: #27b351;
    position: relative;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: #27b351;
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 105%;
}

.contact-info h3 {
    color: #27b351;
    margin-bottom: 15px;
}

.contact-info p {
    color: #666;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #27b351;
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h5 {
    color: #27b351;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form .form-label {
    color: #27b351;
    font-weight: 500;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
}

.contact-form .form-control:focus {
    border-color: #27b351;
    box-shadow: 0 0 0 0.2rem rgba(39, 177, 81, 0.25);
}

.contact-form .btn {
    background-color: #27b351;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #218838;
    color: #fff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #27b351;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #218838;
}


/* ===============================
   Footer
   =============================== */
   footer:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.85);
    top: 0;
    left: 0;
    z-index: -1;
}
footer {
    background: url(../images/bg_5.png) right 70% no-repeat;
    margin: 0;
    height: 100%;
    position: relative;
    width: 100%;
    background-size:cover;
    padding: 80px 0 10px;
	z-index:9;
	color:#9fa4af;	
	float:left;
	font-size:13px;
	overflow-x:hidden;
}
footer h3 {
	border-bottom:1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 22px;
    margin: 0 0 24px;
    padding-bottom: 16px;
    position: relative;
	color:#fff;
}
footer h3:after {
	background-color: #04990b;
    bottom: -1px;
    content: "";
    left: 0;
    position: absolute;
	height: 3px;
    width: 73px;
}
footer .btn-one {
	padding:4px 20px 8px;
}
footer ul.list {
	margin-top: 25px;
}
footer .list li {
	list-style-type: none;
}
footer .list li a::before {
	position: absolute;
	content: "\f101";
	font-family: fontawesome;
	left: 0;
	transition: color .3s ease;
}
footer .list li a {
	color: #9fa4af;
	margin-top: 15px;
	padding-left: 15px;
	position: relative;
	display:inline-block;
}
footer .list li a:hover, footer .list li a:focus {
	color:#26dd0e;;
}
.working-hours {
	display:inline-block;
	width:100%;
	padding:15px;
}
.working-hours li {
	padding:0 0 5px;
}
.working-hours li span {
 
	display:inline-block;
	color:#7f7f7f;
}
footer .address li {
    color: #9fa4af;
    margin-bottom: 10px;
}
footer .address li a {
    color: #9fa4af;	
}
footer .address li i {
    color: #0baf2e;
    font-size: 18px;
    line-height: normal;
    vertical-align: top;
    display: inline-block;
    margin-top: 3px;
    width: 30px;
    height: auto;
}
footer .address li span {
    display: inline-block;
}
.copyright {
	margin-top: 50px;
	width:100%;
}
.copyright hr {
	background-color: #ffffff;
	margin-top: 0;
	opacity: 0.2;
}
.copyright span.color {
	color:#ff9c1b;
}
.copyright p {
	color: #9fa4af;
}