

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: none;
}

.btn.btn-primary:hover {
    background: #222222;
}

.btn.btn-secondary {
    color: var(--bs-white);
    border: none;
   
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
}
/*** Topbar Start ***/
.topbar {
    padding: 8px;
    background: #222222;
}
/*** Topbar End ***/

/*** Navbar ***/
.sticky-top {
    transition: 1s;
}
/* General Navbar Styles */
.navbar .navbar-nav .nav-link,
.navbar .navbar-nav .nav-item.nav-link {
    color: var(--bs-dark);
    position: relative;
    padding: 30px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    transition: color 0.5s ease;
    z-index: 99;
}

.navbar .navbar-nav .nav-item {
    margin: 0 25px;
}

.navbar-brand {
    padding: 0; /* Matches the inline `p-0` class */
}

.navbar-brand img {
    width: 390px;
    height: 80px;
    display: block;
    max-width: 100%; 
    height: auto; 
}



/* Responsive Adjustments */
@media (max-width: 1024px) {
    .navbar-brand img {
        width: 500px; 
    }
}



/* Hover Effects for Navbar Items */
.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 2px solid #8F8F8E;
    opacity: 0;
    transition: 0.5s;
    z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
    border-bottom: 0;
    border-right: 0;
}

.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
    border-top: 0;
    border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: #222222 !important;
}

/* Navbar Toggler - Base Styles */
.navbar .navbar-toggler {
    padding: 8px 15px;
    color: white; /* Ensure white icon color */
    background: #080808; /* Dark background for all devices */
    border: none; /* Optional: Remove border for a cleaner look */
    box-shadow: none; /* Remove shadow for consistency */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar .navbar-toggler {
        padding: 10px 20px; 
        font-size: 18px; /* Increase size for better visibility */
        color: white;
        background: #080808; /* Reapply dark background */
    }
}

@media (max-width: 768px) {
    .navbar .navbar-toggler {
        padding: 12px 25px; 
        font-size: 20px; 
        color: white;
        background: #080808;
    }
}

/* Fix Specificity Issues */
.navbar .navbar-toggler {
    color: white !important; 
    background: #080808 !important; 
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar .navbar-nav .nav-item::after,
    .navbar .navbar-nav .nav-item::before,
    .navbar .navbar-nav .nav-item:hover::after,
    .navbar .navbar-nav .nav-item:hover::before,
    .navbar .navbar-nav .nav-item.active::after,
    .navbar .navbar-nav .nav-item.active::before {
        display: none;
    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
        font-size: 16px; 
    }

    .navbar .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar-brand img {
        width: 290px; 
    }
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background-color: #999999;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Carousel Start ***/

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .mb-3 {
        font-size: 1.4rem;
    }

    .mb-4 {
        font-size: 1.2rem;
    }
}
@media (max-width: 421px) {
  .navbar .navbar-toggler {
   
    margin: auto;
   
    margin-top: 20px;
}
.d-flex.justify-content-end.align-items-end.h-100 {
  display: block !important;
  margin: auto;
  text-align: center;
  width: 100%;
}
}

/*** Carousel End ***/

.bg-glass {
    background: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(2px); 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0.1; 
}

