@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;700&amp;display=swap');

:root {
  --red: #b4202b;
  --gray: #a8a8a8;
  --orange: #b4202b;
  --blue: #b4202b;
  --green: #2a7b1f;
  --darkgray: #3d3d3d;
  --lightgray: #dbdbdb;
  --text: 18px;
  --text-big: 45px;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;

  /* Browsers have different default form fonts */
  font-size: 13px;
  font-family: Arial;
}

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0;
}

button:focus {
  outline: none;
}

button:active {
  transform: scale(0.99);
}
/* Button styles end */

/* Box Sizing Reset
-----------------------------------------------*/

/* All of our custom controls should be what we expect them to be */
input,
textarea {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type='reset'],
input[type='button'],
input[type='submit'],
input[type='checkbox'],
input[type='radio'],
select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Text Inputs
-----------------------------------------------*/

input[type='date'],
input[type='datetime'],
input[type='datetime-local'],
input[type='email'],
input[type='month'],
input[type='number'],
input[type='password'],
input[type='range'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='time'],
input[type='url'],
input[type='week'] {
}

/* Button Controls
-----------------------------------------------*/

input[type='checkbox'],
input[type='radio'] {
  width: 15px;
  height: 15px;
}

/* File Uploads
-----------------------------------------------*/

input[type='file'] {
}

/* Search Input
-----------------------------------------------*/

/* Make webkit render the search input like a normal text field */
input[type='search'] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  width:200px;
  height:25px
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/

button,
input[type='reset'],
input[type='button'],
input[type='submit'] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

/* Textarea
-----------------------------------------------*/

