
/*** Spinner Start ***/
#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;
}
/*** Spinner End ***/

.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 {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Import Fonts ***/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');



/*** Topbar Start ***/

/* Flexbox settings for topbar links */
.topbar .d-flex {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Align icon and text inside each link */
.topbar .d-flex div {
    display: flex;
    align-items: center;
}

/* Styling for topbar links */
.topbar .d-flex a {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #6c757d; /* Light gray text color */
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Styling for icons inside the links */
.topbar .d-flex a i {
    color: #8DC63F; /* Green color for icons */
    margin-right: 8px;
}

/* Hover effect for links */
.topbar .d-flex a:hover {
    color: #8DC63F; /* Change text color on hover */
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Hide the email and phone on mobile devices */
@media (max-width: 576px) {
    .topbar .col-auto {
        display: none !important;
    }
}

/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: background-color 0.5s ease;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: 0.5s ease;
}

.navbar .navbar-nav .nav-item .nav-link {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: #8DC63F; /* Hover and active green color */
}

.dropdown .dropdown-menu .dropdown-item {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: #8DC63F; /* Green background on hover */
    color: #ffffff;
}

/* Fix for active dropdown items - use green instead of blue */
.dropdown .dropdown-menu .dropdown-item.active,
.dropdown .dropdown-menu .dropdown-item:active {
    background-color: #8DC63F !important;
    color: #ffffff;
}

/*** Dropdown Animation and Position Fix for Desktop ***/
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(20px); /* Start slightly lower */
        transition: all 0.4s ease;
        background: var(--bs-light);
        margin-top: 10px;
        border-radius: 8px;
        top: 100%;
        left: 0;
        position: absolute;
        z-index: 1000;
    }
    .navbar .nav-item:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0); /* Slide up animation */
    }
}

/*** Responsive Navbar for Tablets and Mobiles with Enhanced Animation ***/
@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }
    .navbar .navbar-nav .nav-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar .navbar-nav {
        width: 100%;
        background: var(--bs-light);
        border-radius: 10px;
        padding-bottom: 20px;
        margin-top: 20px;
    }
    .navbar .nav-item .dropdown-menu {
        position: static;
        margin-top: 0;
        background: var(--bs-light);
        border: none;
        box-shadow: none;
        width: 100%;
        padding-left: 15px;
    }
    
    /* Enhanced mobile dropdown styles */
    .navbar .dropdown-menu.show {
        display: block;
    }
    
    /* Animation helpers */
    .navbar .dropdown-menu {
        transition: height 0.3s ease, opacity 0.3s ease;
    }
    
    /* Dropdown toggle indicator */
    .navbar .nav-item.dropdown > a .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }
    
    .navbar .nav-item.dropdown.show > a .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}


/* Animation keyframes */
@keyframes dropdownFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dropdownFadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/*** Navbar End ***/

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');



/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/



/*** Auto Slider1 Start ***/
/* Container for slider */

