
.section-bg { background: #eb5f2d10; }
  .icon-big { font-size: 3rem; color: #eb5f2d; transition: all 0.3s ease; }
  .icon-small { font-size: 2rem; color: #eb5f2d; transition: all 0.3s ease; }

  h2 {
    color: #eb5f2d;
  }

  /* Card Hover Effect */
  .card {
    transition: all 0.4s ease;
    cursor: pointer;
  }

  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #fff5f1;
  }

  /* Icon Hover Effect */
  .card:hover i,
  .icon-big:hover {
    color: #352a26;
    transform: scale(1.2);
  }

 
  

  /* Hover Effects for Values */
  .value-card {
    transition: all 0.4s ease;
    cursor: pointer;
  }
  .value-card:hover {
    transform: translateY(-8px);
    background: #fff5f1;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  .value-card:hover i {
    color: #352a26;
    transform: scale(1.2);
  }



  .section-bg { background: #eb5f2d10; }
  .icon-big { font-size: 3rem; color: #eb5f2d; }
  .icon-small { font-size: 1.5rem; color: #eb5f2d; }

 
  .mission-section {
    background: #fff7f3;
  }
  .icon-big {
    font-size: 3rem;
    color: #eb5f2d;
  }
  .glass-card {
    border-radius: 15px;
    border: 1px solid #f1f1f1;
    transition: all 0.4s ease;
    background: #ffffff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  }
  /* Alternate background color */
  .glass-card:nth-child(even) {
    background: #eb5f2d;
    color: #fff;
  }
  /* Hover Effect */
  .glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  /* Invert colors on hover */
  .glass-card:nth-child(odd):hover {
    background: #eb5f2d;
    color: #fff;
  }
  .glass-card:nth-child(even):hover {
    background: #fff;
    color: #000;
    border: 1px solid #eb5f2d;
  }




 /* .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 55px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header .logo h1 {
  margin: 0;
  font-size: 24px;
  color: var(--theme-color);
}


nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

nav ul li a:hover {
  color: var(--theme-color);
}


.mega-menu {
  position: absolute;
  top: 100%;
  left: -350px;
  width: 650px;
  background: #0F2A56;
  border-top: 4px solid #CF5529;
  padding: 20px;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 5px;
  z-index: 100;
}

.mega-row {
  display: flex;
  gap: 40px;
}

.mega-col ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mega-col h3 {
  margin-bottom: 10px;
  color: white;
  font-size: 18px;
}

.mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-col ul li {
  margin-bottom: -8px;
  color: white;
}

.mega-col ul li a {
  color: white;
  text-decoration: none;
  display: block;
}


@media (min-width: 992px) {
  .mega-dropdown:hover .mega-menu {
    display: block !important;
  }
}


.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--theme-color);
}

@media screen and (max-width: 991px) {

  nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    overflow-y: auto;
    width: 100%;
    padding: 10px 0;
    position: absolute;
    align-items: flex-start;
    top: 70px;
    left: 0;
    z-index: 9999;
    border-top: 3px solid var(--theme-color);
  }

  .header{
  padding: 15px 27px;

  }

 .down-arrow{
  margin-left: 250px;
 }
  
  #navmenu.show-menu {
    display: flex !important;
  }

  .mega-menu {
    background: #0F2A56;
    padding: 20px;
    width: 100%;
    display: none !important;
    flex-direction: column;
  }

  .mega-toggle.active + .mega-menu {
    display: flex !important;
  }

  .mega-row {
    flex-direction: column;
    gap: 20px;
  }

  .mobile-nav-toggle {
    display: block;
  }

} 
 */

 .sitename{
  font-size: 20px;
 }

 
 header { width: 100%; background-color: white; color: black; display: flex; justify-content: space-between; align-items: center; padding: 10px 70px; position: relative; }
    .logo { font-size: 26px; font-weight: bold; 
    top: 0;
    z-index: 999;}
    nav ul { list-style: none; display: flex; gap: 45px; margin: 0; padding: 0; }
    nav ul li { position: relative; cursor: pointer;font-size: 17px;font-weight: 600; }
    nav a { color:black; text-decoration: none; font-size: 17px; font-weight: 600;}

    .menu-btn { font-size: 28px; cursor: pointer; display: none; color: black; }

    /* Mega Menu */
    .mega-menu { display: none;height: 400px; position: absolute; top: 60px; left: -200px; transform: translateX(-50%); background: #0d2657; color: black; padding: 25px 30px; width: 750px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); border-radius: 8px; z-index: 50; border-left: 10px solid #eb5f2d;}
    .mega-container { display: flex; justify-content: space-between; gap: 40px; }
    .mega-col { width: 45%; }
    .mega-col h5 { margin: 0 0 10px; color: white; }
    .mega-col ul { list-style: none; padding: 0; display: flex;flex-direction: column;}
    .mega-col ul li { color: white;margin-bottom: -35px; }
    .mega-col ul li a { color: white !important; text-decoration: none;
      transition: all 0.3s ease-in-out;
     }
    .logo h1{
      font-size: 25px;
    }

    .mega-col ul li a:hover{
      letter-spacing: 0.6px;
    }

    /* Mobile */
    @media (max-width: 768px) {
      .menu-btn { display: block; }
      nav { display: none; position: absolute; right: 0; top: 89px; background: white; width: 100%; border-radius: 0 0 0 8px; z-index: 200; }
      nav ul { flex-direction: column; padding: 15px; gap: 15px; }
      .mega-menu { position: static; transform: none; width: 100%; box-shadow: none; background: #1a3c7a; color: white; border-radius: 0;height: 620px; }
      .mega-container { flex-direction: column; gap: 10px; }
      .mega-col h3 { display: none; }
      .mega-col ul li a { color: white !important; }
      header{
        padding: 15px 20px;
      }
      .mega-col ul li{
        margin-bottom: -5px;
        width: 200%;
      }
      .logo h1{
        font-size: 20px;
      }
    
    }



    /* contact */

.info-box h2{
  color: black;
}

    /*  */

   /* Section */
.thermo-section {
  background-color: #fff;
}

/* Title */
.thermo-title {
  color: #cf5529;
  font-weight: 700;
  text-transform: uppercase;
}

/* MAIN IMAGE BOX — SIZE FIXED */
.thermo-img-box {
  width: 550px;
  height: 450px;
  background: #f3f3f3;
  border: 2px solid #cf5529;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* MAIN IMAGE — NEVER RESIZE */
.thermo-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* MOST IMPORTANT */
  transition: opacity 0.25s ease-in-out;
}

/* Thumbnail Row */
.thumb-row {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* THUMB SIZE FIXED 80×80 */
.thumb-box {
  width: 80px;
  height: 80px;
  border: 2px solid #cf5529;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #f3f3f3;
}

.thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Active Thumbnail */
.thumb-box.active {
  border-color: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .thermo-img-box {
    width: 100%;
    height: 300px;
  }
}


  
/* Logo Section */
.logo {
  display: flex;
  align-items: center;
  gap: 15px; /* space between logo image and text */
}

.logo a {
  display: inline-block;
}

.company-logo {
  width: 80px;   /* Adjust as needed */
  height: auto;  /* maintain aspect ratio */
  object-fit: contain;
}
/* Responsive */
@media (max-width: 768px) {
  .company-logo {
    width: 60px; /* smaller logo on mobile */
  }

 
}


  /*  */

   .dial-info-section {
    background: #fff;
  }

  /* Main content blocks */
  .info-block {
    background: #f9f9f9;
    border-left: 6px solid #cf5529;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }

  .section-title {
    color: #cf5529;
    font-weight: 700;
    font-size: 29px;
    text-transform: uppercase;
    /* margin-bottom: px; */

  }

  /* LIST STYLE */
  .dial-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }

  .dial-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 16px;
  }

  .dial-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #cf5529;
    font-weight: 700;
    font-size: 18px;
  }

  /* MOBILE FRIENDLY DESIGN */
  @media (max-width: 768px) {
    .section-title {
      font-size: 24px;
    }
    .info-block {
      padding: 20px !important;
    }
  }



  .why-choose-section {
    background: #fff;
  }

  .choose-box {
    max-width: 900px;
    background: #f9f9f9;
    border-radius: 12px;
    border-top: 6px solid #cf5529;
    border-bottom: 6px solid #cf5529;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  }

  .choose-title {
    color: #cf5529;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .choose-box p {
    line-height: 1.7;
    font-size: 17px;
    color: #333;
  }

  /* MOBILE RESPONSIVE */
  @media (max-width: 768px) {
    .choose-title {
      font-size: 24px;
    }
    .choose-box {
      padding: 20px !important;
    }
    .choose-box p {
      font-size: 15.5px;
    }
  }



  /* footer */

  .company{
    padding-left: 50px;
  }



  /* market area */
  /* Market Area Section */
.market-area {
  padding: 50px 20px;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

.market-area .container {
  max-width: 1200px;
  margin: auto;
}

.market-area h3 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #222;
}

.market-area h4 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #333;
}

.market-area h5 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #444;
}

.market-area p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .market-area {
    padding: 30px 15px;
  }

  .market-area h3 {
    font-size: 24px;
  }

  .market-area h4 {
    font-size: 20px;
  }

  .market-area h5 {
    font-size: 17px;
  }

  .market-area p {
    font-size: 15px;
  }
}