textarea {
  /* Move the label to the top */
  vertical-align: top;

  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* Selects
-----------------------------------------------*/

select {
}

select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

input,
select,
textarea {
  font-family: 'Poppins', sans-serif;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.red {
  color: var(--red);
}

h4 {
  font-size: 30px;

  text-align: center;
  padding: 40px 0 0px 0;
  color: #000000;
  letter-spacing: 4px;
  margin: 0;
}
html,
body {
  background-color: white !important;
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

.btn {
  color: white;
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 40px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  max-width: 400px;
}

.redBG {
  background-color: #21428a;
}

.orangeBG {
  background-color: var(--orange);
}

.blueBG {
  background-color: var(--blue);
}



.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.container h2 {
  text-align: center;
  font-size: 50px;
}

@media (max-width: 780px) {
  .container h2 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .container h2 {
    font-size: 30px;
  }
}

@media (max-width: 414px) {
  .container h2 {
    font-size: 25px;
  }
}

.custom-select {
  margin-left: 10px;
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: var(--red);
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: '';
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;

  background-color: var(--red);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
/* NavBAR START */

.navBar {
  position: fixed;
  margin: 0;
  background-color: #21428A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 5%;
  -webkit-box-shadow: 0px 5px 9px -1px rgba(34, 34, 34, 0.3);
  box-shadow: 0px 5px 9px -1px rgba(34, 34, 34, 0.3);
  transition: all 0.5s;
  width: 100%;
  z-index: 99999;
  height: 140px;
}

.navBar.opacity {
  padding: 20px 5%;
  background-color: #21428aeb;
  height: 100px;
}
.navBar.opacity  {
  color: #ffffff;
  font-size: 17px;
  text-decoration: none;
  margin-left: 0px;
  transition: color 0.3s;
  width: 100%;
}
.navBar.opacity .lang-switcher a:hover {
  color: #21428a;
}
.lang-switcher a:hover {
  color: #8eaaec;
}
.lang-switcher a {
  color: #ffffff;

}

.navBar.opacity:hover  {
  background-color: rgb(255, 255, 255);
 
}
.navBar.opacity:hover  .lang-switcher a{
 color: #21428A;
 
}
.navBar.opacity:hover  .lang-switcher a:hover{
  color: #8eaaec;
  
 }

/* Make nav link text blue when navbar is white */
.navBar.opacity:hover .linkContainer ul li a {
  color: #21428A;
}

/* Make underline blue too */
.navBar.opacity:hover .linkContainer ul li a::after {
  background-color: #21428A;
}

/* Optional: make hover text black or darker blue */
.navBar.opacity:hover .linkContainer ul li a:hover {
  color: #8eaaec;
}
/* When navbar is white, make dropdown white too */
.navBar.opacity:hover .dropdown-content {
  background-color: #ffffff;
}

/* Make dropdown links blue on white background */
.navBar.opacity:hover .dropdown-content li a {
  color: #21428A;
}

/* Optional: change hover color of dropdown links */
.navBar.opacity:hover .dropdown-content li a:hover {
  color: #8eaaec;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #21428A;
  padding: 10px 20px;
  z-index: 99999;
 
  flex-direction: row;
  width: 550px;
  gap: 20px;
  border-radius: 8px; 
}
/*
.dropdown-content:hover {
  background-color: rgba(255, 255, 255, 1);
}
.dropdown-content:after {
  position: absolute;
  background-color: #ffffff;
  height: 2px;
  width: 0;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}
*/

/* Keep dropdown open on hover */
.dropdown:hover .dropdown-content {
  display: flex;
}

/* Style dropdown items */
.dropdown-content li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
}

/*.dropdown > a:hover + .dropdown-content,
.dropdown-content:hover {
  display: flex;
}*/

.dropdown:hover > a::after {
  width: 100%;
}

.logoContainer img {
  width: 120px;
}

.linkContainer ul li {
  /*cursor: pointer;
  color: #000000;
  font-size: 20px;
  text-decoration: none;
  list-style: none;
  display: inline-block;
  margin: 0 20px;*/
list-style: none;
  margin: 0 20px;
  display: inline-block;
  position: relative;
}

.linkContainer ul li a {
  display: inline-block;
  padding: 10px 15px;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.linkContainer ul li a:hover {
  color: #8eaaec; 
}

/*.link:after {
  content: '';
  position: absolute;
  background-color: #ffffff;
  height: 2px;
  width: 0;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.link:hover {
  color: var(--red);
}

.link:hover:after {
  width: 100%;
}

.link.active {
  color: #000000;
}
*/

/* Hover underline effect */
.linkContainer ul li a::after {
   content: '';
  position: absolute;
  background-color: #ffffff;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.linkContainer ul li a:hover::after {
  width: 100%;
}

/* Optional text color change on hover */
.linkContainer ul li a:hover {
  color: #8eaaec;
}

/* Active link style (if needed) */
.linkContainer ul li a.active {
  color: #ffffff;
}
.mobileNav {
  display: none;
}

@media (max-width: 1180px) {
 body {
    position: relative;
    padding: 0 0px;
    margin: 0;
    background-color: #ffffff;
    overflow-x: hidden;
  }
  

  .hamburger {
    content: '';
    display: block;
    position: absolute;
    width: 35px;
    height: 4px;
    background-color: #000000;
    top: 40px;
    right: 20px;
    z-index: 5;
    transition: all 0.3s;
    cursor: pointer;
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 4px;
    background-color: #000000;
    transition: all 0.3s;
  }

  .hamburger.active {
    background-color: transparent;
    transform: translateX(-50px);
  }

  .hamburger.active::before {
    background-color: black;
    transform: rotate(45deg) translate(35px, -35px);
  }

  .hamburger.active::after {
    background-color: black;
    transform: rotate(-45deg) translate(35px, 35px);
  }

  .hamburger::before {
    transform: translateY(-10px);
  }

  .hamburger::after {
    transform: translateY(10px);
  }

  .navBar {
    display: flex;
    flex-direction: column;
    padding: 80px 20px 200px 20px;
    justify-content: space-between;
    background-color: #21428A;
    height: 100vh;
    width: 50%;
    z-index: 4;
  }

  .linkContainer ul {
    padding-left: 0;
  }

  /*.linkContainer ul li {
    margin-top: 50px;
    display: block;
    margin-left: 0;
  }*/

  .socialContainer {
    justify-content: flex-start;
  }

  .logo {
    margin: 0 auto;
  }

  .menu {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .container {
    width: 100%;
  }

  .navBar {
    top: 0;
    position: absolute;
    transform: translateX(-100%);
    width: 60%;
    background-color: #21428A;
    height: 100vh;

    transition: transform 0.4s;
  }

  .navBar.active {
    transform: translateX(0%);
  }

  .mobileNav {
    background-color: #21428A;
    display: flex;
    padding: 20px;
  }
  
.dropdown {
  width: 100%;
}


/* Clean dropdown appearance */
.dropdown-content {
  flex-direction: column !important;
  align-items: flex-start;
  width: 100% !important;
  gap:0px; /* reduce space between items */
  row-gap: 0;
  padding: 5px 0;
  background-color: transparent;
  position: relative;
  transform: none;
  top: 0;
  left: 0;
}
.dropdown-content li {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.dropdown-content li a {
  padding: 0 5px;
  margin: 0;
  font-size: 12px;
  line-height: 1;
}


/* Ensure consistent font for all items */
.linkContainer ul li a,
.dropdown-content li a,
.dropdown > a {
  font-size: 16px;
  font-family: inherit;
  font-weight: 600;
  color: white;
}
  .linkContainer ul li {
  margin: 6px 0;
}
.linkContainer ul li a::after,
.dropdown > a::after {
  content: '';
  position: absolute;
  background-color: #ffffff;
  height: 2px;
  width: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  transition: width 0.3s ease;
  display: block;
}
.linkContainer ul li a:hover::after,
.dropdown > a:hover::after {
  width: 60%; /* adjust to desired length */
}
.linkContainer ul li a,
.dropdown > a {
  position: relative;
  display: inline-block;
}

}

/* NavBAR END */

/* HERO START */

.hero {
  height: 100vh;
  background: var(--lightgray);
}

.red {
  color: #21428a;
}

.header {
  padding: 0 20px;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.textArea {
  margin-top: 100px;
  max-width: 575px;
}

.textArea h1 {
  font-size: var(--text-big);
}

.textArea p {
  font-size: 18px;
  line-height: 36px;
}

.textArea .btn {
  margin-top: 30px;
}

.container h2 {
  margin: 40px 0;
}

.imageArea {
  align-self: flex-end;
  display: flex;
  align-items: flex-end;
}

.can1 {
  bottom: 0;
  z-index: 1;
  transform: translateX(60px);
}

.can1 img {
  width: 100%;
  display: block;
}

.can2 img {
  width: 100%;
  display: block;
}

.can2 {
  z-index: 0;
}

.productBtn {
  width: 246px;
  font-weight: bold;
  color: white;
  font-size: 21px;
  background-color: var(--red);
  padding: 22px 15px;
  text-align: center;
  border-radius: 40px;
}

@media (max-width: 1180px) {
  .hero {
    height: 100%;
  }
  .textArea {
    max-width: 500px;
  }
  .textArea h1 {
    font-size: 40px;
  }

  .textArea p {
    font-size: var(--text);
    line-height: 36px;
  }
}


@media (max-width: 900px) {
  .textArea h1 {
    margin-top: 30px;
    font-size: 30px;
  }
  .textArea p {
    font-size: 18px;
    line-height: 36px;
  }
}

@media (max-width: 780px) {
  .header {
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .imageArea {
    justify-content: center;
    margin-right: 50px;
  }

  .textArea {
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .can1 {
    transform: translateX(0px);
  }
}
/* HERO END */

/* INNOVATION START */
.innovation {
  background-color: #f6f6f6;
  border-radius: 143px 143px 0 0;
  transform: translateY(0px);
  z-index: 3;

  position: relative;
}

.contactLink {
  background-color: #f6f6f6;
  text-align: center;
  padding: 0 15px 50px 15px;
  border-radius: 0 0 80px 80px;
  transform: translateY(50px);
  font-size: 18px;
  margin: 0;
}

.orange {
  color: var(--orange);
}

.blue {
  color: var(--blue);
}

.cards {
  max-width: 1200px;
  justify-content: center;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  height: 500px;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 45px;
  background-color: white;
  width: 100%;
  max-width: 500px;
  -webkit-box-shadow: 0px 0px 23px -1px rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 0px 0px 23px -1px rgba(0, 0, 0, 0.29);
  box-shadow: 0px 0px 23px -1px rgba(0, 0, 0, 0.29);
}

.card h3 {
  align-self: center;
  justify-self: center;
  margin: 0;
  font-size: 36px;
  text-align: center;
  padding: 0 20px;
  color: #21428a;
}

.card p {
  align-self: center;
  justify-self: center;
  padding: 0 50px;
  font-size: 18px;
  text-align: center;
}

.img {
  overflow: hidden;
  transition: all 0.5s;
}

.card {
  overflow: hidden;
}

.img img {
  border-radius: 0 0 45px 45px;
  width: 100%;
  height: 100%;
}

.card:hover .img {
  transform: scale(1.1);
}

.innovation-trigger,
.why-trigger {
  opacity: 0;
}

@media (max-width: 1478px) {
  .cards {
    padding: 0;
  }
  .innovation {
    border-radius: 80px 80px 0 0;
  }
}

@media (max-width: 1330px) {
  .innovation {
    border-radius: 60px 60px 0 0;
  }
}

@media (max-width: 1050px) {
  .innovation {
    border-radius: 40px 40px 0 0;
  }
}

@media (max-width: 780px) {
  .cards {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .card {
      height: auto;
    padding: 20px 10px;
  }

  .card h3 {
    font-size: 30px;
  }

  .contactLink {
    font-size: 15px;
  }

  .card p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .container h2 {
    font-size: 30px;
  }

  .card h3 {
    font-size: 25px;
  }

  .card p {
    font-size: 12px;
  }

  .contactLink {
    font-size: 12px;
  }
}

h3 {
  margin-top: 0;
}
/* AWARDS START */

.awards {
  background-color: white;
  padding-top: 50px;
}

.redBackground {
  z-index: 0;
}

.award-trigger,
.product-trigger {
  opacity: 0;
}

.products {
  position: relative;
}

.margin200 {
  position: relative;
  top: -200px;
}

.redBackground {
  background-color: #21428a;
  height: 55%;
  width: 100%;
  top: 55%;
  position: absolute;
  border-radius: 0 93px 0 93px;
}
/* * {
  box-sizing: border-box;
}*/




/* .carousel-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  cursor: grab;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-scroll::-webkit-scrollbar {
  display: none;
}
.carousel-scroll.active {
  cursor: grabbing;
  user-select: none;
} */

/* 
.carousel-dots {
  text-align: center;
  margin-top: 10px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  transition: background 0.3s;
}
.carousel-dots button.active {
  background: #333;
}

.carousel-buttons {
  height: 100%;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.carousel-button {
  font-size: 2rem;
  position: absolute;
  top: 45%;
  z-index: 2;

  color: var(--red);
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-button:hover,
.carousel-button:focus {
  color: white;
}

.carousel-button.prev {
  left: 2rem;
}

.carousel-button.next {
  right: 2rem;
} */

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
}

.award-text {
  opacity: 0;
  position: absolute;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  border-radius: 93px 0 93px 0;
  font-size: 30px;
  transition: all 0.2s;
}

.award-text:hover {
  opacity: 1;
}

.award-text p {
  position: relative;
}

.award-text p {
  text-align: center;
  color: white;
}

.award-text p strong {
  font-size: 40px;
}

.slide ul {
  overflow: hidden;
  padding: 0;
  margin: 0;
  list-style: none;
}

.slide ul li {
  height: 500px;
  overflow: hidden;
}

.slide > img {
  display: block;
  border-radius: 93px 0 93px 0;
  width: 100%;
}

.slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}

.img img {
  border-radius: 0 0 45px 45px;
  width: 100%;
  height: 100%;
}

@media (max-width: 1100px) {
  .carousel {
    height: 500px;
  }
  .redBackground {
    display: none;
  }

  .slide > img {
    border-radius: 0 30px 0 30px;
  }

  .carousel-button {
    top: 40%;
  }
}

@media (max-width: 900px) {
  .carousel {
    height: 400px;
  }
  .carousel-button {
    top: 40%;
  }
}

@media (max-width: 700px) {
  .carousel {
    height: 330px;
  }
  .carousel-button {
    top: 35%;
  }
}

@media (max-width: 500px) {
  .carousel {
    height: 230px;
  }
  .carousel-button {
    font-size: 1.5rem;
    top: 35%;
  }
}

@media (max-width: 400px) {
  .carousel {
    height: 200px;
  }
  .carousel-button {
    font-size: 1.5rem;
    top: 35%;
  }
}

/* WHY START */

.whyText {
  max-width: 600px;
  padding-left: 80px;
}

.section {
  display: flex;
  padding-bottom: 2.1875rem;
}

.title {
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 20px;
}

.titleContainer {
  padding-top: 100px;
  padding-bottom: 100px;
}

.title h3 {
  align-self: flex-start;
}

.orange {
  color: orange;
}

.blue {
  color: rgb(53, 53, 177);
}

.green {
  color: rgb(29, 141, 29);
}

.title i {
  justify-self: flex-end;
  font-size: 18px;
}

.imageContainer {
  top: 25%;
  position: sticky;
  overflow: hidden;
  width: 658px;
  height: 589px;
  border-radius: 50px;
}

.imageContainer img {
  display: block;

  width: 658px;
  height: 589px;
}

.textContainer {
  position: relative;
  display: flex;
  flex-direction: row;
  max-width: 400px;
  flex-wrap: wrap;
  align-items: flex-start;

  height: 50rem;

  align-content: center;
}

.textContainer h3 {
  margin-top: 0px;

  font-size: 30px;
}

.textContainer p {
  font-size: 18px;
  line-height: 32px;
}

.title {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.title:after {
  content: '';
  position: absolute;
  background-color: var(--gray);
  height: 2px;
  width: 0;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.title h3 {
  font-size: 25px;
  margin: 0;
}

@media (max-width: 900px) {
  .titleContainer {
    padding-top: 0;
    padding-bottom: 0;
  }
  .imageContainer {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 30px;
  }

  .imageContainer img {
    width: 100%;
    height: auto;
    border-radius: 30px;
  }
  .section {
    flex-direction: column;
    align-items: center;
  }

  .whyText {
    width: 100%;

    padding: 0;
  }

  .textContainer {
    background-color: white;
    border-radius: 20px;
    margin-top: 20px;
    padding: 50px 50px;
    height: auto;
    max-width: 800px;
  }
}

@media (max-width: 587px) {
  .textContainer p {
    font-size: 15px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .textContainer p {
    font-size: 12px;
    line-height: 15px;
  }
}

/* PRODUCTS */
.productContainer {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}

.productContainer a img {
  transition: all 0.3s;
  cursor: pointer;
}

.productContainer a img:hover {
  transform: scale(1.05);
}

.productContainer a img {
  width: 100%;
}

.whiteBg {
  margin-top: 100px;
  background-color: white;
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}

.center {
  margin: 0 auto;
}
.our-team {
  text-align: center;
  font-size: 2rem;
  margin-top: 60px;
  color: #001f3f;
  margin-bottom:20px;
}

.team-container {
  padding: 30px 20px;
  text-align: center;
  margin-right:100px;
  margin-left:100px;
}

.team-member {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.team-member h4 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
  font-weight: bold;
}

.team-member p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.faq-section {
  padding: 60px 20px;
  margin-top: -390px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.faq-container {
  display: flex;
  gap: 40px;
  align-items: flex-start; /* ✅ make them align from the top, not stretch */
  max-width: 1200px;
  margin: auto;
}

.faq-image {
  flex: 0 0 550px;        /* ✅ fixed width — no growing or shrinking */
  height: 400px;           /* ✅ fixed height */
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  align-self: flex-start;  /* ✅ stay at the top */
}

.faq-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.faq-image:hover img {
  transform: scale(1.1);
}

/* make the button a block centered horizontally */
.faq-more {
  display: block;             /* full line so margin auto works */
  margin: 30px auto 0;        /* top spacing, horizontal auto-centers */
  padding: 12px 24px;
  background-color: #21428A;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  width: fit-content;         /* shrink to content so it looks like a button */
  transition: background-color 0.3s ease;
}

.faq-more:hover {
  background-color: #001f3f;
}


.faq-content {
  flex: 2;
  min-width: 300px;
}

.faq-content h5 {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #001f3f;
  margin-bottom: 0.5rem;
  text-align: center;
}

.faq-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #001f3f;
  margin-bottom: 1rem;
  text-align: center;
}

.faq-content p {
  color: #444;
  margin-bottom: 2rem;
   text-align: center;
}

.faq-list details {
  margin-bottom: 15px;
  background: #21428A;
  color: rgb(255, 255, 255);
  border-radius: 6px;
  padding: 15px 20px;
  cursor: pointer;
  transition: background 0.3s;
  font-size:20px;
}

.faq-list summary {
  font-weight: bold;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] {
   background: #fff;
   color: #21428A;
  font-size:18px;
}

.faq-list details p {
  margin-top: 10px;
  color: #030f27;
  font-size:17px;
  text-align: justify;
  line-height: 1.4;
}

/* === FOOTER START === */
/* === FOOTER START === */
footer {
  background-color: #21428a8c;
  box-shadow: 0px -4px 6px -1px rgba(0, 0, 0, 0.1);
}

.footer-info {
  display: flex;
  justify-content: center;
  align-items: baseline;
  /*flex-wrap: wrap;*/
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 80px; /* this creates spacing between the sections */
}

.footer-brand,
.contact-info1,
.useful-links {
  flex: 1 1 250px;
  max-width: 300px;
}

.footer-brand img {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-brand p { 
  color: white;
 
}
.contact-info1 p,
.useful-links p {
  color: #21428A;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-info1 a,
.useful-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  
}

.contact-info1 a:hover,
.useful-links a:hover {
  color: #21428A;
}

.copyright {
  background-color: #21428A;
  padding: 15px;
  color: white;
  text-align: center;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .footer-info {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  .footer-brand,
  .contact-info1,
  .useful-links {
    max-width: 100%;
  }
}
.footer-brand img {
  height: auto;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}



.embossimg {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.embossimg img {
  display: flex;
  position: relative;
  width: 50%;
  height: auto;
  border-radius: 40px 40px 40px 40px;
  background-position: center center;
  display: flex;
  justify-content: center;

}

.processContainer p {
  clear: both;
  overflow: hidden;
  text-align: justify;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  
}



.process-step .step-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.process-step {
  margin-bottom: 60px;
}

.step-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.step-image {
  flex: 1 1 40%;
}

.step-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  display: block;
}

.step-text {
  flex: 1 1 55%;
}

.step-text h2 {
  font-size: 30px;
  margin-top: 0;
  color: #000;
}

.step-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .step-content {
    flex-direction: column;
  }

  .step-text,
  .step-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .step-text p {
    text-align: center;
}
.tab-content.active {
  /*display: flex;
  gap: 150px;
  justify-content: flex-start;*/
  height:auto
}


}
.carousel-section {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.tab {
  padding: 1rem 2rem;
  background: #1a2640;
  color: white;
  border: none;
  cursor: pointer;
  margin: 0 0.5rem;
  font-weight: bold;
  border-radius: 6px;
}

.tab.active {
  background: #112040;
  position: relative;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #112040;
}

.carousel-wrapper {
  overflow-x: auto;
}

.carousel {
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: flex;
  gap: 150px;
  justify-content: flex-start;
}

.carousel-text {
  font-size: 1.2rem;
  color: #21428A;
  margin-top: 1rem;
  border-radius: 10px;
}
.carousel-img{
  width: 100%;
  align-items: center;
  
}
.carousel-img img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}



.product {
  flex: 0 0 auto; /* don't shrink, no grow */
  width: 150px;    /* adjust width as needed */
  user-select: none;
  text-align: center;
  cursor: pointer;
}

.product img {
  width: 264px;
  height: 264px;
  border-radius: 8px;
}
.product p {
  margin-top: 0.2rem;
  font-weight: bold;
}

/* .printing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.printing-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0b1c42;
  margin-bottom: 40px;
}
.printing-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.printing-text {
  flex: 1 1 40%;
  padding: 20px;
  text-align: left;
}
.printing-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0b1c42;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.printing-text h3 i {
  margin-right: 10px;
}
.printing-text p {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}
.printing-image {
  flex: 1 1 20%;
  text-align: center;
  padding: 20px;
  
}
.printing-image img {
  max-height: 300px;
  width: auto;
 transition: transform 0.1s ease;
  will-change: transform;
  background-size: auto 100%;
} */




.can-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f5f5f5;
  position: relative;
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.can-wrapper {
  margin-top: 40px;
  position: relative;
  width: 250px;
}

.can-wrapper {
  margin-top: 40px;
  position: relative;
  width: 250px;
}

.can-image {
  width: 100%;
  display: block;
}

/* Common styles for indicators */
.indicator {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #21428a;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

/* Positioning left and right indicators */
.indicator.left {
  left: 50px;
}

.indicator.right {
  right: 50px;
}

.indicator:hover {
  transform: scale(1.2);
}

/* Tooltip styling */
.indicator::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -5px;
  background: #fff;
  color: #333;
  padding: 6px 10px;
  border-radius: 5px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

/* Tooltip position based on side */
.indicator.left::after {
  right: 130%;
}

.indicator.right::after {
  left: 130%;
}

.indicator:hover::after {
  opacity: 1;
}


.printing-finishing {
  background: #fefefe;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 50px;
  margin-bottom: 20px;
  color: #21428a;
}

.section-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}

.features-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333;
}

/* Keep using previous styles for .can-wrapper, .can-image, .indicator, etc. */

.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background-color: #030f27; /* change this to your desired color */
  border-radius: 50%;
}



.modal-details-button {
  display: flex; /* Changed from inline-block */
  align-items: center; /* Vertically center */
  justify-content: center; /* Horizontally center */
  gap: 8px; /* spacing between icon and text */
  margin-top: 10px;
  padding: 10px 20px;
  background-color: red;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-align: center; /* Optional, for multi-line text */
}

.modal-details-button i {
  color: white;
  transition: color 0.3s ease;
}

.modal-details-button:hover {
  background-color: #fff;
  font-weight: bold;
  color: red;
}
.modal-details-button:hover i {
  color: red;
}




 .modal-specs p {
  margin: 6px 0;
  font-size: 18px;
  color: #444;
}
.modal-specs strong {
  font-weight: 600;
  color: #222;
} 



/* Language switcher */
.lang-switcher {
  float: right;
  margin-right: 20px;
}

.lang-switcher a {
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  margin-left: 10px;
  transition: color 0.3s;
}

/*.lang-switcher a:hover {
  color: #8eaaec;
}*/










/* .processContainer {
  padding: 50px 20px;
  background: #f9f9f9;
} */

.timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #ccc;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 40px 0;
  position: relative;
}

.timeline-item.right {
  justify-content: flex-start;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid #21428a;
  border-radius: 50%;
  z-index: 2;
}

.timeline-content {
  background: #fff;
  padding: 25px;
  width: 49%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s;
}

.timeline-content:hover {
  transform: scale(1.02);
}

.timeline-item.left .timeline-content {
  margin-right: auto;
  text-align: leftt;
}

.timeline-item.right .timeline-content {
  margin-left: auto;
  text-align: left;
}

.timeline-img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.timeline-content h2 {
  margin-top: 0;
  color: #21428a;
  font-size: 22px;
}

.timeline-content p {
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
  color: #333;
}

/* Responsive for Mobile */
@media screen and (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-content {
    width: 100%;
    padding-left: 40px;
    text-align: left !important;
  }

  .timeline-item::before {
    left: 20px;
    transform: none;
  }
}






/* SUSTAINABILITIY START */

.inner-hero {
  background-color: white;
  margin-top: 200px;
  margin-bottom: 100px;
  padding: 0;
  opacity: 1;
}

.inner-hero h2 {
  margin-bottom: 0;
  text-align: center;
  font-size: 70px;
  font-weight: bold;
}

.inner-hero h3 {
  margin-bottom: 100px;
  color: var(--gray);
  font-size: 16;
  font-weight: lighter;
  text-align: center;
}

 .navBar {
  top: 0;
} 

.inner-hero img {
  display: block;
  margin: 0;
  width: 100%;
}

.sustainability-container h2 {
  text-align: left;
  font-size: 40px;
}

.numbers-area {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 3fr 2fr;
  column-gap: 40px;
}

.text h3 {
  margin: 0;
  font-size: 70px;
  text-align: left;
  color: var(--green);
}

.text p {
  margin: 0;
  text-align: left;
  font-size: 15px;
  max-width: 238px;
}

.text-area {
  max-width: 370px;
}

.img-area img {
  border-radius: 30px;
  width: 100%;
}

.text-area h3 {
  color: var(--green);
}

.why-area {
  padding: 50px 0px;
}

.why-area h2 {
  margin: 0;
  color: var(--green);
  text-align: left;
  font-size: 48px;
}

.why-area h3 {
  color: black;
  text-align: left;
  font-size: 20;
}

.hero-contact {
  position: absolute;
  top: 15%;
  width: 100%;
}

.hero-contact-area {
  font-size: 80px;
 /*  color: #ffffff; */
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  width: 400px;
  justify-content: space-between;
  align-items: center;
  transform: translateY(200px);
}

.hero-contact-area a i {
  transition: all 0.3s;
 /*  color: white; /* Initial icon color */ */
}

.hero-contact-area a i:hover {
  transform: scale(1.1);
/*   color: #d2ddf7; /* Hover color */ */
}
.why-desc {
  font-size: 28px;
  font-weight: medium;
  text-align: left;
  color: black;
  max-width: 550px;
}

.why-cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.why-card {
  position: relative;
  height: 250px;
  padding: 0 20px 60px 20px; /* add bottom padding for space */
  background-color: #21428A;
  border-radius: 15px;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center for flex children */
  align-items: center;     /* horizontal center */
  transition: all 0.4s ease-in-out;
  box-sizing: border-box;
}

.why-card h3 {
  color: white;
  font-size: 20px;
  margin: 0;
  line-height: 1.2;
  transition: transform 0.4s ease;
  z-index: 2;
}

.why-card p {
  position: absolute;
  bottom: 40px;
  left: 20px;
  right: 20px;
  color: white;
  font-size: 14px;        /* increased from 13px */
  line-height: 1.25;       /* more comfortable spacing */
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
  text-align: center;
}


.why-card:hover h3 {
  transform: translateY(-40px);
}

.why-card:hover p {
  opacity: 1;
  pointer-events: auto;
}


.why-bottom-text {
  text-align: center;
  font-weight: bold;
  color: white;
  margin-top: 50px;
}

.what-area {
  display: flex;
}

.what-area img {
  width: 100%;
  height: 100%;
}

.what-text {
  padding-right: 40px;
  max-width: 612px;
  font-size: 18px;
}

.perks-area {
  margin-top: 50px;
  padding: 50px 0px;
  background-image: url('../images/sustainability_bg.png');
}

.perks {
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;

  display: flex;
}

.perk {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 15px;
  border-radius: 270px;
  width: 200px;
  height: 200px;
  font-size: 20px;
  margin: 0 50px;
  color: var(--green);
}

.perk i {
  margin-bottom: 15px;
  font-size: 30px;
}

.perk p {
  font-size: 14px;
  max-width: 180px;
  text-align: center;
}

@media (max-width: 1180px) {
  .inner-hero {
    margin-top: 0px;
  }

  .text h3 {
    font-size: 50px;
  }

  .text p {
    font-size: 14px;
  }

  .what-area p {
    max-width: 900px;
    font-size: 15px;
  }

  .perk {
    margin: 0 20px;
  }
}

@media (max-width: 900px) {
  .what-area {
    margin: 0 auto;

    flex-direction: column;
  }

  .container h2 {
    text-align: center;
  }

  .what-text {
    padding-right: 0;
    text-align: center;
    font-size: 15px;
    max-width: 1200px;
  }

  .perk {
    margin: 0 10px;
  }
}

@media (max-width: 700px) {
  .inner-hero h2 {
    font-size: 50px;
  }

  .container h2 {
    text-align: center;
  }

  .inner-hero h3 {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .numbers-area {
    grid-template-columns: 1fr;
  }

  .text h3 {
    text-align: center;
  }

  .text p {
    text-align: center;
    font-size: 25px;
    max-width: 700px;
    margin-bottom: 20px;
  }

  .text-area {
    max-width: 700px;
  }

  .text-area h3 {
    text-align: center;
    margin-top: 20px;
  }

  .text-area p {
    text-align: center;
  }

  .perks {
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }

  .perk {
    margin-top: 25px;
  }

  .hero-contact {
    top: -10%;
  }

  .hero-contact-area {
    font-size: 50px;

    display: flex;

    width: 300px;
  }
}

@media (max-width: 480px) {
  .inner-hero h2 {
    font-size: 35px;
  }

  .hero-contact {
    top: -25%;
  }

  .hero-contact-area {
    font-size: 40px;

    display: flex;

    width: 200px;
  }
}

.about-intro {
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.about-intro img {
  width: 30%;
  display: block;
  transform: translateY(-400px);
}

.about-text {
  max-width: 645px;
}

.about-tab {
  position: relative;
  top: -500px;
  border-radius: 0 50px 50px 0px;
  max-width: 1600px;
  padding: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color:#21428a;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/products/about_2.png);
  overflow: hidden;
}


.tab-text p {
  max-width: 400px;
  
  margin-right: 80px;
}

.elementor-widget-wrap {
  margin-left: -100px;
  border-radius:5px;
  font-size: 20px;
  height: auto;
  width: 600px;
  display: flex;
  flex-direction: column;
  list-style: circle;
  background-color:#ffffff;
  padding: 40px 40px 40px 40px;
  box-sizing: border-box;
  max-width: 100%;
  z-index: 9998;
  
  
}
.elementor-heading-title{

  margin: 0;
  padding: 0;
  font-size: 30px;
  color: #001f3f;
 
  
}

.elementor-text{
 text-align: justify;
  font-size: 20px;
  line-height: 1.5;


}
.toggleBtn {
  font-size: 16px;
  font-weight: bold;
  background: none;
  border: none;
  padding: 0;
  margin-top: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%; /* Makes sure it doesn't overflow */
  text-align: left;
  white-space: normal;
  color: #21428A;

}
  .content {
    font-size: 14px;
    margin: 5px 0 0 5px;
    display: none;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;

  }
#tab5 .tab-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  max-width: 300px;
}

#tab6 {
  flex-wrap: wrap;
  gap: 70px;
}

#tab6 .tab-text {
  justify-self: flex-start;
  display: flex;
  flex-direction: column;
}

#tab7 .tab-text {
  padding-bottom: 30px;
  font-size: 16px;
  margin-right: 20px;
}

#tab7 ul {
  margin: 0;
}
#tab7 ul li {
  font-size: 14px;
  margin: 0;
}

#tab6 .tab-text a {
  margin-bottom: 20px;
}

.tab img {
  width: 50%;
  height: 50%;
}

#tab5 .tab-text p {
  margin-top: 10px;
  margin-right: 0;
}

.emboss-container {
  padding-bottom: 40px;
}

.emboss-shapes-container {
  padding: 20px 0;
  background-color: #dddcd7;
}
.emboss-shapes {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 45px;
}

.emboss-shapes img {
  width: 100%;
  height: 100%;
}

.about-anim {
  width: 100%;
  height: 100%;
}

.tab-text a img {
  display: block;
  margin-right: 0;
}
@media (max-width: 1100px) {
  .tab-text {
    margin-bottom: 30px;
  }
  .about-text {
    font-size: 14px;
    padding-right: 50px;
  }
  .about-tab {
    top: -310px;
  }
  .tab {
    font-size: 14px;
  }

  .about-tab ul {
    justify-content: space-evenly;
  }

  .about-tab ul li {
    font-size: 16px;
  }

  .about-tab {
    border-radius: 0 100px 100px 0;
  }
}

@media (max-width: 1060px) {
  .tab {
    margin-right: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .tab-text {
    text-align: center !important;
  }

  .tab p {
    margin-right: 0;
    text-align: center;
  }

  .tab-text h4 {
    text-align: center !important;
  }
}

@media (max-width: 800px) {
  .tab {
    margin-right: 0;
  }
  .about-tab {
    flex-direction: column;
  }

  .tab img {
    width: 100%;
    height: 100%;
  }

  .about-tab ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0;
    gap: 30px;
    height: 100%;
    width: 100%;
    margin-bottom: 50px;
  }

  .about-tab ul li {
    max-width: 300px;
  }
  .about-intro {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
  }

  .about-text {
    font-size: 12px;
  }

  .about-anim {
    display: none;
    opacity: 0;
  }

  .about-intro img {
    transform: translateY(0px);
  }

  .tab-text p {
    font-size: 10px;
  }

  .about-text {
    margin-right: 0px;
    padding-right: 0px;
    max-width: 600px;
  }
}

@media (max-width: 679px) {
  .about-text {
    margin-bottom: 50px;
  }
  .inner-hero {
    margin-bottom: 20px;
  }
  .about-tab ul li {
    font-size: 14px;
  }
}
/* 22.07.2025 */
.tab-btn {
  cursor: pointer;
}

.tab-btn.active {
  color: black;
  font-weight: bold;
}

.tab {
  justify-content: flex-end;
  align-items: center;
  display: none;
}

.tab-text h4 {
  font-weight: bold;
  font-size: 18px;
  color: black;
}

.tab-text a {
  font-weight: bold;
  color: var(--gray);
}

#tab4 {
  flex-wrap: wrap;
  align-items: flex-start;
}

#tab4 h4 {
  text-align: left;
}

#tab4 p {
  margin-left: 0;
}

