*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
/* BASE */
#Pro-Base {
    position: fixed;
    top: -200px; 
    left: 05px;
    height: 120px;
    width: 100px;
    z-index: 999999;
    display: flex;
    justify-content: center;
    animation: slideDown 0.5s ease-out forwards;
  }
  @keyframes slideDown {
    to {
      top: 0;
    }
  }
  #base{
    height: 100px;
    width: 80px;
    background-color: #000;
    position: relative;
    display: flex;
    box-shadow: 0px 0px 3px gainsboro;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #base p{
    color: white;
    font-size: x-small;
    font-weight: bold;
    margin: 0;
    padding: 0;
  }
  #base img{
    height: 75px;
    width: auto;
  }
  #base::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0; 
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #000;
  }
/* Above Nav */
#above-nav-main-container{
    height: 50px;
    width: 100%;
    display: flex;
    position: sticky;
    top: 0;
    justify-content: center;
    align-items: center;
    background-color: #165b83;
}
#above-nav-inner-container{
    height: 100%;
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
#above-nav-inner-container p{
    color: white;
    font-size: large;
}
#above-nav-inner-container span{
    color: black;
    background-color: #33cbd9;
    padding: 5px 10px;
    font-size: large;
    border-radius: 10px;
}
#above-nav-close{
    color: white;
    position: absolute;
    top: 15px;
    right: 10%;
    font-weight: 600;
    cursor: pointer;
    font-size: xx-large;
}
@media screen and (max-width: 991px){
    #above-nav-inner-container p{
    font-size:medium;
}
#above-nav-inner-container span{
    font-size: medium;
}
#above-nav-close{
    font-size: x-large;
    right: 5%;
}
}
@media screen and (max-width: 768px){
    #above-nav-inner-container p{
    font-size:small;
}
#above-nav-inner-container span{
    font-size: small;
}
#above-nav-close{
    font-size: large;
    right: 5%;
}
}
@media screen and (max-width: 600px){
    #above-nav-inner-container{
    width: 80%;
    gap: 10px;
}
    #above-nav-inner-container p{
    font-size:x-small;
}
#above-nav-inner-container span{
    font-size: x-small;
}
#above-nav-close{
    font-size: medium;
    right: 5%;
}
}
/* Above Nav */

/* NAvbar */
.navbar {
  position: sticky;
  top: 0px;
  background-color: #08354e;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  width: 100%;
  border-bottom: 1px solid white;
  padding: 0 20px;
  padding-left: 150px;
  flex-wrap: wrap;
  z-index: 1000;
}
.navbar-logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.navbar-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.navbar-logo h1 {
  font-size: 20px;
  margin: 0;
  color: #ffffff;
}
.navbar-center {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex: 1;
  flex-wrap: wrap;
}
.navbar-center a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar-center a:hover {
  color: #33cbd9;
}
.navbar-right {
  flex-shrink: 0;
}
.navbar-button {
  background-color: #33cbd9;
  border: none;
  padding: 10px 16px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.navbar-button:hover {
  background-color: #2ab8c3;
}
.navbar-dropdown {
  position: relative;
}
.navbar-dropdown-toggle {
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}
.navbar-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0b4561;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  min-width: 200px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}
.navbar-dropdown-menu a {
  padding: 10px 20px;
  color: #ffffff;
  text-decoration: none;
  display: block;
  font-weight: 500;
}
.navbar-dropdown-menu a:hover {
  background-color: #145877;
  color: #33cbd9;
}
.navbar-dropdown:hover .navbar-dropdown-menu {
  display: flex;
}

@media (max-width: 991px) {
.navbar {
    padding: 0 20px;
    padding-left: 100px;
    flex-wrap: wrap;
    z-index: 1000;
}
.navbar-center {
    gap: 10px;
  }
  .navbar-center a {
    font-size: small;
  }
  .navbar-button {
    padding: 10px 10px;
    font-size: small;
  }
}
@media (max-width: 768px) {
  .navbar {
    display: none;
  }
}
/* NAvbar */

