@import url("./Fonts/WEB/css/pilcrow-rounded.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PilcrowRounded-Regular", sans-serif;
  scroll-behavior: smooth;
  text-decoration: none;
  list-style: none;
}
html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background: #111827;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.contain {
  object-fit: contain !important;
  object-position: center !important;
}

.imgset {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  /* background-color: #000; */
  /* backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); */
  background: linear-gradient(
    90deg,
    rgba(9, 17, 48, 1) 0%,
    rgba(60, 65, 90, 1) 69%,
    rgba(80, 84, 107, 1) 88%
  );
  background-color: rgb(9, 17, 48);
  color: #fff;
}

.header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 50px;
    height: 50px; */
}
.header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.header .logo h2 {
  font-size: 1.4rem;
}

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header .nav-menu li a {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}


.header .nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.header .nav-menu li a:hover::after {
  width: 100%;
}


.header .button {
  padding: 12px 24px;
  border-radius: 25px;
  border: 2px solid var(--primary-color, #8b5cf6);
  font-size: 1rem;
  background: transparent;
  color: var(--text-primary, #ffffff);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.header .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.header .button:hover::before {
  left: 0;
}

.header .button:hover {
  color: white;
  border-color: var(--primary-color, #8b5cf6);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}
.header .bars {
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  color: #fff;
  transition: color 0.3s ease;
}

.header .bars:hover {
  color: #fff;
}

main {
  background: #111827;
  width: 100%;
  position: relative;
}

main section {
  width: 100%;
  position: relative;
}

/* Landingpage Image Slider Styles */

.slidermaincontainer .content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 70px;
}

.slidermaincontainer .content .about {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 10;
}

.slidermaincontainer .content .about h1 {
  font-size: 1.8rem;
  color: #fff;
  padding: 30px 0px 0px 30px;
}

.slidermaincontainer .content .about p {
  font-size: 1.1rem;
  color: #fff;
  text-align: left;
  padding: 30px 20rem 0px 30px;
  line-height: 1.5;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
  background: #e8f9ff;
}

.slider {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.3s ease;
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(9, 17, 48, 1) 0%,
    rgba(60, 65, 90, 1) 69%,
    rgba(80, 84, 107, 1) 88%
  );
  background-color: rgb(9, 17, 48);
}

.slide.active {
  display: flex;
  opacity: 1;
  position: relative;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  background: #e8f9ff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  filter: brightness(0.6);
}

.products .heading {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.products .heading h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  padding: 30px 0px 0px 30px;
}

.products .products_container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 0;
  gap: 44px;
  justify-content: center;
  justify-items: center;
}

.products .products_container .container1 {
  width: 100%;
  display: contents;
}

.products .products_container .container1 .box1,
.products_container .container1 .newbox1 {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 300px;
  /* height: 350px; */
  width: 100%;
  /* height: auto;
  min-height: 320px; */
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.products .products_container .container1 .box1:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
  border-color: #3b82f6;
}

.products .products_container .container1 .box1 .head h2 {
  width: 100%;
  font-size: 1.4rem;
  padding: 10px 20px 0px 20px;
  color: #000;
  font-weight: 600;
}

.products .products_container .container1 .box1 .boxes {
  overflow: hidden;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(30, 58, 138, 0.05);
}

.products .products_container .container1 .box1 .boxes .product-box {
  width: 100%;
  height: 100%;
  gap: 30px;
  text-align: center;
}
/*  */
.products .products_container .container1 .box1 .boxes .product-box .img_box {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products
  .products_container
  .container1
  .box1
  .boxes
  .product-box
  .img_box
  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

.products .products_container .container1 .box1 .boxes .product-box .matter {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.products
  .products_container
  .container1
  .box1
  .boxes
  .product-box
  .matter
  span {
  font-size: 1rem;
  color: #000;
  text-align: center;
  font-weight: 500;
}

.products_container .container1 .newbox1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* height: 450px; */
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.products_container .container1 .newbox1 .newhead {
  text-align: center;
}

.products_container .container1 .newbox1 .newhead h2 {
  font-size: 1.3rem;
  padding: 10px;
  color: #222;
  font-weight: 700;
  border-bottom: 2px solid #eee;
}

.products_container .container1 .newbox1 .newboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* First Row: 2 images side by side */
.products_container .container1 .newbox1 .newboxes .row1 {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Second Row: 1 image centered */
.products_container .container1 .newbox1 .newboxes .row2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.products_container .container1 .newbox1 .newboxes .row2 .product-box {
  justify-content: center;
  align-items: center;
}

.products_container .container1 .newbox1 .product-box {
  /* flex: 1 1 200px;
  max-width: 250px; */
  width: 100%;
  height: 100%;
  background: #fafafa;
  border-radius: 16px;
  padding: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  text-align: center;
}

/* .products_container .container1 .newbox1 .product-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
} */

.products_container .container1 .newbox1 .product-box .img_box {
  /* width: 100%;
  height: 70%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px; */

  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  max-width: 250px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products_container .container1 .newbox1 .product-box .img_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  /* transition: transform .3s ease; */
}

.products_container .container1 .newbox1 .product-box .matter span {
  font-size: 0.9rem;
  color: #333;
  /* font-weight: 600; */
  display: block;
}

.partners {
  margin-top: 50px;
  width: 100%;
  gap: 50px;
}

.partners .heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.partners .heading h1 {
  font-size: 1.9rem;
  font-weight: 600;
  color: #000;
  padding: 30px 0px 0px 0px;
}

.partners .partners_container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.partners .partners_container .partners_row1 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.partners .partners_container .partners_row1 .partner_box {
  width: 100%;
  gap: 15px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partners .partners_container .partners_row1 .partner_box:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.partners .partners_container .partners_row1 .partner_box .img_box {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 100px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}
.partners .partners_container .partners_row1 .partner_box .img_box:hover {
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.2);
  border-color: #3b82f6;
}

.partners .partners_container .partners_row1 .partner_box .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50%;
}

.partners .partners_container .partners_row1 .partner_box .partner_name {
  width: 100%;
  text-align: center;
  font-size: 1.3rem;
  color: #1e3a8a;
  font-weight: 500;
}

/* Mobile Navigation Styles */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(9, 17, 48, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
}

.mobile-nav.active {
  left: 0;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-header .logo h2 {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-nav-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px 30px;
}

.mobile-nav-links a {
  color: white;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 300px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.mobile-nav-bottom {
  padding: 30px;
  display: flex;
  color: black;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-bottom .button {
  padding: 15px 40px;
  border-radius: 25px;
  border: 2px solid #ffffff;
  font-size: 1.1rem;
  background-color: #ffffff;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mobile-nav-bottom .button:hover {
  background-color: #fbbf24;
  border-color: #fbbf24;
  color: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}



/* ///////////////////////////////////////////////////////////contact section/////////////////////////////////////////////////////////// */

.contactmain {
  height: fit-content;
  width: 100%;
  display: flex;
  align-items: center;
  color: white;
  margin: 70px auto 0px auto;
}
.contactmain .block {
  height: 100%;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}
.contactmain .block .left {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 2rem 6rem;
}
.contactmain .block .left .content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contactmain .block .left .content .head {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 2.5rem;
  color: #fff;
}
.contactmain .block .left .content .para {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1.3rem;
  color: #a0a0a0;
}
.contactmain .block .left form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contactmain .block .left form .namefield {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.contactmain .block .left form .namefield .firstnamefield,
.contactmain .block .left form .namefield .lastnamefield {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 15px;
}

.contactmain .block .left form .namefield .firstnamefield span,
.contactmain .block .left form .namefield .lastnamefield span {
  font-size: 1.3rem;
  font-family: "Bai Jamjuree", sans-serif;
  color: #a0a0a0;
}
.contactmain .block .left form .namefield .firstnamefield input,
.contactmain .block .left form .namefield .lastnamefield input,
.contactmain .block .left form .emailfield input,
.contactmain .block .left form .phonefield input {
  padding: 10px 20px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 0.9rem;
  border: 1px solid rgb(28, 28, 28);
  border-radius: 10px;
  color: black;
  background-color: #fff;
}

.contactmain .block .left form .submitfield input {
  padding: 15px 20px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1rem;
  border: 1px solid rgb(28, 28, 28);
  border-radius: 10px;
  color: white;
  background-color: rgb(19, 19, 19);
  cursor: pointer;
}

.contactmain .block .left form .submitfield input:hover {
  background-color: #6633ff;
  color: white;
  transition: all ease 0.6s;
}

.contactmain .block .left form .emailfield,
.contactmain .block .left form .phonefield,
.contactmain .block .left form .submitfield {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contactmain .block .left form .emailfield span,
.contactmain .block .left form .phonefield span {
  font-size: 1.3rem;
  font-family: "Bai Jamjuree", sans-serif;
  color: #a0a0a0;
}
.contactmain .right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  padding: 15px 20px;
  font-size: 2rem;
  font-family: "Bai Jamjuree", sans-serif;
  aspect-ratio: 1/1;
  width: 40%;
  margin: auto;
  border-radius: 20px;
  background-image: url("./public/images/vision.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.contactmain .right .logo {
  height: 70px;
  width: 70px;
  background-image: url("./public/images/logo\ icon\ \(1\).png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.contactmain .right .text {
  width: 100%;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

/* =================== About Styles Start =================== */

/* ===== Certifications Section Styles ===== */
.certifications {
  margin-top: 50px;
  width: 100%;
  gap: 50px;
}

.certifications .heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.certifications .heading h1 {
  font-size: 1.9rem;
  font-weight: 600;
  color: #fff;
  padding: 30px 0px 0px 0px;
}

.certifications .certifications_container {
  width: 100%;
  align-items: center;
  gap: 70px;
}

.certifications .certifications_container .certifications_row {
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 60px;
  margin: 0 auto;
}

.certifications
  .certifications_container
  .certifications_row
  .certification_box {
  width: 100%;
  gap: 20px;
  transition: all 0.3s ease;
  max-width: 250px;
}

.certifications
  .certifications_container
  .certifications_row
  .certification_box:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.certifications
  .certifications_container
  .certifications_row
  .certification_box
  .img_box {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certifications
  .certifications_container
  .certifications_row
  .certification_box
  .img_box:hover {
  box-shadow: 0 6px 25px rgba(30, 58, 138, 0.2);
  border-color: #3b82f6;
}

.certifications
  .certifications_container
  .certifications_row
  .certification_box
  .img_box
  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 20px;
}

.certifications
  .certifications_container
  .certifications_row
  .certification_box
  .certification_name {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  color: #0f44d4;
  font-weight: 600;
}

/* ===== Our Clients Section Styles ===== */
.clients-section {
  width: 100%;
  padding: 60px 0 0px 0;
  margin-top: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.clients-heading {
  text-align: center;
  margin-bottom: 30px;
}
.clients-heading h2 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
}
.clients-heading p {
  color: #a0a0a0;
  font-size: 1.1rem;
  margin: 20px 0;
}
.clients-row-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  margin: 0 auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #2196f3 #e8f9ff;
}
.clients-row-wrapper::-webkit-scrollbar {
  height: 8px;
}
.clients-row-wrapper::-webkit-scrollbar-track {
  background: #e8f9ff;
  border-radius: 4px;
}
.clients-row-wrapper::-webkit-scrollbar-thumb {
  background: #2196f3;
  border-radius: 4px;
}
.clients-row-wrapper::-webkit-scrollbar-thumb:hover {
  background: #1976d2;
}
.clients-row {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scrollClients 30s linear infinite;
  will-change: transform;
  min-width: max-content;
}
.clients-row:hover {
  animation-play-state: paused;
}
.client-logo {
  width: 120px;
  height: 120px;
  max-width: 120px;
  max-height: 120px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(33, 150, 243, 0.08);
  border: 1.5px solid #e8f9ff;
  transition: box-shadow 0.2s, transform 0.2s;
  border-radius: 50%;
}
.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  border-radius: 50%;
}
.client-logo:hover {
  transform: scale(1.07);
}
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 30px));
  }
}

/* =================== Footer Styles Start =================== */
.footer {
  background: linear-gradient(
    90deg,
    rgba(9, 17, 48, 1) 0%,
    rgba(60, 65, 90, 1) 69%,
    rgba(80, 84, 107, 1) 88%
  );
  background-color: rgb(9, 17, 48);
  color: #fff;
  padding: 50px 0 0 0;
  font-family: "Bai Jamjuree", sans-serif;
  margin-top: 0px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  gap: 40px;
}
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 350px;
  min-width: 350px;
  margin-bottom: 30px;
}

.footer-logo h2 {
  font-size: 1.4rem;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  background: #fff;
}
.footer-description {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 200px;
  min-width: 200px;
  margin-bottom: 30px;
}
.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
}
.footer-links ul {
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover {
  color: #2196f3;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 250px;
  min-width: 250px;
  margin-bottom: 30px;
}
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
}
.footer-contact ul {
  padding: 0;
  margin-bottom: 15px;
}
.footer-contact ul li {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 8px;
}
.footer-contact ul li span {
  color: #fff;
  font-weight: 600;
  margin-right: 6px;
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #222;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  background: #2196f3;
  color: #fff;
}
.social-icon {
  font-family: "FontAwesome", "Arial", sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
}
.footer-bottom {
  background: #191919;
  text-align: center;
  padding: 18px 0;
  margin-top: 30px;
  font-size: 1rem;
  color: #aaa;
  letter-spacing: 0.5px;
}

/* Floating Action Buttons */
.floating-button {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: #fff; */
  background-color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.floating-button:hover {
  transform: scale(1.1);
  /* color: #fff; */
}

.whatsapp-button {
  background-color: #25d366;
  bottom: 20px;
  color: white;
  right: 20px;
}

.call-button {
  /* background-color: #007bff; */
  bottom: 20px;
  left: 20px;
}

.ph {
  z-index: 2000;
  color: black;
}

/* =================== Footer Styles End =================== */

/* =================== Media Queries Start =================== */

/* 1200px */
@media (max-width: 1200px) {
  .header {
    padding: 16px 32px;
  }
  .slider-container {
    height: 420px;
  }
  .slidermaincontainer .content .about p {
    padding: 30px 12rem 0px 30px;
  }
}

/* 1150px */
@media (max-width: 1150px) {
  .header .nav-menu li a {
    font-size: 0.9rem;
  }

  .header .button {
    padding: 10px 40px;
    font-size: 1rem;
  }

  .slidermaincontainer .content .about {
    gap: 25px;
    top: 20%;
    padding: 25px;
  }

  .slidermaincontainer .content .about h1 {
    font-size: 1.7rem;
  }
  .slidermaincontainer .content .about p {
    font-size: 1rem;
    padding: 20px 8rem 0px 30px;
  }
  .partners .partners_container .partners_row1 .partner_box .img_box {
    max-width: 90px;
  }

  .products .heading h1 {
    font-size: 1.5rem;
  }

  .partners .heading h1 {
    font-size: 1.5rem;
  }

  .products .products_container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .products .products_container .container1 .box1 {
    gap: 35px;
    max-width: 300px;
    height: 350px;
    width: 100%;
  }

  .products .products_container .container1 .box1 .head h2,
  .products .products_container .container11 .newbox1 .newhead h2 {
    font-size: 1.2rem;
  }

  .products .products_container .container1 .box1 .boxes {
    gap: 24px;
  }

  .products .products_container .container1 .box1 .boxes .product-box {
    gap: 50px;
    text-align: center;
  }
  .products
    .products_container
    .container1
    .box1
    .boxes
    .product-box
    .matter
    span {
    font-size: 0.9rem;
  }

  .contactmain {
    padding-top: 4rem;
    padding-bottom: 3rem;
    flex-direction: column-reverse;
    gap: 60px;
  }
  .contactmain .block {
    width: 100%;
    padding: 1.5rem 1rem;
  }
  .contactmain .block .left {
    gap: 40px;
    padding: 0 1rem;
  }
  .contactmain .block .left form .namefield {
    flex-direction: column;
    gap: 20px;
  }
  .contactmain .block .left form .namefield .firstnamefield,
  .contactmain .block .left form .namefield .lastnamefield {
    width: 100%;
  }
  .contactmain .right {
    width: 100%;
    aspect-ratio: auto;
    min-height: 300px;
  }
}

/* 950px */
@media (max-width: 950px) {
  .header .nav-menu {
    gap: 16px;
  }
  .header .nav-menu li a {
    font-size: 1rem;
  }
  .slider-container {
    height: 360px;
  }

  .products .products_container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 0;
    gap: 30px;
  }

  .products .products_container .container1 .box1 {
    gap: 30px;
  }

  .products .products_container .container1 .newbox1 .product-box {
    max-width: 400px;
  }

  .products_container .container1 .newbox1 .newhead h2 {
    font-size: 1rem;
  }

  .partners .partners_container {
    padding: 0 20px;
  }

  .partners .partners_container .partners_row1 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .contactmain .block {
    padding: 2rem 1.5rem;
  }
  .contactmain .block .left {
    padding: 1.5rem 2rem;
  }
}

/* 768px */
@media (max-width: 768px) {
  .header {
    padding: 20px 20px;
  }

  .header .button {
    padding: 10px 30px;
    font-size: 0.8rem;
  }

  .header .nav-menu {
    display: none;
  }

  .header .bars {
    display: block;
  }

  .slidermaincontainer .content .about {
    gap: 20px;
    top: 5%;
    padding: 15px;
  }

  .slidermaincontainer .content .about h1 {
    font-size: 1.4rem;
  }
  .slidermaincontainer .content .about p {
    padding: 16px 2rem 0px 16px;
    font-size: 0.7rem;
  }
  .slider-container {
    height: 320px;
  }
  .products .products_container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .clients-heading h2 {
    font-size: 1.4rem;
  }

  .clients-heading p {
    font-size: 0.9rem;
    padding: 0px 20px;
  }

  .client-logo {
    width: 90px;
    height: 90px;
  }

  .clients-row {
    gap: 40px;
  }

  .certifications {
    flex-wrap: wrap;
  }

  .partners .heading h1 {
    font-size: 1.4rem;
  }

  .certifications .heading h1 {
    font-size: 1.4rem;
  }

  .certifications .certifications_container .certifications_row {
    gap: 20px;
    padding: 0px 20px;
    margin: 0 auto;
  }

  .certifications
    .certifications_container
    .certifications_row
    .certification_box {
    max-width: 130px;
  }

  .certifications
    .certifications_container
    .certifications_row
    .certification_box
    .certification_name {
    font-size: 1rem;
  }

  .footer-container {
    padding: 0 20px;
    gap: 24px;
  }
}

/* 570px */
@media (max-width: 570px) {
  /* .header {
    padding: 12px 16px;
  } */

  .header .logo h2 {
    font-size: 1rem;
  }

  .header .button {
    padding: 8px 20px;
    font-size: 1rem;
  }
  /* .slider-container {
    height: 300px;
  } */
  .slidermaincontainer .content .about h1 {
    font-size: 1.3rem;
  }
  .slidermaincontainer .content .about p {
    font-size: 0.8rem;
    padding: 12px 1rem 0px 12px;
  }
  .products .products_container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .products .heading h1 {
    font-size: 1.3rem;
  }

  .partners .heading h1 {
    font-size: 1.3rem;
  }

  .products .products_container .container1 .box1 {
    max-width: 280px;
    height: 320px;
    width: 100%;
  }

  .products .products_container .container1 .box1 .head h2 {
    font-size: 1rem;
  }

  .products
    .products_container
    .container1
    .box1
    .boxes
    .product-box
    .matter
    span {
    font-size: 0.75rem;
  }

  .products .products_container .container1 .box1 .boxes {
    gap: 17px;
  }

  .clients-heading p {
    font-size: 0.9rem;
    margin: 12px 0;
    padding: 0px 30px;
  }

  .contactmain .block .left .content .head {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
  }
  .contactmain .block .left .content .para {
    font-size: 1.2rem;
  }

  .contactmain .block .left form .namefield .firstnamefield span,
  .contactmain .block .left form .namefield .lastnamefield span {
    font-size: 1.1rem;
  }
  .contactmain .block .left form .namefield .firstnamefield input,
  .contactmain .block .left form .namefield .lastnamefield input,
  .contactmain .block .left form .emailfield input,
  .contactmain .block .left form .phonefield input {
    font-size: 0.8rem;
  }

  .contactmain .block .left form .emailfield span,
  .contactmain .block .left form .phonefield span {
    font-size: 1.1rem;
  }

  .floating-button {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .footer-container {
    max-width: 900px;
    gap: 40px;
  }

  .footer-logo h2 {
    font-size: 1rem;
  }

  .footer-description {
    font-size: 0.9rem;
    width: fit-content;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* 460px */
@media (max-width: 460px) {
  .slidermaincontainer .content .about h1 {
    font-size: 1rem;
  }
  .slidermaincontainer .content .about p {
    font-size: 0.7rem;
  }

  .products .products_container {
    justify-content: center;
    align-items: center;
    padding: 0;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    /* grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); */
  }

  .products .products_container .container11 .newbox1:nth-child(1) {
    grid-column: span 2;
  }

  .partners .partners_container {
    padding: 0 15px;
  }

  .partners .partners_container .partners_row1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .clients-section {
    margin-top: 30px;
  }

  .clients-heading p {
    font-size: 0.8rem;
    margin: 30px 0;
    padding: 0px 30px;
  }
  .certifications
    .certifications_container
    .certifications_row
    .certification_box {
    max-width: 95px;
  }

  .certifications
    .certifications_container
    .certifications_row
    .certification_box
    .certification_name {
    font-size: 0.8rem;
  }

  .contactmain {
    margin: 0px auto 0px auto;
  }

  .contactmain .right {
    padding: 0;
    margin: 0;
    width: 80%;
  }

  .contactmain {
    padding-top: 2rem;
    padding-bottom: 0.5rem;
    gap: 30px;
  }

  .contactmain .block {
    padding: 0rem 0.5rem;
  }

  .footer-about {
    flex: 1 1 0px;
    min-width: 150px;
    overflow-x: hidden;
  }

  .footer-description {
    font-size: 0.8rem;
    overflow: hidden;
    display: block;
    width: 100%;
    /* max-width: 300px; */
  }

  .footer-bottom {
    padding: 14px 0;
    font-size: 0.95rem;
  }
}

/* 380px */
@media (max-width: 380px) {
  .header .nav-menu {
    gap: 10px;
  }
  .header .nav-menu li a {
    font-size: 0.95rem;
  }
  .slider-container {
    height: 360px;
  }
  .products .products_container {
    padding: 0;
    /* grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); */
  }
  .partners .partners_container {
    padding: 0 10px;
  }

  .partners .partners_container .partners_row1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .partners .partners_container .partners_row1 .partner_box .img_box {
    max-width: 70px;
  }

  .floating-button {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }
}

/* =================== Modern Theme Overrides =================== */
/* Non-destructive: appended at end to restyle UI with a modern, high-contrast palette */

:root {
  --va-bg: #0b1220;
  --va-bg-alt: #0f172a;
  --va-card: #0f1a2e;
  --va-text: #e5e7eb;
  --va-muted: #9ca3af;
  --va-primary: #1e3a8a; /* deep blue */
  --va-emerald: #10b981; /* emerald accent */
  --va-orange: #f59e0b; /* orange accent */
}

body {
  color: var(--va-text);
}

main {
  background: #111827;
}

.header {
  background: linear-gradient(
    90deg,
    var(--va-bg) 0%,
    var(--va-bg-alt) 50%,
    #111827 100%
  );
}

.header .button {
  color: var(--va-primary);
}
.header .button:hover {
  background-color: var(--va-orange);
  border-color: var(--va-orange);
  color: #111827;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.slider-container {
  background: transparent;
}
.slide {
  background: linear-gradient(
    90deg,
    rgba(11, 18, 32, 0.9) 0%,
    rgba(17, 24, 39, 0.9) 100%
  );
}
.slide img {
  background: transparent;
}

.products .heading h1,
.partners .heading h1,
.certifications .heading h1,
.contactmain .block .left .content .head {
  color: var(--va-text);
}

.products .products_container .container1 .box1,
.products_container .container1 .newbox1 {
  background: linear-gradient(145deg, #0f1a2e 0%, #0d1527 100%);
  border: 1px solid rgba(148, 163, 184, 0.08);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
}
.products .products_container .container1 .box1:hover {
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.35);
}
.products .products_container .container1 .box1 .head h2 {
  color: var(--va-text);
}
.products .products_container .container1 .box1 .boxes {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(148, 163, 184, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.products .products_container .container1 .box1 .boxes .product-box .img_box {
  background-color: rgba(255, 255, 255, 0.06);
}
.products
  .products_container
  .container1
  .box1
  .boxes
  .product-box
  .matter
  span {
  color: var(--va-muted);
}

.footer {
  background: linear-gradient(
    90deg,
    var(--va-bg) 0%,
    var(--va-bg-alt) 50%,
    #111827 100%
  );
}
.footer-links ul li a:hover {
  color: var(--va-emerald);
}
.footer-social a:hover {
  background: var(--va-emerald);
}
.footer-bottom {
  color: #9aa3b2;
}

/* View More button */
.products .view-more-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--text-primary, #ffffff);
  border: 2px solid var(--primary-color, #8b5cf6);
  padding: 16px 32px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 60px;
  text-decoration: none;
}

.view-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.view-more-btn:hover::before {
  left: 0;
}

.view-more-btn:hover {
  color: white;
  border-color: var(--primary-color, #8b5cf6);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Projects & Services page helpers */
.hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--va-text);
  padding: 120px 24px 60px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      600px 300px at 20% 10%,
      rgba(16, 185, 129, 0.25),
      transparent 60%
    ),
    radial-gradient(
      600px 300px at 80% 0%,
      rgba(30, 58, 138, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.hero p {
  max-width: 900px;
  color: var(--va-muted);
  margin: 0 auto;
}
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
