body{
    padding-bottom: 20px;
    color: #5a5a5a;
}

.navbar-wrapper{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
}

.navbar-wrapper > .container{
    padding-right: 0;
    padding-left: 0;
}

.navbar-wrapper .navbar {
    padding-right: 20px;
    padding-left: 20px;
    
}

.navbar-wrapper .navbar .container{
    width: auto;
}
.navbar-brand img{
    height: 65px;
    width: 150px;
    padding-bottom: 0;
    text-align: center;
    padding-top: 0;
    margin-top: -19px;
    padding-bottom: 15px;
    padding-top: 7px;
    margin-left: -31px;
    
}
.About img{
    position: static;
    height: 470px;
    width: 70%;
    min-width: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    
   
}
.section-title.lab {
  font-size: 40px;
  text-align: center;
  font-weight: 600;
  margin-top: 30px;
  color: #043a63;
  position: relative;
  animation: riseUp 1.2s ease;
}

.section-title.lab::after {
  content: "";
  width: 90px;
  height: 6px;
  background: #0099ff;
  margin: 12px auto 0;
  display: block;
  border-radius: 10px;
  animation: expand 1s ease forwards;
}

@keyframes expand {
  from { width: 0; }
  to { width: 90px; }
}

@keyframes riseUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== INTERACTIVE BLOCK DESIGN ===== */
    .info-block {
        background: #ffffff;
        padding: 22px 25px;
        border-radius: 14px;
        margin-bottom: 18px;
        border: 1px solid #e5e5e5;
        display: flex;
        align-items: center;
        gap: 18px;
        transition: 0.35s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .info-block:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    }

    /* Left animated color bar */
    .info-block::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(180deg, #0b6cf2, #3ab4ff);
        transition: 0.4s;
    }

    .info-block:hover::before {
        width: 12px;
    }

    /* Icon on left */
    .info-icon {
        font-size: 28px;
        color: #0b6cf2;
        transition: 0.35s;
    }

    .info-block:hover .info-icon {
        transform: scale(1.2) rotate(5deg);
    }

    /* Main text */
    .info-block h2 {
        margin: 0;
        font-size: 20px;
        line-height: 28px;
        font-weight: 700;
    }
/* ========================== */
/* CHEMICAL COMPANY ABOUT US  */
/* ========================== */

.about-section {
    padding: 80px 0;
    background: #f7fafc;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* ========== Image Box ========== */
.about-image-box {
    flex: 1;
    min-width: 320px;
    height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.about-image-box:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}

/* ========== Text ========== */
.about-content {
    flex: 1;
    min-width: 320px;
}

.about-title {
    font-size: 40px;
    font-weight: 800;
    color: #0b6cf2;
    margin-bottom: 20px;
}

.about-text {
    font-size: 18px;
    color: #35526e;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* ========== Highlights ========== */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.highlight-box {
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1d3c57;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: .3s ease;
    border-left: 6px solid #0b6cf2;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.highlight-icon {
    font-size: 22px;
    color: #0b6cf2;
}

/* ========== Responsive ========== */
@media(max-width: 768px){
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-title {
        font-size: 32px;
    }
    .about-text {
        font-size: 16px;
    }
}


.light-vision-section {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 60px 20px;
    background: #f7fafc;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Left Text */
.vision-text-box h1 {
    font-size: 38px;
    font-weight: 800;
    color: #1e3d59;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.vision-text-box p {
    font-size: 20px;
    line-height: 32px;
    color: #345d7e;
    font-weight: 300;
}

/* Image Box */
.vision-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.vision-image-box img {
    width: 100%;
    border-radius: 20px;
    transition: transform 1s ease;
}

/* Hover Effect */
.vision-image-box:hover img {
    transform: scale(1.08);
}

/* Soft overlay */
.vision-image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
    border-radius: 20px;
}
.light-mission-section {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 60px 20px;
    background: #f9fbff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Right Text */
.mission-text-box h1 {
    font-size: 38px;
    font-weight: 800;
    color: #1e3d59;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    font-size: 20px;
    color: #345d7e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 28px;
}

.mission-list i {
    font-size: 22px;
    margin-right: 12px;
    color: #2e6f95;
}

/* Image Box */
.mission-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.mission-image-box img {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    transition: transform 1s ease;
}

/* Hover Effect */
.mission-image-box:hover img {
    transform: scale(1.08);
}

/* Soft overlay */
.mission-image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
    border-radius: 20px;
}

/* Responsive */
@media(max-width: 768px) {
    .mission-text-box h1 { font-size: 30px; }
    .mission-list li { font-size: 18px; }
    .light-mission-section { padding: 40px 15px; }
}


/* Responsive */
@media(max-width: 768px) {
    .vision-text-box h1 { font-size: 30px; }
    .vision-text-box p   { font-size: 18px; }
    .light-vision-section { padding: 40px 15px; }
}

@keyframes pulseGlow {
    0% { text-shadow: 0 0 10px rgba(255,223,87,0.6); }
    100% { text-shadow: 0 0 20px rgba(255,223,87,1); }
}

/* Responsive */
@media(max-width: 768px){
    .vision-content-box h1 { font-size: 32px; }
    .vision-content-box p { font-size: 18px; }
    .vision-icon { font-size: 55px; }
}



/* Responsive */
@media (max-width: 768px) {
  .info-card h3,
  .info-card ul li {
    font-size: 16px;
  }

  .vision-card .vision-text {
    font-size: 16px;
  }
}


footer {
    background-color: #004d66;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.7em;
    width: 100%;
}

.social-links {
    margin-top: 20px;
    
  }
.social-links a {
    text-decoration: none;
    color: white;
    font-size: 22px;
    margin: 0 10px;
    transition: color 0.3s;
  }
.social-links a:hover {
    color: #0077b5; /* LinkedIn blue or any hover color you prefer */
  }
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    text-align: center;
    padding: 20px;
  }
}


/* ============================= */
/* === ADDED SMOOTH SCALING === */
/* ============================= */

* {
  transition: all 0.4s ease-in-out;
}

/* Image scaling on hover */
.abouthead img:hover,
.About img:hover,
.image-vision img:hover,
.image-mission img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

/* Headings slight zoom on hover */
.abouthead h1:hover,
.vision h1:hover,
.mission h1:hover {
  transform: scale(1.02);
  color: #0099cc;
}

/* Overlay text hover lift */
.overlay-text:hover {
  transform: scale(1.05);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

/* Social icons scaling */
.social-links a:hover {
  transform: scale(1.3);
  color: #00bcd4;
}

/* === MEDIA RESPONSIVE FIXES === */
@media (max-width: 768px) {
    .abouthead img,
    .abouthead img,
  .About img,
  .image-vision img,
  .image-mission img {
    width: 100%;
    height: auto;
  }

  .overlay-text {
    top: 20%;
    
    font-size: 1.4em;
    transform: translate(-50%, -50%);
  }

  .abouthead p {
    font-size: 1.2em;
  }

  .mission li {
    font-size: 1.2em;
    margin: 10px;
  }
}
/* Mobile view */
@media (max-width: 768px) {
    .overlay-text {
        font-size: 4vw;
        width: 90%;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .overlay-text {
        font-size: 5vw;
        width: 95%;
        line-height: 1.2;
    }
}
@media (max-width: 768px) {
    .content-image {
        width: 90%;
        height: auto;
    }
}