.rd-container h2 {
  text-align: left;
}

.rd-container .section2 {
  display: flex;
}

.rd-container .section1 {
  display: flex;
  justify-content: flex-end;
}

.section1 img {
  width: 100%;
  height: 100%;
}

.section2 img {
  display: block;
  transform: translateY(-180px);
  width: 100%;
  height: 100%;
}

.section2 h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.right-text {
  max-width: 800px;
}

.right-text p {
  font-size: 18px;
  line-height: 32px;
}

.bottom-text {
  font-size: 18px;
  line-height: 32px;
  transform: translateY(-150px);
}

@media (max-width: 1170px) {
  .section2 h5 {
    font-size: 20px;
  }

  .section2 p {
    font-size: 16px;
  }
}

@media (max-width: 1120px) {
  .section2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section2 img {
    transform: translateY(-50px);
    width: 50%;
    height: 50%;
  }

  .section2 .right-text {
    transform: translateY(-40px);
    margin: 0 15px 0 0;
    padding: 0;
  }

  .bottom-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 32px;
    transform: translateY(0px);
  }
}

.products-container {
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.modal-box {
  justify-content: space-evenly;
  border-radius: 20px;
  -webkit-box-shadow: 0px 5px 9px -1px rgba(34, 34, 34, 0.3);
  box-shadow: 0px 5px 9px -1px rgba(34, 34, 34, 0.3);
  max-width: 1000px;
  padding: 50px;
  left: 0;
  right: 0;
  top: 40px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  z-index: 99999;
  display: none;
}

.modal-img-area {
  width: 500px;
}

.modal-text-area {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 18px;
  text-align: left;

  justify-content: center;
  height: 100%;
}

.cross-icon {
  position: absolute;
  top: 5%;
  right: 5%;
}

.cross-icon i {
  font-size: 40px;
}

.modal-contact-button {
  background-color:  #214284;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 20px;
  color: white;
  text-align: center;         /* Horizontally center text */
  display: inline-block;      /* Or 'block' depending on context */
  vertical-align: middle;     /* Helps align text in line with other elements */
  line-height: normal;        /* Ensure line height doesn't interfere */
}
.modal-contact-button:hover {
  background-color: #d2ddf7;
  color: #214284;
  font-weight: bold;
  display: flex;
  justify-content: center;    /* Horizontal centering */
  align-items: center;        /* Vertical centering */
}
.modal-text-area h4 {
  text-align: left;
  font-size: 30px;
  color: black;
  font-weight: bold;
  letter-spacing: normal;
}
.modal-box img {
  display: block;
  border-radius:8px;
}

@media (max-width: 890px) {
  .modal-text-area h4 {
    text-align: center;
  }

  .modal-text-area {
    text-align: center;
  }
}

.product-container {
  position: relative;
  width: 200px;
  height: 295px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s;
}

.product-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  opacity: 1;
}