.carousel .carousel-inner .carousel-item {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.carousel .carousel-inner .carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

@keyframes image-zoom {
    0%  {width: 100%; height: 100%; -webkit-filter: blur(0px); opacity: 1;}
    25% {width: 115%; height: 115%; -webkit-filter: blur(3px); opacity: 0.9;}
    50% {width: 130%; height: 130%; -webkit-filter: blur(10px); opacity: 0.7;}
    75% {width: 115%; height: 115%; -webkit-filter: blur(3px); opacity: 0.9;}
    100% {width: 100%; height: 100%; -webkit-filter: blur(0px); opacity: 1;}
}

@media (min-width: 992px) {
    .carousel .carousel-inner .carousel-item img {
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-link, .navbar .navbar-nav .nav-item.nav-link {

  padding: 10px 15px;
}
    .carousel .carousel-inner .carousel-item {
        height: 60vh;
    }
    .carousel .carousel-inner .carousel-item img {
        height: 60vh;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
   .d-flex.justify-content-end.align-items-end {
    display: block !important;
    text-align: center;
}
.mak-k {
 
    text-align: center;
    margin-left: 0px;
}
    .carousel-item .carousel-caption h1 {
        font-size: 20px;
    }

    .carousel-item .carousel-caption p {
        font-size: 12px;
    }

    .carousel-item .carousel-caption a {
        padding: 10px 20px;
        font-size: 16px;
    }
}


@media (max-width: 412px) {
    .carousel-caption p {
        font-size: 18px !important;  
    }

    .carousel-caption h1 {
        font-size: 1.5rem !important; 
    }

    .carousel-caption .sub-para {
        font-size: 16px !important;  
    }

    .carousel-caption p, .carousel-caption h1 {
        text-align: center; 
    }

    .carousel-caption {
        padding: 0 10px;
    }
}

/* Make the carousel image responsive */
.carousel-inner img {
    width: 100%;
    height: auto;
}
/* Black Button */
.btn-black {
    background-color: #000; /* Black color */
    color: #fff; /* White text color */
    border: none; /* No border */
}

.btn-black:hover {
    background-color: #333; /* Slightly lighter black on hover */
    color: #fff; /* Keep text white */
}

.text-secondary {
    color: #000;
}

/* Adjusting for screens 540px and below */
@media (max-width: 540px) {
    /* Adjust the paragraph text size */
    .carousel-caption p {
        font-size: 1rem ;  /* Smaller font size to fit better on smaller screens */
        margin-bottom: 10px;  /* Ensure space between paragraphs */
    }

    /* Adjust heading size */
    .carousel-caption h1 {
        font-size: 1.2rem ;  /* Make the heading smaller for better fitting */
        margin-bottom: 10px;  /* Ensure some space below the heading */
    }

    /* Adjust the sub-paragraph size */
    .carousel-caption .sub-para {
        font-size: 1rem ;  /* Smaller font size to fit better */
        line-height: 1.5;  /* Improve readability with better line height */
    }

    /* Center all text and add some spacing */
    .carousel-caption p, .carousel-caption h1, .carousel-caption .sub-para {
        text-align: center;  /* Center align the text */
        line-height: 1.4;  /* Improve readability */
    }

    /* Adjust padding for carousel caption */
    .carousel-caption {
        padding: 0 1rem;  /* Provide padding to prevent content from being too close to the edges */
    }

    /* Adjust the button size */
    .carousel-caption .btn {
        font-size: 1rem ;  /* Make button text smaller */
        padding: 10px 15px;  /* Reduce padding to make the button fit better */
        margin-top: 10px;  /* Add some space above the button */
    }

    /* Ensure image doesn't distort and fits the container */
    .carousel-item img {
        object-fit: cover;  /* Ensure the image covers the area properly without distortion */
        height: auto;  /* Maintain aspect ratio */
    }
}


@media (max-width: 768px) {
    .carousel-caption{
        left: 0px !important;
        right: 0px !important;
    }
    .carousel-caption p {
        font-size: 22px !important;  
    }

    .carousel-caption h1 {
        font-size: 1.8rem !important;  
    }

    .carousel-caption .sub-para {
        font-size: 19px !important;  
    }

    .carousel-caption p, .carousel-caption h1 {
        text-align: center;
    }

    .carousel-caption {
        padding: 0 20px; 
    }
}

.carousel .carousel-inner .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.carousel .carousel-indicators {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    z-index: 5;
}

.carousel .carousel-indicators li {
    margin-right: 30px !important;
    width: 10px;
    height: 10px;
    border: 6px solid #035230;
    background: var(--bs-white);
    transition: 0.5s;
}

.carousel .carousel-indicators li.active {
    border: 10px solid #035230;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    background: transparent;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    left: 0;
    padding: 25px 30px;
    background: #035230;
}

.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    right: 0;
    padding: 25px 30px;
    background: #035230;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: #035230;
    color: var(--bs-white);
}

.carousel-item .carousel-caption p {
    font-size: 20px;
}
@media (max-width: 412px) {
    .carousel-caption h1 {
        font-size: 28px; 
        margin-top: 4%; 
    }

    .carousel-item .carousel-caption p {
        font-size: 12px; 
        margin-bottom: 15px;
    }

    .carousel-item img {
        width: 100%; 
        height: auto; 
        object-fit: cover; 
    }

    .carousel-item .carousel-caption a {
        font-size: 14px; 
        padding: 10px 20px; 
    }
}
@media (max-width: 1024px) {
    .carousel .carousel-inner .carousel-item img {
        height: auto;
        width: 100%;
        object-fit: cover; 
    }

    .carousel-item .carousel-caption h1 {
        font-size: 2.5rem; 
        margin-top: 4%;
    }

    .carousel-item .carousel-caption p {
        font-size: 16px; 
        margin-bottom: 20px; 
    }

    .carousel-item .carousel-caption a {
        font-size: 16px; 
        padding: 12px 25px; 
    }
}
@media (max-width: 540px) {
    .carousel .carousel-inner .carousel-item img {
        height: auto;
        width: 100%;
        object-fit: cover;
    }

    .carousel-item .carousel-caption h1 {
        font-size: 1.8rem; 
        margin-top: 5%; 
    }

    .carousel-item .carousel-caption p {
        font-size: 14px; 
        margin-bottom: 20px; 
    }

    .carousel-item .carousel-caption a {
        font-size: 14px; 
        padding: 10px 20px; 
    }
}


/* Adjusting font size for smaller screens */
@media (max-width: 412px) {
    .carousel-caption p {
        font-size: 18px !important;  /* Decrease font size for small devices */
    }

    .carousel-caption h1 {
        font-size: 1.5rem !important;  /* Make h1 smaller */
    }

    .carousel-caption .sub-para {
        font-size: 16px !important;  /* Reduce sub-paragraph font size */
    }

    .carousel-caption p, .carousel-caption h1 {
        text-align: center; /* Center the text */
    }

    .carousel-caption {
        padding: 0 10px; /* Add padding to ensure content is not too close to edges */
    }
}



/*** About Start ***/
.about .about-item-content-img {
    border: 4px solid;
}

.about .about-item-image {
    position: relative;
    background: var(--bs-light);
    background-image: url(../img/about-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.about .about-item-image .img-1 {
    margin-bottom: 250px; 
    margin-right: 0;
    border: 4px solid;
    z-index: 3;
}

.about .about-item-image .img-2 {
    margin-top: 250px; 
    margin-left: 0;
    border: 4px solid;
    z-index: 3;
}


.about .about-item-image::before {
    width: 80%;
    height: 80%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-style: dotted;
    border-color: var(--bs-white);
    z-index: 2;
}


.about .about-item-image .about-item-image-content {
    width: 55%;
    height: 55%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    z-index: 4;
}

.about .about-item-image .about-item-image-effect {
    position: absolute;
    top: 0;
    right: 0;
}
/*** About End ***/


  /* Custom styles */
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
  }

  
  .values-list li {
    font-size: 1.2rem;
    color: #555;
  }
  .section-content p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size:28px;
    font-weight:lighter;
    color: #000000;
    
  }
  .section-content li {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size:17px;
    font-weight:lighter;
    color: #f8faf8;
    
  }

  
 
 
  .values-list {
    padding-left: 0;
  }

  .values-list .list-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
  }

  .text-muted {
    color: #6c757d !important;
  }

  .section-content {
    background-color: #fdfeff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .list-item {
    margin-bottom: 10px;
  }
  .values-list,
  .mission-list {
    color: #333; /* Dark grey text */
  }




  .section-img {
    width:95%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2px;
  }

  .about-wrapper {
    background-color: #e9ecef;
    padding: 3rem 0;
}

.about-layout {
    max-width: 1200px;
    margin: auto;
}

.about-img img {
    border-radius: 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}



@media (max-width: 768px) {
    .about-info {
        text-align: center;
    }

    .about-heading {
        font-size: 2rem;
    }

    .about-paragraph {
        font-size: 1rem;
    }
}


.heading{
    color: #222222;
    font-size: 30px;
}

.products-headings{

    color: #222222;
    font-size: 30px;

}
.about-headings{

    color: #222222;
    font-size: 30px;

}
.products-para{
    color: #222222;
    font-size: 20px;
    
}

.accordion-body{
    color: #222222;
    font-size: 20px;

}

.sub-para{
    color: white;
    font-size: 20px;
    
}
.responsive-para {
    font-size: 20px; 
    color: white;
    margin: 0 auto; 
    text-align: center;
    line-height: 1.6;
    padding: 0 15px;
}

@media (max-width: 576px) {
    .responsive-para {
        font-size: 16px; 
        line-height: 1.5; 
    }
}

.products-img {
    width:95%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2px;
  }
.automotive-container li{
    color: #222222;
    font-size: 20px;

}
.aerospace-container li{
    color: #222222;
    font-size: 20px;

}

/*** Features Start ***/
.feature-section {
    background-color: gray;
}

.feature-card {
    background: #fff;
    border: 1px solid #ddd;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px; /* Added padding for consistent spacing */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 170px;
    height: 170px;
    background: white;
    border-radius: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-shrink: 0; 
}
.feature-icon img {
    max-width: 70%; 
    height: auto;
}



.feature-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.feature-card p {
    font-size: 18px;
    color: #666;
}
.sub-para {
    font-size: 20px;
    color: white;
    text-align: center;
}

.research-innovation .feature-icon {
    background: white;
}

.quality .feature-icon {
    background: white;
}

.sustainability .feature-icon {
    background: white;
}

.customer-centricity .feature-icon {
    background:white;
}

/*** Features End ***/




/*** FAQ'S Start ***/
.faq {
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/bg.png);
    object-fit: cover;
    z-index: -1;
}

