:root {
  --bg: #0b3b3c;
  --panel: #083738;
  --accent: #9ef0df;
  --muted: #b6ded6;
  --text: #dbeeea;
  --radius: 18px;
  --max-width: 1800px;
}

/*body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f3f7f6;
  color: var(--text);
}*/

/* Wrapper */
.footer-wrap {
  padding: 100px 16px 10px;
  display: flex;
  justify-content: center;
}

/* Footer Base */
.footer {
  width: 100%;
  max-width: var(--max-width);
  background: linear-gradient(180deg, #0b3b3c, #083738);
  border-radius: 30px;
  padding: 30px 28px;
  position: relative;
  box-shadow: 0 6px 18px rgba(3, 20, 20, 0.25);
  overflow: hidden;
  max-width:1800px;
}

/* ✅ Two Background Images */
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

/* Bottom-left AMT Logo */
.footer::before {
  bottom: -40px;
  left: -40px;
  width: 260px;
  height: 260px;
  background-image: url("../images/amt-logo-104.png");
}

/* Top-right Circle Design */
/*.footer::after {
 bottom: -83px;
    left: -109px;
    width: 437px;
    height: 437px;
    background-image: url(assets/images/new-design/circle.png);
    opacity: 1.05;
}*/
/* ===== Replace your existing .footer::after with this block ===== */
.footer::after {
  content: "";
  position: absolute;
  bottom: -83px;
    left: -109px;
    width: 437px;
    height: 437px;
  background-image: url("../images/circle.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1.05;        /* subtle visibility */
  pointer-events: none;
  z-index: 0;

  transform-origin: center center;
  animation: rotateCircle 10s linear infinite;

}

/* Keyframes for rotation */
@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* Ensure content is above background */
.footer * {
  position: relative;
  z-index: 2;
}

/* Grid layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  align-items: start;
}

.col-left { grid-column: span 2; }

/* Logo area */
.logo { display: flex; gap: 14px; align-items: flex-start; }
.logo img { width: 64px; height: auto; display: block; }
.brand h4 { margin: 0; font-size: 18px; color: #fff; }
.brand p { margin: 6px 0 12px 0; color: var(--muted); font-size: 13px; }

/* Social icons */
.socials 
{ 
    display: flex; 
    gap: 18px; 
    align-items: center; 
    margin-bottom: 18px;
}
.socials a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(158, 240, 223, 0.22);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.18s;
}

.socials a:hover {
  background: #cd201f;
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
}

/* Two sub-columns under left */
.sub-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 5px;
}
.sub-col h5 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 900;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 5px;
}
.sub-col ul 
{ 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  font-size: 13px; 
}
.sub-col ul li {
  margin: 6px 0;
  color: #ccc;
  opacity: 0.95;
  cursor: pointer;
  transition: all 0.2s;
}
.sub-col ul li a{
  color: #ccc;
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
}
.sub-col ul li a:hover 
{ 
  color: #a3bd56;
  /*transform: translateX(5px); */
}

.col h5 {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #ffffff;
  font-weight: 900;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 6px;
}

ul.link-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--text);
}
ul.link-list li {
  margin: 8px 0;
  opacity: 0.95;
  cursor: pointer;
  transition: all 0.2s;
}
ul.link-list li a {
  color: #ccc;
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
}
ul.link-list li a:hover 
{
 color: #a3bd56; 
 /*transform: translateX(5px); */

}