/* Mobile Nav */
.mobile-navbar {
  background-color: #08354e;
  color: #33cbd9;
  color: #fff;
  position: sticky;
  top: 0;
  border-bottom: 1px solid white;
  width: 100%;
  z-index: 1000;
  display: none;
  height: 60px;
  padding: 0 20px;
  padding-left: 120px;
  flex-direction: column;
}

.mobile-navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}

.mobile-logo-name {
  display: flex;
  align-items: center;
}

.mobile-logo-img {
  width: auto;
  height: 40px;
  margin-right: 10px;
}

.mobile-logo-text {
  font-size: 15px;
  color: #fff;
}

.mobile-hamburger {
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  background-color: #0b4561;
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  flex-direction: column;
  animation: mobile-slideDown 0.3s ease forwards;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-link {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 12px 20px;
}

.mobile-arrow {
  float: right;
}

.mobile-dropdown {
  display: none;
  background-color: #0e587a;
}

.mobile-dropdown a {
  padding-left: 40px;
}

@keyframes mobile-slideDown {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive behavior */
@media (max-width: 769px) {
  .mobile-navbar {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-navbar {
    display: none !important;
  }
}


/* Header */
#header-main-container{
    height: 550px;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #175c82;
    align-items: center;
}
#header-main-inner-container{
    height: 100%;
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#header-main-left{
    height: 100%;
    width: 50%;
    padding-left: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}
#header-main-left h1{
    font-size: 60px;
    font-weight: 700;
    width: 80%;
    color: white;
}
#header-main-left p{
    font-size: medium;
    width: 80%;
    color: #fff;
}
#header-main-left a{
    height: 35px;
    width: fit-content;
    padding: 0 20px;
    background-color: #33cbd9;
    font-size: medium;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 1px 1px 010px black;
    border: none;
    border-radius: 20px;
    transition: all 0.3s;
}
#header-main-left a:hover{
    box-shadow: none;
}
#header-main-right{
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#header-main-right video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media (max-width: 991px) {
    #header-main-container{
    height: 450px;
}
#header-main-left h1{
    font-size: 50px;
    width: 90%;
}
#header-main-left p{
    font-size:small;
    width: 90%;
}
#header-main-left a{
    font-size: small;
    font-weight: 600;
}
}
@media (max-width: 768px) {
    #header-main-container{
    height: 400px;
}
#header-main-left h1{
    font-size: 40px;
    width: 95%;
}
#header-main-left p{
    font-size: x-small;
    width: 95%;
}
#header-main-left a{
    font-size: x-small;
    font-weight: 600;
}
}
@media (max-width: 600px) {
#header-main-container{
    height: fit-content;
}
#header-main-inner-container{
    height: fit-content;
    flex-direction: column;
}
#header-main-left{
    height: fit-content;
    padding: 20px 10px;
    width: 100%;
}
#header-main-left h1{
    font-size: 35px;
    width: 100%;
}
#header-main-left p{
    font-size:small;
    width: 100%;
}
#header-main-left a{
    font-size: small;
    height: 30px;
}
#header-main-right{
    height: 400px;
    width: 100%;
}
#header-main-right video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
}
/* Header End*/


/* MArquee */


/* Expand */