.faq .faq-img {
    position: relative;
}

.faq .faq-img .faq-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.accordion-body {
    font-size: 20px;
}



/*** FAQ'S End ***/
/*** Services Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

.service .service-item .service-content {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%; 
    left: 0; 
    transform: translateY(-50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.service .service-item:hover .service-content {
    opacity: 1;
}

.service .service-item:hover .service-content a.fs-4 {
    color: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover .service-content a.fs-4:hover {
    color:white;
}

.service .service-item .service-tytle {
    position: absolute;
    width: 100%;
    height: 80px; 
    bottom: 0; 
    right: 0;
    background: var(--bs-white);
    display: flex;
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-tytle {
    margin-right: -100%;
}
/*** Services End ***/

/*** Projects Start ***/
.project .project-item .project-img {
    position: relative;
}

.project .project-item .project-img::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    background: #035230;
    z-index: -1;
}

.project .project-item .project-content a.h4 {
    transition: 0.5s;
}

.project .project-item:hover .project-content a.h4:hover {
    color: #035230;
}
/*** Projects End ***/


/*** Team Start ***/
.team .team-item {
    position: relative;
    z-index: 1;
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .2);
    transition: 0.5s;
    z-index: 2;

}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    transform: scale(-1);
    margin-bottom: 100%;
    background: transparent;
    transition: 0.5s;
    opacity: 0;
    z-index: 5;
    
}