/* Footer bottom */
.footer-bottom {
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}
.footer-bottom a:hover { color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .col-left { grid-column: span 3; }
}
@media (max-width: 600px) {
  .footer { padding: 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .col-left { grid-column: span 2; }
  .sub-cols { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-urology
{
  margin-top: 14px;
}
/* ===== Mobile Accordion Footer (Hide LI on Mobile) ===== */
@media (max-width: 768px) {
  .footer h5 {
    cursor: pointer;
    position: relative;
  }
  .footer-urology
{
  margin-top: 0px;
}
.sub-cols
{
  gap: 0px;
}
  .footer-grid
  {
    display: block;
  }
  /* Add a small + icon indicator */
  .footer h5::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
    color: var(--accent);
    transition: transform 0.3s;
  }

  /* Rotate + to - when active */
  .footer h5.active::after {
    content: "-";
  }

  /* Hide list items by default */
  .footer ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  /* Show items when active */
  .footer ul.show {
    max-height: 500px; /* enough space to expand */
  }
}
   /*client slider index page*/
    .client-section-client {
      /*max-width: 1150px;*/
      margin: auto;
      padding: 0px;
      font-family: Arial, sans-serif;
    }

    .client-header-client {
      display: flex;
      justify-content: space-between;
      align-item-homes: center;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }

    .client-header-client h2 {
      font-size: 24px;
      color: #002244;
      margin: 0;
    }

    .client-header-client p {
      flex: 1;
      margin: 5px 20px;
      font-size: 14px;
      color: #666;
    }

    .nav-buttons-client {
      display: flex;
      gap: 5px;
    }

    .slider-container-client {
      overflow: hidden;
      position: relative;
    }

    .slider-client {
      display: flex;
      gap: 15px;
      animation: slideLeft 10s linear infinite;
    }

    @keyframes slideLeft {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }

    .slide-client {
      min-width: 150px;
      text-align: center;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
      flex-shrink: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      /*padding: 10px;*/
    }

    .slide-client img {
      max-width: 100px;
      object-fit: contain;
    }

    /* Pause animation on hover */
    .slider-container-client:hover .slider-client {
      animation-play-state: paused;
    }

    /* ✅ Responsive */
    @media (max-width: 1024px) {
      .slide-client {
        min-width: 180px;
      }
    .mega-wrap {
    width: 92vw !important;
    left: -525px !important;
 
}
    }

    @media (max-width: 768px) {
      .slide-client {
        min-width: 150px;
      }
      .client-header {
        flex-direction: column;
        text-align: center;
      }
      .client-header p {
        margin: 10px 0;
      }
    }

    @media (max-width: 480px) {
      .slide-client {
        min-width: 130px;
      }
    }
    

    section.medical-discipline {
      width: 90%;
      max-width: 1150px;
      margin: 80px auto;
      text-align: left;
    }

    /*.medical-discipline h3 {
      font-weight: 500;
      font-size: 20px;
      color: #2f423a;
      margin-bottom: 5px;
    }*/

    .medical-discipline h2 {
      font-size: 30px;
      font-weight: 300;
      color: #042a2d;
      margin-bottom: 40px;
    }
    .medical-discipline span 
    {
      font-size: 50px;
      font-weight: 700;
      background: linear-gradient(263deg, #73ed7c 0.16%, #019297 99.84%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }


    .discipline-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));
      gap: 45px;
      justify-content: center;
    }

    .discipline-box {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .discipline-item {
      /*background: #fff;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);*/
      overflow: hidden;
      transition: all 0.3s ease;
      cursor: pointer;
      width: 100%;
    }

    .discipline-item:hover {
      transform: translateY(-6px);
      /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);*/
    }

    .discipline-item img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      display: block;
      border-radius: 12px;
    }

    .discipline-box p {
      margin-top: 12px;
      font-weight: 500;
      color: #000;
      font-size: 20px;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .medical-discipline h2 {
        font-size: 26px;
      }

      /*.discipline-item img {*/
      /*  height: 160px;*/
      /*}*/
    }

    @media (max-width: 480px) {
      .medical-discipline h2 {
        font-size: 20px;
      }
      .stat-box
      {
          margin-bottom:25px;
      }

      .discipline-box p {
        font-size: 14px;
      }
    }
    /*start new arrival product css*/