#expan-section-heading{
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
      background-color: #08354e;
      padding-top: 50px;
    align-items: center;
}
#expan-section-heading h2{
    text-align: center;
    color: white;
    font-size: 40px;
}
@media (max-width: 768px) {
#expan-section-heading h2 {
    font-size: 30px;
}
}
@media (max-width: 600px) {
    #expan-section-heading h2 {
        font-size: 25px;
    }
}
.expand-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: fit-content;
    gap: 20px;
    padding: 20px;
    background-color: #08354e;
    width: 100%;
}
.expand-card {
  width: 280px;
  height: 450px;
  border-radius: 16px;
  background-color: #a2b0b869; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: all 0.4s ease, background-image 0.4s ease;
  flex-shrink: 0;
  cursor: pointer;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  color: white;
  position: relative;
}
.expand-card.expand-expanded {
  width: 40%;
}
/* Default background image */
[data-card="1"] {
  background-image: url('../images/expand-before-card-image.webp');
}
[data-card="2"] {
  background-image: url('../images/expand-before-card-image.webp');
}
[data-card="3"] {
  background-image: url('../images/expand-before-card-image.webp');
}
/* Expanded background image */
[data-card="1"].expand-expanded {
  background-image: url('../images/Expand-card-image.webp');
}
[data-card="2"].expand-expanded {
  background-image: url('../images/Expand-card-image.webp');
}
[data-card="3"].expand-expanded {
  background-image: url('../images/Expand-card-image.webp');
}
.expand-heading {
  font-size: 40px;
}
.expand-desc, .expand-btn {
  opacity: 0;
  max-height: 0;
  transition: all 0.4s ease;
  font-size: large;
}
.expand-card.expand-expanded .expand-desc,
.expand-card.expand-expanded .expand-btn {
  opacity: 1;
  max-height: 200px;
  margin-top: 10px;
}
.expand-btn {
  padding: 10px 20px;
  background-color: #fff;
  color: #08354e;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  margin-top: auto;
  transition: background 0.3s;
}
.expand-btn:hover {
  background-color: #e0e0e0;
}
@media (max-width: 991px) {
.expand-section {
    display: none;
}
}
#mobile-expand-card-section{
    height: fit-content;
    width: 100%;
    background-color: #08354e;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    display: none;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 10px;
}
#mobile-expand-card{
    height: 350px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 1px 1px 10px black;
    border: 1px solid white;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.5);
    flex-direction: column;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-self: flex-start;
    gap: 20px;
}
#mobile-expand-card:hover{
    box-shadow: none;
}
#mobile-expand-card h2{
    color: #33cbd9;
    text-align: center;
    font-size: 40px;
    z-index: 1;
}
#mobile-expand-card p{
    color: white;
    text-align: center;
    font-size: small;
    width: 100%;
}
#mobile-expand-card a{
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: medium;
    background-color: #33cbd9;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    height: 35px;
    width: 100%;
}

@media (max-width: 991px) {
#mobile-expand-card-section{
    display: flex;
}
}
/* Expand Section End */

/* After Expan Section */
#after-expand-main-container{
  height: fit-content;
  width:100%;
  display: flex;
  background-color: #08354e;
  justify-content: center;
  align-items: center;
}
#after-expand-inner-container{
  height: fit-content;
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.impact-card {
  width: 50%;
  padding: 20px;
  text-align: left;
}

.impact-card h2 {
  margin-bottom: 15px;
  font-size: 30px;
  color: #fff;
}

.learn-more-btn {
  padding: 10px 20px;
  margin-bottom: 15px;
  background-color: #33cbd9;
  text-decoration: none;
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #1cb4c2;
}

.impact-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}
@media (max-width: 768px) {
.impact-card h2 {
  font-size: 25px;
}
}
@media (max-width: 600px) {
#after-expand-inner-container{
  flex-direction: column;
}
.impact-card {
  width: 100%;
}
}
/* After Expan Section */

/* Clinical  */
#clinical-main-container{
  height: fit-content;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#clinical-inner-container{
  height: fit-content;
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
}
#clinical-inner-container h2{
  font-size: 30px;
  color: #08354e;
  text-align: center;
}
#clinical-inner-container p{
  font-size: medium;
  color: gray;
  text-align: center;
}
#clinical-inner-container img{
  height: 300px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 991px) {
  #clinical-inner-container h2{
  font-size: 25px;
}
#clinical-inner-container p{
  font-size:small;
}
#clinical-inner-container img{
  height: 200px;
}
}
@media (max-width: 768px) {
#clinical-inner-container img{
  height: 150px;
}
}
@media (max-width: 600px) {
  #clinical-inner-container h2{
  font-size: 20px;
}
#clinical-inner-container p{
  font-size:x-small;
}
#clinical-inner-container img{
  height: 100px;
}
}
/* Clinical  */