.product-container:hover .product-img {
  opacity: 0.5;
  transform: scale(1.1);
}

.product-container:hover .product-title {
  opacity: 1;
}

.product-title {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  z-index: 5;
  left: 0;
  right: 0;
  top: 150px;
  opacity: 0;
  text-align: center;
  transition: all 0.5s;
}

.content {
  padding: 30px 0px;
  display: flex;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}

.filter {
  padding-left: 20px;
  padding-right: 50px;
  position: sticky;
  width: 300px;
  min-width: 250px;
}

.filter-container {
  background-color: #253d7feb;
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
  height: 40px;
  transition: all 0.2s;
  margin: 10px 0;
}

.checkbox {
  opacity: 0;
  transition: all 0.2s;
}

.filter-container.active .checkbox {
  opacity: 1;
}

.filter-container.active {
  height: 100%;
}

.filter-title {
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+/Edge */
  user-select: none;
  cursor: pointer;
  font-size: 12px;
  color: #fff;
  font-weight: lighter;
  display: flex;
  justify-content: space-between;
}

.filter-title i {
  color: #fff;
  font-size: 18px;
}

@media (max-width: 700px) {
  .content {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .filter {
    min-width: none;
    max-width: 400px;
    padding: 10px;
  }
}

.process-flex {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  margin-top: 10px;
}

.embossimg {
  flex: 1 1 40%;
}

.embossimg img {
  width: 100%;
  border-radius: 30px;
  display: block;
}

.process-text {
  flex: 1 1 55%;
}

.process-text h2 {
  font-size: 30px;
  margin-top: 0;
  color: #000;
}

.process-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .process-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .process-text p {
    text-align: center;
  }
}