.product-section-new-arrival {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1150px;
    margin: 0px auto 80px;
    width: 100%;
  }

  .product-card-new-arrival {
    position: relative;
    flex: 1 1 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
  }

  .product-card-new-arrival:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  }

  .product-card-new-arrival > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-card-new-arrival::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .product-info-new-arrival {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
  }

  .badge-new-arrival {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #31A4EF;
    padding: 0px 10px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    font-size: 8px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .eco {
    color: #B324DA;
  }
  .newfb
  {
    color: #02C2D3;
  }

  .product-title-new-arrival {
    font-size: 22px;
    font-weight: 700;
    margin: 4px 9px 30px;
    color: #ffffff; 
  }


  /* Overlay product images */
  .product-info-new-arrival img {
    position: absolute;
    right: -240px;
    bottom: 30px;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    transition: transform 0.4s ease;
    max-width: 250px;
  }

  .product-info-new-arrival .eco-microwave {
    right: -210px;
    bottom: -3px;
    width: 200px;
  }
  .product-info-new-arrival .diode-laser
  {
    right: -210px;
    bottom: 30px;
    width: 150px;
  }

  .product-info-new-arrival .adx-6000fb {
    right: -240px;
    bottom: -3px;
    width: 200px;
  }

  .product-card-new-arrival:hover .product-info-new-arrival img {
    transform: scale(1.05);
  }

  /* ✅ Tablet View (768px and below) */
  @media (max-width: 768px) {
    .product-section-new-arrival {
      flex-direction: column;
      padding: 20px;
      gap: 25px;
    }

    .product-card-new-arrival {
      width: 100%;
      height: auto;
    }

    .product-info-new-arrival {
      position: absolute;
      bottom: 20px;
      left: 15px;
    }

    .product-info-new-arrival img {
      width: 120px;
      right: 10px;
      bottom: 15px;
    }

    .product-title-new-arrival {
      font-size: 18px;
      margin-bottom: 15px;
    }
    .contact-mobile-view
    {
        background-image: none;
        position:static;
        margin-left: 8px !important;
    }
    .btn-default::before
    {
        display:none;
    }

    .badge-new-arrival {
      font-size: 11px;
      /*padding: 5px 8px;*/
      margin-bottom: 10px;
    }
  }

  /* ✅ Mobile View (480px and below) */
  @media (max-width: 480px) {
    .product-info-new-arrival {
      bottom: 33px;
        left: 25px;
    }

    .product-title-new-arrival {
      font-size: 16px;
      line-height: 1.3;
    }
    .product-info-new-arrival .eco-microwave {
    right: -230px;
    bottom: -20px;
    width: 199px;
}

    .product-info-new-arrival img {
      /*position: static;*/
      display: block;
      margin: 0px -156px 2px;
      width: 150px;
    }
    .product-info-new-arrival .eco-microwave
    {
       display: block;
        margin: 0px -19px -14px;
        width: 214px;
    }
    .product-info-new-arrival .adx-6000fb
    {
      display: block;
        margin: 0px -16px -37px;
        width: 223px;
    }
    .product-card-new-arrival > img 
    {
      height: auto;
    }

    .product-card-new-arrival {
      text-align: center;
      padding-bottom: 20px;
      position: relative;
    flex: 170px;
    }
    .product-section-new-arrival 
    {
      margin: 0px auto 40px;
    }
    .title-medical span 
    {
      font-size: 28px !important;
    }
    .title-medical
    {
      font-size: 28px;
    }
    .content-card 
    {
      height: auto !important;
    }
        .image-box 
        {
          height: auto !important;
        }
        .text-box h4 
        {
          text-align: left !important;
          font-size: 16px !important;
        }
        .text-box h3
        {
          text-align: left !important;
          font-size: 16px !important;
        }
        section.video-section
        {
          margin: 0 auto !important;
          padding: 40px 20px 40px !important;
        }
    .badge-new-arrival {
      display: inline-block;
      margin-bottom: 6px;
    }
  }
/*end new arrival product css*/

.medical-section {
  /*background-color: #f9fafb;*/
  padding: 0px 20px;
  color: #333;
}

/* Container */
.container-medical {
  max-width: 1150px;
  margin: auto;
}

/* Title */
.title-medical {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 40px;
  font-weight: 300;
}

.title-medical span {
  font-size: 50px;
  font-weight: 700;
  background: linear-gradient(263deg, #73ed7c 0.16%, #019297 99.84%);
  background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Layout */
.content-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  flex-wrap: wrap;
  height: 300px;
}

/* Image Section */
.image-box {
  position: relative;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f5f5;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Green Side Bar */
.color-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 15px;
  background: linear-gradient(180deg, #007f6b, #3cd19c);
  /*border-top-right-radius: 5px;*/
  border-bottom-right-radius: 5px;
  z-index: 1000;
}
.color-bar-right
{
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 15px;
  background: linear-gradient(180deg, #007f6b, #3cd19c);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 1000;
}

/* Text Section */
.text-box {
  flex: 1 1 50%;
  padding: 30px;
}

.text-box h3 {
  font-size: 25px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 300 !important;
}

.text-box h4 {
  font-size: 29px;
  margin-bottom: 12px;
  background: linear-gradient(263deg, #73ed7c 0.16%, #019297 99.84%);
  background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
  .title-medical {
    /*text-align: center;*/
    font-size: 24px;
  }

  .content-card {
    flex-direction: column;
  }

  .image-box {
    flex: none;
    width: 100%;
    height: 220px;
  }

  .text-box {
    padding: 20px;
  }

  .text-box h3,
  .text-box h4 {
    text-align: center;
  }
}
section.medical-discipline-client {
      width: 100%;
      /*max-width: 1150px;*/
      margin: 100px 0 0px;
      text-align: left;
    }

    .medical-discipline-client h2 {
      font-size: 30px;
      font-weight: 300;
      color: #042a2d;
      margin-bottom: 40px;
    }
    .medical-discipline-client span 
    {
      font-size: 50px;
      font-weight: 700;
      background: linear-gradient(263deg, #73ed7c 0.16%, #019297 99.84%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    @media (max-width: 768px) {
      .medical-discipline-client h2 {
        font-size: 26px;
      }
    }
    @media (min-width: 2560px) {
    .mega-wrap {
    width: 60vw !important;
    left: -630px !important;
    }
    .mega-inner {
    max-width: 1560px !important;
    width: 100%;
    gap: 62px;
}
    .dental-wrap
    {
        left:-741px !important;
    }
    .training-wrap {
        left: -1062px !important;
    }
    .about-us-wrap 
    {
        left: -1173px !important;
    }
    .veterinary-wrap
    {
    left: -838px !important;
    }
}


    @media (max-width: 480px) {
      .medical-discipline-client h2 {
        font-size: 22px;
      }

    }
    section.video-section {
    /* width: 90%; */
    max-width: 1150px;
    margin: 80px auto;
    /* background: #063A3A; */
    /*border-radius: 20px;*/
    text-align: center;
    padding: 70px 20px 130px;
    position: relative;
    overflow: hidden;
}

    .video-container {
      background: #4b4761;
      border-radius: 30px;
      padding: 35px 20px;
      margin: 0 auto;
      max-width: 900px;
      position: relative;
      color: #fff;
      height: 350px;
    }

    .video-container h3 {
      font-weight: 400;
      font-size: 30px;
      opacity: 0.9;
    }

    .video-container h2 {
      font-size: 50px;
      font-weight: 600;
      margin-top: 5px;
    }

    .play-btn {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background: linear-gradient(263deg, #73ed7c 0.16%, #019297 99.84%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0px auto 0;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .play-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(55, 211, 167, 0.5);
    }

    .play-btn::before {
      content: "";
      border-style: solid;
      border-width: 9px 0 9px 14px;
      border-color: transparent transparent transparent #fff;
      margin-left: 4px;
    }

    /* Stats bar */
    .stats-bar {
    background: linear-gradient(324deg, #73ed7c 0.16%, #019297 99.84%);
    border-radius: 20px;
    padding: 21px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    width: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
    .stat-box h3
    {
      color: #ffffff;
      font-size: 40px;
    }
    .stat-box p 
    {
      margin-bottom: 5px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      section.video-section {
        padding: 0px 20px 0px;
      }

      .video-container {
        padding: 40px 15px;
      }

      .stats-bar {
        position: relative;
        bottom: auto;
        transform: none;
        width: 100%;
        margin-top: 20px;
        display:block;
        left:0%;
      }

      .stat-box h3 {
        font-size: 26px;
      }
     
    }
    @media (max-width: 480px) 
    {
    .stats-bar{
      left: 0%;
    }
    .brand p
        {
          /*line-height: 18px;*/
          text-align: justify;
          padding: 0 !important;
          margin-bottom: 20px;
        }
        .footer-bottom 
        {
          border-top: none;
          margin-top: 0px;
          display: block;
        text-align: center;
        }
        .medical-discipline-client span
        {
          font-size: 28px;
        }
        section.medical-discipline-client
        {
          margin: 50px 0 0px;
        }
        .our-potential-content
        {
          margin-top: 20px;
        }
        .discipline-grid 
        {
          gap: 0px;
        }
        .medical-discipline span 
        {
          font-size: 28px;
        }
        section.medical-discipline
        {
          margin: 50px auto;
        }
        .product-info-new-arrival .diode-laser {
    right: -80px;
        bottom: 4px;
        width: 170px;
}
  }
  .brand p
        {
          line-height: 18px;
          text-align: justify;
          padding: 0 71px 12px 0;
          color: #ffffff;
        }
        .brand-logo
        {
          font-size: 12px !important;
          margin-top: 10px !important;
        }
          /* Header */
  header {
    position: relative;
    width:100%;
    /*background:#fff;*/
    /*border-bottom:1px solid #e6e6e6;*/
    z-index:1000;
  }

  .navbar {
    max-width:1560px;
    margin:0 auto;
    padding:14px 0px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
  }

  .logo{font-weight:700;font-size:20px;color:#111}

  /* main nav */
  nav {flex:1}
  ul.nav-links{
    list-style:none;
    display:flex;
    gap:24px;
    align-items:center;
    justify-content:flex-end;
  }
  ul.nav-links li{position:relative}
  ul.nav-links a{
    display:block;
    text-decoration:none;
    color:#111;
    padding:8px 6px;
    font-weight:500;
  }
  ul.nav-links a:hover{color:#5a2ca0}

  /* FULL-WIDTH MEGA CONTAINER (covers viewport) */
  .mega-wrap {
    position: absolute;
    left: -531px;
    top: 170%;
    width: 92vw;             /* cover viewport width */
    transform: translateY(0); /* base */
    pointer-events: none;    /* prevent accidental hover before opening */
  }
  .dental-wrap
  {
    position: absolute;
    left: -639px;
    top: 170%;
    width: 92vw;           /* cover viewport width */
    transform: translateY(0); /* base */
    pointer-events: none;    /* prevent accidental hover before opening */
  }
  .veterinary-wrap
  {
    position: absolute;
    left: -735px;
    top: 170%;
    width: 92vw;           /* cover viewport width */
    transform: translateY(0); /* base */
    pointer-events: none;    /* prevent accidental hover before opening */
  }
  .training-wrap
  {
    position: absolute;
    left: -856px;
    top: 170%;
    width: 92vw;           /* cover viewport width */
    transform: translateY(0); /* base */
    pointer-events: none;    /* prevent accidental hover before opening */
  }
  .about-us-wrap
  {
    position: absolute;
    left: -963px;
    top: 170%;
    width: 92vw;           /* cover viewport width */
    transform: translateY(0); /* base */
    pointer-events: none;    /* prevent accidental hover before opening */
  }

  .mega {
    width:100%;
    background:#fff;
    box-shadow:0 18px 40px rgba(18,24,31,0.08);
    border-top:1px solid #eee;
    display:flex;
    padding:30px 0;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transform: translateY(10px);
    transition: opacity .32s ease, transform .32s ease, visibility .32s;
    pointer-events:auto;
  }

  /* When open */
  .mega-wrap.open .mega {
    opacity:1;
    visibility:visible;
    transform: translateY(0);
  }

  /* internal container centers content and limits width */
  .mega-inner {
    max-width:1200px;
    width:100%;
    display:flex;
    gap:32px;
    padding:0 24px;
  }

  .mega-left {
    flex:0 0 280px;
    background:#f5f4ff;
    border-radius:8px;
    /*padding:22px;*/
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    gap:12px;
  }
  .promo-title{font-size:20px;font-weight:700;color:#111;line-height:1.1}
  .promo-sub{font-size:14px;color:#444}
  .promo-btn{
    margin-top:6px;
    background:#5a2ca0;color:#fff;border:none;padding:10px 16px;border-radius:24px;cursor:pointer;font-weight:600;
  }
  .promo-img{width:140px;margin-top:12px;align-self:center;opacity:.95}

  .mega-right {
    flex:1;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px 28px;
    align-items:start;
    text-align: left;
  }
  .col-header h4{font-size:14px;margin-bottom:10px;font-weight:700;color:#111}
  .col-header a
  {
    /*display:block;*/
    color:#000000 !important;
    text-decoration:none;
    /*padding: -3px !important;*/
    font-size:14px;
    line-height: 30px;
    font-weight: 300 !important;
  }

  .col-header a:hover{color:#5a2ca0}

  /* small screens */
  @media (max-width: 991px) {
    .navbar
    {padding:12px 16px}
    .menu-toggle{display:flex}
    ul.nav-links{position:fixed;left:0;top:60px;right:0;background:#fff;flex-direction:column;gap:0;padding:10px 16px;display:none;border-top:1px solid #eee}
    ul.nav-links.open{display:flex}
    .mega-wrap{position:static;width:100%}
    .mega{position:static;box-shadow:none;opacity:1;visibility:visible;transform:none;padding:0px}
    .mega-inner{flex-direction:column;gap:16px;padding:0}
    .mega-left{width:100%;padding:16px;border-radius:6px}
    .mega-right{grid-template-columns:repeat(2,1fr);gap:12px;padding-left: 20px;}
  }

@media (max-width: 480px) {
      .mega-left {
        display: none;
      }
      .contact-mobile-view 
      {
        background-image: unset;
        position: unset;
        padding: 18px 15px !important;
      }
        .section-title h1
        {
            font-size:30px !important;
        }
        h1 span
        {
            font-size:30px !important;
        }
      }
  .slicknav_nav a:hover
  {
    color: #ffffff !important;
  }
  .col-header ul li a {
    font-size: 14px !important;
}
.custom-underline {
  display: block;
  position: relative;

}

.custom-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);
  border-radius: 2px;
  margin-top: 10px;
}

  /* small polish: avoid header shift when mouse enters */
  header, .navbar, nav, ul.nav-links li { -webkit-backface-visibility: hidden; backface-visibility: hidden; }


  /*left side slider*/
 /*   :root{
    --accent:#00a86b;
    --muted:#9aa3a0;
    --bg:#f3f4f2;
    --card-bg:#fff;
  }
 

  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:48px 24px;
  }

  .panel{
    display:flex;
    gap:40px;
    align-items:flex-start;
    justify-content:space-between;
    flex-wrap:wrap;
  }*/

    /* LEFT: image card + carousel */
  .left {
    flex:1 1 48%;
    max-width:520px;
    position: relative;
  }

  .image-card{
    position:relative;
    border-radius:14px;
    overflow:hidden;
    background:var(--card-bg);
    box-shadow: 0 6px 20px rgba(20,20,20,0.06);
    /*height:520px;*/
  }

  /* track for sliding effect */
  .track{
    display:flex;
    height:100%;
    transition:transform .7s ease;
    will-change: transform;
  }

  .track img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    flex:0 0 100%;
  }

  /* dots outside below image */
  .dots-holder{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:14px;
  }

  .dot{
    width:12px;height:12px;border-radius:50%;background:#d3d3d3;cursor:pointer;
    transition:all .2s;
  }
  .dot.active{background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);transform:scale(1.05);box-shadow:0 2px 6px rgba(0,168,107,.18)}

  /* carousel arrows inside image */
  .nav-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
  }
  /* move dots inside image card, overlay at bottom */
.dots-holder {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}


  .arrow {
    background: rgba(0,168,107,0.6);
    color: #fff;
    border: none;
    font-size: 24px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }

  .arrow:hover {
    background: var(--accent);
  }

  /* RIGHT: content */
  .right{
    flex:1 1 48%;
    max-width:560px;
  }

  .eyebrow{
    color:var(--muted);
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:10px;
  }

  h1{
    font-size:40px;
    font-weight:600;
    color:#1d2321;
    margin-bottom:18px;
    line-height:1.05;
  }
  h1 .accent{color:var(--accent);}

  .lead{
    color:#666;
    margin-bottom:26px;
    font-size:15px;
  }

  /* stats */
  .stats{
    display:flex;
    gap:36px;
    align-items:center;
    margin-bottom:24px;
    flex-wrap:wrap;
  }

  .stat{
    display:flex;
    align-items:center;
    gap:14px;
  }

  .circle{
    width:86px;height:86px;border-radius:50%;
    border:4px solid rgba(0,168,107,0.15);
    display:flex;align-items:center;justify-content:center;
    background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    box-shadow:0 4px 12px rgba(10,10,10,0.03);
    font-weight:700;color:var(--accent);font-size:20px;
  }
  .stat p{margin:0;color:#374141;font-weight:600;font-size:14px}

  /* divider and sub section */
  .divider{height:1px;background:#e3e6e4;margin:18px 0 22px;border-radius:2px}
  .sub-head{font-weight:700;margin-bottom:8px;color:#273231}
  .sub-text{color:#6b706f;font-size:14px;line-height:1.6}

  /* small screens: stack, image first then content */
  @media (max-width:900px){
    .panel{flex-direction:column-reverse;gap:22px}
    .image-card{height:340px}
    h1{font-size:28px}
  }
    .hero-content {
    max-width: 800px;
    text-align: left;
    padding: 0 40px;
  }

  .eyebrow {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    color: #00d085;
    margin-bottom: 10px;
  }

  h1 {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.2;
  }

  h1 span {
    color: #00a86b;
    /*border-right: 3px solid #00a86b;*/
    padding-right: 5px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 70px;
  }

  .btn {
    display: inline-block;
    background: linear-gradient(90deg, #00a86b, #00d085);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 25px;
    transition: 0.3s;
  }

  .btn:hover {
    background: linear-gradient(90deg, #00d085, #00a86b);
  }

  @media (max-width:768px){
    h1{font-size:25px !important;}
    /*h1 span{font-size: 42px !important}*/
  }
 /* @media (min-width:480px){
   .mobileview{font-size:25px !important;}
    h1 span{font-size: 42px !important}
  }*/
  .section-title h1
{ 
  font-size: 40px !important;
}

/*.brand-contact .social-contact a*/
/*{*/
/*    background-color:#a3bd56;*/
/*    color:red;*/
/*}*/
.social-contact a 
{
    background-color:#00b38f;
}
/*about us page new design css*/
 
 
    /* ===== Banner Section ===== */
    .banner {
      position: relative;
      width: 100%;
      height: 250px;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      overflow: hidden;
      max-width: 1800px;
    margin: 0 auto;

    }

    .banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .banner::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0,128,128,0.5), rgba(0,128,128,0.9));
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
    }

    .banner-text {
      position: absolute;
      bottom: 35px;
      left: 60px;
      color: white;
      z-index: 2;
    }

    .banner-text h2 {
      font-size: 50px;
      font-weight: 600;
      color:#ffffff;
    }

    .banner-text span {
      display: inline-block;
      margin-top: 5px;
      font-size: 50px;
      color: #6AE67E;
    }
    .contact-span {
    display: inline-block;
    margin-top: 5px;
    font-size: 14px !important;
    color: #6AE67E;
}
.contact-span a:hover {
    color: #ffffff;
}
.contact-span a {
    color: #6AE67E;
}

    .have-question
    {
        text-align:center;
        margin-bottom:50px;
    }

    /* ===== Responsive ===== */
    @media (max-width: 992px) {
     

      .banner-text {
        left: 25px;
        bottom: 25px;
      }

      .banner-text h2 {
        font-size: 24px;
      }
    }

    @media (max-width: 576px) {
      .banner {
        height: 180px;
      }

      .banner-text h2 {
        font-size: 20px;
      }
      .banner-text h2 span{
        font-size: 20px;
      }
      .contact-container {
    padding: 0 20px !important;
    }
    .contact-info {
  flex: 1 1 100% !important;
}
.col-right img 
{
  height: auto !important;
  width: 100% !important;
}
    }


/* Center Title Above */
.page-title {
  text-align: center;
  font-size: 22px;
  color: #333;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {

  .banner h1 {
    font-size: 30px;
  }
}
section.service-section {
    position: relative;
    width: 100%;
    background: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=1500&q=80") center/cover no-repeat;
    color: #fff;
    overflow: hidden;
  }

  section.service-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,90,90,0.8), rgba(0,180,160,0.5));
    z-index: 1;
  }

  .about-us-new {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 60px 0;*/
  }
  .any-question-about
  {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
  }

  .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .content {
    flex: 1;
    min-width: 260px;
  }

  .content h2 {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
  }

  .btn {
    display: inline-block;
    background: linear-gradient(90deg, #1abc9c, #0da88b);
    color: #fff;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
  }

  .btn:hover {
    background: linear-gradient(90deg, #0da88b, #1abc9c);
    transform: translateY(-2px);
  }

  section.mission-section {
  background-color: #003333;
  color: #ffffff;
  border-radius: 20px;
  padding: 50px 30px;
  width: 90%;
  margin: 100px auto;
  max-width: 1800px;
}

.about-us-new {
  max-width: 1200px;
  margin: auto;
}
.any-question-about
{
  max-width: 1200px;
  margin: auto;
}


.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  /*gap: 30px;*/
}

.col-left {
  flex: 1 1 55%;
}

.col-right {
  flex: 1 1 40%;
  text-align: center;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.mission-item:last-child {
  margin-bottom: 0;
}

.icon-box {
      background-image: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #00ffb2;
  flex-shrink: 0;
  transition: all 0.4s ease-in-out;
}
.mission-item:hover .icon-box {
    background-position: right center;
}

.service-item .icon-box {
    /*background-image: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);*/
    /*background-size: 200%;*/
    /*height: 70px;
    width: 70px;*/
   /* display: flex;
    align-items: center;
    justify-content: center;*/
    /*margin-bottom: 30px;
    border-radius: 50%;
    transition: 0.4s ease-in-out;*/
}

.mission-content h3 {
  color: #00ffb2;
  font-size: 20px;
  margin-bottom: 8px;
}

.mission-content p {
  color: #d9e6e6;
  font-size: 15px;
  line-height: 1.6;
}

.col-right img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
}

section.video-section-about {
    /* width: 90%; */
    max-width: 1210px;
    margin: 0px auto;
    /* background: #063A3A; */
    /* border-radius: 20px; */
    text-align: center;
    padding: 0px 20px 130px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}


/* Responsive */
@media (max-width: 992px) {
  .row {
    flex-direction: column;
    text-align: center;
  }

  .col-left {
    flex: 1 1 100%;
  }

  .col-right {
    flex: 1 1 100%;
  }

  .mission-item {
    flex-direction: column;
    align-items: center;
  }

  .mission-content h3 {
    font-size: 18px;
  }

  .mission-content p {
    font-size: 14px;
  }
}
.about-us-para h2
{
   text-align: center;
   padding-top: 50px;
   font-family: Kaushan Script,cursive;
   /*font-family: 'Kaushan Script',cursive !important;*/
   font-weight: 400;
   /*font-style: normal;*/
    background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.col-right img 
{
   height: 400px;
   width: 70%;
   border: 2px solid #fff;
}

.about-section-new-design {
  padding-bottom: 100px;
}

.row-about-us-new-design {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-about-us-new-design {
  flex: 1 1 calc(50% - 20px);
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 25px 20px;
  min-width: 260px;
  text-align: left; /* left all content */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}

.our-brand-h2 {
  color: #042a2d;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}
.our-brand-h2 span
{
  font-weight: 700;
    background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 50px;
}

.left-content-about-us-new p {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
  text-align: justify;
}

.col-about-us-new-design p {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
  text-align: justify;
}

.col-about-us-new-design img {
  width: 140px; /* Fixed same width for all logos */
  height: 60px; /* Fixed same height for all logos */
  object-fit: contain; /* Keeps logo proportion */
  display: block;
  margin: 0 auto 15px auto; /* Center horizontally + space below */
}

.left-content-about-us-new {
  flex: 1 1 100%;
  max-width: 500px;
}

.our-other-brands {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}

@media (max-width: 768px) {
  .our-other-brands {
    flex-direction: column;
    align-items: center;
  }
  .col-about-us-new-design {
    flex: 1 1 100%;
  }
  .left-content-about-us-new {
    max-width: 100%;
    text-align: center;
  }
  section.mission-section {
    margin: 0px auto !important;
  }
  .col-left
  {
    width: 50%;
    float: left;
  }
  .about-us-row 
  {
    display: block !important;
  }
  .mission-item {
        flex-direction: row;
        align-items: flex-start;
    }
    .col-right img {
    height: auto;
    width: 50% !important;
  }
  .about-section-new-design {
    scroll-padding-top: 100px;
}
}

@media (max-width: 576px)
{
  .col-right img {
        height: auto;
        width: 100% !important;
      }
          .col-left {
        width: 100%;
    }

}
/*end about us page new design css*/

/*contact page new design css*/

    .contact-btn {
      background-color: #28c290;
      color: white !important;
      padding: 6px 18px;
      border-radius: 25px;
      font-weight: 500;
    }

    /* ===== Banner Section ===== */
    .banner {
      position: relative;
      width: 100%;
      height: 250px;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      overflow: hidden;
      max-width: 1800px;
      margin: 0 auto;

    }

    .banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .banner::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgb(0 128 128 / 0%), rgba(0, 128, 128, 1.5));
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
    }

    .banner-text {
      position: absolute;
      bottom: 35px;
      left: 60px;
      color: white;
      z-index: 2;
    }

    .banner-text h2 {
      font-size: 50px;
      font-weight: 600;
      color:#ffffff;
    }

    .banner-text span {
      display: inline-block;
      margin-top: 5px;
      font-size: 50px;
      color: #6AE67E;
    }
    .contact-span
    {
    display: inline-block;
      margin-top: 5px;
      font-size: 14px !important;
      color: #6AE67E;
    }
    .contact-span a 
    {
        color:#6AE67E;
    }
    .contact-span a:hover
    {
        color:#ffffff;
    }
    .have-question
    {
        text-align:center;
        margin-bottom:50px;
        font-weight: 300;
    }

    /* ===== Responsive ===== */
    @media (max-width: 992px) {
     

      .banner-text {
        left: 25px;
        bottom: 25px;
      }

      .banner-text h2 {
        font-size: 24px;
      }
    }

    @media (max-width: 576px) {
      .banner {
        height: 180px;
      }

      .banner-text h2 {
        font-size: 20px;
      }
      .banner-text h2 span{
        font-size: 20px;
      }
      .contact-container {
    padding: 0 20px !important;
    }
    .contact-info {
  flex: 1 1 100% !important;
}
.brand-contact
{
    display:inline-block;
}
label {
    display: flex;
}
    }

/* ===== Contact Section ===== */
.contact-container {
  max-width: 1100px;
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 0 120px;
  position: relative;
}

/* Vertical Divider Line */
.contact-container::before {
  content: "";
  position: absolute;
  top: 87px;
  bottom: 0;
  left: 50%;
  width: 2px;
  /*background: #ccc;*/
  background-image: linear-gradient(to right, var(--dark-color) 0%, var(--accent-color) 50%, var(--dark-color) 100%);
  transform: translateX(-50%);
  
}
.contact-info {
  flex: 1 1 45%;
  padding-right: 40px;
}
.contact-info h2 {
  font-size: 28px;
  font-weight: 300;
  color: #222;
  margin-bottom: 10px;
  text-align:left;
}
.contact-info h2 span {
  font-weight: 700;
    background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-info p {
  line-height: 1.8;
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  text-align:left;
}
.contact-info b {
  color: #000000;
}

/* Right Form Side */
.contact-form {
  flex: 1 1 45%;
  padding-left: 40px;
}
.contact-form h3 {
  font-size: 22px;
  font-weight: 600;
  color: #008060;
  text-align: center;
  margin-bottom: 25px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-size: 15px;
  color: #333;
  font-weight: 500;
  margin-bottom: 5px;
}

form input, form textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s;
}

form input:focus, form textarea:focus {
  border-color: #00b38f;
  outline: none;
}

form textarea {
  resize: none;
  height: 100px;
}

form button {
  width: 120px;
  background: #00b38f;
  color: white;
  border: none;
  padding: 10px 0;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #008060;
}

/* Center Title Above */
.page-title {
  text-align: center;
  font-size: 22px;
  color: #333;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-container::before {
    display: none;
  }
  .contact-info, .contact-form {
    width: 100%;
    padding: 0;
  }
  .banner h1 {
    font-size: 30px;
  }
}

section.service-section {
    position: relative;
    width: 100%;
    background: url("../images/service_request_CTO.jpg") center/cover no-repeat;
    color: #fff;
    overflow: hidden;
    margin-bottom:60px;
  }

  section.service-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,90,90,0.8), rgba(0,180,160,0.5));
    z-index: 1;
  }

  .any-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0 60px;
  }

  .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .content {
    flex: 1;
    min-width: 260px;
  }

  .content h2 {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
  }

  .btn {
    display: inline-block;
    background: linear-gradient(90deg, #1abc9c, #0da88b);
    color: #fff;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
  }

  .btn:hover {
    background: linear-gradient(90deg, #0da88b, #1abc9c);
    transform: translateY(-2px);
  }
  .amt-contact-map
  {
      width:100%;
      max-width:1800px !important;
  }

  /* ===== Responsive ===== */
  @media (max-width: 768px) {
    .row {
      flex-direction: column;
      text-align: left;
    }

    .content h2 {
      font-size: 24px;
      margin-bottom: 15px;
    }

    .btn {
      padding: 8px 24px;
      font-size: 14px;
    }
    .enquiry-box
    {
        width:100% !important;
    }
  }

/*end contact page new design css*/
/*start enquiry form css*/

    .required
    {
        color: red;
    }
    /* Add dropdown arrow for select */
.enquiry-box select {
    -webkit-appearance: none;  /* Safari/Chrome */
    -moz-appearance: none;     /* Firefox */
    appearance: none;          /* Modern browsers */
    background: #fff url('data:image/svg+xml;utf8,<svg fill="black" height="12" viewBox="0 0 24 24" width="35" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
    background-size: 25px;
    padding-right: 2rem;       /* Space for arrow */
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* Set font size 14px for all inputs, date fields, textarea, and select */
.enquiry-box input,
.enquiry-box input[type="date"],
.enquiry-box textarea,
.enquiry-box select {
    font-size: 14px;
    color: #999;
}

/* Placeholder text font size */
.enquiry-box input::placeholder,
.enquiry-box input[type="date"]::placeholder,
.enquiry-box textarea::placeholder {
    font-size: 14px;
    color: #999; /* optional */
}

/* For older browsers */
.enquiry-box input::-moz-placeholder,
.enquiry-box input[type="date"]::-moz-placeholder,
.enquiry-box textarea::-moz-placeholder {
    font-size: 14px;
    color: #999;
}

.enquiry-box input:-ms-input-placeholder,
.enquiry-box input[type="date"]:-ms-input-placeholder,
.enquiry-box textarea:-ms-input-placeholder {
    font-size: 14px;
    color: #999;
}

.enquiry-box input::-ms-input-placeholder,
.enquiry-box input[type="date"]::-ms-input-placeholder,
.enquiry-box textarea::-ms-input-placeholder {
    font-size: 14px;
    color: #999;
}

/* Dropdown arrow for select */
.enquiry-box select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url('data:image/svg+xml;utf8,<svg fill="black" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
    background-size: 12px;
    padding-right: 2rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
form button {
    width: 190px;
}
.form-label
{
    font-size: 14px;
}
.banner-enquiry
{
  background: url("../images/service_request_CTO.jpg") center / cover no-repeat !important;
}
section.enquiry-serivce-section{
    background: url("../images/contact-background.jpg") center/cover no-repeat !important;
  }

/*end enquiery form css*/