/* Q Track */
#qtrack-main-container{
  height: fit-content;
  width: 100%;
  background-image: url('https://qure-website-images.s3.ap-south-1.amazonaws.com/q_Track_2_bd558ce908.webp?w=3840&q=75');
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  background-clip: border-box;
  display: flex;
  justify-content: center;
  background-color: #08354e;
  align-items: center;
}
#qtrack-inner-container{
  height: fit-content;
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#qtrack-left{
  height: 400px;
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}
#qtrack-left h2{
  color: #33cbd9;
  font-size: 45px;
}
#qtrack-left p{
  color: white;
  font-size: medium;
}
#qtrack-left a{
  color: white;
  background-color: #33cbd9;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  font-size: medium;
}
#qtrack-right{
  height: 400px;
  width: 50%;
  position: relative;
  overflow: hidden;
}
#qtrack-right img{
  height: 300px;
  width: auto;
  position: absolute;
  bottom: 0px;
  display: none;
  right: 0;
  object-fit: contain;
}
@media (max-width: 840px) {
#qtrack-main-container{
  background-image: none;
}
  #qtrack-right img{
  height: 250px;
  display: block;
}
}
@media (max-width: 700px) {
  #qtrack-right img{
  height: 200px;
}
}
@media (max-width: 600px){
#qtrack-inner-container{
  flex-direction: column;
}
#qtrack-left{
  height: fit-content;
  width: 100%;
  padding: 20px;
  gap: 10px;
}
#qtrack-left h2{
  font-size: 35px;
}
#qtrack-left p{
  font-size: small;
}
#qtrack-left a{
  font-size: small;
}
#qtrack-right{
  height: 300px;
  width: 100%;
  display: flex;
  justify-content: end;

}
#qtrack-right img{
  height: 250px;
  width: auto;
}
}

/* Footer */

