
* {
  box-sizing: border-box;
}
html,body {
  margin: 0;
  padding: 0;
 
  scroll-behavior: smooth;
  font-family: Poppins;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
}

code {
  font-family: Poppins,
    sans-serif;
}

.dropdown-container {
  position: relative;
  display: inline-block; 
}


.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  width: 100%; 
}


.dropdown-arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
  display: inline-block;
}


.dropdown-arrow.open {
  transform: rotate(180deg);
}


.dropdown-menu {
  position: absolute;

  bottom: 100%; 
  margin-bottom: 5px;
  left: 0;
  background-color: #A7402D; 
  border: 1px solid #c44c38;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 5px 0;
  margin-left: 0;
  z-index: 100;
  min-width: 180px; 
}


.dropdown-menu li .branch-link {
  width: 100%;
  text-align: left; 
  padding: 8px 12px; 
  background-color: transparent;
  border: none;
}

.dropdown-menu li .branch-link:hover {
  background-color: #c44c38; 
}



*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Larsseit Bold', sans-serif;
}

p{
  font-family: 'Poppins'; 
}

@media  screen and (max-width: 768px){
  p{
    font-size: 12px;
  }

  h1{
    font-size: 22px;
  }

 h2{
    font-size: 20px;
  }

  h3{
    font-size: 18px;
  }

 h4{
    font-size: 16px;
  }

 h5{
    font-size: 14px;
  }

  h6{
    font-size: 12px;
  }


}



/*Header Section*/

/* Main header styles */
/* Main header styles */
.main-header {
  width: 100%;
  display: grid;
  padding: 8px 0;
  grid-template-columns: 6.25rem 1fr 1fr 6.25rem;
  background-color: #A7402D;
}

.header-mob {
  grid-column: 2 / 3;
  color: black;
}

.header-mob a {
  text-decoration: none;
  color: white;
  padding-left: 15px;
}

.header-social {
  display: flex;
  grid-column: 3 / 4;
  justify-content: end;
  color: black;
  padding-left: 5px;
}

.header-social a {
  text-decoration: none;
  color: white;
  padding-left: 5px;
}

.header-social {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  column-gap: 10px;
}

.header-search {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: 157px;
  display: flex;
  flex-direction: row; 
  align-items: center; 
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 10px;
  display: none;
}

.search-input {
  padding: 5px;
  font-size: 14px;
  border: none;
  border-radius: 10px 0 0 10px;
  width: 130px;
  outline: none;
}

.search-button {
  background-color: white;
  color: #A7402D;
  border: none;
  border-left: none; 
  padding: 5px;
  width: auto; 
  cursor: pointer;
  font-size: 14px;
  border-radius: 10px; 
}

.search-button:hover {
  background-color: #A7402D;
  color: white;
}