.ajc-advanced-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background-color: #000;
  }
  
  .ajc-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .ajc-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.05);
    background-color: #000;
    z-index: 0;
    /* Start without transitions, add them only for active elements */
    transition: none;
  }
  
  .ajc-slide.ajc-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .ajc-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .ajc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 2;
  }
  
  .ajc-slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    /* Initially hide content */
    transform: translateY(30px);
    opacity: 0;
    transition: none;
  }
  
  .ajc-slide.ajc-active .ajc-slide-content {
    transform: translateY(0);
    opacity: 1;
    /* Add delay to ensure content appears after image is visible */
    transition: transform 0.7s ease 0.3s, opacity 0.7s ease 0.3s;
  }
  
  .ajc-slide-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    color: #8BC53F;
  }
  
  .ajc-slide-desc {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
    color: #ffffff;
  }
  
  .ajc-slide-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #8BC53F;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .ajc-slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #7ab333;
  }
  
  /* Navigation Controls */
  .ajc-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
  
  .ajc-prev-btn, .ajc-next-btn {
    background: rgba(139, 197, 63, 0.6);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    margin: 0 15px;
    transition: all 0.3s ease;
    z-index: 10;
  }
  
  .ajc-prev-btn:hover, .ajc-next-btn:hover {
    background: rgba(139, 197, 63, 0.9);
    transform: scale(1.1);
  }
  
  .ajc-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .ajc-dot {
    width: 12px;
    height: 12px;
    margin: 0 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .ajc-dot.ajc-active {
    background-color: #8BC53F;
    transform: scale(1.3);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .ajc-slide-title {
      font-size: 3rem;
    }
    
    .ajc-slide-desc {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 768px) {
    .ajc-slide-title {
      font-size: 2.5rem;
    }
    
    .ajc-slide-desc {
      font-size: 1rem;
    }
    
    .ajc-slide-btn {
      padding: 10px 25px;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 576px) {
    .ajc-advanced-slider {
      height: 60vh;
    }
    
    .ajc-slide-title {
      font-size: 2rem;
      margin-bottom: 10px;
    }
    
    .ajc-slide-desc {
      font-size: 0.9rem;
      margin-bottom: 20px;
    }
    
    .ajc-slide-btn {
      padding: 8px 20px;
      font-size: 0.8rem;
    }
  }

/*** Auto Slider1 End ***/



/*** Single Page Hero Header Start ***/
         /*About us*/   
/*----------------------------------------------
  Page Header Styling
----------------------------------------------*/
.bg-page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/aboutus\ header.jpeg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

                /*Our team*/
/*----------------------------------------------
  Page Header2 Styling
----------------------------------------------*/
.bg-page-header2 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Calibration\ Activities.jpg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

            /*Growth Prospects*/
/*----------------------------------------------
  Page Header3 Styling
----------------------------------------------*/
.bg-page-header3 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Calibration\ Activities.jpg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

        /*Business Strategies*/
        /*----------------------------------------------
  Page Header4 Styling
----------------------------------------------*/
.bg-page-header4 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Calibration\ Activities.jpg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

       /*Our Ethics & Morality*/
       /*----------------------------------------------
  Page Header5 Styling
----------------------------------------------*/
.bg-page-header5 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Calibration\ Activities.jpg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }


           /*Goals And Philosophy*/
/*----------------------------------------------
  Page Header6 Styling
----------------------------------------------*/
.bg-page-header6 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Calibration\ Activities.jpg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

       /*Doctrines*/
       /*----------------------------------------------
  Page Header7 Styling
----------------------------------------------*/
.bg-page-header7 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Calibration\ Activities.jpg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }
           /*Our Skillset*/
/*----------------------------------------------
  Page Header8 Styling
----------------------------------------------*/
.bg-page-header8 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Calibration\ Activities.jpg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

       /*Certificates of Achievements*/
       /*----------------------------------------------
  Page Header9 Styling
----------------------------------------------*/
.bg-page-header9 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Calibration\ Activities.jpg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

           /*Why TAC*/
    /*----------------------------------------------
  Page Header10 Styling
----------------------------------------------*/
.bg-page-header10 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Calibration\ Activities.jpg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }
  
  

       /*Calibration Activities*/
       /*----------------------------------------------
  Page Header11 Styling
----------------------------------------------*/
.bg-page-header11 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Calibration\ Activities\ Header.jpg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

           /*Gas Detection Activities*/
/*----------------------------------------------
  Page Header12 Styling
----------------------------------------------*/
.bg-page-header12 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Gas\ Detection\ Activities\ Header.jpg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

       /*E&I Services*/
       /*----------------------------------------------
  Page Header13 Styling
----------------------------------------------*/
.bg-page-header13 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/E&I\ Services\ Header.jpg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

           /*Telecom & Security systems*/
/*----------------------------------------------
  Page Header14 Styling
----------------------------------------------*/
.bg-page-header14 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Telecom\ &\ Security\ Systems\ Header.jpeg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

       /*Ex services*/
       /*----------------------------------------------
  Page Header15 Styling
----------------------------------------------*/
.bg-page-header15 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Ex\ Services\ Header.jpeg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

           /*Testing*/
/*----------------------------------------------
  Page Header16 Styling
----------------------------------------------*/
.bg-page-header16 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Testing\ Services\ Header.jpeg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

       /*Our Projects*/
       /*----------------------------------------------
  Page Header17 Styling
----------------------------------------------*/
.bg-page-header17 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Our\ Projects\ Header.jpg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

           /*Contact US*/