#footer-main-container{
    height: 300px;
    width: 100%;
    border-top:0.5px solid white ;
    background-color: #08354e;
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer-second-main-container{
    height: 90%;
    width: 95%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#footer-left-container{
    height: 100%;
    width: 30%;
    display: flex;
    justify-content: left;
    align-items: center;
}
#footer-left-items{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer-left-text{
    display: flex;
    justify-content: left;
    height: 20%;
    width: 100%;
}
#footer-left-text h6{
    color: white;
    padding-left: 10px;
    position: relative;
    bottom: 5px;
    font-size: small;
}
#social-icons-container{
    width: 70%;
    height: 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    bottom: 10px;
}
#social-icons-container img{
    height: 20px;
    width: 20px;
}
#social-icons-container a{
    height:35px;
    padding: 10px;
    width: 35px;
    transition: all 0.3s;
    border-radius: 10px;
    background: white; 
    display: flex;
    margin-left: 5px;
    justify-content: center;
    align-items: center; 
}
#social-icons-container a:hover{
    background-image: none;
    background-color: #33cbd9; 
}
#footer-mid1-container{
    height: 100%;
    position: relative;
    top: 15%;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#footer-mid1-top{
    height: 10%;
    width: 70%;
}
#footer-mid1-mid{
    height: 20%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; 
}
#email-form{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#footer-mid1-mid input {
    background-color: transparent;
    color: white;
    font-weight: 200;
    text-align: center;
    border: none;
    height: 40px;
    width: 50%; 
    border-bottom: 2px solid #33cbd9;
}
#email-form button{
    background: none;
    border: none;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
}
#email-form button img{
    height: 50%;
    width: 50%;
}
#footer-container-binder{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 100%;
}
#footer-mid1-bottom{
    height: auto;
    width: 70%;
}
#footer-mid1-bottom p{
    font-size: xx-small;
    color: white;
}
#footer-mid2-container{
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer-mid2-ul{
    height: 100%;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: left;
}
#footer-mid2-ul a{
    font-size: small;
    cursor: pointer;
    text-decoration: none;
    color: white;
}
#footer-mid2-ul a:hover{
    color: #33cbd9;
}
#footer-mid2-ul span{
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: all 1s;
    font-size: small;
}
#footer-right-container{
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 3000px) {
    #footer-left-container {
        width: 20%;
    }
    #footer-left-text h6 {
        font-size: x-large;
    }
    #social-icons-container {
        width: 100%;
        bottom: 20px;
    }
    #footer-mid1-mid input {
        width: 60%;
        position: relative;
        right: 0px;
    }
    #footer-mid1-bottom p {
        font-size: medium !important;
    }
    #footer-mid2-ul {
        height: 80%;
    }
    #footer-mid2-ul a {
        font-size: large;
    }
    #footer-mid2-ul span {
        font-size: large;
    }
    #footer-mid2-ul span{
        font-size: large;
    }
    #last-footer-top {
        height: 500px !important;
    }
    #last-footer-top-left button {
        width: 200px !important;
        height: 50px !important;
        font-size: large !important;
    }
    #last-footer-top-left span {
        font-size: x-large !important;
        left: -80px !important;
    }
    #last-footer-top-left p {
        font-size: large !important; 
        top: 50px;
    }
    #Footer-main-logo {
    width: 350px !important;
    }
       #footer-Floating-flag-img {
        top: 45% !important;
        left: 25% !important;
        height: 200px !important;
    }
    #address-container p ,#contact-container a{
    font-size: large !important;
    }
}
@media (min-width: 4000px) {
       #footer-Floating-flag-img {
        top: 45% !important;
        left: 20% !important;
    }
}
@media (min-width: 1800px){
    #footer-second-main-container {
        height: 90%;
        width: 80%;
    }
    #footer-left-container{
        width: 10%;
    }
    #footer-left-text h6 {
        font-size: large;
    }
    #footer-mid1-container {
        width: 40%;
    }
    #footer-mid1-bottom p {
        font-size: x-small;
    }
}
@media (max-width: 991px){
    #footer-main-container{
        height: fit-content;
        padding: 20px;
        gap: 50px;
    }
    #footer-second-main-container{
        flex-direction: column-reverse;
        gap: 30px;
        justify-content: space-between;
    }
    #footer-left-container{
        height: fit-content;
        width: 80%;
        position: relative;
        top: 0px;
    }
    #footer-mid2-container{
      height: fit-content;
      width: fit-content;
    }
    #footer-mid2-ul{
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: space-around;
        text-align: left;
    }
    #footer-mid2-ul span:first-of-type ,#footer-mid2-ul h4 {
    font-size: x-large;
}

    #footer-right-container{
      height: 170px;
      width: fit-content;
    }
    #footer-left-items{
        height: 70%;
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    #footer-left-text{
      display: flex;
        justify-content: left;
        height: 20%;
        position: relative;
        right: 30px;
        width: 80%;
        top: 0;
    }
    #footer-left-text h6{
        color: white;
        font-size: small;
    }
    #social-icons-container{
        height: 90%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    #social-icons-container a{
        transition: all 1s;
        border-radius: 10px;
        display: flex; 
        align-items: center;
    }
    #footer-mid1-container{
        display: none;
    }
    #footer-container-binder{
        width: 100%;
        align-items: center;
        gap: 50px;
        justify-content: center;
    }
}
@media (max-width: 768px){
  #footer-left-text{
        top: -5px;
    }
     #footer-second-main-container{
        gap: 50px;
    }
}
@media (max-width: 600px){
    #footer-main-container{
        height: fit-content;
    }
    #footer-second-main-container{
        flex-direction: column-reverse;
        justify-content: space-between;        
        gap: 20px;
    }
    #footer-left-container{
        height: 15%;
        width: 80%;
        position: relative;
        top: 20px;
    }
    #footer-mid2-container{
        height: 40%;
        width: 100%;
    }
    #footer-mid2-ul{
        height: 170px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        text-align: left;
    }
    #footer-right-container{
        height: 35%;
        width: 100%;
    }
    #footer-left-items{
        height: 70%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    #footer-left-text{
       
        display: none;
    }
    #footer-left-text h6{
        color: white;
        font-size: x-small;
        padding-top: 3px;
    }
    #social-icons-container{
        height: 90%;
        display: flex;
        flex-direction: row;
        justify-content: right;
        align-items: center;
        width: 100%;
    }
    #social-icons-container a{
        transition: all 1s;
        border-radius: 10px;
        display: flex; 
        margin-left: 5px;
        align-items: center;
    }
    #footer-mid1-container{
        display: none;
    }
}
@media (max-width: 400px){
    #footer-main-container{
        height: fit-content;
    }
    #footer-second-main-container{
        flex-direction: column-reverse;
        justify-content: space-between;
    }
    #footer-left-container{
        height: 15%;
        width: 80%;
        position: relative;
        top: 20px;
    }
    #footer-mid2-container{
        height: 40%;
        width: 100%;
    }
    #footer-mid2-ul{
        height: 170px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        text-align: left;
    }
    #footer-right-container{
        height: 35%;
        width: 100%;
    }
    #footer-left-items{
        height: 70%;
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    #footer-left-text{
        display: none;
        justify-content: left;
        height: 20%;
        position: relative;
        right: 60px;
        width: 100%;
        position: absolute;
    }
    #footer-left-text h6{
        color: white;
        font-size: 8px;
        position: relative;
        right: 5px;
        bottom: 03px;
    }
    #social-icons-container{
        height: 90%;
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    #social-icons-container a{
        transition: all 1s;
        border-radius: 05px;
        display: flex; 
        margin-left: 10px;
        align-items: center;
    }
    #footer-mid1-container{
        display: none;
    }
}

