/********** Template CSS **********/
:root {
    --primary: #0f3852;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
    --title: #3aa0de; 
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* CUSTOM STYLES */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Set the height as desired */
    overflow: hidden;
    background: url('../img/carousel-3.jpg') center center / cover fixed no-repeat;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Overlay text */
.content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 1;
}


/* Align navbar to the right within the container */
.navbar {
    justify-content: flex-end;
    background: transparent;
}

.navbar .navbar-nav .nav-link {
    color: var(--primary); /* Adjust as needed */
    font-weight: 500;
}
.navbar .navbar-nav .nav-item.nav-link.active{
    color: var(--title); /* Adjust as needed */
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--title); /* or any color you prefer */
}

#home-banner {
    position: absolute;
    top: 0;
    z-index: 99999;
    background-color: rgba(252, 252, 252, 0.759);
    
}

.container-xxl.py-5.intro {
    
    position: relative;
    overflow: hidden;
    background: url('../img/mountain1.jpeg') center center / cover fixed no-repeat;
    height: 25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    margin-right: 0 !important;
    margin-left: 0 !important;
    width: 100vw !important;
    max-width: unset;
}

.container-xxl.py-5.intro p {
    color: var(--primary);
}
.container-xxl.py-5.intro h2 {
    color: var(--primary);
}

.text-primary {
    color: var(--title) !important;
}

.experience-section {
    background-color: #f8f5e9; /* Light beige background */
    color: #333;
    width: 100vw !important;
    max-width: unset;
}

.experience-section h2 {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary) /* Darker color for heading */
}

.experience-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.image-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
}

.image-item {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Custom Shapes */
/* .shape1 {
    clip-path: polygon(25% 0%, 100% 15%, 85% 100%, 10% 85%, 0% 25%);
}

.shape2 {
    clip-path: polygon(50% 0%, 100% 25%, 75% 100%, 20% 80%, 0% 40%);
}

.shape3 {
    clip-path: polygon(20% 0%, 90% 5%, 100% 75%, 40% 100%, 0% 50%);
}

.shape4 {
    clip-path: polygon(30% 0%, 90% 10%, 100% 80%, 40% 100%, 5% 60%);
}

.shape5 {
    clip-path: polygon(10% 10%, 80% 0%, 100% 70%, 40% 100%, 0% 50%);
} */


#footer {
    
}
.container-xxl.py-5.services {
    background-color: #f8f5e9 !important;
    max-width: unset;
    margin-left: none;
    margin-right: none;
}

.container-xxl.py-5.services h1,h3 {
    color: var(--primary);
}


.row.g-4.service-grid {
    display: flex;
    gap: 0;
    justify-content: space-around;
    flex-wrap: wrap;
}

.row.g-4.service-grid div {
    display: flex;
    justify-content: center;
}

.service-card {

    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
    height: 200px;

}
.service-card > *{
    text-align: center;
 }

 .service-card .description-title {
    color: var(--primary);
    font-size: 24px;
 }
 .service-card .description {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
 }

 /* General container styling */
.vision-section {
    display: flex;
    max-width: 100%;
    height: 100vh;
}

/* Left section styling */
.left-section {
    position: relative;
    width: 60%; /* Take up 70% of the width */
    background-image: url('../img/mountain3.jpeg'); /* Main background image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.left-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Black overlay with 50% opacity */
    z-index: 1; /* Ensure the overlay appears above the background image */
}


.overlay-text {
    z-index: 90000;
    top: 100px;
    left: 30px;
    position: absolute;
    color: white;
    text-align: left;
    padding: 1rem;

}

.overlay-text h2 {
    color: var(--title);
    font-size: 3rem;
    margin: 0;
}

.overlay-text p {
    font-size: 1.5rem;
}

/* Right section with two smaller images */
.right-section {
    width: 40%; /* Take up 30% of the width */
    display: flex;
    flex-direction: column;
    gap: 0; /* Space between images */
}

.small-image {
    width: 100%;
    height: 50%; /* Each image takes half of the right section */
    object-fit: cover;
}

.main-service-section {
    padding: 50px;
}

/* Parallax Section Styling */
.parallax-section-project {
    position: relative;
    background-image: url('../img/mountain2.jpeg'); /* Add your image path here */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Black overlay with transparency */
.parallax-section-project .overlay {
    position: relative;
    z-index: 2; /* Ensure text is above overlay */
    max-width: 800px;
    padding: 20px;
}

.parallax-section-project::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1; /* Ensure overlay is above background but below text */
}

/* Text Styling */
.parallax-section-project h1 {
    color: var(--title);
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.parallax-section-project h2 {
    color: var(--title);
    font-size: 1.5rem;
    margin-top: 10px;
    font-weight: normal;
}

.parallax-section-project p {
    font-size: 1rem;
    margin-top: 20px;
    line-height: 1.6;
    color: #f0f0f0; /* Slightly lighter color for contrast */
}