.social-mediah ul {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
  right: 10px;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.social-mediah ul li {
  margin: 0 5px;
}

.socialmediah {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  border-radius: 50%;
  padding: 5px;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 5px 10px rgba(58, 53, 53, 0.726);
  background: #ffffff;
  transition: 0.5s;
}

.socialmediah:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.socialmediah .fab {
  width: 100%;
  height: 100%;
  display: block;
  background: none;
  border-radius: 50%;
  line-height: calc(40px - 10px);
  font-size: 16px;
  color: #912b2c;
  transition: 0.5s;
}

.social-mediah ul li:nth-child(1) a:hover .fab {
  color: #3b5998;
}

.social-mediah ul li:nth-child(2) a:hover .fab {
  color: #00aced;
}

.social-mediah ul li:nth-child(3) a:hover .fab {
  color: #0072b1;
}

.social-mediah ul li:nth-child(4) a:hover .fab {
  color: linear-gradient(to right, #f9ce34, #ee2a7b, #6228d7);
}

.social-mediah ul li:nth-child(5) a:hover .fab {
  color: #25D366;
}

@media screen and (max-width: 768px) {
  .main-header {
    display: none;
  }

  .header-mob {
    display: none;
  }

  .header-social {
    grid-column: 2/3;
    grid-row: 1/2;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-self: center;
  }

  .header-search {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .social-mediah ul {
    flex-direction: row; /* Adjust social media icons to a single row */
    justify-content: center; /* Align icons center */
  }
}


.contactus_header {
  padding: 8px 16px;
  color: white;
  background-color:#A7402D;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}



.contactus_header:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(145, 43, 44, 0.4);
}


/* Navbar */





.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.full-nav {
  display: grid;
  grid-template-columns: 6.25rem .75fr 3.5fr .6fr 6.25rem;
}

/* Logo Section */
.nav-logo {
  grid-column: 2/3;
}
  
.nav-logo a {
  display: flex;
  align-items: center;
  margin: 25px 0;
  text-decoration: none;
}

/* Navigation Menu */
.nav-menu {
  grid-column: 3/4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu ul li {
  display: inline-block;
  padding: 0 10px;
  position: relative;
  font-size: large;
  color: white;
}

@media screen and (max-width: 1366px) {
  .nav-menu ul li {
    font-size: medium;
  }
  
}

.nav-menu ul li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.toggle-design{
  text-decoration: none;
  color: black;
  font-weight: 500;
  cursor: pointer;

}

.toggle-design:hover,
.toggle-design:active {
  
  color: #912b2c;
  

}

.nav-menu ul li a:hover {
  color: #912b2c;
  cursor: pointer;
}



/*dropdown2*/

.dropdown-menu2 {
  display: none;
  position: absolute;
  top: 23px;  
  width: 20vw; 
  list-style: none;
  margin: 0;
  z-index: 999;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
}

.dropdown-menu-product{
  padding: 25px 0px;
}
.dropdown-menu-sumitomo,
.dropdown-menu-deviser,
.dropdown-menu-optronix,
.dropdown-menu-optronix-fiber,
.dropdown-menu-optronix-edfa{
  padding: 10px 10px;
  
}

.dropdown-menu-sumitomo:hover,
.dropdown-menu-deviser:hover,
.dropdown-menu-optronix:hover,
.dropdown-menu-optronix-fiber:hover,
.dropdown-menu-optronix-edfa:hover{
  background-color: #f9f9f9;
}



.dropdown-menu-sumitomo ul li,
.dropdown-menu-deviser ul li,
.dropdown-menu-optronix ul li,
.dropdown-menu-optronix-fiber ul li,
.dropdown-menu-optronix-edfa ul li{
  display: block;
  line-height:1.2;
  font-size: medium;
  
}



.dropdown:hover .dropdown-menu2 {
  display: block;
}

.dropdown-menu-sumitomo ul li:hover,
.dropdown-menu-deviser ul li:hover,
.dropdown-menu-optronix ul li:hover,
.dropdown-menu-optronix-fiber ul li:hover,
.dropdown-menu-optronix-edfa ul li:hover {
  background-color: #f9f9ff;
}



/*dropdown3*/

.dropdown-menu3 {
  display: none;
  position: absolute;
  top: 25px;  
  width: 15vw; 
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  list-style: none;
  margin: 0;
  z-index: 999;
  overflow: hidden;
  align-self: center;
}






/* Show Dropdown on Active (Desktop) */
.dropdown:hover .dropdown-menu3 {
  display: block;
}

/* Hamburger Icon */
.icon {
  font-size: 1rem;
  cursor: pointer;
  display: none;
}

/* Enquire Now Button */
.nav-button {
  grid-column: 4/5;
  display: flex;
  justify-content: end;
  align-items: center;
}

.enquire_button {
  padding: 12px 14px;
  border: none;
  color: #fff;
  background-color: #A7402D;
  border-radius: 40px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
  
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
 
  cursor: pointer;
  outline: none;
  display: inline-block;
}

.enquire_button:hover {
  background-color: #862D1D;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px) scale(1.03);
}
.enquire_button:active, 
.enquire_button:focus {
    background-color: #762418;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  transform: translateY(1px) scale(0.98);
  outline: none;
}


@media screen and (max-width:1251px ){

  .full-nav {
    display: grid;
    grid-template-columns: 6.25rem .7fr 3.8fr .7fr 6.25rem;
  }

  .nav-logo{
    grid-column: 2/3;
  }

  .nav-menu{
    grid-column: 3/4;
  }

  .nav-button{
    grid-column: 4/5;
  }

  .nav-menu ul li {
    padding: 0 5px;
    
  }

  

}



@media screen and (max-width: 920px) {
  .nav-button {
    display: none;
  }

  .full-nav {
    display: grid;
    grid-template-columns: .8rem 1fr 1fr .8rem;
  }

  .icon {
    display: block;
    align-self: center;
    justify-self: end;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100vw;
    height: 100vh;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: white;
    z-index: 1000;
    padding: 1rem 0;
    padding: .8rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu ul {
    display: flex;
    flex-direction: column;
    
  }

  .nav-menu ul li {
    padding: 0.5rem 0;
  }

  .dropdown-menu {
    display: flex;
    flex-direction: column;
    box-shadow: none;
    position: static;
    width: 100%;
  }

  .dropdown-menu li {
    text-align: center;
  }
}

  


/* Responsive Design */
@media screen and (max-width: 768px) {
  .nav-button {
    display: none;
  }

  .full-nav {
    display: grid;
    grid-template-columns: .8rem 1fr 1fr .8rem;
  }

  .icon {
    display: block;
    align-self: center;
    justify-self: end;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100vw;
    height: 100vh;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: white;
    z-index: 1000;
    padding: 1rem 0;
    padding: .8rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu ul {
    display: flex;
    flex-direction: column;
    
  }

  .nav-menu ul li {
    padding: 0.5rem 0;
  }

  .dropdown-menu {
    display: flex;
    flex-direction: column;
    box-shadow: none;
    position: static;
    width: 100%;
  }

  .dropdown-menu li {
    text-align: center;
  }
}



/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

/* Popup Content */
.popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.popup-content h2 {
  margin-bottom: 20px;
}

.popup-content form {
  display: flex;
  flex-direction: column;
}

.popup-content form label {
  margin-bottom: 10px;
  text-align: left;
}

.popup-content form input,
.popup-content form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.popup-content form button {
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.popup-content form button:first-of-type {
  background-color: #A7402D;
  color: white;
}

.popup-content form button:last-of-type {
  background-color: #ccc;
  color: black;
}


/* Mobile submenu style */
.mobile-submenu {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.mobile-submenu li {
  padding: 0.4rem 0;
}

.mobile-submenu a {
  color: #7A6F6F;
  text-decoration: none;
}

.mobile-submenu a:hover {
  color: #912b2c;
}

/* Hide desktop dropdown on mobile */
@media screen and (max-width: 768px) {
  .dropdown-menu2,
  .dropdown-menu3 {
    display: none !important;
  }
}


/* Active link style */
.active-link {
  color: #912b2c !important;
}

.dropdown-toggle.active-link {
  color: #912b2c;
}




/*company Profile*/






/*--about*/

.landing-page-about {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 6.25rem 1fr 2.3fr 6.25rem;
  grid-template-rows: auto auto auto;
}

.landing-page-about-heading {
  grid-column: 2/3;
  grid-row: 1/2;
}

.landing-page-about-buttons {
  grid-column: 2/3;
  grid-row: 2/3;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 15px;
  margin-top: 10px;
}

.landing-page-about-buttons :nth-child(1){
  grid-row: 1/2;
  grid-column: 1/2;
}

.landing-page-about-buttons :nth-child(2){
  grid-row: 2/3;
  grid-column: 1/2;
}

.landing-page-about-buttons :nth-child(3){
  grid-row: 3/4;
  grid-column: 1/2;
}

.landing-page-about-content {
  grid-column: 3/4;
  grid-row: 2/3;
  margin-top: 10px;
}

.about-btn {
  background-color: transparent;
  padding: 10px 20px;
  color: #4d4d4d;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.about-btn:hover {
  color: #000;
}

@media screen and (max-width: 768px) {
  .landing-page-about {
    grid-template-columns: 0.8rem 1fr 0.8rem;
    grid-template-rows: auto auto auto;
  }

  .landing-page-about-heading {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .landing-page-about-buttons {
    grid-column: 1/2;
    grid-row: 2/3;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
  }

  .landing-page-about-content {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}


/* Mobile Design */
@media screen and (max-width: 768px) {
  /* Horizontal scroll for videos */
  .video-container {
    display: flex;
    overflow-x: scroll;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  /* Each video takes up 48% of the container width (2 columns per row) */
  .main-com-pro-main-video {
    flex: 0 0 48%;
    margin-bottom: 1rem;
  }

  /* Styling for video box */
  .main-com-pro-main-box {
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
  }

  .main-com-pro-main-box video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
  }

  .main-com-pro-description {
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
  }

  /* Art/Text section */
  .main-com-art {
    grid-column: 1/3;
    padding: 10px;
  }
}




/*landing page about*/


.landing-page-about {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 6.25rem 1fr 2.3fr 6.25rem;
  grid-template-rows: auto auto auto;
}

.landing-page-about-heading {
  grid-column: 2/3;
  grid-row: 1/2;
}

.landing-page-about-buttons {
  grid-column: 2/3;
  grid-row: 2/3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.about-btn {
  padding: 5px 24px;
  font-weight: 500;
  color: #b3b2b2;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
  max-width: 220px;
  text-align: left;
  position: relative;
  bottom: 0;
}

.about-btn:hover {
  background-color: #f9f9f9;
  transform: translateY(-2px);
}

.landing-page-about-content {
  grid-column: 3/4;
  grid-row: 2/4;
  
}

@media screen and (max-width: 768px) {
  .landing-page-about {
    grid-template-columns: 0.8rem 1fr 0.8rem;
    grid-template-rows: auto auto auto auto;
  }

  .landing-page-about-heading {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .landing-page-about-buttons {
    grid-column: 2/3;
    grid-row: 2/3;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .landing-page-about-content {
    grid-column: 2/3;
    grid-row: 3/4;
  }

  .about-btn {
    max-width: 100%;
    padding: 10px 20px;
  }
}




/*Executives*/

.executives {
  background-image: 
  linear-gradient(to right, rgba(241, 240, 240, 0.205), rgba(255, 255, 255, 0.103)),
  url(/static/media/ex1.f4761c839a26c8fe57c6.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 6.25rem 1fr 2.3fr 6.25rem;
  margin-top: 50px;
  height: 100%;
  width: 100%;

  padding: 1.5rem 0;
}

.executives-img {
  grid-column: 2/3;
 
  display: flex;
  justify-content: center;
  align-items: center;
}


.executives-art {

  grid-column: 3/4;
 
}

@media screen and (max-width: 768px) {
  .executives {
    grid-template-columns: .8rem 1fr .8rem;
    grid-template-rows: auto auto;
    row-gap: 3rem;
  }

  .executives-img {
    grid-column: 2/3;
    grid-row: 1/2;
    padding-right: 0;
  }

  .executives-art {
    grid-column: 2/3;
    grid-row: 2/3;
    padding-left: 0;
  }
}

@media screen and (max-width: 540px) {
  .executives {
    grid-template-columns: .8rem 1fr .8rem;
    grid-template-rows: auto auto;
    row-gap: 3rem;
  }

  .executives-img {
    grid-column: 2/3;
    grid-row: 1/2;
    padding-right: 0;
  }

  .executives-art {
    grid-column: 2/3;
    grid-row: 2/3;
    padding-left: 0;
  }
}

@media screen and (max-width: 450px) {
  .executives {
    grid-template-columns: .8rem 1fr .8rem;
    grid-template-rows: auto auto;
    row-gap: 3rem;
  }

  .executives-img {
    grid-column: 2/3;
    grid-row: 1/2;
    padding-right: 0;
  }

  .executives-art {
    grid-column: 2/3;
    grid-row: 2/3;
    padding-left: 0;
  }
}

@media screen and (max-width: 390px) {
  .executives {
    grid-template-columns: .8rem 1fr .8rem;
    grid-template-rows: auto auto;
    row-gap: 3rem;
  }

  .executives-img {
    grid-column: 2/3;
    grid-row: 1/2;
    padding-right: 0;
  }

  .executives-art {
    grid-column: 2/3;
    grid-row: 2/3;
    padding-left: 0;
  }
}



/* Main Brand Slider */
.brand-slider {
  background-color: white;
  padding: 10px 0;
   /* Optional: rounded corners for a softer look */
}

/* Wrapper for the carousel */
.brand-slider-wrap {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
  justify-content: center;
  padding: 15px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Drop shadow added */
  background-color: rgba(255, 255, 255, 0.952);
}

.brand-slider-name{
  text-align: center;
  margin-bottom: 30px;
}

/* Container for the logos */
.logos-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9rem; /* Consistent gap between logos */
  animation: slide 30s linear infinite;
  margin-left: 9rem;
}

/* Styling for the individual logos */
.logo {
  width: 150px; /* Ensuring logos are the same size */
  max-width: 150px;
}

/* Adding a hover effect to stop animation */
.brand-slider-wrap:hover .logos-slider-container {
  animation-play-state: paused;
}

/* Animation to slide logos */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Make links clickable and ensure they open in a new tab */
.logo-link {
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
  

  .logo {
    width: 100px; /* Ensuring logos are the same size */
    max-width: 100px;}

  


}



/*brand slider End*/





/*Testimonials*/

/* Full-Screen Margin */
.full-screen-margin {
  margin-left: 6.25rem;
  margin-right: 6.25rem;
}

@media screen and (max-width: 768px) {
  .full-screen-margin {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}

/* General Styles */
.testimonial-slider {
  padding: 2rem 0;
}

.testimonial-slider-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 600;
}

/* Card Wrapper for Space Between Cards */
.testimonial-card-wrapper {
  padding: 0 15px; /* Space between cards */
  box-sizing: border-box;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

.testimonial-name {
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: bold;
}

.testimonial-text {
  color: #555;
  line-height: 1.5;
}

/* Slick Slider Dots */
.slick-dots {
  bottom: -25px;
  text-align: center;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #333;
}

.slick-dots li.slick-active button:before {
  color: #007bff;
}

/* Custom Arrows */
.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e7e2e2;
  color: #fff;
  width: 35px;
  height: 45px;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.custom-arrow:hover {
  background-color: #A7402D;
}

.custom-prev {
  left: -0px;
}

.custom-next {
  right: -0px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .custom-prev {
    left: -40px;
  }

  .custom-next {
    right: -40px;
  }
}

@media (max-width: 768px) {
  .custom-prev {
    left: -30px;
  }

  .custom-next {
    right: -30px;
  }

  .testimonial-card {
    padding: 1rem;
  }

  .testimonial-card-wrapper {
  padding: 0 ;
}

  
}





/*blog Slider*/


.blog-section {
  display: grid;
  grid-template-columns: 6.25rem 1fr 6.25rem;
  grid-template-rows: 1fr 600px;
  margin-bottom: 100px;
  margin-top: 50px;
}

.blog-section-name {
  grid-column: 2/3;
  grid-row: 1/2;
}

.slider {
  grid-column: 2/3;
  grid-row: 2/3;
  height: 600px;
  margin-top: 50px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider .list .item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
  display: none; /* Hidden by default */
}

.slider .list .item.active {
  display: block; /* Show the active slide */
}

.slider .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider .list .item .content {
  position: absolute;
  top: 20%;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 30%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
}

.description {
  padding-right: 200px;
}

.slider .list .item .content .title,
.slider .list .item .content .type {
  font-size: 5vh;
  font-weight: bold;
  line-height: 2em;
}

.slider .list .item .content .type {
  color: #14ff72cb;
}

.slider .list .item .button {
  display: grid;
  grid-template-columns: repeat(2, 130px);
  grid-template-rows: 40px;
  gap: 5px;
  margin-top: 20px;
}

.slider .list .item .button button {
  border: none;
  background-color: #eee;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  letter-spacing: 2px;
}

.slider .list .item .button button:hover {
  letter-spacing: 3px;
}

.slider .list .item .button button:nth-child(2) {
  background-color: transparent;
  border: 1px solid #fff;
  color: #eee;
}

.thumbnail {
  position: absolute;
  bottom: 50px;
  left: 78%;
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 20px;
  transform: translateX(-50%);
}

.thumbnail .item {
  width: 150px;
  height: 220px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

.thumbnail .item.active-thumbnail {
  opacity: 1;
  transform: scale(1.1);
}

.nextPrevArrows {
  position: absolute;
  top: 85%;
  right: 50%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateX(-50%);
}

.nextPrevArrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  color: #b6b6b6;
  font-family: monospace;
  font-weight: bold;
  transition: 0.5s;
  cursor: pointer;
}

.nextPrevArrows button:hover {
  background-color: #b6b6b6;
  color: #000;
}

/* Animations */
.slider .list .item .content .title,
.slider .list .item .content .type,
.slider .list .item .content .description,
.slider .list .item .content .buttons {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 1s linear 1 forwards;
}

@keyframes showContent {
  to {
    transform: translateY(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .slider .list .item .content {
    padding-right: 0;
  }
  .slider .list .item .content .title {
    font-size: 50px;
  }




.blog-section {
  display: none;
  grid-template-columns: 3rem 1fr 3rem;
  grid-template-rows: auto auto;
  margin-bottom: 100px;
  margin-top: 50px;
}

.blog-section-name {
  grid-column: 2/3;
  grid-row: 1/2;
}

.slider {
  grid-column: 2/3;
  grid-row: 2/3;
  height: 600px;
  margin-top: 50px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
}



















    /*footer*/


    .footer-margin{
      margin-top: 50px;
  }
  
  .main-footer{
      width: 100%;
      display: grid;
      padding: 20px 0;
      grid-template-columns: 6.25rem 1fr 1fr 1fr 1fr 6.25rem;
      background-color: #A7402D;
  }
  
  .footer-info{
      grid-column: 2/3;
      color: white;
      padding-right: 10px;
  }
  
  .footer-info h4{
      font-family:  'Calibri',sans-serif;
  }
  
  .footer-branch{
      grid-column: 3/4;
      color: white;
      display: flex;
      justify-content: center;
  }
  
  .footer-quick{
      grid-column: 4/5;
      color: white;
      display: flex;
      justify-content: center;
  }
  
  .footer-popular{
      grid-column: 5/6;
      color: white;
      display: flex;
      justify-content: end;
  }
  
  .footer-branch ul{
      padding-left: 20px;
      padding-top: 10px;
  }
  
  .footer-branch ul li a{
      text-decoration: none;
      color: white;
  }
  
  .footer-branch ul li{
      padding: 3.5px 2px;
  }
  
  .footer-quick ul{
      padding-left: 20px;
      padding-top: 10px;
  }
  
  .footer-quick ul li a{
      text-decoration: none;
      color: white;
  }
  .footer-quick ul li{
      padding: 3.5px 2px;
  }
  .footer-popular ul{
      padding-left: 20px;
      padding-top: 10px;
  }
  
  .footer-popular ul li{
      padding: 3.5px 2px;
  }
  .footer-popular ul li a{
      text-decoration: none;
      color: white;
  
  }
  
  @media  screen and (max-width: 1030px){
      .main-footer{
          width: 100%;
          display: grid;
          padding: 20px 0;
          grid-template-columns: 6.25rem 1fr 6.25rem;
          grid-template-rows: 1fr, 1fr, 1fr, 1fr;
          background-color: #A7402D;}
  
      .footer-info{
          grid-column: 2/3;
          grid-row: 1/2;
      }
  
      .footer-branch{
          grid-column: 2/3;
          grid-row: 2/3;
          margin-top: 25px;
      }
  
      .footer-quick{
          grid-column: 2/3;
          grid-row: 3/4;
          margin-top: 25px;
      }
  
      .footer-popular{
          grid-column: 2/3;
          grid-row: 4/5;
          margin-top: 25px;
      }
  
      .footer-branch{
          display: flex;
          justify-content: start;
      }
  
      .footer-quick{
          display: flex;
          justify-content: start;
      }
  
      .footer-popular{
          display: flex;
          justify-content: start;
      }
  }



  @media  screen and (max-width: 1030px){
    .main-footer{
        width: 100%;
        display: grid;
        padding: 20px 0;
        grid-template-columns: .8rem 1fr .8rem;
        grid-template-rows: 1fr, 1fr, 1fr, 1fr;
        background-color: #A7402D;}

    .footer-info{
        grid-column: 2/3;
        grid-row: 1/2;
    }

    .footer-branch{
        grid-column: 2/3;
        grid-row: 2/3;
        margin-top: 25px;
    }

    .footer-quick{
        grid-column: 2/3;
        grid-row: 3/4;
        margin-top: 25px;
    }

    .footer-popular{
        grid-column: 2/3;
        grid-row: 4/5;
        margin-top: 25px;
    }

    .footer-branch{
        display: flex;
        justify-content: start;
    }

    .footer-quick{
        display: flex;
        justify-content: start;
    }

    .footer-popular{
        display: flex;
        justify-content: start;
    }
}
  
  @media  screen and (max-width: 768px){
  
      .footer-margin{
          margin-top: 30px;
      }
  
  }
  
  @media  screen and (max-width: 385px){
      
  }
  
  .footer-copywrite{
      background-color: #862D1D;
      padding: 10px 0;
      display: flex;
      justify-content: center;
  }
  
  .footer-copywrite p{
      color: white;
  }

/* Dialog Box Styles */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.dialog-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
}

.dialog-box h3 {
  margin: 0 0 10px 0;
}

.dialog-box p {
  margin-bottom: 20px;
}

.closee-btn {
  background-color: #A7402D;
  color: white;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
}

.closee-btn:hover {
  background-color: #a24536;
}

.branch-link {
  background: none;
  border: none;
  color: white;
  text-decoration: underline;
  cursor: pointer;
}

.branch-link:hover {
  color: #ffcccb;
}




/*social media Handle*/





.social-media ul {
  
  
  right: 10px;
  
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}

.social-media ul li {
  list-style: none;
  margin: 3px 0;
}

.socialmedia {
  position: relative;
  width: 40px; /* Smaller size */
  height: 40px; /* Smaller size */
  display: block;
  text-align: center;
  border-radius: 50%;
  padding: 5px;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 5px 10px rgba(58, 53, 53, 0.726);
  background: #ffffff; /* New background color */
  transition: 0.5s;
}

.social-media ul li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.social-media ul li a .fab {
  width: 100%;
  height: 100%;
  display: block;
  background: none; /* Remove background for icons */
  border-radius: 50%;
  line-height: calc(40px - 10px); /* Adjust for smaller size */
  font-size: 16px; /* Smaller icon size */
  color: #912b2c; /* White icon color */
  transition: 0.5s;
}

.social-media ul li:nth-child(1) a:hover .fab {
  color: #3b5998;
}

.social-media ul li:nth-child(2) a:hover .fab {
  color: #00aced;
}

.social-media ul li:nth-child(3) a:hover .fab {
  color: #0072b1;
}

.social-media ul li:nth-child(4) a:hover .fab {
  color: linear-gradient(to right, #f9ce34, #ee2a7b, #6228d7);;
}

.social-media ul li:nth-child(5) a:hover .fab {
  color: #25D366;
}



/* Prevent global horizontal scroll */
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: arial, sans-serif;
}

.main-com-pro-main-bg {
  background-image: 
    linear-gradient(to bottom, rgb(0, 0, 0), rgba(253, 252, 252, 0.6), rgb(253, 252, 252)), 
    url(/static/media/ems1.950de74b43ff1ad24a9a.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 35px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ========== Desktop view (≥1200px): show grid ========== */
.main-com-pro-main {
  display: grid;
  width: 100%;
  max-width: 1200px;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  padding: 0 1rem;
  margin: 30px auto;
  box-sizing: border-box;
}

/* Video Box */
.main-com-pro-main-box {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.main-com-pro-main-box:hover {
  transform: translateY(-5px);
}

.main-com-pro-main-box video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}

/* Video label */
.main-com-pro-description {
  text-align: center;
  padding: 10px 0;
  font-size: clamp(10px, 2.5vw, 14px); 
  color: #333;
  white-space: nowrap;               
  overflow: hidden;                   
  text-overflow: ellipsis;           
}

/* Text Block */
.main-com-art {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 20px;
  text-align: justify;
  max-width: 1200px;
  width: 100%;
  margin-top: 2rem;
}

/* Hide scroll view by default */
.main-com-pro-scroll-wrapper {
  display: none;
}

/* ========== Tablet view (768px–1199px): 6 videos in swipe ========== */
@media screen and (max-width: 1199px) {
  .main-com-pro-main {
    display: none;
  }

  .main-com-pro-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .main-com-pro-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .main-com-pro-scroll-page {
    flex: 0 0 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

  .main-com-art {
    padding: 10px;
    margin-top: 1rem;
  }
}

/* ========== Mobile view (<768px): 4 videos in swipe ========== */
@media screen and (max-width: 767px) {
  .main-com-pro-main {
    display: none;
  }

  .main-com-pro-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .main-com-pro-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .main-com-pro-scroll-page {
    flex: 0 0 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

  .main-com-art {
    padding: 10px;
    margin-top: 1rem;
  }
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url(data:image/gif;base64,R0lGODlhIAAgAPUAAP///wAAAPr6+sTExOjo6PDw8NDQ0H5+fpqamvb29ubm5vz8/JKSkoaGhuLi4ri4uKCgoOzs7K6urtzc3D4+PlZWVmBgYHx8fKioqO7u7kpKSmxsbAwMDAAAAM7OzsjIyNjY2CwsLF5eXh4eHkxMTLCwsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH+GkNyZWF0ZWQgd2l0aCBhamF4bG9hZC5pbmZvACH5BAAKAAAAIf8LTkVUU0NBUEUyLjADAQAAACwAAAAAIAAgAAAG/0CAcEgkFjgcR3HJJE4SxEGnMygKmkwJxRKdVocFBRRLfFAoj6GUOhQoFAVysULRjNdfQFghLxrODEJ4Qm5ifUUXZwQAgwBvEXIGBkUEZxuMXgAJb1dECWMABAcHDEpDEGcTBQMDBQtvcW0RbwuECKMHELEJF5NFCxm1AAt7cH4NuAOdcsURy0QCD7gYfcWgTQUQB6Zkr66HoeDCSwIF5ucFz3IC7O0CC6zx8YuHhW/3CvLyfPX4+OXozKnDssBdu3G/xIHTpGAgOUPrZimAJCfDPYfDin2TQ+xeBnWbHi37SC4YIYkQhdy7FvLdpwWvjA0JyU/ISyIx4xS6sgfkNS4me2rtVKkgw0JCb8YMZdjwqMQ2nIY8BbcUQNVCP7G4MQq1KRivR7tiDEuEFrggACH5BAAKAAEALAAAAAAgACAAAAb/QIBwSCQmNBpCcckkEgREA4ViKA6azM8BEZ1Wh6LOBls0HA5fgJQ6HHQ6InKRcWhA1d5hqMMpyIkOZw9Ca18Qbwd/RRhnfoUABRwdI3IESkQFZxB4bAdvV0YJQwkDAx9+bWcECQYGCQ5vFEQCEQoKC0ILHqUDBncCGA5LBiHCAAsFtgqoQwS8Aw64f8m2EXdFCxO8INPKomQCBgPMWAvL0n/ff+jYAu7vAuxy8O/myvfX8/f7/Arq+v0W0HMnr9zAeE0KJlQkJIGCfE0E+PtDq9qfDMogDkGmrIBCbNQUZIDosNq1kUsEZJBW0dY/b0ZsLViQIMFMW+RKKgjFzp4fNokPIdki+Y8JNVxA79jKwHAI0G9JGw5tCqDWTiFRhVhtmhVA16cMJTJ1OnVIMo1cy1KVI5NhEAAh+QQACgACACwAAAAAIAAgAAAG/0CAcEgkChqNQnHJJCYWRMfh4CgamkzFwBOdVocNCgNbJAwGhKGUOjRQKA1y8XOGAtZfgIWiSciJBWcTQnhCD28Qf0UgZwJ3XgAJGhQVcgKORmdXhRBvV0QMY0ILCgoRmIRnCQIODgIEbxtEJSMdHZ8AGaUKBXYLIEpFExZpAG62HRRFArsKfn8FIsgjiUwJu8FkJLYcB9lMCwUKqFgGHSJ5cnZ/uEULl/CX63/x8KTNu+RkzPj9zc/0/Cl4V0/APDIE6x0csrBJwybX9DFhBhCLgAilIvzRVUriKHGlev0JtyuDvmsZUZlcIiCDnYu7KsZ0UmrBggRP7n1DqcDJEzciOgHwcwTyZEUmIKEMFVIqgyIjpZ4tjdTxqRCMPYVMBYDV6tavUZ8yczpkKwBxHsVWtaqo5tMgACH5BAAKAAMALAAAAAAgACAAAAb/QIBwSCQuBgNBcck0FgvIQtHRZCYUGSJ0IB2WDo9qUaBQKIXbLsBxOJTExUh5mB4iDo0zXEhWJNBRQgZtA3tPZQsAdQINBwxwAnpCC2VSdQNtVEQSEkOUChGSVwoLCwUFpm0QRAMVFBQTQxllCqh0kkIECF0TG68UG2O0foYJDb8VYVa0alUXrxoQf1WmZnsTFA0EhgCJhrFMC5Hjkd57W0jpDsPDuFUDHfHyHRzstNN78PPxHOLk5dwcpBuoaYk5OAfhXHG3hAy+KgLkgNozqwzDbgWYJQyXsUwGXKNA6fnYMIO3iPeIpBwyqlSCBKUqEQk5E6YRmX2UdAT5kEnHKkQ5hXjkNqTPtKAARl1sIrGoxSFNuSEFMNWoVCxEpiqyRlQY165wEHELAgAh+QQACgAEACwAAAAAIAAgAAAG/0CAcEgsKhSLonJJTBIFR0GxwFwmFJlnlAgaTKpFqEIqFJMBhcEABC5GjkPz0KN2tsvHBH4sJKgdd1NHSXILah9tAmdCC0dUcg5qVEQfiIxHEYtXSACKnWoGXAwHBwRDGUcKBXYFi0IJHmQEEKQHEGGpCnp3AiW1DKFWqZNgGKQNA65FCwV8bQQHJcRtds9MC4rZitVgCQbf4AYEubnKTAYU6eoUGuSpu3fo6+ka2NrbgQAE4eCmS9xVAOW7Yq7IgA4Hpi0R8EZBhDshOnTgcOtfM0cAlTigILFDiAFFNjk8k0GZgAxOBozouIHIOyKbFixIkECmIyIHOEiEWbPJTTQ5FxcVOMCgzUVCWwAcyZJvzy45ADYVZNIwTlIAVfNB7XRVDLxEWLQ4E9JsKq+rTdsMyhcEACH5BAAKAAUALAAAAAAgACAAAAb/QIBwSCwqFIuicklMEgVHQVHKVCYUmWeUWFAkqtOtEKqgAsgFcDFyHJLNmbZa6x2Lyd8595h8C48RagJmQgtHaX5XZUYKQ4YKEYSKfVKPaUMZHwMDeQBxh04ABYSFGU4JBpsDBmFHdXMLIKofBEyKCpdgspsOoUsLXaRLCQMgwky+YJ1FC4POg8lVAg7U1Q5drtnHSw4H3t8HDdnZy2Dd4N4Nzc/QeqLW1bnM7rXuV9tEBhQQ5UoCbJDmWKBAQcMDZNhwRVNCYANBChZYEbkVCZOwASEcCDFQ4SEDIq6WTVqQIMECBx06iCACQQPBiSabHDqzRUTKARMhSFCDrc+WNQIcOoRw5+ZIHj8ADqSEQBQAwKKLhIzowEEeGKQ0owIYkPKjHihZoBKi0KFE01b4zg7h4y4IACH5BAAKAAYALAAAAAAgACAAAAb/QIBwSCwqFIuicklMEgVHQVHKVCYUmWeUWFAkqtOtEKqgAsgFcDFyHJLNmbZa6x2Lyd8595h8C48RagJmQgtHaX5XZUUJeQCGChGEin1SkGlubEhDcYdOAAWEhRlOC12HYUd1eqeRokOKCphgrY5MpotqhgWfunqPt4PCg71gpgXIyWSqqq9MBQPR0tHMzM5L0NPSC8PCxVUCyeLX38+/AFfXRA4HA+pjmoFqCAcHDQa3rbxzBRD1BwgcMFIlidMrAxYICHHA4N8DIqpsUWJ3wAEBChQaEBnQoB6RRr0uARjQocMAAA0w4nMz4IOaU0lImkSngYKFc3ZWyTwJAALGK4fnNA3ZOaQCBQ22wPgRQlSIAYwSfkHJMrQkTyEbKFzFydQq15ccOAjUEwQAIfkEAAoABwAsAAAAACAAIAAABv9AgHBILCoUi6JySUwSBUdBUcpUJhSZZ5RYUCSq060QqqACyAVwMXIcks2ZtlrrHYvJ3zn3mHwLjxFqAmZCC0dpfldlRQl5AIYKEYSKfVKQaW5sSENxh04ABYSFGU4LXYdhR3V6p5GiQ4oKmGCtjkymi2qGBZ+6eo+3g8KDvYLDxKrJuXNkys6qr0zNygvHxL/V1sVD29K/AFfRRQUDDt1PmoFqHgPtBLetvMwG7QMes0KxkkIFIQNKDhBgKvCh3gQiqmxt6NDBAAEIEAgUOHCgBBEH9Yg06uWAIQUABihQMACgBEUHTRwoUEOBIcqQI880OIDgm5ABDA8IgUkSwAAyij1/jejAARPPIQwONBCnBAJDCEOOCnFA8cOvEh1CEJEqBMIBEDaLcA3LJIEGDe/0BAEAIfkEAAoACAAsAAAAACAAIAAABv9AgHBILCoUi6JySUwSBUdBUcpUJhSZZ5RYUCSq060QqqACyAVwMXIcks2ZtlrrHYvJ3zn3mHwLjxFqAmZCC0dpfldlRQl5AIYKEYSKfVKQaW5sSENxh04ABYSFGU4LXYdhR3V6p5GiQ4oKmGCtjkymi2qGBZ+6eo+3g8KDvYLDxKrJuXNkys6qr0zNygvHxL/V1sVDDti/BQccA8yrYBAjHR0jc53LRQYU6R0UBnO4RxmiG/IjJUIJFuoVKeCBigBN5QCk43BgFgMKFCYUGDAgFEUQRGIRYbCh2xACEDcAcHDgQDcQFGf9s7VkA0QCI0t2W0DRw68h8ChAEELSJE8xijBvVqCgIU9PjwA+UNzG5AHEB9xkDpk4QMGvARQsEDlKxMCALDeLcA0rqEEDlWCCAAAh+QQACgAJACwAAAAAIAAgAAAG/0CAcEgsKhSLonJJTBIFR0FRylQmFJlnlFhQJKrTrRCqoALIBXAxchySzZm2Wusdi8nfOfeYfAuPEWoCZkILR2l+V2VFCXkAhgoRhIp9UpBpbmxIQ3GHTgAFhIUZTgtdh2FHdXqnkaJDigqYYK2OTKaLaoYFn7p6j0wOA8PEAw6/Z4PKUhwdzs8dEL9kqqrN0M7SetTVCsLFw8d6C8vKvUQEv+dVCRAaBnNQtkwPFRQUFXOduUoTG/cUNkyYg+tIBlEMAFYYMAaBuCekxmhaJeSeBgiOHhw4QECAAwcCLhGJRUQCg3RDCmyUVmBYmlOiGqmBsPGlyz9YkAlxsJEhqCubABS9AsPgQAMqLQfM0oTMwEZ4QpLOwvMLxAEEXIBG5aczqtaut4YNXRIEACH5BAAKAAoALAAAAAAgACAAAAb/QIBwSCwqFIuicklMEgVHQVHKVCYUmWeUWFAkqtOtEKqgAsgFcDFyHJLNmbZa6x2Lyd8595h8C48RahAQRQtHaX5XZUUJeQAGHR0jA0SKfVKGCmlubEhCBSGRHSQOQwVmQwsZTgtdh0UQHKIHm2quChGophuiJHO3jkwOFB2UaoYFTnMGegDKRQQG0tMGBM1nAtnaABoU3t8UD81kR+UK3eDe4nrk5grR1NLWegva9s9czfhVAgMNpWqgBGNigMGBAwzmxBGjhACEgwcgzAPTqlwGXQ8gMgAhZIGHWm5WjelUZ8jBBgPMTBgwIMGCRgsygVSkgMiHByD7DWDmx5WuMkZqDLCU4gfAq2sACrAEWFSRLjUfWDopCqDTNQIsJ1LF0yzDAA90UHV5eo0qUjB8mgUBACH5BAAKAAsALAAAAAAgACAAAAb/QIBwSCwqFIuickk0FIiCo6A4ZSoZnRBUSiwoEtYipNOBDKOKKgD9DBNHHU4brc4c3cUBeSOk949geEQUZA5rXABHEW4PD0UOZBSHaQAJiEMJgQATFBQVBkQHZKACUwtHbX0RR0mVFp0UFwRCBSQDSgsZrQteqEUPGrAQmmG9ChFqRAkMsBd4xsRLBBsUoG6nBa14E4IA2kUFDuLjDql4peilAA0H7e4H1udH8/Ps7+3xbmj0qOTj5mEWpEP3DUq3glYWOBgAcEmUaNI+DBjwAY+dS0USGJg4wABEXMYyJNvE8UOGISKVCNClah4xjg60WUKyINOCUwrMzVRARMGENWQ4n/jpNTKTm15J/CTK2e0MoD+UKmHEs4onVDVVmyqdpAbNR4cKTjqNSots07EjzzJh1S0IADsAAAAAAAAAAAA=) center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url(/static/media/slick.a4e97f5a2a64f0ab1323.eot);
    src: url(/static/media/slick.a4e97f5a2a64f0ab1323.eot?#iefix) format('embedded-opentype'), url(/static/media/slick.295183786cd8a1389865.woff) format('woff'), url(/static/media/slick.c94f7671dcc99dce43e2.ttf) format('truetype'), url(/static/media/slick.2630a3e3eab21c607e21.svg#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* Container for the slider */
.slider-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: black;
}

/* Slide container */
.slide {
  position: relative;
  display: inline-block;
}

/* Base video styling (same for both by default) */
.slide-media {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* Ensures full video is visible */
  background-color: black;
}

/* Hide mobile video by default */
.video-mobile {
  display: none;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .video-desktop {
    display: none; /* Hide desktop video on small screens */
  }

  .video-mobile {
    display: block;
    width: 100vw;        /* Full width of screen */
    height: 100vh;       /* Full height of screen */
    object-fit: contain; /* Show entire 9:16 video */
    background-color: black;
  }
}

/* Container */
.educational-container {
  margin: 0 6.25rem;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  .educational-container {
    margin: 0 0.8rem;
  }
}

/* Heading */
.educational-heading {
  text-align: center;
  font-weight: 600;
  margin-bottom: 2rem;
  
}

/* Horizontal Slider */
.video-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  width: 100%;
  scrollbar-width: none;
}

.video-slider::-webkit-scrollbar {
  display: none;
}

/* Video Card */
.video-card {
  flex: 0 0 auto;
  width: 300px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Slide-in Animation */
@keyframes slideInRightToLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in {
  animation: slideInRightToLeft 0.6s ease forwards;
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3.5 / 4;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play Button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-color: #912b2c; 
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: auto;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.video-wrapper:hover .play-button {
  opacity: 1;
}

/* White Play Triangle */
.play-button::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 2px;
}


/* Info Text */
.video-info {
  padding: 1rem;
}

.video-info h4 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: #222;
}

.video-info p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: #000;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
}

.modal-content iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  color: #000;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000; /* ensure it's above iframe */
}


/* Explore More Section */
.exploree-wrapper {
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  outline: none;
}

.exploree-btn {
  background-color: transparent; /* remove background */
  color: #A7402D;
  background: #f9f9f9;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  padding: 1rem 1rem;
  white-space: nowrap;
  outline: none;
  border: none;
  transition: color 0.3s ease, transform 0.3s ease, text-decoration 0.3s ease;
  
}

.exploree-btn:hover {
 transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  
}


.arrow {
  font-size: 2rem; 
  font-weight: 900;
  line-height: 0;
  transition: transform 0.4s ease;
}

.exploree-btn:hover .arrow {
  transform: translateX(5px); 
}

@media screen and (max-width: 768px) {
  .exploree-wrapper{
    right: 0;
  }

  .exploree-btn{
    padding: .8rem .8rem;
  }

}



html {
  scroll-behavior: smooth;
}

.about-page-container {
  display: grid;
  grid-template-columns: 2rem 1fr 1fr 2rem;
  margin-top: 20px;
}

.about-page-container-about {
  grid-column: 3/4;
  grid-row: 1/2;
  align-self: center;
}

.about-page-container-image {
  grid-column: 2/3;
  grid-row: 1/2;
  align-self: center;
}

.about-image {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .about-page-container {
    display: grid;
    grid-template-columns: 0.5rem 1fr 0.5rem;
    grid-template-rows: auto;
  }

  .about-page-container-about {
    grid-column: 2/3;
    grid-row: 2/3;
    align-self: center;
  }

  .about-page-container-image {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}

.news-title {
  color: #8a2e10;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 30px 90px;
  position: relative;
  padding-bottom: 12px;
}

.about-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.hero-section {
  margin-bottom: 4rem;
}

.hero-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
  margin-bottom: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* always 3 cards side by side */
  gap: 2rem;
  margin-left: 60px;
  margin-right: 60px;
}

.value-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  padding: 1rem;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.value-card:hover {
  transform: translateY(-5px);
}

.card-content {
  padding: 0.5rem;
}

.card-content h2 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card-divider {
  height: 2px;
  width: 40px;
  background: #A7402D;
  margin-bottom: 0.5rem;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.values-list li::before {
  content: "•";
  color: #A7402D;
  position: absolute;
  left: 0;
}

/* Publications Section */
.aman {
  text-align: center;
  margin-bottom: 2rem;
  color: #A7402D;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}
.aman::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #A7402D;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: 1fr 1fr; /* two cards side by side */
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr; /* stack vertically on small screens */
    margin-left: 0;
    margin-right: 0;
  }

  .about-page {
    padding: 1rem;
  }
}
.contact-page-main-design{
    height: 100%;
}



.contact-page-upper{
    width: 100%;
    height: 50vh;
    background-color: #eebeb5e1;
    background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.151)),
    url(/static/media/cus.5c2ce6e7d7939af0b959.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-page-height{
    height:85vh ;
}

.contact-page-upper-d{
    display: grid;
    grid-template-columns: 6.25rem 1fr 1fr 1fr 6.25rem;
    position: relative;
    top: 33vh;
    
}



.contact-page-box1{
    grid-column: 2/3;
    
    background-color: white;
    margin-right: 3rem;
    border-radius: 8%;
    box-shadow: 10px 13px 20px 0px #912b2c54;
}

.contact-page-box1 a button{
    border-radius: 5px;
    background-color: white;
    padding: 10px;
    color: #912b2c;
    border-color: #912b2c;
}

.contact-page-box1 a button:hover {
    color: white;
    background-color: #912b2c;
}

.contact-page-box2{
    grid-column: 3/4;
    
    background-color: white;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    border-radius: 8%;
    box-shadow: 10px 13px 20px 0px #912b2c54;
}

.contact-page-box2 a button{
    border-radius: 5px;
    background-color: white;
    padding: 10px;
    color: #912b2c;
    border-color: #912b2c;
}

.contact-page-box2 a button:hover {
    color: white;
    background-color: #912b2c;
}


.contact-page-box3{
    grid-column: 4/5;
    
    background-color: white;
    margin-left: 3rem;
    border-radius: 8%;
    box-shadow: 10px 13px 20px 0px #912b2c54;
}

.contact-page-box3 a button{
    border-radius: 5px;
    background-color: white;
    padding: 10px;
    color: #912b2c;
    border-color: #912b2c;
}

.contact-page-box3 a button:hover {
    color: white;
    background-color: #912b2c;
}


@media screen and (max-width: 768px) {

    .contact-page-upper-d{
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
        grid-template-rows: auto;
        top:25vh;
        row-gap: 2.5rem;
    }

    .contact-page-height{
        height:250vh ;
    }

    .contact-page-box1{
        grid-column: 2/3;
        grid-row: 1/2;
        margin-right: 0;
        
    }

    .contact-page-box2{
        grid-column: 2/3;
        grid-row: 2/3;
        margin-left: 0;
        margin-right: 0;
        
    }

    .contact-page-box3{
        grid-column: 2/3;
        grid-row: 3/4;
        margin-left: 0;
        
    }
}


@media screen and (max-width: 668px) {

    .contact-page-height{
        height:239vh ;
    }

}

@media screen and (max-width: 568px) {

    .contact-page-height{
        height:220vh ;
    }

}




@media screen and (max-width: 430px) {

    .contact-page-upper-d{
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
        grid-template-rows: auto;
        top:25vh;
        row-gap: 2.5rem;
    }

    .contact-page-height{
        height:187vh ;
    }

    .contact-page-box1{
        grid-column: 2/3;
        grid-row: 1/2;
        margin-right: 0;
        
    }

    .contact-page-box2{
        grid-column: 2/3;
        grid-row: 2/3;
        margin-left: 0;
        margin-right: 0;
       
    }

    .contact-page-box3{
        grid-column: 2/3;
        grid-row: 3/4;
        margin-left: 0;
        
    }
}



/*contact page*/


.contact-form-main-grid{
    display: grid;
    grid-template-columns: 6.25rem 1fr 1fr 6.25rem;
    margin-top: 2rem;
}

.contact-form-container{
    grid-column: 2/3;
}

.contact-form-container-art{
    grid-column: 3/4;
}









.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.contact-form h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}


 

.contact_page_art{
    margin: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
    height: 80px;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #912b2c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #c75b5d;
}



@media screen and (max-width: 768px) {

    .contact-form-main-grid{
        display: grid;
        grid-template-columns: .8rem  1fr .8rem;
        grid-template-rows: auto;
        margin-top: 2rem;
    }
    
    .contact-form-container{
        grid-column: 2/3;
        grid-row: 1/2;
    }
    
    .contact-form-container-art{
        grid-column: 2/3;
        grid-row: 2/3;
        margin-top: 2rem;
    }

    .contact-form-container-art p{
        margin: 0;
        
    }
}








*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.sumitomo-page{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    background-image: 
    linear-gradient(to top, rgb(255, 254, 254), rgba(255, 255, 255, 0.692)),
    url(/static/media/sum01.cc196cf1b64d791a6432.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    
    
}

.sumitomo-page-pro-main{
    grid-column: 2/3;
    padding-top: 50px;
}


.sumitomo-page-pro-name{
    text-align: center;
    
}

.sumitomo-page-pro-art{
    text-align: left;
    padding-left: 10px;
}

.sumitomopro-btn{
    border: none;
    background-color: white;
    
}

.sumitomo-logo{
    width: 25%;
}

@media screen and (max-width: 768px) {

    .sumitomo-page{
        display: grid;
        grid-template-columns: .8rem 1fr .8rem; 
    }


    .sumitomo-page-pro-main{
        grid-column: 2/3;
        padding-top: 20px;
        margin-bottom: 10px;
    }

    .sumitomo-logo{
        width: 60%;
    }

}



/* product section*/



.sumitomoproduct-page {
    display: grid;
    grid-template-columns: 6.25rem 1.2fr 4fr 6.25rem;
}



/* Tabs Section */
.sumitomoproduct-page-controls {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 8px 8px;
    max-height: 40vh;
    margin-top: 20px;
    row-gap: .5rem;
}

.button-size {
    padding: 8px;
    background-color: white;
    cursor: pointer;
}

.button-size:hover {
    background-color: #edd9d6;
    border-radius: 8px;
}

.button-size.active{
    background-color: #edd9d6;
    border-radius: 8px;
    
}

.button-size:hover .button-btn {
    color: #aa3e2d;
}

.button-size.active .button-btn h4 {
    color: #aa3e2d;
}




.button-btn {
    border: none;
    color: #a3a3a3;
    font-weight: 600;
    margin-left: 10px;
    padding-right: 50px;
}




/* Default (inactive) state for special tab */
.button-size.special-tab {
  background-color: white; /* light blue or your custom color */
}

/* Active state for special tab */
.special-tab.active {
  background-color: white; 
}

/* Optional: adjust text color for contrast */
.special-tab .button-btn h4 {
  color: black;
  font-size: 20px;
}

.button-size.special-tab.active .button-btn h4 {
  color: black;
  font-size: 20px;
}


/* Product Grid */
.sumitomoproduct-page-product {
    grid-column: 3/4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding: 0 20px;
}

/* Single Product Card */
.product-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.product-image {
    width: 100%;
    height: auto; 
    max-height: 200px; 
    object-fit: contain; 
    margin-bottom: 15px;
}
/* Product Title */
.product-title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

/* Product Name Button */
.product-name-button {
    background-color: #A7402D;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 16px;
    margin: 10px 0;
    cursor: default;
}

/* Product Description */
.product-description {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin: 10px 0;
}

/* Buttons Section */
.product-buttonss {
    margin-top: auto;
    gap: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-row: auto;
}


.sbtn_product1{
    grid-column: 2/4;
    grid-row: 1/2;
}

.sbtn_product{
    grid-column: 1/3;
    grid-row: 2/3;
}

.sbtn_product2{
    grid-column: 3/5;
    grid-row: 2/3;

}

.sbtn_product, .sbtn_product2 {
    padding: 8px;
    font-size: 14px;
    background-color: #f9f9f9;
    color: #b3b2b2;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 3px;
    text-decoration: none;
}

.sbtn_product1 {
    padding: 8px;
    font-size: 14px;
    background-color: #A7402D;
    color: white;
    text-align: center;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 3px;
    text-decoration: none;
}


.sbtn_product:hover,
.sbtn_product2:hover {
    background-color: #f9f9f9;
    color: black;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .sumitomoproduct-page {
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
    }

    .sumitomoproduct-page-controls {
        grid-column: 2/3;
        margin-top: 10px;
        max-height: 53vh;
        
    }

    .sumitomoproduct-page-product {
        grid-column: 2/3;
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .product-buttons {
        grid-template-columns: 1fr;
    }

    .sbtn_product, .sbtn_product1, .sbtn_product2 {
        font-size: 14px;
        padding: 6px;
    }
}

/* Prevent tap highlight on mobile browsers */
.button-size,
.button-btn,
.sbtn_product,
.sbtn_product1,
.sbtn_product2 {
  -webkit-tap-highlight-color: transparent; /* For iOS Safari */
 
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.deviser-page{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    background-image: 
    linear-gradient(to top, rgb(255, 254, 254), rgba(255, 255, 255, 0.692)),
    url(/static/media/sum01.cc196cf1b64d791a6432.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.deviser-page-pro-main{
    grid-column: 2/3;
    padding-top: 50px;
}


.deviser-page-pro-name{
    text-align: center;
    
}

.deviser-page-pro-art{
    text-align: left;
    padding-left: 10px;
}

.deviserpro-btn{
    border: none;
    background-color: white;
    
}

.button-size.active{
    background-color: rgb(207, 207, 207);
}

.deviser-logo{
    width: 25%;
}
 /* .spec-table-container {
  overflow-x: auto;
  margin: 30px 0;
}
.spec-table {
  min-width: 600px;
  border-collapse: collapse;
  width: 100%;
}
.spec-table th, .spec-table td {
  border: 1px solid #b0b0b0;
  padding: 8px 12px;
  text-align: left;
}  */
  .spec-table-container {
  overflow-x: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  max-width: 1200px;  /* Prevents full-width expansion */
   width: 100%;  /* Table container only as wide as needed */
  display: flex; /* Added for better centering */
  justify-content: center; /* Center the table horizontally */
}

.spec-table {
 
  border-collapse: collapse;
  border: 1px solid #e0a060;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  margin: 0 auto; /* Additional centering for the table itself */
}
.spec-table .table-header {
  background-color: #4f7ca0; /* Blue header color */
  color: white;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border: 1px solid #3d6382;
  width: 75%; /* Adjust this value to control how much of the row is covered */
}
.spec-table .empty-header {
  background-color: white;
  border: 1px solid #e0e0e0;
}

.spec-table th {
  background-color: #f7f9fc;
  color: #2c3e50;
  font-weight: 600;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 1;
}

.spec-table td {
  padding: 12px 16px;
   border: 1px solid #e0e0e0;
  color: #4a5568;
  transition: background-color 0.2s ease;
}
.spec-table td:first-child {
  color: #4f7ca0; /* Blue text to match header */
  font-weight: 500;
}

.spec-table tr:hover td {
  background-color: #f8fafc;
}

.spec-table tr:nth-child(even) {
  background-color: #fafbfd;
}

/* Rounded corners for the table */
 .spec-table th:first-child {
  border-top-left-radius: 8px;
}

.spec-table th:last-child {
  border-top-right-radius: 8px;
}

.spec-table tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.spec-table tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}  */

@media screen and (max-width: 768px) {
    .spec-table th, 
  .spec-table td {
    padding: 8px 12px;
    font-size: 14px;
  }

    .deviser-page{
        display: grid;
        grid-template-columns: .8rem 1fr .8rem; 
    }


    .deviser-page-pro-main{
        grid-column: 2/3;
        padding-top: 50px;
    }

    .deviser-logo{
        width: 50%;
    }

}


/* deviser product page */


.deviserproduct-page {
    display: grid;
    grid-template-columns: 6.25rem 1.2fr 4fr 6.25rem;
    
}



/* Tabs Section */
.deviserproduct-page-controls {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 8px 8px;
    max-height: 60vh;
    margin-top: 20px;
    row-gap: .5rem;
}

.button-size {
    padding: 8px;
    background-color: white;
    cursor: pointer;
}

.button-size:hover {
    background-color: #edd9d6;
    border-radius: 8px;
}

.button-size.active{
    background-color: #edd9d6;
    border-radius: 8px;
    
}
.button-size:hover .button-btn {
    color: #aa3e2d;
}

.button-size.active .button-btn h4 {
    color: #aa3e2d;
}




.button-btn {
    border: none;
    color: #a3a3a3;
    font-weight: 600;
    margin-left: 10px;
    padding-right: 50px;
}




/* Default (inactive) state for special tab */
.button-size.special-tab {
  background-color: white; /* light blue or your custom color */
}

/* Active state for special tab */
.button-size.special-tab.active {
  background-color: white; 
}

/* Optional: adjust text color for contrast */
.special-tab .button-btn h4 {
  color: black;
  font-size: 20px;
}

.special-tab.active .button-btn h4 {
  color: black;
  font-size: 20px;
}

/* Product Grid */
.deviserproduct-page-product {
    grid-column: 3/4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0 40px 0;
    padding: 0 20px;
}

/* Single Product Card */
.product-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.product-image {
    width: 100%;
    height: auto; 
    max-height: 200px; 
    object-fit: contain; 
    margin-bottom: 15px;
}
/* Product Title */
.product-title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

/* Product Name Button */
.product-name-button {
    background-color: #A7402D;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 16px;
    margin: 10px 0;
    cursor: default;
}

/* Product Description */
.product-description {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin: 10px 0;
}

/* Buttons Section */
.product-buttonsd {
    margin-top: auto;
    gap: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-row: auto;
}

.dbtn_product1{
    grid-column: 2/4;
    grid-row: 1/2;
}

.dbtn_product{
    grid-column: 1/3;
    grid-row: 2/3;
}

.dbtn_product2{
    grid-column: 3/5;
    grid-row: 2/3;

}

.dbtn_product, .dbtn_product2 {
    padding: 8px;
    font-size: 14px;
    background-color: #f9f9f9;
    color: #b3b2b2;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 3px;
    text-decoration: none;
}

.dbtn_product1 {
    padding: 8px;
    font-size: 14px;
    background-color: #A7402D;
    color: white;
    text-align: center;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 3px;
    text-decoration: none;
}





.dbtn_product:hover,
.dbtn_product2:hover {
    background-color: #f9f9f9;
    color: black;
}
/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .deviserproduct-page {
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
    }

    .deviserproduct-page-controls {
        grid-column: 2/3;
        margin-top: 10px;
    }

    .deviserproduct-page-product {
        grid-column: 2/3;
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .product-buttons {
        grid-template-columns: 1fr;
    }

    .dbtn_product, .dbtn_product1, .dbtn_product2 {
        font-size: 14px;
        padding: 6px;
    }
}


/* Prevent tap highlight on mobile browsers */
.button-size,
.button-btn,
.dbtn_product,
.dbtn_product1,
.dbtn_product2 {
  -webkit-tap-highlight-color: transparent; /* For iOS Safari */
  
}




*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.optronixfiber-page-fiber{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem; 
    background-image: 
    linear-gradient(to top, rgb(255, 254, 254), rgba(255, 255, 255, 0.692)),
    url(/static/media/sum01.cc196cf1b64d791a6432.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.optronixfiber-page-pro-main-fiber{
    grid-column: 2/3;
    padding-top: 50px;
}



.optronixfiber-page-pro-name-fiber{
    text-align: center;
    
}

.optronixfiber-page-pro-art-fiber{
    text-align: left;
    padding-left: 10px;
}

.optronixfiberpro-btn-fiber{
    border: none;
    background-color: white;
}




@media screen and (max-width: 768px) {

    .optronixfiber-page-fiber{
        display: grid;
        grid-template-columns: .8rem 1fr .8rem; 
    }


    .optronixfiber-page-pro-main-fiber{
        grid-column: 2/3;
        padding-top: 50px;
    }

}


/* optronix product page */


.optronixfiberproduct-page {
    display: grid;
    grid-template-columns: 6.25rem 1.2fr 4fr 6.25rem;
    
}


.optronixfiberproduct-page-controls {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 8px 8px;
    max-height: 30vh;
    margin-top: 20px;
    row-gap: .5rem;
}

.button-size {
    padding: 8px;
    background-color: white;
    cursor: pointer;
}

.button-size:hover {
    background-color: #edd9d6;
    border-radius: 8px;
}

.button-size.active{
    background-color: #edd9d6;
    border-radius: 8px;
    
}

.button-size:hover .button-btn {
    color: #aa3e2d;
}

.button-size.active .button-btn h4 {
    color: #aa3e2d;
}

.button-btn {
    border: none;
    color: #a3a3a3;
    font-weight: 600;
    margin-left: 10px;
    padding-right: 50px;
}

.button-size.special-tab {
  background-color: white; /* light blue or your custom color */
}

/* Active state for special tab */
.button-size.special-tab.active {
  background-color: white; 
}

/* Optional: adjust text color for contrast */
.special-tab .button-btn h4 {
  color: black;
}

.special-tab.active .button-btn h4 {
  color: black;
}


/* Product Grid */
.optronixfiberproduct-page-product {
    grid-column: 3/4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding: 0 20px;
}

/* Single Product Card */
.product-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.product-image {
    width: 100%;
    height: auto; /* Important for responsiveness */
    max-height: 200px; /* Adjust maximum height */
    object-fit: contain; /* IMPORTANT: No cropping, full visible image */
    margin-bottom: 15px;
}

/* Product Title */
.product-title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

/* Product Name Button */
.product-name-button {
    background-color: #A7402D;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 16px;
    margin: 10px 0;
    cursor: default;
}

/* Product Description */
.product-description {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin: 10px 0;
}

/* Buttons Section */

.product-buttonse {
    margin-top: auto;
    gap: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-row: auto;
}


.fbtn_product1{
    grid-column: 2/4;
    grid-row: 1/2;
}

.fbtn_product{
    grid-column: 1/3;
    grid-row: 2/3;
}

.fbtn_product2{
    grid-column: 3/5;
    grid-row: 2/3;

}

.fbtn_product, .fbtn_product2 {
    padding: 8px;
    font-size: 14px;
    background-color: #f9f9f9;
    color: #b3b2b2;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 3px;
    text-decoration: none;
}

.fbtn_product1 {
    padding: 8px;
    font-size: 14px;
    background-color: #A7402D;
    color: white;
    text-align: center;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 3px;
    text-decoration: none;
}


.fbtn_product:hover,
.fbtn_product2:hover {
    background-color: #f9f9f9;
    color: black;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .optronixfiberproduct-page {
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
    }

    .optronixfiberproduct-page-controls {
        grid-column: 2/3;
        margin-top: 10px;
    }

    .optronixfiberproduct-page-product {
        grid-column: 2/3;
        grid-template-columns: 1fr;
        padding: 10px;
        margin-top: 50px;
    }

    .product-buttons {
        grid-template-columns: 1fr;
    }

    .fbtn_product, .fbtn_product1, .fbtn_product2 {
        font-size: 12px;
        padding: 6px;
    }
}
/* Prevent tap highlight on mobile browsers */
.button-size,
.button-btn,
.fbtn_product,
.fbtn_product1,
.fbtn_product2 {
  -webkit-tap-highlight-color: transparent; /* For iOS Safari */
  
}




*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.optronixedfa-page{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    background-image: 
    linear-gradient(to top, rgb(255, 254, 254), rgba(255, 255, 255, 0.692)),
    url(/static/media/sum01.cc196cf1b64d791a6432.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.optronixedfa-page-pro-main{
    grid-column: 2/3;
    padding-top: 50px;
}


.optronixedfa-page-pro-name{
    text-align: center;
    
}

.optronixedfa-page-pro-art{
    text-align: left;
    padding-left: 10px;
}

.optronixedfa-btn{
    border: none;
    background-color: white;
}

.button-size.active{
    background-color: rgb(207, 207, 207);
}

@media screen and (max-width: 768px) {

    .optronixedfa-page{
        display: grid;
        grid-template-columns: .8rem 1fr .8rem; 
    }


    .optronixedfa-page-pro-main{
        grid-column: 2/3;
        padding-top: 50px;
    }

}


/* Main Page Layout */
.optronixedfaproduct-page {
    display: grid;
    grid-template-columns: 6.25rem 1.2fr 4fr 6.25rem;
    
}



/* Tabs Section */
.optronixedfaproduct-page-controls {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 8px 8px;
    max-height: 30vh;
    margin-top: 20px;
    row-gap: .5rem;
}

.button-size {
    padding: 8px;
    background-color: white;
    cursor: pointer;
}

.button-size:hover {
    background-color: #edd9d6;
    border-radius: 8px;
}

.button-size.active{
    background-color: #edd9d6;
    border-radius: 8px;
    
}

.button-size:hover .button-btn {
    color: #aa3e2d;
}

.button-size.active .button-btn h4 {
    color: #aa3e2d;
}

.button-btn {
    border: none;
    color: #a3a3a3;
    font-weight: 600;
    margin-left: 10px;
    padding-right: 50px;
}

.button-size.special-tab {
  background-color: white; /* light blue or your custom color */
}

/* Active state for special tab */
.button-size.special-tab.active {
  background-color: white; 
}

/* Optional: adjust text color for contrast */
.special-tab .button-btn h4 {
  color: black;
}

.special-tab.active .button-btn h4 {
  color: black;
}


/* Product Grid */
.optronixedfaproduct-page-product {
    grid-column: 3/4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding: 0 20px;
}

/* Single Product Card */
.product-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.product-image {
    width: 100%;
    height: auto; /* Important for responsiveness */
    max-height: 200px; /* Adjust maximum height */
    object-fit: contain; /* IMPORTANT: No cropping, full visible image */
    margin-bottom: 15px;
}

/* Product Title */
.product-title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

/* Product Name Button */
.product-name-button {
    background-color: #A7402D;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 16px;
    margin: 10px 0;
    cursor: default;
}

/* Product Description */
.product-description {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin: 10px 0;
}

/* Buttons Section */

.product-buttonse {
    margin-top: auto;
    gap: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-row: auto;
}


.ebtn_product1{
    grid-column: 2/4;
    grid-row: 1/2;
}

.ebtn_product{
    grid-column: 1/3;
    grid-row: 2/3;
}

.ebtn_product2{
    grid-column: 3/5;
    grid-row: 2/3;

}

.ebtn_product, .ebtn_product2 {
    padding: 8px;
    font-size: 14px;
    background-color: #f9f9f9;
    color: #b3b2b2;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 3px;
    text-decoration: none;
}

.ebtn_product1 {
    padding: 8px;
    font-size: 14px;
    background-color: #A7402D;
    color: white;
    text-align: center;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 3px;
    text-decoration: none;
}


.ebtn_product:hover,
.ebtn_product2:hover {
    background-color: #f9f9f9;
    color: black;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .optronixedfaproduct-page {
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
    }

    .optronixedfaproduct-page-controls {
        grid-column: 2/3;
        margin-top: 10px;
    }

    .optronixedfaproduct-page-product {
        grid-column: 2/3;
        grid-template-columns: 1fr;
        padding: 10px;
        margin-top: 50px;
    }

    .product-buttons {
        grid-template-columns: 1fr;
    }

    .ebtn_product, .ebtn_product1, .ebtn_product2 {
        font-size: 12px;
        padding: 6px;
    }
}
/* Prevent tap highlight on mobile browsers */
.button-size,
.button-btn,
.ebtn_product,
.ebtn_product1,
.ebtn_product2 {
  -webkit-tap-highlight-color: transparent; /* For iOS Safari */
  
}



.optronixpon-page{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    background-image: 
    linear-gradient(to top, rgb(255, 254, 254), rgba(255, 255, 255, 0.692)),
    url(/static/media/sum01.cc196cf1b64d791a6432.jpg);
     padding-top: 40px;
  padding-bottom: 40px;
   margin: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.optronixpon-page-pro-main{
      padding: 40px 32px 32px 32px; /* top, right, bottom, left */
    grid-column: 2/3;
    padding-top: 50px;
    padding-bottom: 20px;
}


.optronixpon-page-pro-name{
    text-align: center;   
}

.optronixpon-page-pro-art{
    text-align: left;
    padding-left: 10px;
}

.optronixpro-btn{
    border: none;
    background-color: white;  
}


.button-size.active{
    background-color: rgb(207, 207, 207);
}



@media screen and (max-width: 768px) {

    .optronixpon-page{
        display: grid;
        grid-template-columns: 0.8rem 1fr 0.8rem; 
    }


    .optronixpon-page-pro-main{
        grid-column: 2/3;
        padding-top: 50px;
    }

    .optronixpon-page-pro-art{
        margin-top: 10px;
    }

}



/* Main Page Layout */
.optronixponproduct-page {
    display: grid;
    grid-template-columns: 6.25rem 1.2fr 4fr 6.25rem;
    
}



/* Tabs Section */
.optronixponproduct-page-controls {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 8px 8px;
    max-height: 30vh;
    margin-top: 20px;
    row-gap: .5rem;
}

.button-size {
    padding: 8px;
    background-color: white;
    cursor: pointer;
}

.button-size:hover {
    background-color: #edd9d6;
    border-radius: 8px;
}

.button-size.active{
    background-color: #edd9d6;
    border-radius: 8px;
    
}

.button-size:hover .button-btn {
    color: #aa3e2d;
}

.button-size.active .button-btn h4 {
    color: #aa3e2d;
}




.button-btn {
    border: none;
    color: #a3a3a3;
    font-weight: 600;
    margin-left: 10px;
    padding-right: 50px;
}




/* Default (inactive) state for special tab */
.button-size.special-tab {
  background-color: white; /* light blue or your custom color */
}

/* Active state for special tab */
.button-size.special-tab.active {
  background-color: white; 
}

/* Optional: adjust text color for contrast */
.special-tab .button-btn h4 {
  color: black;
  font-size: 20px;
}

.special-tab.active .button-btn h4 {
  color: black;
  font-size: 20px;
}


/* Product Grid */
.optronixponproduct-page-product {
    grid-column: 3/4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding: 0 20px;
}

/* Single Product Card */
.product-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.product-image {
    width: 100%;
    height: auto; /* Important for responsiveness */
    max-height: 200px; /* Adjust maximum height */
    object-fit: contain; /* IMPORTANT: No cropping, full visible image */
    margin-bottom: 15px;
}

/* Product Title */
.product-title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

/* Product Name Button */
.product-name-button {
    background-color: #A7402D;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 16px;
    margin: 10px 0;
    cursor: default;
}

/* Product Description */
.product-description {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin: 10px 0;
}

/* Buttons Section */
.product-buttonso {
    margin-top: auto;
    gap: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-row: auto;
}


.obtn_product1{
    grid-column: 2/4;
    grid-row: 1/2;
}

.obtn_product{
    grid-column: 1/3;
    grid-row: 2/3;
}

.obtn_product2{
    grid-column: 3/5;
    grid-row: 2/3;

}

.obtn_product, .obtn_product2 {
    padding: 8px;
    font-size: 14px;
    background-color: #f9f9f9;
    color: #b3b2b2;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 3px;
    text-decoration: none;
}

.obtn_product1 {
    padding: 8px;
    font-size: 14px;
    background-color: #A7402D;
    color: white;
    text-align: center;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 3px;
    text-decoration: none;
}


.obtn_product:hover,
.obtn_product2:hover {
    background-color: #f9f9f9;
    color: black;
}
/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .optronixponproduct-page {
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
    }

    .optronixponproduct-page-controls {
        grid-column: 2/3;
        margin-top: 10px;
    }

    .optronixponproduct-page-product {
        grid-column: 2/3;
        grid-template-columns: 1fr;
        padding: 10px;
        margin-top: 50px;
    }

    .product-buttons {
        grid-template-columns: 1fr;
    }

    .obtn_product, .obtn_product1, .obtn_product2 {
        font-size: 12px;
        padding: 6px;
    }
}
/* Prevent tap highlight on mobile browsers */
.button-size,
.button-btn,
.obtn_product,
.obtn_product1,
.obtn_product2 {
  -webkit-tap-highlight-color: transparent; /* For iOS Safari */
  
}

body{
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}
/* Bleed sections: allow scroll to continue past snap points */
.snap-bleed {
  min-height: 1px;
  scroll-snap-align: none;
}
.product1_d1{
    display: grid;
    grid-template-columns: 6.25rem 1.8fr 1fr 6.25rem;
    margin-top: 50px;
    
}

.product_d{
    background-color: #f9f9f9;
}

.product1_d1_1{
    grid-column: 2 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #f9f9f9;
    border-radius: 10px 0 0 10px;

}

.product1_d1_2{
    grid-column: 3 / 4;
    background-color: #f9f9f9;
    border-radius: 0 10px 10px 0;    
}



.product1_d1_2_img{
    width: 95%;
    display: block;
    margin: 30px 10px
}

.sumitomos1vp{
    font-size: 60px;
    margin-top: 30px;
    color: #A7402D;
    margin-left: 10px;
}

.product1_d1_h1{
    grid-column: 1 / 2;
    display: grid;
    grid-template-rows: 1.5fr 1fr;
}

.product1_d1_h2{
    grid-column: 2 / 3;
}

.product1_d1_s1{
    grid-row: 1 / 2;
}

.product1_d1_s2{
    grid-row: 2 / 3;
}


.product_button{
    border: none;
    border-radius: 26px;
    padding: 12px 30px ;
    background-color: #A7402D;
    color: white;
    font-size: 20px;
    margin-top: 50px;
    margin-left: 50px;
    cursor: pointer;
}


.product_icon{
    width: 30%;
    margin: 15px;
    align-self: center;
}



.product_d_feature{
    display: grid;
    grid-template-columns: 6.25rem 1.5fr .9fr 6.25rem;
    margin-top: 50px;
}


.product_d_feature_art{
    grid-column: 2 / 3;
    margin-top: 80px;
}

.product_d_feature_img{
    grid-column: 3 / 4;
}

.product_d_product {
    display: grid;
    grid-template-columns: 6.25rem 1fr 1fr 1fr 1fr 6.25rem;
    margin-top: 50px;

}

.product_d_product1{
    grid-column: 2 / 3;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}

.product_d_product2{
    grid-column: 3 / 4;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
   
}

.product_d_product3{
    grid-column: 4 / 5;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}

.product_d_product4{
    grid-column: 5 / 6;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}


.product_d_img{
    height: 50%;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
}

.product_button_option{
    border: none;
    border-radius: 26px;
    padding: 8px 24px ;
    background-color: #A7402D;
    color:white;
    margin-top: 50px;
    margin-left: 50px;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    text-decoration: none;
    cursor: pointer;

}

.product_name_option{
    justify-self: center;
    margin-top: 10%;
    color: #A7402D;
    font-size: 20px;

}


@media screen and (max-width: 768px) {


    .product1_d1{
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
        grid-template-rows: auto;
    }

    .product1_d1_1{
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        border-radius: 0 0 7px 7px;
    }

    .product1_d1_h1{
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .product1_d1_h2{
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .product1_d1_2{
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        border-radius: 7px 7px 0 0;
    }

    .product_d_feature{
        display: grid;
        grid-template-columns:3rem 1fr 3rem;
        grid-template-rows: auto;
    }

    .product_d_feature_img{
        grid-column: 2 / 3;
        grid-row: 1 / 2;

    }

    .product_d_feature_art{
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .product_d_product{
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
        grid-template-rows: auto;
        row-gap: 10vh;
    }

    .product_d_product1{
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        width: 100%;
        
    }

    .product_d_product2{
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        width: 100%;
    }

    .product_d_product3{
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        width: 100%;
    }

    .product_d_product4{
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        width: 100%;
    }


}

















/*s1v*/ 



.product_s1v1{
    display: grid;
    grid-template-columns: 6.25rem 1.8fr 1fr 6.25rem;
    margin-top: 50px;
    
}

.product_s1v1_1{
    grid-column: 2 / 3;
    display: grid;
    grid-template-columns: 1.2fr .2fr;
    background-color: #f9f9f9;
    border-radius: 10px 0 0 10px;
}

.product_s1v1_2{
    grid-column: 3 / 4;
    background-color: #f9f9f9;
    border-radius: 0 10px 10px 0;    
}



.product_s1v1_2_img{
    width: 95%;
    display: block;
    margin: 30px 10px
}

.product_s1v1_s1_name{
    font-size: 50px;
    margin-top: 30px;
    color: #8cb406;
    margin-left: 10px;
}

.product_s1v1_h1{
    grid-column: 1 / 2;
    display: grid;
    grid-template-rows: auto;
    margin-top: 10px;
    gap: 10px;
}

.product_s1v1_h2{
    grid-column: 2 / 3;
}

.product_s1v1_s1{
    grid-row: 1 / 2;
}

.product_s1v1_s2{
    grid-row: 2 / 3;
}


.products1v_button{
    border: none;
    border-radius: 26px;
    padding: 12px 30px ;
    background-color: #A7402D;
    color: white;
    font-size: 20px;
    margin: 20px 0 20px 10px;
    cursor: pointer;
}


.products1v_icon{
    width: 60px;
    height: 60px;
    margin: 5px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 7px;
     transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.products1v_icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.products1v_icon1{
    margin-top: 50px;
}




.product_d_feature{
    display: grid;
    grid-template-columns: 6.25rem 1.5fr .9fr 6.25rem;
    margin-top: 50px;
}


.product_d_feature_art{
    grid-column: 2 / 3;
    margin-top: 80px;
}

.product_d_feature_img{
    grid-column: 3 / 4;
}


.table-s1v{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}



.table-container {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table {
    width: 100%;
    border-collapse: collapse;
    /* background-color: #eef7fc; */
  }
  
  .custom-table th, 
  .custom-table td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }

  
  
  .custom-table th {
    /* background-color: #D7E99F; */
    font-weight: bold;
  }


  

.custom-table-bg-one {
     background-color: #f5f5f5; 
}
 

.custom-table-bg-two {
     background-color: white; 
}
 
  
 

  .section-header {
    background-color: #E6E6E6 !important; 
    font-weight: bold;
    text-align: center;
  }


  

  .table-container-two{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  

  .custom-table-two {
    width: 100%;
    border-collapse: collapse;
    background-color: #eef7fc;
  }

  .section-header-two {
    transform: rotate(90);
  }
  
  .custom-table-two th, 
  .custom-table-two td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-two th {
    background-color: #D7E99F;
    font-weight: bold;
  }
  
  .section-header-two {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-three{
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .custom-table-three {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #A7402D;
    background-color: white;
  }
  
  .custom-table-three th, 
  .custom-table-three td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-three th {
    background-color: #D7E99F;
    font-weight: bold;
  }


  
  /*s1v Ultra*/


 .product_s1v1_u1_name{
    font-size: 50px;
    margin-top: 30px;
    color: #ff8000;
    margin-left: 10px;
}

  .custom-table-su {
    width: 100%;
    border-collapse: collapse;
    background-color: #eef7fc;
  }
  
  .custom-table-su th, 
  .custom-table-su td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }

  
  
  .custom-table-su th {
    background-color: #FEB46A;
    font-weight: bold;
  }

  .custom-table-two-su {
    width: 100%;
    border-collapse: collapse;
    background-color: #eef7fc;
  }

  .section-header-two-su {
    transform: rotate(90);
  }
  
  .custom-table-two-su th, 
  .custom-table-two-su td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-two-su th {
    background-color: #FEB46A;
    font-weight: bold;
  }


   .custom-table-three-su {
    width: 100%;
    border-collapse: collapse;
    background-color: #eef7fc;
  }

  .section-header-three-su {
    transform: rotate(90);
  }
  
  .custom-table-three-su th, 
  .custom-table-three-su td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-three-su th {
    background-color: #FEB46A;
    font-weight: bold;
  }


 


   /*s1v mobile */

   

   @media screen and (max-width: 768px){
    .table-s1v{
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
        grid-template-rows: auto;
        margin-top: 50px;
    }

    .table-container{
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .table-container-two{
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .table-container-three{
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .custom-table th, 
  .custom-table td {
    border: 1px solid #A7402D;
    padding: 2px;
    text-align: left;
  }

  .custom-table-two th, 
  .custom-table-two td {
    border: 1px solid #A7402D;
    padding: 2px;
    text-align: left;
  }


  


    


  }


  /*s1v mobile version end */
  

.product_s1v1_product {
    display: grid;
    grid-template-columns: 6.25rem 1fr 1fr 1fr 1fr 6.25rem;
    margin: 20px 0 40px 0;
    gap: 20px;
    justify-items: center;
}

.product_s1v1_product1 {
    grid-column: 2 / 3;
    width: 80%;
    height: 40vh;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 25px;
    align-items: center;
    background-color: #f9f9f9;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    
}

.product_s1v1_product1:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.product_s1v1_product2 {
    grid-column: 3 / 4;
    width: 80%;
    height: 40vh;
    margin-bottom: 20px;
     border: 1px solid #ccc;
    border-radius: 12px;
    padding: 25px;
    align-items: center;
    background-color: #f9f9f9;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    
}

.product_s1v1_product2:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.product_s1v1_product3 {
    grid-column: 4 / 5;
    width: 80%;
    height: 40vh;
    margin-bottom: 20px;
     border: 1px solid #ccc;
    border-radius: 12px;
    padding: 25px;
    align-items: center;
    background-color: #f9f9f9;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    
}

.product_s1v1_product3:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.product_s1v1_product4 {
    grid-column: 5 / 6;
    width: 80%;
    height: 40vh;
    margin-bottom: 20px;
 border: 1px solid #ccc;
    border-radius: 12px;
    padding: 25px;
    align-items: center;
    background-color: #f9f9f9;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    
}

.product_s1v1_product4:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}   



.product_s1v1_img{
    height: 50%;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
}

.products1v_button_option{
    border: none;
    border-radius: 26px;
    padding: 8px 24px ;
    background-color: #A7402D;
    color:white;
    margin-top: 50px;
    margin-left: 50px;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    text-decoration: none;
    cursor: pointer;

}

.products1v_name_option{
    justify-self: center;
    margin-top: 10%;
    color: #A7402D;
    font-size: 20px;

}




.products1v-feature-section-f2{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}


.features1v-section-f2-a{
   grid-column: 2\/3;
   grid-row: 1\/2;

}

.features1v-section-f2-b{
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin-top: 20px;
}


@media screen and (max-width: 768px) {


    .product_s1v1{
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
        grid-template-rows: auto;
    }

    .product_s1v1_1{
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        border-radius: 0 0 7px 7px;
    }

    .product_s1v1_h1{
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .product_s1v1_h2{
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .products1v_icon{
        width: 55px;
        height: 55px;
    
    }

    .product_s1v1_2{
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        border-radius: 7px 7px 0 0;
    }

    .products1v-feature-section-f2{
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
        grid-template-rows: auto;
        margin-top: 30px;
    }
    
    
    .features1v-section-f2-a{
       grid-column: 2 / 3;
       grid-row: 1 / 2;
    
    }
    
    .features1v-section-f2-b{
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        margin-top: 20px;
    }

    .products1v_icon1{
        margin-top: 0;
    }

    .table-s1v{
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
        margin-top: 50px;
    }
    
    .table-container {
        grid-column: 2 / 3;
    }







    .product_s1v1_feature{
        display: grid;
        grid-template-columns:.8rem 1fr .8rem;
        grid-template-rows: auto;
    }

    .product_s1v1_feature_img{
        grid-column: 2 / 3;
        grid-row: 1 / 2;

    }

    .product_s1v1_feature_art{
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .product_s1v1_product {
        display: grid;
        grid-template-columns: 1rem 1fr 1rem;
        grid-template-rows: auto;
        row-gap: 2rem;
        margin: 20px 0 40px 0;
    }

    .product_s1v1_product1 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        width: 100%;
        height: 30vh;
        margin-bottom: 20px;
    }

    .product_s1v1_product2 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        width: 100%;
        height: 30vh;
        margin-bottom: 20px;
    }

    .product_s1v1_product3 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        width: 100%;
        height: 30vh;
        margin-bottom: 20px;
    }

    .product_s1v1_product4 {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        width: 100%;
        height: 30vh;
        margin-bottom: 20px;
    }


}


/*z2c*/


.product_z2c1{
    display: grid;
    grid-template-columns: 6.25rem 1.8fr 1fr 6.25rem;
    margin-top: 50px;
    
}

.product_z2c1_1{
    grid-column: 2 / 3;
    display: grid;
    grid-template-columns: 1.2fr .2fr;
    background-color: #e6e6e6;
    border-radius: 10px 0 0 0;
}

.product_z2c1_2{
    grid-column: 3 / 4;
    background-color: #e6e6e6;
    border-radius: 0 10px 10px 0;    
}



.product_z2c1_2_img{
    width: 95%;
    display: block;
    margin: 30px 10px
}

.product_z2c1_s1_name{
    font-size: 50px;
    margin-top: 30px;
    color: #A7402D;
    margin-left: 10px;
}

.product_z2c1_h1{
    grid-column: 1 / 2;
    display: grid;
    grid-template-rows: auto;
   
}

.product_z2c1_h2{
    grid-column: 2 / 3;
}

.product_z2c1_s1{
    grid-row: 1 / 2;
}

.product_z2c1_s2{
    grid-row: 2 / 3;
}


.productz2c_button{
    border: none;
    border-radius: 26px;
    padding: 12px 30px ;
    background-color: #A7402D;
    color: white;
    font-size: 20px;
    margin: 0 0 20px 10px;
    cursor: pointer;
}


.productz2c_icon{
    width: 60px;
    height: 60px;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.productz2c_icon:hover {
    transform: scale(1.1);
}









.product_d_feature{
    display: grid;
    grid-template-columns: 6.25rem 1.5fr .9fr 6.25rem;
    margin-top: 50px;
}


.product_d_feature_art{
    grid-column: 2 / 3;
    margin-top: 80px;
}

.product_d_feature_img{
    grid-column: 3 / 4;
}

.product_z2c1_product {
    display: grid;
    grid-template-columns: 6.25rem 1fr 1fr 1fr 1fr 6.25rem;
    margin-top: 50px;

}

.product_z2c1_product1{
    grid-column: 2 / 3;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}

.product_z2c1_product2{
    grid-column: 3 / 4;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
   
}

.product_z2c1_product3{
    grid-column: 4 / 5;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}

.productz2c_icon1{
    margin-top: 50px;
}

.product_z2c1_product4{
    grid-column: 5 / 6;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}


.product_z2c1_img{
    height: 50%;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
}

.productz2c_button_option{
    border: none;
    border-radius: 26px;
    padding: 8px 24px ;
    background-color: #A7402D;
    color:white;
    margin-top: 50px;
    margin-left: 50px;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    text-decoration: none;
    cursor: pointer;

}

.productz2c_name_option{
    justify-self: center;
    margin-top: 10%;
    color: #A7402D;
    font-size: 20px;

}
.latest-publication-animate {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}

.latest-publication-animate.visible {
  opacity: 1;
  transform: translateY(0);
}




.productz2c-feature-section-f2{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}


.featurez2c-section-f2-a{
   grid-column: 2\/3;
   grid-row: 1\/2;

}

.featurez2c-section-f2-b{
    
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin-top: 20px;
}

.similerproduct{
        margin: 2rem 6.25rem;
    }


@media screen and (max-width: 768px) {

    .similerproduct{
        margin: 1rem .8rem;
    }


    .product_z2c1{
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
        grid-template-rows: auto;
    }

    .product_z2c1_1{
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        border-radius: 0 0 7px 7px;
    }

    .product_z2c1_h1{
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .product_z2c1_h2{
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .productz2c_icon{
        width: 55px;
        height: 55px;
    
    }

    .product_z2c1_2{
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        border-radius: 7px 7px 0 0;
    }

    .productz2c-feature-section-f2{
        display: grid;
        grid-template-columns: 3rem 1fr 3rem;
        grid-template-rows: auto;
        margin-top: 30px;
    }
    
    
    .featurez2c-section-f2-a{
       grid-column: 2 / 3;
       grid-row: 1 / 2;
    
    }
    
    .featurez2c-section-f2-b{
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        margin-top: 20px;
    }

    .productz2c_icon1{
        margin-top: 0;
    }






    .product_z2c1_feature{
        display: grid;
        grid-template-columns:.8rem 1fr .8rem;
        grid-template-rows: auto;
    }

    .product_z2c1_feature_img{
        grid-column: 2 / 3;
        grid-row: 1 / 2;

    }

    .product_z2c1_feature_art{
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .product_z2c1_product{
        display: grid;
        grid-template-columns: .8rem 1fr .8rem;
        grid-template-rows: auto;
        row-gap: 10vh;
    }

    .product_z2c1_product1{
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        width: 100%;
        
    }

    .product_z2c1_product2{
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        width: 100%;
    }

    .product_z2c1_product3{
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        width: 100%;
    }

    .product_z2c1_product4{
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        width: 100%;
    }


}



/*w1c Table*/

.table-w1c{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}

.table-container-w1c {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-w1c {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
  }
  
  .custom-table-w1c th, 
  .custom-table-w1c td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-w1c th {
    background-color: #FFCE5F;
    font-weight: bold;
  }
  
 
  

 
  
  .section-header-w1c {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }


  .table-container-w1c-two {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-w1c-two {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-w1c-two th, 
  .custom-table-w1c-two td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-w1c-two th {
    background-color: #FFCE5F;
    font-weight: bold;
  }
  
 
  

 
  
  .section-header-w1c-two {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }




  .table-container-w1c-three {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-w1c-three {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-w1c-three th, 
  .custom-table-w1c-three td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-w1c-three th {
    background-color: #FFCE5F;
    font-weight: bold;
  }
  
 
  
  

 
  
  .section-header-w1c-three {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-w1c-four{
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }


  /*z2c*/

  .table-z2c1{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}

.table-container-z2c1 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-z2c1 {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
  }
  
  .custom-table-z2c1 th, 
  .custom-table-z2c1 td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-z2c1 th {
    background-color: #eaf3b7;
    font-weight: bold;
  }
  
 
  

 
  
  .section-header-z2c1 {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }


  .table-container-z2c1-two {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-z2c1-two {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-z2c1-two th, 
  .custom-table-z2c1-two td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-z2c1-two th {
    background-color: #eaf3b7;
    font-weight: bold;
  }
  
 
  

 
  
  .section-header-z2c1-two {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }




  .table-container-z2c1-three {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-z2c1-three {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-z2c1-three th, 
  .custom-table-z2c1-three td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-z2c1-three th {
    background-color: #eaf3b7;
    font-weight: bold;
  }
  

  
  .section-header-z2c1-three {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-z2c1-four{
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }


  /*82c*/

  .table-82c{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}

.table-container-82c {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-82c {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
  }
  
  .custom-table-82c th, 
  .custom-table-82c td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-82c th {
    background-color: #ff8453;
    font-weight: bold;
  }
  
 
  

 
  
  .section-header-82c {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }


  .table-container-82c-two {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-82c-two {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-82c-two th, 
  .custom-table-82c-two td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-82c-two th {
    background-color: #ff8453;
    font-weight: bold;
  }
  
 
  

 
  
  .section-header-82c-two {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }




  .table-container-82c-three {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-82c-three {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-82c-three th, 
  .custom-table-82c-three td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-82c-three th {
    background-color: #ff8453;
    font-weight: bold;
  }
  

  
  .section-header-82c-three {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-82c-four{
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }


  /*82m*/

    .table-82m{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}

.table-container-82m {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-82m {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
  }
  
  .custom-table-82m th, 
  .custom-table-82m td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-82m th {
    background-color: #f6a576;
    font-weight: bold;
  }
  
 
  

 
  
  .section-header-82m {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }


  .table-container-82m-two {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-82m-two {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-82m-two th, 
  .custom-table-82m-two td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-82m-two th {
    background-color: #f6a576;
    font-weight: bold;
  }
  
 
  

 
  
  .section-header-82m-two {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }




  .table-container-82m-three {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-82m-three {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-82m-three th, 
  .custom-table-82m-three td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-82m-three th {
    background-color: #f6a576;
    font-weight: bold;
  }
  

  
  .section-header-82m-three {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-82m-four{
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }



  /*fc8r*/

  .table-fc8r{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}

.table-container-fc8r {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-fc8r {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
  }
  
  .custom-table-fc8r th, 
  .custom-table-fc8r td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-fc8r th {
    background-color: #938CC6;
    font-weight: bold;
  }

  .section-header-fc8r {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-fc8r-two {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-fc8r-two {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-fc8r-two th, 
  .custom-table-fc8r-two td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-fc8r-two th {
    background-color: #FFCE5F;
    font-weight: bold;
  }
  
  
  .section-header-fc8r-two {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }




  .table-container-fc8r-three {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-fc8r-three {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-fc8r-three th, 
  .custom-table-fc8r-three td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-fc8r-three th {
    background-color: #FFCE5F;
    font-weight: bold;
  }
  

  
  .section-header-fc8r-three {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-fc8r-four{
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }



  /*s70*/

  .table-s70{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}

.table-container-s70 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-s70 {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
  }
  
  .custom-table-s70 th, 
  .custom-table-s70 td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-s70 th {
    background-color: #9ADAF4;
    font-weight: bold;
  }

  .section-header-s70 {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-s70-two {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-s70-two {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-s70-two th, 
  .custom-table-s70-two td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-s70-two th {
    background-color: #FFCE5F;
    font-weight: bold;
  }
  
  
  .section-header-s70-two {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }




  .table-container-s70-three {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-s70-three {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-s70-three th, 
  .custom-table-s70-three td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-s70-three th {
    background-color: #FFCE5F;
    font-weight: bold;
  }
  

  
  .section-header-s70-three {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-s70-four{
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }


  /*fc7l*/

  .table-fc7l{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}

.table-container-fc7l {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-fc7l {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
  }
  
  .custom-table-fc7l th, 
  .custom-table-fc7l td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-fc7l th {
    background-color: #BE9BCD;
    font-weight: bold;
  }

  .section-header-fc7l {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-fc7l-two {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-fc7l-two {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-fc7l-two th, 
  .custom-table-fc7l-two td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-fc7l-two th {
    background-color: #BE9BCD;
    font-weight: bold;
  }
  
  
  .section-header-fc7l-two {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }




  .table-container-fc7l-three {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-fc7l-three {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-fc7l-three th, 
  .custom-table-fc7l-three td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-fc7l-three th {
    background-color: #BE9BCD;
    font-weight: bold;
  }
  

  
  .section-header-fc7l-three {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-fc7l-four{
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }



  /*sfcs*/

  .table-sfcs{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}

.table-container-sfcs {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-sfcs {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
  }
  
  .custom-table-sfcs th, 
  .custom-table-sfcs td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-sfcs th {
    background-color: #ADA5CB;
    font-weight: bold;
  }

  .section-header-sfcs {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-sfcs-two {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-sfcs-two {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-sfcs-two th, 
  .custom-table-sfcs-two td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-sfcs-two th {
    background-color: #BE9BCD;
    font-weight: bold;
  }
  
  
  .section-header-sfcs-two {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }




  .table-container-sfcs-three {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-sfcs-three {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-sfcs-three th, 
  .custom-table-sfcs-three td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-sfcs-three th {
    background-color: #BE9BCD;
    font-weight: bold;
  }
  

  
  .section-header-sfcs-three {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-sfcs-four{
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }


  /*fc-6series*/

  .table-fc6s{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}

.table-container-fc6s {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-fc6s {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
  }
  
  .custom-table-fc6s th, 
  .custom-table-fc6s td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-fc6s th {
    background-color: #a2b3da;
    font-weight: bold;
  }

  .section-header-fc6s {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-fc6s-two {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-fc6s-two {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-fc6s-two th, 
  .custom-table-fc6s-two td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-fc6s-two th {
    background-color: #BE9BCD;
    font-weight: bold;
  }
  
  
  .section-header-fc6s-two {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }




  .table-container-fc6s-three {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-fc6s-three {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5f5f5f;
    background-color: #eef7fc;
  }
  
  .custom-table-fc6s-three th, 
  .custom-table-fc6s-three td {
    border: 1px solid #5f5f5f;
    padding: 12px;
    text-align: left;
  }
  
  .custom-table-fc6s-three th {
    background-color: #BE9BCD;
    font-weight: bold;
  }
  

  
  .section-header-fc6s-three {
    background-color: #E6E6E6;
    font-weight: bold;
    text-align: center;
  }

  .table-container-fc6s-four{
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  html {
  scroll-behavior: smooth;
}


/* .product_z2c1{
    display: grid;
    grid-template-columns: 6.25rem 1.8fr 1fr 6.25rem;
    margin-top: 50px;
    
}

.product_z2c1_1{
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1.2fr .2fr;
    background-color: #e6e6e6;
    border-radius: 10px 0 0 0;
}

.product_z2c1_2{
    grid-column: 3/4;
    background-color: #e6e6e6;
    border-radius: 0 10px 10px 0;    
}



.product_z2c1_2_img{
    width: 95%;
    display: block;
    margin: 30px 10px
}

.product_z2c1_s1_name{
    font-size: 50px;
    margin-top: 30px;
    color: #A7402D;
    margin-left: 10px;
}

.product_z2c1_h1{
    grid-column: 1/2;
    display: grid;
    grid-template-rows: auto;
   
}

.product_z2c1_h2{
    grid-column: 2/3;
}

.product_z2c1_s1{
    grid-row: 1/2;
}

.product_z2c1_s2{
    grid-row: 2/3;
}


.productz2c_button{
    border: none;
    border-radius: 26px;
    padding: 12px 30px ;
    background-color: #A7402D;
    color: white;
    font-size: 20px;
    margin: 0 0 20px 10px;
    cursor: pointer;
}


.productz2c_icon{
    width: 60px;
    height: 60px;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.productz2c_icon:hover {
    transform: scale(1.1);
}









.product_d_feature{
    display: grid;
    grid-template-columns: 6.25rem 1.5fr .9fr 6.25rem;
    margin-top: 50px;
}


.product_d_feature_art{
    grid-column: 2/3;
    margin-top: 80px;
}

.product_d_feature_img{
    grid-column: 3/4;
}

.product_z2c1_product {
    display: grid;
    grid-template-columns: 6.25rem 1fr 1fr 1fr 1fr 6.25rem;
    margin-top: 50px;

}

.product_z2c1_product1{
    grid-column: 2/3;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}

.product_z2c1_product2{
    grid-column: 3/4;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
   
}

.product_z2c1_product3{
    grid-column: 4/5;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}

.productz2c_icon1{
    margin-top: 50px;
}

.product_z2c1_product4{
    grid-column: 5/6;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}


.product_z2c1_img{
    height: 50%;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
}

.productz2c_button_option{
    border: none;
    border-radius: 26px;
    padding: 8px 24px ;
    background-color: #A7402D;
    color:white;
    margin-top: 50px;
    margin-left: 50px;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    text-decoration: none;
    cursor: pointer;

}

.productz2c_name_option{
    justify-self: center;
    margin-top: 10%;
    color: #A7402D;
    font-size: 20px;

}




.productz2c-feature-section-f2{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}


.featurez2c-section-f2-a{
   grid-column: 2/3;
   grid-row: 1/2;

}

.featurez2c-section-f2-b{
    grid-column: 2/3;
    grid-row: 2/3;
    margin-top: 20px;
}


@media screen and (max-width: 768px) {


    .product_z2c1{
        display: grid;
        grid-template-columns: 3rem 1fr 3rem;
        grid-template-rows: auto;
    }

    .product_z2c1_1{
        grid-column: 2/3;
        grid-row: 2/3;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        border-radius: 0 0 7px 7px;
    }

    .product_z2c1_h1{
        grid-column: 1/2;
        grid-row: 2/3;
    }

    .product_z2c1_h2{
        grid-column: 1/2;
        grid-row: 1/2;
    }

    .productz2c_icon{
        width: 55px;
        height: 55px;
    
    }

    .product_z2c1_2{
        grid-column: 2/3;
        grid-row: 1/2;
        border-radius: 7px 7px 0 0;
    }

    .productz2c-feature-section-f2{
        display: grid;
        grid-template-columns: 3rem 1fr 3rem;
        grid-template-rows: auto;
        margin-top: 30px;
    }
    
    
    .featurez2c-section-f2-a{
       grid-column: 2/3;
       grid-row: 1/2;
    
    }
    
    .featurez2c-section-f2-b{
        grid-column: 2/3;
        grid-row: 2/3;
        margin-top: 20px;
    }

    .productz2c_icon1{
        margin-top: 0;
    }






    .product_z2c1_feature{
        display: grid;
        grid-template-columns:3rem 1fr 3rem;
        grid-template-rows: auto;
    }

    .product_z2c1_feature_img{
        grid-column: 2/3;
        grid-row: 1/2;

    }

    .product_z2c1_feature_art{
        grid-column: 2/3;
        grid-row: 2/3;
    }

    .product_z2c1_product{
        display: grid;
        grid-template-columns: 3rem 1fr 3rem;
        grid-template-rows: auto;
        row-gap: 10vh;
    }

    .product_z2c1_product1{
        grid-column: 2/3;
        grid-row: 1/2;
        width: 100%;
        
    }

    .product_z2c1_product2{
        grid-column: 2/3;
        grid-row: 2/3;
        width: 100%;
    }

    .product_z2c1_product3{
        grid-column: 2/3;
        grid-row: 3/4;
        width: 100%;
    }

    .product_z2c1_product4{
        grid-column: 2/3;
        grid-row: 4/5;
        width: 100%;
    }


}

.table-z2c{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}

.table-container-z2c {
    grid-column: 2/3;
    grid-row: 2/3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-z2c {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #A7402D;
    
  }
  
  .custom-table-z2c th, 
  .custom-table-z2c td {
    border: 1px solid #A7402D;
    padding: 12px;
    text-align: left;
  }

  .custom-table-z2c td{
    background-color: white;

  }
  
  .custom-table-z2c th {
    background-color: #A7402D;
    font-weight: bold;
    color: white;
  }
  
 
  
  .custom-table-z2c tr:hover {
    background-color: #e68878;
  }

 
  
  .section-header-z2c {
    background-color: #fcaea2;
    font-weight: bold;
    text-align: center;
  }


  .table-container-z2c-two {
    grid-column: 2/3;
    grid-row: 1/2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-z2c-two {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #A7402D;
    
  }
  
  .custom-table-z2c-two th, 
  .custom-table-z2c-two td {
    padding: 12px;
    text-align: left;
   
  }

  .custom-table-z2c-two td{
    background-color: white;

  }

  
  
  .custom-table-z2c-two th {
    background-color: #A7402D;
    font-weight: bold;
    color: white;
  }
  
 
  
  .custom-table-z2c-two tr:hover {
    background-color: #e68878;
  }

 
  
  .section-header-z2c-two {
    background-color: #fcaea2;
    font-weight: bold;
    text-align: center;
  }




  .table-container-z2c-three {
    grid-column: 2/3;
    grid-row: 3/4;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .custom-table-z2c-three {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #A7402D;
    
  }
  
  .custom-table-z2c-three th, 
  .custom-table-z2c-three td {
    border: 1px solid #A7402D;
    padding: 12px;
    text-align: left;
  }

  .custom-table-z2c-three td{
    background-color: white;

  }
  
  .custom-table-z2c-three th {
    background-color: #A7402D;
    font-weight: bold;
  }
  
 
  
  .custom-table-z2c-three tr:hover {
    background-color: #e68878;
  }

 
  
  .section-header-z2c-three {
    background-color: #fcaea2;
    font-weight: bold;
    text-align: center;
  }

  .table-container-z2c-four{
    grid-column: 2/3;
    grid-row: 4/5;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  } */



  /* Main Product Section */
.product_z2c1 {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 6.25rem 1.8fr 1fr 6.25rem;
}

.product_z2c1_1 {
    
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1.2fr .2fr;
    background-color: #e6e6e6;
    border-radius: 10px 0 0 0;
}

.product_z2c1_2 {
    grid-column: 3/4;
    background-color: #e6e6e6;
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .product_z2c1_2_img {
    width: 95%;
    max-width: 400px;
    display: block;
    margin: 30px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    background: #fff;
} */

.product_z2c1_s1_name {
    font-size: 50px;
    margin-top: 30px;
    color: #A7402D;
    margin-left: 10px;
}

.product_z2c1_h1 {
    
    grid-column: 1/2;
    display: grid;
    grid-template-rows: auto;
}

.product_z2c1_h2 {
   
    grid-column: 2/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product_z2c1_s1 {
    grid-row: 1/2;
}

.product_z2c1_s2 {
    grid-row: 2/3;
}

.productz2c_button {
    border: none;
    border-radius: 26px;
    padding: 12px 30px;
    background-color: #A7402D;
    color: white;
    font-size: 20px;
    margin: 0 0 20px 10px;
    cursor: pointer;
}

.productz2c_icon {
    width: 60px;
    height: 60px;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.productz2c_icon:hover {
    transform: scale(1.1);
}

.productz2c_icon1 {
    margin-top: 50px;
}

/* Feature Section */
.product_d_feature {
    display: grid;
    grid-template-columns: 6.25rem 1.5fr .9fr 6.25rem;
    margin-top: 50px;
}

.product_d_feature_art {
    grid-column: 2/3;
    margin-top: 80px;
}

.product_d_feature_img {
    grid-column: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_d_feature_img img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

/* Similar Products Section */
.product_z2c1_product {
    display: grid;
    grid-template-columns: 6.25rem 1fr 1fr 1fr 1fr 6.25rem;
    margin-top: 50px;
    gap: 0 10px;
}
/* Optional: Center and limit width for a card look */
.product_z2c1,
.product_d_feature,
.product_z2c1_product,
.productz2c-feature-section-f2,
.table-z2c {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.product_z2c1_product1,
.product_z2c1_product2,
.product_z2c1_product3,
.product_z2c1_product4 {
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 10px;
    margin: 0 auto;
}

.product_z2c1_img {
    height: 50%;
    max-height: 120px;
    width: auto;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
    object-fit: contain;
    /* background: #fff; */
    /* border-radius: 8px; */
    /* box-shadow: 0 1px 4px rgba(0,0,0,0.05); */
}

.productz2c_button_option {
    border: none;
    border-radius: 26px;
    padding: 8px 24px;
    background-color: #A7402D;
    color: white;
    margin-top: 20px;
    display: block;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
}

.productz2c_name_option {
    justify-self: center;
    margin-top: 10%;
    color: #A7402D;
    font-size: 20px;
    text-align: center;
}

/* Feature Section 2 */
.productz2c-feature-section-f2 {
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}

.featurez2c-section-f2-a {
    grid-column: 2/3;
    grid-row: 1/2;
}

.featurez2c-section-f2-b {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-top: 20px;
}
/* .h3{
    background: white;
} */

/* Tables */
.table-z2c {
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}
.table-container-z2c-two,
.table-container-z2c-three {
    margin: 20px auto;
    padding: 20px;
    max-width: 90%;
}


.table-container-z2c,

.table-container-z2c-four {
    grid-column: 2/3;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    color: #333;
}
/* Header styling */
.custom-table-z2c-two thead tr th,
.custom-table-z2c-three thead tr th {
    background-color: #e6f3ff;  /* light blue */
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    color: #333;
}

/* Superscript styling */
sup {
    font-size: 70%;
    vertical-align: super;
}

/* Checkmark styling */
td:contains("✔") {
    text-align: center;
}

.custom-table-z2c,
.custom-table-z2c-two,
.custom-table-z2c-three {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.custom-table-z2c,
.custom-table-z2c * {
    color: #000 !important;
}

.custom-table-z2c th,
.custom-table-z2c td,
.custom-table-z2c-two th,
.custom-table-z2c-two td,
.custom-table-z2c-three th,
.custom-table-z2c-three td {
    border: 1px solid #000;
    padding: 12px;
    text-align: left;
    background-color: white;
}
.custom-table-z2c-two tbody tr td,
.custom-table-z2c-three tbody tr td {
    padding: 10px;
    border: 1px solid #ddd;
}
/* Alternating row colors for all tables */
.custom-table tbody tr,
.custom-table-z2c-two tbody tr,
.custom-table-z2c-three tbody tr {
    background-color: #f2f2f2;  /* default grey */
}

.custom-table tbody tr:nth-child(even),
.custom-table-z2c-two tbody tr:nth-child(even),
.custom-table-z2c-three tbody tr:nth-child(even) {
    background-color: #ffffff;  /* white */
}
.custom-table thead tr th {
    background-color: #e6f3ff;  /* light blue */
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    color: #333;
}
/* Header styling - only for regular th elements, not the heading */
.custom-table thead tr:not(:first-child) th {
    background-color: #e6f3ff;  /* light blue */
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    color: #333;
}
/* First row (General) styling without blue background */
.custom-table thead tr:first-child th {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    color: #333;
    background-color: transparent;
}
.table-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}
.table-container {
    margin: 20px auto;  /* Center the container */
    padding: 20px;
    max-width: 90%;    /* Adjust this value to match your container width */
}

.custom-table-z2c th,
.custom-table-z2c-two th,
.custom-table-z2c-three th {
    /* background: linear-gradient(90deg, #a8d8f8 0%, #7ec6ee 100%); */
    font-weight: bold;
    color: white;
}

.custom-table-z2c tr:hover,
.custom-table-z2c-two tr:hover,
.custom-table-z2c-three tr:hover {
    background-color: #e68878;
}

.custom-table-z2c tr.section-divider,
.custom-table-z2c-two tr.section-divider,
.custom-table-z2c-three tr.section-divider {
    background-color: #a7402d;
    color: white;
    font-weight: bold;
    text-align: center;
}

.section-header-z2c,
.section-header-z2c-two,
.section-header-z2c-three {
    background-color: #fcaea2;
    font-weight: bold;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .product_z2c1 {
        grid-template-columns: 3rem 1fr 3rem;
    }
    .product_z2c1_1,
    .product_z2c1_2 {
        grid-column: 2/3;
        border-radius: 7px;
    }
    .product_z2c1_2_img {
        max-width: 95vw;
        margin: 20px auto;
    }
    .productz2c_icon {
        width: 55px;
        height: 55px;
    }
    .product_z2c1_product {
        grid-template-columns: 3rem 1fr 3rem;
        grid-template-rows: auto;
        row-gap: 10vh;
    }
    .product_z2c1_product1,
    .product_z2c1_product2,
    .product_z2c1_product3,
    .product_z2c1_product4 {
        grid-column: 2/3;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .productz2c-feature-section-f2 {
        grid-template-columns: 3rem 1fr 3rem;
        margin-top: 30px;
    }
    .table-z2c {
        grid-template-columns: 3rem 1fr 3rem;
    }
    .table-container {
        overflow-x: auto;
    }
     .table-container-z2c-two,
    .table-container-z2c-three {
        overflow-x: auto;
    }
}
    /* .table-container-z2c,
    .table-container-z2c-two,
    .table-container-z2c-three,
    .table-container-z2c-four {
        width: 100%;
        margin-top: 10px;
    } */
    /* .custom-table-z2c,
    .custom-table-z2c-two,
    .custom-table-z2c-three {
        font-size: 14px;
    } */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.product-spec-container{
  width:100vw;
  
  margin: 0 auto;
  padding: 0 16px;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}


.product1_d1{
    display: grid;
    grid-template-columns: 6.25rem 1.8fr 1fr 6.25rem;
    margin-top: 50px;
    
}

.dproduct1_d1_1{
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1.2fr .2fr;
    background-color: #e6e6e6;
    border-radius: 10px 0 0 10px;
}

.product1_d1_2{
    grid-column: 3/4;
    background-color: #e6e6e6;
    border-radius: 0 10px 10px 0;    
}



.product1_d1_2_img{
    width: 95%;
    display: block;
    margin: 30px 10px
}

.product1_d1_s1_name{
    font-size: 50px;
    margin-top: 30px;
    color: #A7402D;
    margin-left: 10px;
}

.dproduct1_d1_h1{
    grid-column: 1/2;
    display: grid;
    grid-template-rows: 1.5fr 1fr;
    margin-top: 10px;
    gap: 10px;
}

.dproduct1_d1_h2{
    grid-column: 2/3;
}

.product1_d1_s1{
    grid-row: 1/2;
}

.product1_d1_s2{
    grid-row: 2/3;
}


.product_button{
    border: none;
    border-radius: 26px;
    padding: 12px 30px ;
    background-color: #A7402D;
    color: white;
    font-size: 20px;
    margin-top: 50px;
    margin-left: 50px;
    cursor: pointer;
}


.dproduct_icon{
    width: 60px;
    height: 60px;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.dproduct_icon:hover {
    transform: scale(1.1);
}




.product_d_feature{
    display: grid;
    grid-template-columns: 6.25rem 1.5fr .9fr 6.25rem;
    margin-top: 50px;
}


.product_d_feature_art{
    grid-column: 2/3;
    margin-top: 80px;
}

.product_d_feature_img{
    grid-column: 3/4;
}

.product_d_product {
    display: grid;
    grid-template-columns: 6.25rem 1fr 1fr 1fr 1fr 6.25rem;
    margin-top: 50px;

}

.product_d_product1{
    grid-column: 2/3;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}

.product_d_product2{
    grid-column: 3/4;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
   
}

.product_d_product3{
    grid-column: 4/5;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}

.product_d_product4{
    grid-column: 5/6;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}


.product_d_img{
    height: 50%;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
}

.product_button_option{
    border: none;
    border-radius: 26px;
    padding: 8px 24px ;
    background-color: #A7402D;
    color:white;
    margin-top: 50px;
    margin-left: 50px;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    text-decoration: none;
    cursor: pointer;

}

.product_name_option{
    justify-self: center;
    margin-top: 10%;
    color: #A7402D;
    font-size: 20px;

}


.product-feature-section-f1{
    display: grid;
    grid-template-columns:6.25rem 1fr 6.25rem ;
    grid-template-rows: 1fr 1fr;}

.feature-section-f1-1{
    grid-column: 2/3;
    grid-row: 1/2;
}

.feature-section-f2-2{
    grid-column: 2/3;
    grid-row: 2/3;
}

.Product-feature-section-f2{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}


.feature-section-f2-a{
    grid-column: 2/3;
    grid-row : 1/2;

}

.fature-section-f2-b{
    grid-column: 2/3;
    grid-row: 2/3;
}
//yha changes hai
/* Product Container */
.product-container,
.highlights-section,
.table-container {
  
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
  /* Remove any extra horizontal padding if present */
  padding-left: 0;
  padding-right: 0;
}
.product-container {
  
  max-width: 1450px;
  margin: 0 auto;
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
}

/* Product Top Section */
.product-top-section {
  max-width:100%;
  display: flex;
  justify-content: space-between;
  /* background: #f5f5f5; */
  padding: 40px;
  /* border-radius: 12px; */
  margin-bottom: 40px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
}

/* Left: Product Info */
.product-info {
  flex: 1;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-heading {
  font-size: 3rem;
  font-weight: bold;
  color: #a13a1a;
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -1px;
  text-align: left; /* Explicitly set left alignment */
  width: 100%; /* Ensure title takes full width of container */
}

/* .product-title {
  font-size: 2rem;
  font-weight: normal;
   color: #a13a1a; 
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -1px;
} */

.product-desc {
  /* font-size: 1.2rem;
  color: #444;
  line-height: 1.5; */
  margin: 0 0 36px 0;
}

.enquire-link {
  display: inline-block;
  text-decoration: none;
}

.enquire-btn {
  background: #a13a1a;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(161, 58, 26, 0.2);
}

.enquire-btn:hover {
  background: #8a2e10;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(161, 58, 26, 0.3);
}

.enquire-btn:active {
  transform: translateY(0);
}

/* Right: Product Image */
 .product-image {
  margin-top: 50px;
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  /* background: white; */
   border-radius: 8px;
  /* box-shadow: 0 4px 16px rgba(0,0,0,0.1); */ 
} 


.product-image img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-image:hover img {
  transform: scale(1.03);
}

/* Highlights Section */
.highlights-section {
  justify-content:centre;
  
  padding: 40px;
  border-radius: 12px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.05); */
}

.highlights-title {
  color: #8a2e10;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 1px 100px 30px -40px;
  position: relative;
  padding-bottom: 12px;
}

/* .highlights-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #2980b9;
  border-radius: 2px;
} */

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.highlights-list li {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 24px;
  transition: all 0.3s ease;
  border-left: 3px solid #8a2e10;
}

/* .highlights-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
} */

.highlights-list b {
  display: block;
  font-size: 1.1rem;
  font-weight: normal;
  color: #333;
  margin-bottom: 10px;
}

.highlights-list span {
  display: block;
  color: #666;
  line-height: 1.5;
}


/* Responsive Design */
@media (max-width: 900px) {
  .product-top-section {
    flex-direction: column-reverse;
    padding: 30px;
  }
  
  .product-info {
    max-width: 100%;
    margin-top: 30px;
  }
  
  .product-image {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .product-title {
    font-size: 2.5rem;
    
  }
  
  .highlights-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .product-top-section, 
  .highlights-section {
    padding: 20px;
  }
  
  .product-title {
    font-size: 2rem;
  }
  
  .product-desc {
    font-size: 1.1rem;
  }
  
  .enquire-btn {
    width: 100%;
    font-size: 1rem;
    padding: 12px 20px;
  }
  
  .highlights-title {
    font-size: 1.5rem;
  }
  
  .highlights-list li {
    padding: 16px;
  }
}

//yha changes khtm hai
/* Main Container */
.optronix-product-container {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f9fcff;
  padding-bottom: 50px;
}

/* Section Title - Common Style */
.section-title,
.optronix-highlights-section h4 {
  text-align: center;
  color: #2980b9;
  position: relative;
  padding-bottom: 15px;
}

.section-title {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 30px;
}



.section-title:after,
.optronix-highlights-section h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  border-radius: 3px;
}

.section-title:after {
  width: 80px;
  background: linear-gradient(to right, #2980b9, #3498db);
}

.optronix-highlights-section h4:after {
  width: 80px;
  background: linear-gradient(to right, #4aa3df, #91d5ff);
}

/* Hero Section */
.product-hero-section {
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #e6f7ff, #f0f8ff);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-info-area {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-header {
  margin-bottom: 20px;
}

.product-name {
  font-size: 32px;
  color: #2980b9;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.product-name span {
  display: block;
  font-weight: 700;
  color: #1c638e;
}

.product-description {
  color: #4a4a4a;
  line-height: 1.6;
}

.product-description strong {
  color: #2980b9;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.product-description p {
  margin-bottom: 15px;
}

/* .enquire-button {
  background: linear-gradient(to right, #2980b9, #3498db);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(41, 128, 185, 0.2);
  margin-top: 20px;
}

.enquire-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(41, 128, 185, 0.3);
  background: linear-gradient(to right, #2573a7, #2980b9);
} */

.product-feature-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 5px;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}

.feature-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(41, 128, 185, 0.2);
}

.feature-icon.active {
  border: 3px solid #2980b9;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
}

.product-image-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.7);
}

.product-main-image {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.product-main-image:hover {
  transform: scale(1.02);
}

/* Product Features Overview */
.product-features-container {
  margin-bottom: 40px;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(41, 128, 185, 0.1);
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

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

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-description {
  flex: 1;
  min-width: 300px;
  padding: 30px;
}

.feature-description p {
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
}

/* Highlights Section */
.optronix-highlights-section {
  overflow-x: auto;
  background: linear-gradient(135deg, #e6f7ff, #f0f8ff);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.optronix-highlights-section h4 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 20px;
}

.highlight-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.highlight-item {
  display: flex;
  background-color: white;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(73, 166, 233, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(73, 166, 233, 0.25);
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(74, 163, 223, 0.1);
  padding: 15px;
  min-width: 55px;
}

.highlight-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.highlight-content b {
  color: #2980b9;
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
}

.highlight-content span {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.5;
}

/* Features Section */
.optronix-features-section {
  background: linear-gradient(to bottom, #e6f7ff, #f0f8ff);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.optronix-features-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between;
}

.feature-column {
  flex: 1;
  min-width: 280px;
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(73, 166, 233, 0.15);
  border-top: 4px solid #4aa3df;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(73, 166, 233, 0.25);
}

.feature-column h5 {
  color: #2980b9;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c6e2ff;
}

.feature-column ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 25px;
}
  

.feature-column li {
  position: relative;
  padding: 8px 0 8px 25px;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid #f0f8ff;
}

.feature-column li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  background-color: #4aa3df;
  border-radius: 50%;
  opacity: 0.7;
}

.feature-column li:hover {
  background-color: #f7fbff;
}

/* Table Section */
.optronix-table-section {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.table-container {
  overflow-x: auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.specs-table th {
  /* background-color: #4aa3df; */
  color: white;
  font-weight: 600;
  text-align: left;
  padding: 15px;
  font-size: 16px;
}

.specs-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e1f0fb;
  color: #4a4a4a;
  font-size: 14px;
}

.specs-table tr:nth-child(even) {
  background-color: #f0f8ff;
}

.specs-table tr:hover {
  background-color: #e1f0fb;
}

.specs-table td:first-child {
  font-weight: 600;
  /* color: #2980b9; */
  width: 30%;
}

/* Additional Features */
/* .additional-features {
  background: linear-gradient(to bottom, #f0f8ff, #e6f7ff);
} */

/* Ordering Info */
.ordering-info {
  background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
}

/* Related Products Section */
.related-products-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #e6f7ff, #f0f8ff);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.related-product-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.related-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(41, 128, 185, 0.15);
}

.product-image-wrapper {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background-color: #f0f8ff;
  border-radius: 8px;
}

.related-product-img {
  max-width: 90%;
  max-height: 90%;
}

.related-product-name {
  color: #2980b9;
  margin: 10px 0 15px;
  font-size: 18px;
  text-align: center;
}

.know-more-button {
  background-color: transparent;
  color: #2980b9;
  border: 2px solid #2980b9;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.know-more-button:hover {
  background-color: #2980b9;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(41, 128, 185, 0.2);
}

//yha changes kre hai
.product-spec-container {
  background: #fff;
  padding: 2.5rem 1rem 3rem 1rem;
  max-width: 1200px;
  margin: 2rem auto;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  font-family: 'Segoe UI', Arial, sans-serif;
}

.spec-columns {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.spec-left, .spec-right {
  flex: 1 1 350px;
  min-width: 320px;
}

.spec-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.orange {
  color: #A7402D;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  background: #faf9f7;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(167,64,45,0.04);
}

.spec-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #ececec;
  vertical-align: top;
  font-size: 1rem;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table ul {
  margin: 0;
  padding-left: 1.2rem;
}

.ordering-info {
  margin-top: 2.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(167,64,45,0.04);
  padding: 2rem 1rem 1.5rem 1rem;
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: #faf9f7;
  border-radius: 10px;
  overflow: hidden;
}

.order-table th, .order-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #ececec;
  text-align: left;
  font-size: 1rem;
}

.order-table th {
  background: #A7402D;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.order-table tr:last-child td {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 900px) {
  .spec-columns {
    flex-direction: column;
    gap: 1.5rem;
  }
  .spec-left, .spec-right {
    min-width: 0;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .product-hero-section,
  .highlight-item,
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
  }
  
  .product-feature-icons {
    justify-content: center;
  }
  
  .highlight-icon {
    padding: 10px;
    min-width: unset;
    background-color: white;
  }
  
  .highlight-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .specs-table {
    font-size: 12px;
  }
  
  .specs-table th, 
  .specs-table td {
    padding: 8px;
  }
  
  .related-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  
  .optronix-features-columns {
    flex-direction: column;
  }
  
  .feature-column {
    width: 100%;
  }
}




   




.product1_d1{
    display: grid;
    grid-template-columns: 6.25rem 1.8fr 1fr 6.25rem;
    margin-top: 50px;
    
}

.product1_d1_1{
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #e6e6e6;
    border-radius: 10px 0 0 10px;

}

.product1_d1_2{
    grid-column: 3/4;
    background-color: #e6e6e6;
    border-radius: 0 10px 10px 0;    
}



.product1_d1_2_img{
    width: 95%;
    display: block;
    margin: 30px 10px
}

.product1_d1_s1_name{
    font-size: 50px;
    margin-top: 30px;
    color: #A7402D;
    margin-left: 10px;
}

.product1_d1_h1{
    grid-column: 1/2;
    display: grid;
    grid-template-rows: auto;
}

.product1_d1_h2{
    grid-column: 2/3;
}

.product1_d1_s1{
    grid-row: 1/2;
}

.product1_d1_s2{
    grid-row: 2/3;
    margin-bottom: 50px;
}


.product_button{
    border: none;
    border-radius: 26px;
    padding: 12px 30px ;
    background-color: #A7402D;
    color: white;
    font-size: 20px;
    margin-top: 50px;
    margin-left: 50px;
    cursor: pointer;
}


.product_icon{
    width: 30%;
    margin: 15px;
}

 .productContainer: {
    maxWidth: '1200px';
    margin: '0 auto';
    padding: '20px';
  }
  .productTopSection: {
    display: 'flex';
    justifyContent: 'space-between';
    alignItems: 'center';
    gap: '2rem';
    marginBottom: '2rem';
    '@media (max-width: 768px)': {
      flexDirection: 'column';
    }
  }
  .productImage: {
    width: '100%';
    maxWidth: '400px';
    height: 'auto';
    objectFit: 'contain';
  }
  .schematicImage: {
    width: '100%';
    maxWidth: '350px';
    height: 'auto';
    margin: '20px auto';
    display: 'block';
  }
  .tableContainer: {
    margin: '2rem 0';
    borderRadius: '8px';
    overflow: 'hidden';
    boxShadow: '0 2px 4px rgba(0,0,0,0.1)';
  }




.product_d_feature{
    display: grid;
    grid-template-columns: 6.25rem 1.5fr .9fr 6.25rem;
    margin-top: 50px;
}


.product_d_feature_art{
    grid-column: 2/3;
    margin-top: 80px;
}

.product_d_feature_img{
    grid-column: 3/4;
}

.product_d_product {
    display: grid;
    grid-template-columns: 6.25rem 1fr 1fr 1fr 1fr 6.25rem;
    margin-top: 50px;

}

.product_d_product1{
    grid-column: 2/3;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}

.product_d_product2{
    grid-column: 3/4;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
   
}

.product_d_product3{
    grid-column: 4/5;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}

.product_d_product4{
    grid-column: 5/6;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}


.product_d_img{
    height: 50%;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
}

.product_button_option{
    border: none;
    border-radius: 26px;
    padding: 8px 24px ;
    background-color: #A7402D;
    color:white;
    margin-top: 50px;
    margin-left: 50px;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    text-decoration: none;
    cursor: pointer;

}

.product_name_option{
    justify-self: center;
    margin-top: 10%;
    color: #A7402D;
    font-size: 20px;

}

.product1_d1_s1_name, .product1_d1_h1, .product1_d1_h2, .product_name_option {
    font-weight: 700; /* Ensures bold heading for all top product section headings */
}

/* Optionally, you can also target h1/h2 directly if used in the top section */
.product1_d1_1 h1, .product1_d1_1 h2 {
    font-weight: 700;
}

@media screen and (max-width: 768px) {


    .product1_d1{
        display: grid;
        grid-template-columns: 3rem 1fr 3rem;
        grid-template-rows: auto;
    }

    .product1_d1_1{
        grid-column: 2/3;
        grid-row: 2/3;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        border-radius: 0 0 7px 7px;
    }

    .product1_d1_h1{
        grid-column: 1/2;
        grid-row: 1/2;
    }

    .product1_d1_h2{
        grid-column: 1/2;
        grid-row: 2/3;
    }

    .product1_d1_2{
        grid-column: 2/3;
        grid-row: 1/2;
        border-radius: 7px 7px 0 0;
    }







    .product_d_feature{
        display: grid;
        grid-template-columns:3rem 1fr 3rem;
        grid-template-rows: auto;
    }

    .product_d_feature_img{
        grid-column: 2/3;
        grid-row: 1/2;

    }

    .product_d_feature_art{
        grid-column: 2/3;
        grid-row: 2/3;
    }

    .product_d_product{
        display: grid;
        grid-template-columns: 3rem 1fr 3rem;
        grid-template-rows: auto;
        row-gap: 10vh;
    }

    .product_d_product1{
        grid-column: 2/3;
        grid-row: 1/2;
        width: 100%;
        
    }

    .product_d_product2{
        grid-column: 2/3;
        grid-row: 2/3;
        width: 100%;
    }

    .product_d_product3{
        grid-column: 2/3;
        grid-row: 3/4;
        width: 100%;
    }

    .product_d_product4{
        grid-column: 2/3;
        grid-row: 4/5;
        width: 100%;
    }


}








.product_oe1{
    display: grid;
    grid-template-columns: 6.25rem 1.8fr 1fr 6.25rem;
    margin-top: 50px;
    
}

.product_oe1_1{
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1.2fr .2fr;
    background-color: #e6e6e6;
    border-radius: 10px 0 0 10px;
}

.product_oe1_2{
    grid-column: 3/4;
    background-color: #e6e6e6;
    border-radius: 0 10px 10px 0;    
}



.product_oe1_2_img{
    width: 95%;
    display: block;
    margin: 30px 10px
}

.product_oe1_s1_name{
    font-size: 50px;
    margin-top: 30px;
    color: #A7402D;
    margin-left: 10px;
}

.product_oe1_h1{
    grid-column: 1/2;
    display: grid;
    grid-template-rows: 1.5fr 1fr;
    margin-top: 10px;
    gap: 10px;
}

.product_oe1_h2{
    grid-column: 2/3;
}

.product_oe1_s1{
    grid-row: 1/2;
}

.product_oe1_s2{
    grid-row: 2/3;
}


.productoe_button{
    border: none;
    border-radius: 26px;
    padding: 12px 30px ;
    background-color: #A7402D;
    color: white;
    font-size: 20px;
    margin-top: 50px;
    margin-left: 50px;
    cursor: pointer;
}


.productoe_icon{
    width: 60px;
    height: 60px;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.productoe_icon:hover {
    transform: scale(1.1);
}









.product_d_feature{
    display: grid;
    grid-template-columns: 6.25rem 1.5fr .9fr 6.25rem;
    margin-top: 50px;
}


.product_d_feature_art{
    grid-column: 2/3;
    margin-top: 80px;
}

.product_d_feature_img{
    grid-column: 3/4;
}

.product_oe1_product {
    display: grid;
    grid-template-columns: 6.25rem 1fr 1fr 1fr 1fr 6.25rem;
    margin-top: 50px;

}

.product_oe1_product1{
    grid-column: 2/3;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}

.product_oe1_product2{
    grid-column: 3/4;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
   
}

.product_oe1_product3{
    grid-column: 4/5;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}

.product_oe1_product4{
    grid-column: 5/6;
    width: 80%;
    height: 40vh;
    background-color: #e6e6e6;
    border-radius: 30px 0 30px 0;
    
}


.product_oe1_img{
    height: 50%;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
}

.productoe_button_option{
    border: none;
    border-radius: 26px;
    padding: 8px 24px ;
    background-color: #A7402D;
    color:white;
    margin-top: 50px;
    margin-left: 50px;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    text-decoration: none;
    cursor: pointer;

}

.productoe_name_option{
    justify-self: center;
    margin-top: 10%;
    color: #A7402D;
    font-size: 20px;

}




.productoe-feature-section-f2{
    display: grid;
    grid-template-columns: 6.25rem 1fr 6.25rem;
    grid-template-rows: auto;
    margin-top: 50px;
}


.featureoe-section-f2-a{
   grid-column: 2/3;
   grid-row: 1/2;

}

.featureoe-section-f2-b{
    grid-column: 2/3;
    grid-row: 2/3;
    margin-top: 20px;
}


@media screen and (max-width: 768px) {


    .product_oe1{
        display: grid;
        grid-template-columns: 3rem 1fr 3rem;
        grid-template-rows: auto;
    }

    .product_oe1_1{
        grid-column: 2/3;
        grid-row: 2/3;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        border-radius: 0 0 7px 7px;
    }

    .product_oe1_h1{
        grid-column: 1/2;
        grid-row: 2/3;
    }

    .product_oe1_h2{
        grid-column: 1/2;
        grid-row: 1/2;
    }

    .productoe_icon{
        width: 55px;
        height: 55px;
    
    }

    .product_oe1_2{
        grid-column: 2/3;
        grid-row: 1/2;
        border-radius: 7px 7px 0 0;
    }

    .productoe-feature-section-f2{
        display: grid;
        grid-template-columns: 3rem 1fr 3rem;
        grid-template-rows: auto;
        margin-top: 30px;
    }
    
    
    .featureoe-section-f2-a{
       grid-column: 2/3;
       grid-row: 1/2;
    
    }
    
    .featureoe-section-f2-b{
        grid-column: 2/3;
        grid-row: 2/3;
        margin-top: 20px;
    }







    .product_oe1_feature{
        display: grid;
        grid-template-columns:3rem 1fr 3rem;
        grid-template-rows: auto;
    }

    .product_oe1_feature_img{
        grid-column: 2/3;
        grid-row: 1/2;

    }

    .product_oe1_feature_art{
        grid-column: 2/3;
        grid-row: 2/3;
    }

    .product_oe1_product{
        display: grid;
        grid-template-columns: 3rem 1fr 3rem;
        grid-template-rows: auto;
        row-gap: 10vh;
    }

    .product_oe1_product1{
        grid-column: 2/3;
        grid-row: 1/2;
        width: 100%;
        
    }

    .product_oe1_product2{
        grid-column: 2/3;
        grid-row: 2/3;
        width: 100%;
    }

    .product_oe1_product3{
        grid-column: 2/3;
        grid-row: 3/4;
        width: 100%;
    }

    .product_oe1_product4{
        grid-column: 2/3;
        grid-row: 4/5;
        width: 100%;
    }


}




   




 .import-wrapper {
    color: white;
  }
  
  /* Header Section */
  .import-header {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.747), rgba(163, 163, 163, 0)),
    url(/static/media/partnerimg.d5597186dd3cf32982ba.jpg);
    background-size: cover;
    background-position: center;
    padding: 100px 20px 60px;
    text-align: center;
  }
  
  .header-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .header-content p {
    font-size: 1.2rem;
    color: #ffd;
  }
  
  /* Partners Section */
  .partners-section {
    background: #fff;
    padding: 60px 30px;
  }
  
  /* Grid Layout */
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Partner Card (Clickable Link) */
  .partner-card {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    color: #333;
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }
  
  .partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }
  
  .partner-card h3 {
    margin: 10px 0 5px;
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .partner-card p {
    font-size: 0.9rem;
    color: #555;
  }


  
  /* Logo Handling */
  .partner-logo {
    font-size: 2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
  }
  
  .partner-logo img {
    max-width: 160px;
    max-height: 60px;
    object-fit: contain;
  }
  
.ted-wrapper {
  color: #ffffff;
  padding: 2rem 6.25rem;
  font-family: 'Segoe UI', sans-serif;
}

.ted-featured {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.ted-featured-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.5);
}

.ted-featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem;
  z-index: 2;
  max-width: 600px;
}

.ted-featured-overlay h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ted-featured-overlay p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #cccccc;
}

.ted-meta {
  font-size: 0.85rem;
  display: flex;
  gap: 20px;
  color: #bbbbbb;
  margin-bottom: 1rem;
}

.ted-play-button {
  font-size: 2rem;
  background-color: #e62b1e;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: background 0.3s;
}

.ted-play-button:hover {
  background-color: #ff4433;
}

.ted-watch-next {
  margin-top: 2rem;
}

.ted-watch-next h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Grid layout for video cards */
.ted-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.ted-card {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f9f9f9;
  color: #333;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.ted-card-animated:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.ted-card p {
  font-size: 0.95rem;
  color: black;
  margin-top: 0.5rem;
  text-align: center;
}

.ted-video {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
  .ted-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ted-wrapper {
    padding: 1rem;
  }

  .ted-featured-overlay {
    padding: 1rem;
  }

  .ted-featured-overlay h2 {
    font-size: 1.5rem;
  }

  .ted-featured-overlay p {
    font-size: 0.9rem;
  }

  .ted-video-grid {
    grid-template-columns: 1fr;
  }
}


.smt-section {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  position: relative;
  background: #000;
  overflow: hidden;
  }
  
  .smt-section.right {
    flex-direction: row-reverse;
  }
  
  .smt-text-side {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
    background: linear-gradient(to right, #111 90%, transparent 100%);
    color: #fff;
    z-index: 2;
  }
  
  .smt-section.right .smt-text-side {
    background: linear-gradient(to left, #111 90%, transparent 100%);
  }
  
  .smt-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  
  .smt-list {
    font-size: 1.3rem;
    line-height: 2.2rem;
    list-style: disc inside;
    margin-left: 0;
  }
  
  .smt-image-side {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    overflow: hidden;
  }
  
  
  .smt-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    max-height: 600px;
    border-radius: 0;
  }
  
  @media (max-width: 900px) {
    .smt-section,
    .smt-section.right {
      flex-direction: column;
    }
    .smt-text-side,
    .smt-section.right .smt-text-side {
      background: #111;
      padding: 2rem 1rem;
    }
    .smt-image-side {
      min-height: 200px;
    }
    .smt-image {
      min-height: 200px;
      max-height: 300px;
    }
  }
/* .video-section {
  position: relative;
  height: 600vh; 
  background: #000;
}

.video-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.responsive-video {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
  .responsive-video {
    aspect-ratio: 9 / 16;
  }
}

.comment-box {
  position: absolute;
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 1rem;
  max-width: 80%;
  border-radius: 10px;
  transition: all 0.3s ease;
  z-index: 5;
}


.top-left {
  top: 20px;
  left: 20px;
}

.top-right {
  top: 20px;
  right: 20px;
}

.center-left {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.bottom-right {
  bottom: 20px;
  right: 20px;
}

.bottom-left {
  bottom: 20px;
  left: 20px;
}

.center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.next-section {
  padding: 100px 20px;
  background: #f9f9f9;
  text-align: center;
} */


/* SurfaceMountingShowcase.css */
html {
  scroll-behavior: smooth;
}



.page-header {
  position: relative;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
   
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #A7402D, #8A3526, #C24E3A);
  color: white;
  box-shadow: 0 4px 20px rgba(167, 64, 45, 0.3);
}

/* Add subtle pattern overlay to the header */
.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27%23ffffff%27 fill-opacity=%270.05%27 fill-rule=%27evenodd%27%3E%3Ccircle cx=%273%27 cy=%273%27 r=%273%27/%3E%3Ccircle cx=%2713%27 cy=%2713%27 r=%273%27/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.page-header p {
  font-size: 1.4rem;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 300;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* Add decorative elements */
.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom right, 
    transparent 0%, 
    transparent 49%, 
    rgba(167, 64, 45, 0.8) 50%, 
    transparent 51%, 
    transparent 100%);
  background-size: 20px 20px;
  opacity: 0.3;
}

.showcase-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}

.video-background {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
}

.main-video {
     position: fixed; /* or absolute */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1; /* behind content */
  pointer-events: none; /* critical */
}

.sections-container {
  scroll-snap-type: y mandatory;
}

.machine-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.5s ease-out;
}

.initial-scroll-guide,
.scroll-guide {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 15px 25px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Position cards consistently */
/* .machine-section.card-right {
  justify-content: flex-end;
}

.machine-section.card-left {
  justify-content: flex-start;
} */

.machine-content {
  width: 40%;
  max-width: 500px;
  margin: 0 5%;
  background: linear-gradient(145deg, #2c2e30, #3a3c3e);
  color: #f0f0f0;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(20px);
  opacity: 0.95;
}

.machine-content:hover {
  transform: translateY(0);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 10px 20px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

/* Card positioning */
/* .machine-section:nth-child(odd) .machine-content {
  margin-right: 5%;
  margin-left: auto;
} */

/* .machine-section:nth-child(even) .machine-content {
  margin-left: 5%;
  margin-right: auto;
} */

/* Add subtle accent line to top of cards */
.machine-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #A7402D, #C24E3A);
  border-radius: 12px 12px 0 0;
}

.machine-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-bottom: 15px;
}

.machine-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #A7402D;
  border-radius: 3px;
}

.machine-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 2rem;
}

.specs-list {
  list-style: none;
  padding: 0;
}

.specs-list li {
  margin-bottom: 12px;
  padding: 12px 18px;
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #A7402D;
  border-radius: 4px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.specs-list li:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(3px);
}

/* Video controls */
.video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.speed-controls {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 24px;
  display: flex;
  gap: 8px;
  align-self: flex-end;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.auto-advance-toggle,
.auto-scroll-toggle {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 24px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.auto-advance-toggle:hover,
.auto-scroll-toggle:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
}

.auto-advance-toggle.active,
.auto-scroll-toggle.active {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

/* Enhanced visibility for active section */
.machine-section.active .machine-content {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 10px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.15);
}

.machine-section.active .machine-content::before {
  background: linear-gradient(90deg, #C24E3A, #e67e22);
  box-shadow: 0 0 15px rgba(230, 126, 34, 0.5);
}

/* Loading state */
.video-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  z-index: 5;
  backdrop-filter: blur(5px);
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: #A7402D;
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 15px;
  box-shadow: 0 0 20px rgba(167, 64, 45, 0.5);
}

/* Scroll guides */
.initial-scroll-guide {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  animation: fadeIn 1s ease-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.scroll-guide {
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 18px 28px;
  border-radius: 12px;
  animation: pulse 2s infinite;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.scroll-guide p, 
.initial-scroll-guide p {
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  position: relative;
}

.scroll-arrow span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(-45deg);
  animation: scrollArrow 1.5s infinite;
  opacity: 0;
}

.scroll-arrow span:nth-child(1) {
  animation-delay: 0s;
}

.scroll-arrow span:nth-child(2) {
  top: 12px;
  animation-delay: 0.15s;
}

.scroll-arrow span:nth-child(3) {
  top: 24px;
  animation-delay: 0.3s;
}

@keyframes scrollArrow {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Responsive styles */
@media (max-width: 1200px) {
  .machine-content {
    width: 45%;
  }
}

@media (max-width: 992px) {
  .machine-content {
    width: 60%;
  }
  
  .machine-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .machine-section.card-right,
  .machine-section.card-left {
    justify-content: center;
  }
  
  .machine-content {
    width: 90%;
    max-width: 500px;
    margin: 0 auto !important;
    padding: 30px;
  }
  
  .machine-content h2 {
    font-size: 2rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .page-header p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .machine-content {
    padding: 25px 20px;
  }
  
  .machine-content h2 {
    font-size: 1.8rem;
  }
}
























/*# sourceMappingURL=main.03fbc66c.css.map*/