/* footer End*/

/* LAST FOOTER  */

#last-footer-main-container{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #08354e;
}
#last-footer-top{
    height: 260px;
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
#last-footer-top-left{
    height: 100%;
    width: 35%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
#Footer-main-logo {
  height: 250px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
#last-footer-top-right{
    height: fit-content;
    width: 25%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
}
#last-footer-top-right h2{
    color: #33cbd9;
    font-size: x-large;
}
#address-container{
    height: 45px;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    width: 100%;
}
#footer-whatsapp-link{
    margin: 0;
}
#contact-container{
    height: 45px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}
#address-container img ,#contact-container img{
    height: 25px;
    width: auto;
}
#address-container p{
    font-size: medium;
    height: 100%;
    padding-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    color: white;
    width: fit-content;
}
#contact-container a{
    font-size: medium;
    height: 100%;
    padding-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}
#contact-container a:hover{
    color: #33cbd9;
}
#last-footer-bottom{
    height: 100px;
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
#last-footer-bottom-left{
    width: 20%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#last-footer-bottom-left p{
    color: white;
    font-size: x-small;
}
#last-footer-bottom-mid{
    width: 30%;
    height: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
#last-footer-bottom-mid a{
    text-decoration: none;
    padding-right: 5px;
    font-size: x-small;
    color: white;
    cursor: pointer;
    border-right: 1px solid white;
}
#last-footer-bottom-mid a:hover{
    color: #636363;
}
#last-footer-bottom-right{
    width: 20%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#last-footer-bottom-right a{
    text-decoration: none;
    padding-right: 5px;
    font-size: x-small;
    cursor: pointer;
    color: white;
}
#last-footer-bottom-right a:hover{
    color: #33cbd9;
}
@media (min-width: 1800px){
    #last-footer-top {
        height: 300px;
        width: 80%
    }
   
    #last-footer-bottom-left p {
        color: white;
        font-size: large;
    }
    #last-footer-bottom-mid a {
        font-size: large;
    }
    #last-footer-bottom-right a {
        font-size: large;
    }
}
@media screen and (min-width: 3001px) and (max-width: 5000px){
    #footer-main-container {
    height: 600px;
    }
    #last-footer-main-container{
        height: 500px;
    }
}
@media (max-width: 991px){
    #last-footer-top{
        height: 450px;
        flex-direction: column;
    }
    #last-footer-top-left{
        height: 60%;
        width: 50%;
        display: flex;
        gap: 0px;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
    #Footer-main-logo{
        height: 200px;
        width: auto;
    }
    #last-footer-top-left button{
        margin-left: 0;
    }
    #last-footer-top-left span{
        font-size: small;
        margin-top: 5px;
        left: 0;
    }
    #we-are-uk-registered {
    font-size: small;
    top: 0;
    left: 30%;
    }
    #last-footer-top-right{
        height: 40%;
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #footer-Floating-flag-img {
    left: inherit;
    top: inherit;
    position: relative;
    transform: none;
    }
     
    #contact-container,#address-container{
        justify-content: left;
        width: 220px;
    }