/*----------------------------------------------
  Page Header18 Styling
----------------------------------------------*/
.bg-page-header18 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(141, 197, 63, 0.3)),
                url('../img/Contact\ US\ Header.jpg') center center no-repeat;
    background-size: cover;
    height: 160px;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-header-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
  }

/*** Single Page Hero Header End ***/



/*** about us start ***/

.text-ajc {
    color: #8DC53F;
  }
  
  .about-us-section .lead {
    font-size: 17px;
    color: #6c757d;
  }
  
  .about-us-section h4, h5 {
    font-weight: 600;
  }
  
  .about-us-section i {
    display: block;
    margin-bottom: 10px;
  }
  
  
/*** about us end ***/


/*Our Team*/
.text-ajc {
    color: #8DC53F;
  }
  
  .team-members {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .team-box {
    display: flex;
    justify-content: flex-start;
  }
  
  .team-box.right {
    justify-content: flex-end;
  }
  
  .team-content {
    background-color: #fff;
    padding: 25px 30px;
    border-left: 4px solid #8DC53F;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  .team-content h5 {
    font-size: 18px;
    font-weight: 600;
  }
  
  .team-content p {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .team-box,
    .team-box.right {
      justify-content: center;
    }
    .team-content {
      width: 100%;
    }
  }
   
/*** Our Team End ***/


/***Growth Prospects Start***/
.text-ajc {
    color: #8DC53F;
  }
  
  .growth-card {
    transition: transform 0.3s ease;
  }
  
  .growth-card:hover {
    transform: translateY(-6px);
  }
  
  .growth-card i {
    color: #8DC53F;
  }
  

/***End of Growth Prospects***/
.text-ajc {
    color: #8DC53F;
  }
  
  .strategy-card {
    transition: transform 0.3s ease;
  }
  
  .strategy-card:hover {
    transform: translateY(-6px);
  }
  
  .strategy-card i {
    color: #8DC53F;
  }
  

/***Business Strategies***/
.text-ajc {
    color: #8DC53F;
  }
  
  .strategy-card {
    transition: transform 0.3s ease;
  }
  
  .strategy-card:hover {
    transform: translateY(-6px);
  }
  
  .strategy-card i {
    color: #8DC53F;
  }
  
/***End of Business Strategies***/



/*** Our Ethics & Morality Start ***/

.text-ajc {
    color: #8DC53F;
  }
  
  .ethics-card {
    transition: transform 0.3s ease;
  }
  
  .ethics-card:hover {
    transform: translateY(-6px);
  }
  
  .ethics-card i {
    color: #8DC53F;
  }
  

/*** Our Ethics & Morality End ***/
.text-ajc {
    color: #8DC53F;
  }
  
  .ethics-card {
    transition: transform 0.3s ease;
  }
  
  .ethics-card:hover {
    transform: translateY(-6px);
  }
  
  .ethics-card i {
    color: #8DC53F;
  }
  

/*** Goals and Philosophy Start ***/
.text-ajc {
    color: #8DC53F;
  }
  
  .goal-card {
    transition: transform 0.3s ease;
  }
  
  .goal-card:hover {
    transform: translateY(-6px);
  }
  
  .goal-card i {
    color: #8DC53F;
  }
  

/***Goals and Philosophy End ***/


/*** Doctrines Start ***/
.text-ajc {
    color: #8DC53F;
  }
  
  .doctrine-card {
    transition: transform 0.3s ease;
  }
  
  .doctrine-card:hover {
    transform: translateY(-6px);
  }
  
  .doctrine-card h5 i {
    color: #8DC53F;
  }
  
/*** Doctrines End ***/



/*** Our Skillset Start ***/
.text-ajc {
    color: #8DC53F;
  }
  
  .skill-card {
    transition: transform 0.3s ease;
  }
  
  .skill-card:hover {
    transform: translateY(-6px);
  }
  
  .skill-card i {
    color: #8DC53F;
  }
  
/*** Our Skillset End ***/



/*** Certificates of Achievements Start ***/

.certificates-container {
    text-align: center;
    margin: 40px 0;
}

.certificates-title {
    font-family: 'Arial', sans-serif;
    color: #8dc53f;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.certificates {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.certificate {
    width: 30%;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.certificate:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive design */
@media (max-width: 768px) {
    .certificate {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .certificate {
        width: 90%;
    }
}


/*** Certificates of Achievements End ***/


/***  certificate Start ***/
.certificate-section h2 {
    color: #8DC53F;
  }
  
  .certificate-wrapper {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
  
  
  .certificate-wrapper img {
    max-width: 100%;
    height: auto;
    cursor: zoom-in;
    transition: transform 0.3s ease;
  }
  
  .certificate-wrapper img:hover {
    transform: scale(1.02);
  }
  
  /*** certificate End ***/


/*** Why AJC? Start ***/

  /*----------------------------------------------
    Section Title and Tagline
  ----------------------------------------------*/
  .section-title {
    font-size: 24px;
    font-weight: 600;
    color: #8DC53F;
  }
  
  .section-tagline {
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #000000; /* black tagline */
    text-transform: none;
    margin-bottom: 0;
  }
  
  /*----------------------------------------------
    Paragraph Styling
  ----------------------------------------------*/
  .why-ajc-text {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.9;
    text-align: justify;
  }
  
  /*----------------------------------------------
    Custom AJC Green
  ----------------------------------------------*/
  .text-ajc {
    color: #8DC53F;
  }
  
  /*----------------------------------------------
    Feature Card Styling
  ----------------------------------------------*/
  .feature-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

/*** Why TAC? End ***/



/*** Our Projects Start ***/

/* Our Projects Section */
.text-ajc {
    color: #8DC53F;
  }
  
  .our-projects-section .ourprojectt-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: transform 0.3s ease-in-out;
  }
  
  .our-projects-section .ourprojectt-card:hover {
    transform: translateY(-6px);
  }
  
  .project-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }
  
  .ourprojectt-location {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
  }
  
  .project-list {
    padding-left: 20px;
    margin-bottom: 15px;
  }
  
  .project-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 8px;
  }
  
  @media (max-width: 768px) {
    .project-list li {
      font-size: 14px;
    }
  }  
  
/*** Our Projects End ***/


/*** Calibration Activities Start ***/
.text-ajc {
    color: #8DC53F;
  }
  
  .service-text {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.9;
  }
  
  .service-list {
    list-style: disc;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
  }
  
  .service-list li::marker {
    color: #8DC53F;
  }
  
  
  
/*** Calibration Activities End ***/

/*** Gas Detection Activities End ***/
.text-ajc {
    color: #8DC53F;
  }
  
  .service-text {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.9;
  }
  
  .service-list {
    list-style: disc;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
  }
  
  .service-list li::marker {
    color: #8DC53F;
  }
  
/*** Gas Detection Activities End ***/

/*** E&I Services End ***/  /*same like top others*/
/*** E&I Services End ***/

/*** Telecom & Security systems End ***/
/* Section background alternation */
.section-alt {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 10px;
  }
  
  /* Keep existing styles */
  .text-ajc {
    color: #8DC53F;
  }
  
  .service-text {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.9;
  }
  
  .service-list {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
  }
  
  .service-list li {
    margin-bottom: 10px;
  }
  
/*** Telecom & Security systems End ***/

/*** Ex services End ***/
.section-alt {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 10px;
  }
  
  .text-ajc {
    color: #8DC53F;
  }
  
  .service-text {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.9;
  }
  
  .service-list {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
  }
  
  .service-list li {
    margin-bottom: 10px;
  }
  
/*** Ex services End ***/

/*** Testing End ***/    /*same like top others*/
/*** Testing End ***/


/*** Electrical Testing & Commissioning Start ***/    /*same like top others*/
.text-ajc {
    color: #8DC53F;
  }
  
  .service-text {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.9;
  }
  
  .service-list {
    list-style: disc;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
  }
  
  .service-list li::marker {
    color: #8DC53F;
  }

/*** Electrical Testing & Commissioning End ***/



/***  Non-Destructive Testing (NDT) Start ***/    /*same like top others*/
.text-ajc {
    color: #8DC53F;
  }
  
  .service-text {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.9;
  }
  
  .service-list {
    list-style: disc;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
  }
  
  .service-list li::marker {
    color: #8DC53F;
  }
  
/***  Non-Destructive Testing (NDT) End ***/




/*** Our Services Start ***/        /*AT Home Page*/
.services-section {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #8BC53F; /* Green Color */
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card h4 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    color: #1c1c1c;
    font-weight: 600;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card:hover img {
    transform: scale(1.05);
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .service-card img {
        height: 200px;
    }
}

/*** Our Services End ***/        /*AT Home Page*/


/*** Client Partnerships Start ***/
.client-partnerships {
    background-color: #f8f9fa;
}

.client-partnerships h2 {
    font-weight: bold;
    font-size: 36px;
    color: #8BC53F; /* Changed to green */
}

.client-carousel .client-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-carousel .client-item img {
    max-width: 100%;
    max-height: 100px;
    /* Removed grayscale */
    transition: 0.4s ease;
}

.client-carousel .client-item:hover img {
    transform: scale(1.1); /* Zoom on hover */
}

/* Responsive */
@media (max-width: 768px) {
    .client-carousel .client-item img {
        max-height: 80px;
    }
}
/*** Client Partnerships End ***/


/*** AJC Profile Start ***/
/* Parallax Section */
.scroll-background-section {
    position: relative;
    height: 50vh;
    background-image: url('../img/AJC\ Profile.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.scroll-background-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.scroll-background-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    z-index: 1;
}

/* Heading Styling */
.scroll-background-content h1 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #ffffff;
    animation: fadeInDown 1s ease-out;
}

/* Button Styling */
.scroll-button {
    padding: 15px 30px;
    background-color: #8BC53F; /* Green color */
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(139, 197, 63, 0.4);
}

.scroll-button i {
    font-size: 20px;
}

.scroll-button:hover {
    background-color: #76a839;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(139, 197, 63, 0.6);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .scroll-background-content h1 {
        font-size: 28px;
    }

    .scroll-button {
        padding: 12px 24px;
        font-size: 16px;
    }
}
/*** AJC Profile End ***/


/*** Contact US Start ***/
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #8dc53f;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: #666;
    font-size: 18px;
}

