html {
    scroll-padding-top: 90px; 
}
.logoHead {
  display: inline-flex; 
  align-items: center;       
  text-decoration: none;     
  font-size: 1.5rem;
  font-weight: bolder;      
  color: #000;              
}

.logoHead img {
  display: block;                        
  height: auto;               
  margin-right: 0.5rem;      
}


.slogan-block {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
  color: #004e7c; 
  background: linear-gradient(135deg, #e0f7ff, #ffffff);
  border-left: 6px solid #00bcd4;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.slogan-block::before {
  content: "“";
  font-size: 4rem;
  color: #00bcd4;
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.2;
}

.emergenTitle {
    background: #000;
    color: #fff;
    padding: 10px;
    font-size: 32px;
    text-align: center;
    border-radius: 10px;
}


.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.faq-question {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #3c8dbc;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  font-size: 16px;
  line-height: 1.5;
}

.faq-answer.open {
  max-height: 500px;
  opacity: 1;
  margin-top: 5px;
}

.highlight {
    color: #00acc1;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #5ddef4;
    opacity: 0.3;
    z-index: -1;
    border-radius: 3px;
}
 .emergency-feature-list {
    list-style: none;
    margin: 30px 0;
}

.emergency-feature-list li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    font-size: 18px;
}

.emergency-feature-list li::before {
    content: '🟣';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
}

p.colorRed {
    color: #FFEB3B;
}

section.tj-chemicals, section.tj-how {
  position: relative;
  padding: 50px 0;
  margin: 60px 0;
  background: #097ceabd; 
  z-index: 1; 
  overflow: hidden; 
}

section.tj-chemicals::before, 
section.tj-how::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/chemicals-bg.webp) center center / cover no-repeat;
  z-index: -1; 
  opacity: 0.1; 
}

section.tj-chemicals h5,
section.tj-chemicals h2,
section.tj-how h5,
section.tj-how h2
{
    color: #fff;
}
.chemicals-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.chemicals-image {
    flex: 1;
    min-width: 300px;
}

.chemicals-image img {
    width: 100%;
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.chemicals-content {
    flex: 1;
    min-width: 300px;
    color: #fff;
}

.chemicals-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 30px;
}

.chemicals-content p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--dark-gray);
}

.chemicals-note {
    padding: 20px;
    background-color: #FFEB3B;
    border-left: 4px solid #ff9800;
    border-radius: 0 10px 10px 0;
    margin-top: 30px;
    text-align: center;
    color: #000;
}
        
/* Features Section */
.features {
    background-color: var(--light-gray);
    position: relative;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
    align-items: start;
    text-align: center;
}

.feature-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: height 0.3s ease;
    z-index: -1;
}

.feature-item:hover::before {
    height: 10px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex
;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary);
}



.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--black);
}

.feature-item p {
    color: var(--dark-gray);
    margin-bottom: 0;
}
section#faq {
    padding: 60px 0;
}

section.tj-how::before {
    background: #0D56D6;
}
        
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #42adff, #44cae9);
    z-index: 0;
}

.process-step {
    text-align: center;
    width: 180px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 2px dashed var(--primary);
}

.process-step:nth-child(2) .step-number {
    color: #377b7d;
}

.process-step:nth-child(2) .step-number::before {
    border-color: #377b7d;
}

.process-step:nth-child(3) .step-number {
    color: #377b7d;
}

.process-step:nth-child(3) .step-number::before {
    border-color: #377b7d;
}

.process-step:nth-child(4) .step-number {
    color: #377b7d;
}

.process-step:nth-child(4) .step-number::before {
    border-color: #377b7d;
}

.process-step:nth-child(5) .step-number {
    color: #1f9a24;
}

.process-step:nth-child(5) .step-number::before {
    border-color: #1f9a24;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #cafcd8;
}

.process-step p {
    font-size: 16px;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 992px) {
    
    .process-steps::before {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}
.language-switcher .language-links {
    display: flex;
    gap: 15px;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.language-item:hover {
    opacity: 0.8;
}

.language-item img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.language-item span {
    font-weight: 600;
    font-size: 14px;
}

.contact-text .language-links span {
    font-size: 20px;
}        

.contact-text .language-item .contact-item  {

}

.tj-service-details-text a {
    color: #2196F3;
}