#contact-container p,#address-container p{
    padding-left: 10px;
            padding-left: 10px;
        font-size: small;
}#contact-container p{
    margin: 0;
}
#footer-whatsapp-link a{
    padding: 0;
    font-size: small;
}
#contact-container a {
    font-size: small;
    height: 100%;
    padding-left: 10px;
}
    #last-footer-bottom{
        height: 80px;
        width: 90%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #last-footer-bottom-left p{
        margin: 0;
    }
    #last-footer-bottom-mid,
    #last-footer-bottom-left{
        width: 100%;
    }
    #last-footer-bottom-mid{
        height: 30%;
    }
    #last-footer-bottom-left{
        height: 30%;
    }
    #last-footer-bottom-right{
        display: none;
    }
    #last-footer-top-left-footer-logo-below-p {
    width: 100%;
    text-align: center;
    }
}
@media (max-width: 768px) {
    #last-footer-top-left {
        width: 70%;
    }
}
@media (max-width: 600px){
    #last-footer-top{
        height: fit-content;
    }
    #last-footer-top-left{
        height: fit-content;
        width: 100%;
        gap: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
    #last-footer-top-right{
        height: fit-content;
        width: 100%;
        text-align: center;
    }
  
    #last-footer-bottom{
        height: 80px;
        width: 90%;
        flex-direction: column;
    }
    #last-footer-bottom-mid,
    #last-footer-bottom-left,
    #last-footer-bottom-right{
        width: 100%;
    }
    #last-footer-bottom-mid{
        height: 30%;
    }
    #last-footer-bottom-left{
        height: 30%;
    }
    #last-footer-bottom-right{
        height: 20%;
    }
    #last-footer-top-left span{
        font-size:small;
    }
       #Footer-main-logo {
        height: 150px;
        position: relative;
        width: auto;
        left: 0px;
    }
        #footer-Floating-flag-img {
        position: relative;
        left: inherit;
        transform: none;
        height: 70px;
        top: inherit;
}
}
@media (max-width: 400px){
    #last-footer-top{
        height: fit-content;
        padding: 20px 0;
    }
    #last-footer-top-left{
        height: 60%;
        width: 100%;
        gap: 0px;
        margin-bottom: 10px;
    }
    #we-are-uk-registered {
    top: 15px;
    }
    #last-footer-top-right{
        height: 40%;
        width: 100%;
        text-align: center;
    }
 
    #last-footer-bottom{
        height: 70px;
        width: 90%;
        flex-direction: column;
    }
    #last-footer-bottom-mid,
    #last-footer-bottom-left,
    #last-footer-bottom-right{
        width: 100%;
    }
    #last-footer-bottom-mid{
        height: 30%;
    }
    #last-footer-bottom-left{
        height: 30%;
    }
    #last-footer-top-left span{
        font-size:small;
    }
    #last-footer-bottom-right{
        height: 20%;
    }
}