/* Contact Cards Layout */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #8dc53f;
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: #f1f9e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    background-color: #8dc53f;
}

.card-icon i {
    font-size: 32px;
    color: #8dc53f;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon i {
    color: white;
}

.card-title h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.card-title h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #8dc53f;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.card-content p {
    color: #666;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.card-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.card-content a:hover {
    color: #8dc53f;
}

/* Social Media Links */
.social-links {
    margin: 60px 0;
    text-align: center;
    padding: 40px 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.social-title h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.social-title h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #8dc53f;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #f1f9e7;
    color: #8dc53f;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-social:hover {
    background-color: #8dc53f;
    color: white;
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(141, 197, 63, 0.3);
}

.btn-social i {
    font-size: 24px;
}

/* Map Section */
.map-section {
    text-align: center;
    margin-bottom: 40px;
}

.map-title {
    margin-bottom: 30px;
}

.map-title h3 {
    font-size: 26px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.map-title h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #8dc53f;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #8dc53f;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon i {
        font-size: 28px;
    }
    
    .card-title h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
}
  
/*** Contact US End ***/


/*** Footer Start ***/
.footer-new {
    background-color: #1c1c1c;
    color: #ccc;
    font-size: 16px;
    padding-top: 60px;
    padding-bottom: 40px;
}

.footer-new .footer-logo {
    font-size: 30px;
    color: #8BC53F;
    font-weight: bold;
}

.footer-new .footer-desc {
    margin-top: 15px;
    line-height: 1.8;
}

.footer-new .footer-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-new .footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-new .footer-link:hover {
    color: #8BC53F;
    padding-left: 5px;
}

.footer-new .btn-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-new .btn-social:hover {
    background: #8BC53F;
    color: #fff;
}

.footer-new .btn-green {
    background-color: #8BC53F;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-new .btn-green:hover {
    background-color: #76a839;
    transform: translateY(-2px);
}

/* Border Top Under Footer */
.footer-new .border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
}

.footer-new p {
    font-size: 15px;
    margin: 0;
}

.footer-new p a {
    color: #8BC53F;
    text-decoration: underline;
}

.footer-new p a:hover {
    color: #76a839;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .footer-new {
        text-align: center;
    }
}

/*** Footer End ***/



/*** Back to Top Button ***/
.back-to-top {
    background-color: #8BC53F !important;
    border: none;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: #76a839 !important;
    transform: translateY(-3px);
}

/*** Animations ***/
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*** Back to Top Button End ***/