.contact-area {
  display: flex;
  justify-content: space-between;
}

.contact-area form button {
  background-color: #21428A;
  padding: 20px 0;
  border-radius: 5px;
  color: white;
}

.contact-section h3 {
  max-width: 1200px;
  text-align: left;
  margin: 30px 0;
  font-size: 50px;
}

.contact-area form {
  height: 100%;
  width: 500px;
  padding: 0 0px;
  display: flex;
  flex-direction: column;
}

.cotact-area form input,
.cotact-area form textarea {
  border-radius: 10px;
}

.cotact-area form button {
  border-radius: 10px;
  background-color: #3d3d3d;
  padding: 20px;
  font-size: 16px;
  color: white;
}

.address-area {
  padding: 20px 20px 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.address {
  text-align: right;

  max-width: 400px;
}

.address-area h3 {
  font-size: 35px;
  text-align: right;
}


@media (max-width: 675px) {
  .contact-area {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contact-area form {
    margin-bottom: 40px;
  }

  .contact-section h3 {
    font-size: 35px;
  }

  .address-area {
    text-align: center !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .address-area .canimg {
    display: none;
  }

  .socialContainer {
    justify-content: center;
    align-items: center;
  }

  .address h3,
  .address p {
    text-align: center;
  }

  .address {
    margin-bottom: 40px;
  }
}


.social-links {
  justify-self: flex-start;
  text-align: left;
  font-size: 25px;
}

.section2 .right-text {
  margin-top: 20px;
}

.section2 h5 {
  margin-bottom: 20px;
}

.emboss-list {
  background-image: url('../images/emboss_bg.png');
  padding: 45px 0;
}

.emboss-list h2 {
  color: white;
  text-align: left;
  margin: 0;
  margin-bottom: 40px;
}

.emboss-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.emboss-card {
  width: 200px;
  height: 300px;
  overflow: hidden;
  background-color: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px;
}

.emboss-card img {
  transform: translateY(60px);
  width: 100%;
}

.emboss-card p {
  transform: translateY(50px);
  font-size: 15px;
  color: var(--red);
  max-width: 130px;
  text-align: center;
}

.emboss-bottom-text {
  max-width: 1200px;
  margin: 40px auto;
  font-size: 18px;
  line-height: 32px;
}

.emboss-bottom {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.emboss-bottom-left {
  max-width: 560px;
  display: flex;
  justify-content: space-between;

  flex-direction: column;
}

.img1 {
  width: 100%;
}

.img2 {
  width: 100%;
}

.emboss-title {
  grid-area: title;
  font-size: 45px;
  font-weight: normal;
}

.emboss-bottom .btn {
  grid-area: btn;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .emboss-bottom-text {
    padding: 0 20px;
  }
  .emboss-bottom-left {
    align-items: center;
  }

  .emboss-title {
    margin: 20px 0;
    font-size: 30px;
    text-align: center;
  }
}

.emboss-banner img {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 480px) {
  .emboss-cards {
    justify-content: center;
  }
}

.pagination-container {
  width: 100%;
  clear: both;
  text-align: center;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #b3212b;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #6e0c13;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #b3212b;
  border-color: #b3212b;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.contact-message {
  background-color: #4caf50;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  color: #fff;
}
.load-btn {
  display: block;
  width: 90%;
  height: 33px;
  background-color: #21428A;
  padding: 10px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}
  .products-title {
  text-align: center;
  font-size: 18px;
  max-width: 800px;     /* Optional: limits width for better readability */
  margin: 0 auto;       /* Centers the container horizontally */
  padding: 20px 10px; 
  } 
    .load-dim {
  display: block;
  width: 90%;
  height: 33px;
  background-color: #21428A;
  padding: 10px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  margin: 0 auto; /* Centers the button */
  }
  .tabs {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  gap: 1rem;
}
 .load-dim  {
  padding: 10px 20px;
  background-color: #1a2640;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

 .load-dim :hover {
  background-color: #2e3c5c;
}

 .load-dim .active {
  background-color: #0d1528;
}




 @media (max-width: 768px) {
  .navBar {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
    background-color: #21428a;
    padding: 10px;
    z-index: 1000;
  }

   .navBar.active {
    display: flex;
    justify-content: space-around;
  }

  .logoContainer {
    justify-content: center;
    width: 100%;
  }
  .logoContainer img {
    width: 120px;
  }
  .linkContainer ul {
    display: flex;
    flex-direction: column;
    padding: 10;
    margin: 15;
    width: 100%;
  }
 
  .linkContainer ul li {
    width: 100%;
    list-style: none;
  }

  .linkContainer ul li a {
    display: block;
    padding: 20px 35px;
    text-align: left;
    width: 100%;
    color: #fff;
  }
  /* .dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 20px;
  }

  .dropdown:hover .dropdown-content {
    display: flex;
  }

  .dropdown-content li a {
    padding: 8px 15px;
    font-size: 14px;
  } */

  .lang-switcher {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 5px;
  }
}



/* Mobile container adjustments */
@media screen and (max-width: 768px) {
  .container, .about-intro, .faq-container, .team-container, .footer-info {
    flex-direction: column;
    padding: 0px;
    gap: 20px;
  }

  .about-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    width: 100%;
    padding: 0;
  }

  .about-anim {
    width: 100%;
    max-width: 300px;
  }

  ./* Mobile portrait adjustments */
@media (max-width: 768px) {

  .image-container {
    width: 100%;
    height: auto;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .zoom-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  .image-container:hover .zoom-image {
    transform: scale(1.015); /* ✨ much softer zoom */
  }
}
  .faq-container {
    flex-direction: column;
    align-items: center;
  }

 .faq-image {
  text-align: center;
  padding: 15px;
}
.faq-image img {
  width: 100%;
  /* max-width: 400px; Or adjust as needed */
  /* height: auto; */
  display: block;
  margin: 0 auto; /* Center the image */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

  /* ensure the right column uses the remaining space and is full width */
.faq-list {
  flex: 1;                    /* take remaining space next to the image */
  width: 100%;                /* ensure it stretches across the column */
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;    /* keep FAQ items left-aligned */
  box-sizing: border-box;
}

  .team-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .team-member {
    text-align: center;
  }

  footer .footer-info {
    flex-direction: column;
    align-items: center;
  }

  .footer-brand,
  .contact-info1,
  .useful-links {
    text-align: center;
    width: 100%;
  }

  .inner-hero h2, .inner-hero h3 {
    text-align: center;
  }

  .lang-switcher {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
}
 
p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    font-size: 1rem; /* or 17px */
    line-height: 1.6;
}

@media (max-width: 768px) {
  .carousel-img {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
  }

  .carousel-img img {
    width: 100%;                /* Larger display */
    max-width: 600px;          /* Maximum size allowed */
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .carousel-img img:hover {
    transform: scale(1.08);    /* Slightly more zoom on hover */
    opacity: 0.9;
  }
}

@media (max-width: 768px) {
  /* 🧾 Contact Section Heading */
  .contact-section h3,
  .contact-section p {
    text-align: center;
    padding: 0 15px;
  }

  /* 📄 Contact Form */
  .contact-area form {
    margin: 0 auto 40px auto;
    width: 90%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-area input,
  .contact-area select,
  .contact-area textarea,
  .contact-area button {
    font-size: 1rem;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-area textarea {
    resize: vertical;
    min-height: 120px;
  }

  /* 📍 Map */
  .contact-area iframe {
    width: 100% !important;
    height: auto;
    aspect-ratio: 4 / 3;
    margin-top: 20px;
    border-radius: 8px;
  }

  /* 🧭 Contact Info Section */
  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-top: 30px;
  }

  .contact-info {
    padding: 0 15px;
  }

  .canimg {
    max-width: 180px;
    margin: 0 auto;
    
    display: block;
  }

  /* 🦶 Footer Links */
  .footer-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-info div {
    min-width: auto !important;
    width: 90%;
  }
}


@media (max-width: 768px) {
.faq-content h5 {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #001f3f;
  margin-bottom: 0.5rem;
  text-align: center;
  margin-top : 40px;
}
}


.carousel-scroll {
  cursor: grab;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.carousel-scroll.dragging {
  cursor: grabbing;
}




/* @media (max-width: 768px) {
  .can-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    padding: 20px;
  }

  .can-wrapper .can-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

 /* Common styles for indicators */
/* .indicator {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #21428a;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}


  .indicator.left {
    left: 50px;
  }

  .indicator.right {
    right: 50px;
  }
  
.indicator:hover {
  transform: scale(1.2);
}

.indicator.left::after,
.indicator.right::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: black;
  font-size: 10px;
  line-height: 1; */
  /* padding: 2px 5px;          /* Tighter space around the text */
  /* border-radius: 3px; */
  /* white-space: nowrap;       Prevents line-break */
  /* display: inline-block; */
  /* width: max-content;         Ensures width matches text */
  /* max-width: 150px;          Optional: max size for longer text */
  /* opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10; */
  /* box-shadow: 0 1px 3px rgba(0,0,0,0.1); optional */
/* } */ 

/* 
.indicator.left::after {
  right: 130%;
}

.indicator.right::after {
  right: 130%;
}

  .indicator:hover::after {
    opacity: 1;
  }
} */ 

@media (max-width: 768px) {
  .indicator::after {
    top: -35px; /* Position above the dot */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%);
    max-width: 130px;
    font-size: 12px;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
  }

  .indicator.left::after,
  .indicator.right::after {
    left: 50%; /* Override previous left/right settings */
    right: auto;
  }
}

/* 📱 Mobile fix for Our Missions section */
@media (max-width: 768px) {

  .about-tab {
    display: flex;
    flex-direction: column;    /* stack items vertically */
    align-items: center;
    gap: 25px;
    padding: 0 15px;
  }

  .image-container {
    width: 100% !important;
    height: auto !important;               /* let image decide height */
    max-height: calc(100vh - 140px);       /* fit viewport, tweak if needed */
    display: flex;
    align-items: center;                   /* vertical centering */
    justify-content: center;               /* horizontal centering */
    overflow: visible;                     /* allow full image to show */
    padding: 8px;                          /* small breathing room */
    box-sizing: border-box;
  }
 .zoom-image {
    width: auto;                           /* preserve natural aspect */
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;                   /* show full image, no crop */
    object-position: center center;        /* center inside container */
    transform: none !important;            /* ensure no shift/zoom */
    border-radius: 0px 85px 0px 0px;
  }

  .image-container:hover .zoom-image {
    transform: none;             /* disable hover zoom on mobile */
  }

  .elementor-widget-wrap {
    margin-left: 0;               /* fix alignment */
    width: 100%;                  /* full width */
    max-width: 100%;
    padding: 20px;
    font-size: 16px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;       
    align-items: center;           
    text-align: center;
    gap: 30px;
    padding: 0 15px;
  }

  .faq-image {
    width: 100%;
    max-width: 600px;          /* reasonable width on mobile */
    height: 380px;               /* no forced height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .faq-image img {
    width: 100%;
    height: 420px;                /* keep correct aspect ratio */
    object-fit: cover;           /* fill without distortion */
    border-radius: 12px;
    display: block;
  }

  .faq-list {
    width: 100%;
    max-width: 600px;             
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;           
  }

  .faq-list details {
    width: 100%;
    text-align: left;               
    font-size: 16px;
    padding: 15px;
  }

  .faq-list details[open] {
    font-size: 15px;
  }

  .faq-list details p {
    font-size: 15px;
    text-align: justify;
  }

  .faq-more {
    display: block;
    margin: 25px auto 0;
    padding: 12px 24px;
    background-color: #21428A;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    width: fit-content;
  }
}