/* Footer */



/* Whatsapp Popup */
#whatsapp-popup-main-container {
  height: fit-content;
  width: 250px;
  position: fixed;
  padding: 10px;
  bottom: 10px;
  left: 10px;
  background-color: rgb(255, 255, 255);
  display: none;
  flex-direction: column;
  box-shadow: 1px 1px 5px black;
  border-radius: 10px;
  justify-content: center;
  z-index: 99999;
  align-items: center;
}
#whatsapp-popup-main-container span {
  position: absolute;
  top: 0px;
  right: 10px;
  cursor: pointer;
  font-weight: 900;
  color: #121216;
}
#whatsapp-popup-main-container span:hover {
  color: #000;
}
#whatsapp-icon-container {
  height: 45px;
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
#whatsapp-icon-container img {
  height: 30px;
  width: auto;
}
#whatsapp-icon-container a {
  color: #000;
  font-size: medium;
  font-weight: 600;
  text-decoration: none;
}
#whatsapp-icon-container a:hover {
  text-decoration: underline;
}
#whatsapp-popup-main-container p {
  color: #333;
  font-size: small;
  font-weight: 400;
  width: 90%;
  text-align: center;
}
@media (max-width: 600px) {
  #whatsapp-popup-main-container {
    padding: 5px;
    width: 200px;
  }
  #whatsapp-popup-main-container p {
    font-size: x-small;
    margin: 0;
  }
  #whatsapp-icon-container img {
    height: 20px;
  }
  #whatsapp-icon-container a {
    color: #000;
    font-size: small;
  }
  #whatsapp-icon-container {
    height: 30px;
  }
}

/* Whatsapp */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.whatsapp-icon {
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-icon:hover {
  transform: scale(1.1) rotate(-5deg);
  
}
#icon-text img {
  height: 60px;
  width: 90px;
  animation: brightenScale 3s ease-in-out infinite;
  transition: filter 0.3s ease, transform 0.3s ease;
  animation-play-state: running;
}

#icon-text img:hover {
  animation-play-state: paused;    
  filter: brightness(1.3);
  transform: scale(1.1);
}


@keyframes brightenScale {
  0%, 100% {
    filter: brightness(1);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.3);
    transform: scale(1.1);
  }
}


@media (min-width: 2000px) {
  #icon-text img {
    height: 100px;
    width: auto;
  }
}
@media (max-width: 480px) {
  .whatsapp-icon {
    padding: 0px;
    font-size: 26px;
  }
  .whatsapp-popup {
    width: 250px;
  }
  .whatsapp-widget {
    bottom: 20px;
    right: 0px;
  }
  #icon-text img {
    height: 50px;
    width: 80px;
  }
  #backtotop-main-container {
    bottom: 80px;
    right: 20px;
  }
}

#whatsapp-a img {
  height: 100%;
  width: 30%;
}

/* <!-- Back To Top --> */

#backtotop-main-container {
  position: fixed;
  bottom: 100px;
  right: 40px;
  display: none;
  z-index: 1000;
}
#back-to-top-btn {
  background-color: #000;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  font-weight: 900;
  transition: all 1s;
  justify-content: center;
  align-items: center;
}
#back-to-top-btn:hover {
  background-color: #000;
}
@media (min-width: 1800px) {
  #backtotop-main-container {
    bottom: 120px;
  }
  #back-to-top-btn {
    height: 40px;
    width: 40px;
    font-size: 20px;
  }
}
@media (min-width: 3000px) {
  #backtotop-main-container {
    bottom: 120px;
  }
  #back-to-top-btn {
    height: 50px;
    width: 50px;
    font-size: 25px;
  }
}
/* <!-- Back To Top --> */