.team .team-item:hover .team-img .team-icon {
    transform: scale(1);
    margin-bottom: 0;
    opacity: 1;
}

.team .team-item .team-border-style-1,
.team .team-item .team-border-style-2 {
    width: 50%;
    height: 50%;
    position: absolute;
    background: #035230;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item .team-border-style-1 {
    top: 0;
    left: 0;
}

.team .team-item .team-border-style-2 {
    right: 0;
    bottom: 0;
}

.team .team-item .team-border-style-3,
.team .team-item .team-border-style-4 {
    width: 0;
    height: 0;
    position: absolute;
    background: #035230;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item .team-border-style-3 {
    top: 0;
    right: 0;
}

.team .team-item .team-border-style-4 {
    left: 0;
    bottom: 0;
}

.team .team-item:hover .team-border-style-1,
.team .team-item:hover .team-border-style-2 {
    width: 0%;
    height: 0%;
}

.team .team-item:hover .team-border-style-3,
.team .team-item:hover .team-border-style-4 {
    width: 50%;
    height: 50%;
}
/*** Team End ***/
.knowledge-image{
    border-radius: 5%;
    height: 40%;
    width: 50%;
}
/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: #035230;
}
/*** Blog End ***/

/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: #035230;
    padding: 5px 25px;
    border: 1px solid #035230;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: #035230;
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: #035230;
    padding: 5px 25px;
    border: 1px solid #035230;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: #035230;
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    border: 1px solid #035230;
    background: #035230;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border: 1px solid #035230;
    background: #035230;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}
/*** testimonial End ***/

/*** Contact Start ***/
.contact .contact-map {
    position: relative;
    overflow: hidden;
    padding: 20px;
    z-index: 1;
}

.contact .contact-map::before {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    left: 0;
    bottom: 0;
    background:#035230;
    z-index: -1;
}

.contact .contact-map::after {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    top: 0;
    right: 0;
    background: #035230;
    z-index: -1;
}
/*** Contact End ***/

.border-colored {
    border: 12px solid #b2b2b2; 
    border-radius: 8px;
}

.border-colored:hover {
    border-color: #333; 
}

.footer-item p {
    margin: 2px 0; 
    color: #222222;
    font-size: 18px;
    line-height: 1.2;
}
.footer {
    background-color: #f8f9fa;
    color: #6c757d;
}

.footer-item h4 {
    font-weight: bold;
    color:black;
}

.footer-item a {
    color: #222222;
    text-decoration: none;
    font-size: 20px;
    line-height: 2.2; 
}


.footer-item a:hover {
    color: red;
}

.footer-btn .btn-md-square {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


/* Custom button style for ash color */
.btn-ash {
    background-color: #B0B0B0 !important; /* Light ash color */
    color: white; /* White icons/text */
    border: none; /* Optional: Remove border for cleaner look */
}

.btn-ash:hover {
    background-color: #A0A0A0 !important; /* Slightly darker shade on hover */
    color: white;
}

.btn-ash i {
    color: white; /* Ensure the icons are white */
}


/*** Footer End ***/

/*** copyright Start ***/


.copyright {
    background-color:  gray;; /* Optional: Keep the background color black */
    color: #B2B2B2; /* Set ash color for all text, including links */
}

.copyright a {
    color: white; /* Force links to inherit the same ash color */
    text-decoration: none; /* Optional: Remove underline from links */
}
.copyright p {
    color: white; /* Force links to inherit the same ash color */
    text-decoration: none; /* Optional: Remove underline from links */
}


.copyright a:hover {
    color:white; /* Optional: Slightly lighter color on hover for better visibility */
}

/*** copyright end ***/

.service-item .service-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.service-item .service-icon i {
    transition: .2s;
}

.service-item:hover .service-icon i {
    font-size: 60px;
}

.service-container{
    padding-bottom: 2%;
}
.planning-container p{
    font-size: 20px;
}
.make{
    width: 200px;
}
.mak-k{
    margin-bottom: 0px;
    color: #fff;
    margin-left: 15px;
}