/* Full CSS Framework Inspired by Tailwind */
@font-face {
  font-family: "Baloo";
  src: url("../fonts/baloo.regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppin regular";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppin medium";
  src: url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppin semibold";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppin bold";
  src: url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gabriela";
  src: url("../fonts/Gabriela/Gabriela-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* Root Colors and Variables */
:root {
  /* Colors */
  --primary: #07a6ee;
  --secondary: #f2e684;
  --background: #ebf9fa;
  --danger: #e3342f;
  --success: #38c172;
  --warning: #ff9800;
  --lable: #054f4f;
  --info: #4d4d4d;
  --gradient-blue: linear-gradient(90deg, #13bec0, #13bdc000);
  --gradient-white: linear-gradient(0deg, #ebf9fa, #ebf9fa00);
  --gradient-btn: linear-gradient(45deg, #07a6ee, #f2e684);
  --background-bloom: radial-gradient(
    circle,
    rgba(0, 255, 255, 0.8) 20%,
    rgba(0, 255, 255, 0) 70%
  );
  --gray-100: #f7fafc;
  --gray-200: #edf2f7;
  --gray-300: #e2e8f0;
  --gray-400: #cbd5e0;
  --gray-500: #a0aec0;
  --gray-600: #718096;
  --gray-700: #4a5568;
  --gray-800: #2d3748;
  --gray-900: #1a202c;
  --white: #ffffff;
  --black: #000000;

  /* Font Families */
  --font-serif: "Inria Serif";
  --font-serif-light-italic: "Inria Serif light italic";
  --font-serif-regular: "Inria Serif regular";
  --font-serif-italic: "Inria Serif italic";
  --font-serif-bold: "Inria Serif bold";
  --font-inder: "Inder";

  /* Font Sizes */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem; /* 36px */
  --text-5xl: 3rem; /* 48px */
}

/* Font Utilities */
.font-inder {
  font-family: var(--font-inder);
}
.font-serif {
  font-family: var(--font-serif);
}
.font-serif-light-italic {
  font-family: var(--font-serif-light-italic);
}
.font-serif-regular {
  font-family: var(--font-serif-regular);
}
.font-serif-italic {
  font-family: var(--font-serif-italic);
}
.font-serif-bold {
  font-family: var(--font-serif-bold);
}
/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.5;
}
body {
  margin: 0;
  background-color: var(--background);
}
h5 {
  font-family: "Poppin semibold";
  color: var(--lable);
}
/* Spacing */
:root {
  --spacing-0: 0;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  --spacing-32: 8rem;
}
.m-0 {
  margin: var(--spacing-0);
}
.m-1 {
  margin: var(--spacing-1);
}
.m-2 {
  margin: var(--spacing-2);
}
.m-3 {
  margin: var(--spacing-3);
}
.m-4 {
  margin: var(--spacing-4);
}
.m-5 {
  margin: var(--spacing-5);
}
.m-6 {
  margin: var(--spacing-6);
}
.m-8 {
  margin: var(--spacing-8);
}
.m-10 {
  margin: var(--spacing-10);
}
.m-12 {
  margin: var(--spacing-12);
}
.m-16 {
  margin: var(--spacing-16);
}
.m-20 {
  margin: var(--spacing-20);
}
.m-24 {
  margin: var(--spacing-24);
}
.m-32 {
  margin: var(--spacing-32);
}
.p-0 {
  padding: var(--spacing-0);
}
.p-1 {
  padding: var(--spacing-1);
}
.p-2 {
  padding: var(--spacing-2);
}
.p-3 {
  padding: var(--spacing-3);
}
.p-4 {
  padding: var(--spacing-4);
}
.p-5 {
  padding: var(--spacing-5);
}
.p-6 {
  padding: var(--spacing-6);
}
.p-8 {
  padding: var(--spacing-8);
}
.p-10 {
  padding: var(--spacing-10);
}
.p-12 {
  padding: var(--spacing-12);
}
.p-16 {
  padding: var(--spacing-16);
}
.p-20 {
  padding: var(--spacing-20);
}
.p-24 {
  padding: var(--spacing-24);
}
.p-32 {
  padding: var(--spacing-32);
}
.p-[value] {
  padding: [value];
}
/* Flexbox */
.flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-end {
  align-items: flex-end;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: var(--spacing-1);
}
.gap-2 {
  gap: var(--spacing-2);
}
.gap-4 {
  gap: var(--spacing-4);
}
.gap-5 {
  gap: var(--spacing-5);
}
.gap-6 {
  gap: var(--spacing-6);
}
.gap-8 {
  gap: var(--spacing-8);
}
.gap-10 {
  gap: var(--spacing-10);
}
.gap-12 {
  gap: var(--spacing-12);
}
.gap-16 {
  gap: var(--spacing-16);
}
.gap-20 {
  gap: var(--spacing-20);
}
.gap-24 {
  gap: var(--spacing-24);
}
.gap-32 {
  gap: var(--spacing-32);
}
/* Grid */
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gap-1 {
  gap: var(--spacing-1);
}
.gap-2 {
  gap: var(--spacing-2);
}
.gap-4 {
  gap: var(--spacing-4);
}

/* Typography */
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
}
.font-bold {
  font-weight: bold;
}
.font-medium {
  font-weight: 500;
}
.font-light {
  font-weight: 300;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* Colors */
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-danger {
  color: var(--danger);
}
.text-success {
  color: var(--success);
}
.text-warning {
  color: var(--warning);
}
.text-info {
  color: var(--info);
}
.text-gray-500 {
  color: var(--gray-500);
}
.text-gray-700 {
  color: var(--gray-700);
}
.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-danger {
  background-color: var(--danger);
}
.bg-success {
  background-color: var(--success);
}
.bg-warning {
  background-color: var(--warning);
}
.bg-info {
  background-color: var(--info);
}
.bg-gray-100 {
  background-color: var(--gray-100);
}
.bg-gray-500 {
  background-color: var(--gray-500);
}

/* Borders */
.border {
  border: 1px solid var(--gray-300);
}
.border-0 {
  border: 0;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-full {
  border-radius: 9999px;
}

/* width */
.w-0 {
  width: 0%;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.w-0 {
  width: 0px;
}
.w-1 {
  width: 0.25rem;
} /* 4px */
.w-2 {
  width: 0.5rem;
} /* 8px */
.w-3 {
  width: 0.75rem;
} /* 12px */
.w-4 {
  width: 1rem;
} /* 16px */
.w-5 {
  width: 1.25rem;
} /* 20px */
.w-6 {
  width: 1.5rem;
} /* 24px */
.w-7 {
  width: 1.75rem;
} /* 28px */
.w-8 {
  width: 2rem;
} /* 32px */
.w-9 {
  width: 2.25rem;
} /* 36px */
.w-10 {
  width: 2.5rem;
} /* 40px */
.w-11 {
  width: 2.75rem;
} /* 44px */
.w-12 {
  width: 3rem;
} /* 48px */
.w-14 {
  width: 3.5rem;
} /* 56px */
.w-16 {
  width: 4rem;
} /* 64px */
.w-20 {
  width: 5rem;
} /* 80px */
.w-24 {
  width: 6rem;
} /* 96px */
.w-28 {
  width: 7rem;
} /* 112px */
.w-32 {
  width: 8rem;
} /* 128px */
.w-36 {
  width: 9rem;
} /* 144px */
.w-40 {
  width: 10rem;
} /* 160px */
.w-44 {
  width: 11rem;
} /* 176px */
.w-48 {
  width: 12rem;
} /* 192px */
.w-52 {
  width: 13rem;
} /* 208px */
.w-56 {
  width: 14rem;
} /* 224px */
.w-60 {
  width: 15rem;
} /* 240px */
.w-64 {
  width: 16rem;
} /* 256px */
.w-72 {
  width: 18rem;
} /* 288px */
.w-80 {
  width: 20rem;
} /* 320px */
.w-96 {
  width: 24rem;
} /* 384px */
.w-auto {
  width: auto;
}
.w-min {
  width: min-content;
}
.w-max {
  width: max-content;
}
.w-[value] {
  width: [value];
} /* Example: w-[400px], w-[10%], w-[calc(100%-1rem)] */

/* height */
.h-0 {
  height: 0%;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.h-0 {
  height: 0px;
}
.h-1 {
  height: 0.25rem;
} /* 4px */
.h-2 {
  height: 0.5rem;
} /* 8px */
.h-3 {
  height: 0.75rem;
} /* 12px */
.h-4 {
  height: 1rem;
} /* 16px */
.h-5 {
  height: 1.25rem;
} /* 20px */
.h-6 {
  height: 1.5rem;
} /* 24px */
.h-7 {
  height: 1.75rem;
} /* 28px */
.h-8 {
  height: 2rem;
} /* 32px */
.h-9 {
  height: 2.25rem;
} /* 36px */
.h-10 {
  height: 2.5rem;
} /* 40px */
.h-11 {
  height: 2.75rem;
} /* 44px */
.h-12 {
  height: 3rem;
} /* 48px */
.h-14 {
  height: 3.5rem;
} /* 56px */
.h-16 {
  height: 4rem;
} /* 64px */
.h-20 {
  height: 5rem;
} /* 80px */
.h-24 {
  height: 6rem;
} /* 96px */
.h-28 {
  height: 7rem;
} /* 112px */
.h-32 {
  height: 8rem;
} /* 128px */
.h-36 {
  height: 9rem;
} /* 144px */
.h-40 {
  height: 10rem;
} /* 160px */
.h-44 {
  height: 11rem;
} /* 176px */
.h-48 {
  height: 12rem;
} /* 192px */
.h-52 {
  height: 13rem;
} /* 208px */
.h-56 {
  height: 14rem;
} /* 224px */
.h-60 {
  height: 15rem;
} /* 240px */
.h-64 {
  height: 16rem;
} /* 256px */
.h-72 {
  height: 18rem;
} /* 288px */
.h-80 {
  height: 20rem;
} /* 320px */
.h-96 {
  height: 24rem;
} /* 384px */
.h-auto {
  height: auto;
}
.h-min {
  height: min-content;
}
.h-max {
  height: max-content;
}
.h-[value] {
  height: [value];
} /* Example: h-[400px], h-[75%], h-[calc(100%-2rem)] */

/* Additional Utilities */
.hidden {
  display: none;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}
.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}
.transition {
  transition: all 0.2s ease-in-out;
}
.transition-colors {
  transition: color 0.2s ease-in-out;
}
.transition-bg {
  transition: background-color 0.2s ease-in-out;
}
.opacity-0 {
  opacity: 0;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-100 {
  opacity: 1;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-auto {
  z-index: auto;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.static {
  position: static;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-scroll {
  overflow: scroll;
}

.section {
  max-width: 1600px;
  padding: 0 20px;
  margin: auto;
}
input,
textarea,
select {
  padding: 10px 5px;
  border: none;
  border-bottom: 2px solid #08999a;
  border-radius: 0;
  font-family: "Poppin semibold";
  outline: none;
  margin-top: 5px;
  background-color: transparent;
}
.breadcrumps {
  font-family: "Poppin medium";
}
.breadcrumps a,
.breadcrumps p {
  color: var(--white);
  font-size: 14px;
}
.breadcrumps .active {
  color: var(--white);
  font-family: "Poppin semibold";
  font-size: 16px;
}
.line {
  width: 100%;
  height: 1px;
  border-radius: 5px;
  background-color: var(--white);
  margin-top: 10px;
}

.btn {
  background-image: var(--gradient-btn);
  font-family: "Baloo";
  font-size: 20px;
  color: var(--white);
  border-radius: 15px;
  padding: 10px 12px;
  border: none;
  outline: none;
  cursor: pointer;
  min-width: 150px;
  transition: all 0.5s ease-in-out;
}
.btn-secondary {
  background-color: transparent;
  font-family: "Baloo";
  font-size: 20px;
  color: var(--white);
  border-radius: 15px;
  padding: 10px 15px;
  border: none;
  outline: none;
  cursor: pointer;
  border: 1px solid var(--white);
}
.btn-other {
  background-color: var(--white);
  font-family: "Baloo";
  font-size: 20px;
  color: var(--primary);
  border-radius: 15px;
  padding: 10px 15px;
  border: none;
  outline: none;
  cursor: pointer;
  border: 1px solid var(--white);
  margin-top: 20px;
  min-width: 150px;
}
button[type="submit"] {
  transition: all 0.5s ease-in-out;
  padding: 10px 20px;
  border: none;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}
button.sending {
  background-color: #ff9800; /* Orange while sending */
}

button.sent {
  background-color: #4caf50 !important; /* Green when sent */
  background-image: none !important;
}
a {
  text-decoration: none;
  color: var(--black);
}
.splide__arrows {
  display: none !important;
}

/* navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  height: 70px;
}
.nav-heading {
  background-color: var(--white);
  position: relative;
  z-index: 50;
}
.nav-adjuster {
  height: 70px;
  width: 100%;
}
.manu-item a {
  font-size: 16px;
  text-decoration: none;
  font-family: "Poppin semibold";
  color: var(--lable);
}

/* banner -section */
.banner {
  height: 80vh;
}
.left-section {
  flex: 1;
}
.left-section p {
  font-family: "Poppin medium";
  font-size: 64px;
}
.backgroud-text {
  font-family: "Gabriela";
  color: var(--white);
  position: relative;
}
.backgroud-text img {
  position: absolute;
  top: 0;
  left: -15%;
  z-index: -1;
}
.left-section {
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  margin-top: 20px;
}
.banner-enq {
  margin-top: 20px;
  gap: 15px;
  font-family: "Poppin regular";
}
.banner-enq a {
  font-size: 20px;
  color: var(--lable);
}
.banner-enq .play-btn-background {
  padding: 10px;
  border-radius: 50%;
  background-color: #aaf1f2;
}
@keyframes breathing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.play-btn-background {
  animation: breathing 2s infinite ease-in-out;
}
.banner-enq .play-btn {
  padding: 15px;
  border-radius: 50%;
  background-color: var(--primary);
}
.banner .right-section {
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  display: flex;
}
.banner .right-section img {
  z-index: 0;
}
/* heighlights */
.highlight-container {
  display: inline-flex;
  align-items: center;
  background-color: #08999a; /* Adjust to match the exact shade */
  color: white;
  font-weight: bold;
  font-size: 18px;
  padding: 8px 12px;
  position: relative;
  font-size: 24px;
  font-family: "Poppin bold";
}

.icon {
  margin-right: 8px;
  font-size: 18px;
}

.highlight-container::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  width: 30px;
  height: 100%;
  background: #000000; /* Adjust to match the diagonal shape */
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

/* headlines */
.headlines {
  padding: 10px 0;
  background-color: #13bec0;
  font-family: "Poppin medium";
  margin-top: -5px;
  z-index: 1;
  position: relative;
  font-size: 20px;
  color: var(--white);
}
.headlines a {
  color: var(--white);
}
.headlines marquee .headlines-items {
  gap: 40px;
}
.headlines marquee .headlines-items span {
  color: var(--secondary);
  font-family: "Gabriela";
}

.heighlight {
  position: absolute;
  gap: 10px;
  z-index: 1;
  left: 20px;
}
.heighlight-background {
  position: absolute;
  left: 0;
  top: 0;
}
.triangle {
  width: 0;
  height: 50px;
  border-top: 50px solid transparent;
  border-left: 100px solid #08999a;
}
.rectangle {
  width: 250px;
  height: 50px;
  background: #08999a;
}
/* about us */
.label {
  font-family: "Poppin medium";
  color: var(--lable);
  font-size: 15px;
}
.heading {
  font-family: "Poppin bold";
  font-size: 36px;
}
.heading span {
  color: var(--primary);
}
.text-info {
  font-family: "Poppin regular";
  color: var(--info);
  font-size: 16px;
  margin-top: 5px;
}
.about-us .btn {
  width: fit-content;
  margin-top: 15px;
}
.web-margin {
  margin-top: 100px;
}
.arrows {
  padding: 15px;
  border-radius: 50%;
  background-color: var(--primary);
  cursor: pointer;
}
.slider-arrows {
  margin-top: 10px;
}
.whychooseusSlider {
  width: 600px;
}
.why-choose-us-card {
  width: 100%;
  min-height: 310px;
  padding: 15px;
  border-radius: 10px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  text-align: start;
}
.why-choose-us-card img {
  width: 100px;
  height: 100px;
}
.why-choose-us-card h3 {
  font-family: "Poppin semibold";
  font-size: 24px;
  color: var(--lable);
}
.paper-section {
  position: relative;
}
.paper-top {
  width: 100%;
  position: relative;
  z-index: -1;
}
.paper-bottom {
  width: 100%;
  position: relative;
  z-index: -1;
  margin-top: -18%;
}
.feedback {
  background-color: var(--primary);
  margin-top: -18%;
  padding-top: 50px;
}
.paper-section .heading {
  color: var(--white);
}
.paper-section .heading span {
  color: var(--secondary);
}
.feedback-slider-section {
  position: relative;
  margin-top: 40px;
}

.feedback-slider-section .left-overlay {
  top: 0;
  left: 0;
  width: 25%;
  background-image: var(--gradient-blue);
  height: 100%;
  position: absolute;
  z-index: 1;
}

.feedback-slider-section .right-overlay {
  top: 0;
  right: 0;
  width: 25%;
  background-image: var(--gradient-blue);
  height: 100%;
  position: absolute;
  z-index: 1;
  rotate: 180deg;
}

.feedback-card {
  background-image: linear-gradient(180deg, #ffffff, #07a6ee);
  width: 100%;
  min-height: 300px;
  border-radius: 20px;
  padding: 20px;
}
.feedback-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--lable);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
}
.feedback-card .text-info {
  font-size: 16px;
  margin-top: 10px;
  font-family: "Poppin regular";
}
.feedback-card-profile-section h4 {
  font-family: "Poppin semibold";
  font-size: 20px;
  color: var(--lable);
}
.feedback-card-profile-section p {
  font-family: "Poppin regular";
  color: var(--primary);
  font-size: 16px;
}
.our-teams {
  background-color: var(--primary);
  padding-top: 120px;
}
.play-pause {
  padding: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--white);
  display: flex;
  justify-items: center;
  align-items: center;
  cursor: pointer;
}
.our-team-card {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  background-color: var(--white);
}
.our-team-card img {
  height: 100%;
  width: 100%;
  max-height: 310px;
  object-fit: contain;
}
.our-team-card .splide__slide {
  width: fit-content !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0 !important;
}
.our-team-card .name-tag {
  background-color: var(--white);
  position: absolute;
  bottom: 0;
  padding: 5px 15px;
}

/* gallery */

.gallery {
  height: 100vh;
  position: relative;
  /* overflow-y: hidden; */
  margin-top: 180px;
}
.gallery-top-overlay,
.gallery-bottom-overlay {
  position: absolute;
  z-index: 1;
  background-image: var(--gradient-white);
  width: 100%;
}
.gallery-top-overlay {
  top: 0;
  rotate: 180deg;
  height: 50%;
}
.gallery-bottom-overlay {
  bottom: 0;
  height: 35%;
}

.gallery-heading {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
  margin-top: -5%;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 10px; /* Space between grid items */
  width: 100%;
}
.gallery-card {
  margin-bottom: 10px;
  height: 100%;
  break-inside: avoid;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: var(--gray-300);
}
.masonry-gallery-wrapper {
  height: 100vh;
  overflow: hidden;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}
.masonry-gallery-wrapper .splide__slide {
  height: fit-content !important;
}

.achivement-card {
  background-color: var(--white);
  padding: 15px;
  border-radius: 10px;
}
.achivement-card h4 {
  font-family: "Poppin semibold";
  font-size: 20px;
}

.achivement-card p {
  font-family: "Poppin medium";
  font-size: 14px;
  color: var(--info);
}
.awardSlider {
  width: 530px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  margin-top: 40px;
}
.news-big {
  width: 100%;
  height: auto;
  gap: 10px;
  position: relative;
}
.news-big-img-wrapper {
  width: 100%;
  height: auto;
  max-height: 350px;
  overflow: hidden;
  border-radius: 10px;
}
.news-big:hover img,
.news-row:hover img {
  transform: scale(1.3);
}
.news-big img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  max-height: 350px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.big-nevigation {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.date-tag {
  padding: 2px 10px;
  font-family: "Poppin bold";
  font-size: 10px;
  color: var(--white);
  border-radius: 5px;
  background-color: var(--primary);
  width: fit-content;
}
.news-heading {
  font-family: "Poppin semibold";
  font-size: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limits to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-desc {
  font-family: "Poppin regular";
  font-size: 16px;
  color: var(--info);
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limits to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-rows .news-big-img-wrapper {
  height: 150px;
  max-width: 200px;
  min-width: 200px;
}
.news-rows img {
  height: 150px;
  width: 200px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.8s ease;
}
.news-rows .news-heading {
  -webkit-line-clamp: 1; /* Limits to 3 lines */
}

.contact-us .paper-bottom {
  width: 100%;
  position: relative;
  z-index: -1;
  margin-top: -18%;
}
.contact-us-section {
  background-color: var(--primary);
  padding: 20px 30px;
  overflow: hidden;
}
.contact-us-section {
  position: relative;
}
.big-bubbles {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 0 50% 50% 0;
  background-color: #ffffff48;
  z-index: 2;
  top: 50px;
  left: -183px;
  animation: bounce 4s infinite ease-in-out;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-30px);
    opacity: 1;
  }
}
.medium-bubbles {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #ffffff48;
  border-radius: 50%;
  z-index: 2;
}
.semi-medium-bubbles {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff48;
  z-index: 2;
  top: -25px;
  left: 100px;
  animation: bounce 6s infinite ease-in-out;
}

.bubbles {
  position: absolute;
  bottom: 10%;
}
.logo {
  width: 200px;
}
.logo img {
  width: 200px;
}
footer {
  padding-bottom: 20px;
}
footer .logo {
  width: 200px;
}
.footer-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  padding-bottom: 50px;
  border-bottom: 2px solid black;
}
.footer-links h4 {
  font-family: "Poppin semibold";
  font-size: 24px;
  color: var(--lable);
}
.footer-links a {
  color: var(--primary);
  font-size: 16px;
  font-family: "Poppin semibold";
}
.footer-png {
  position: absolute;
  right: 0;
  bottom: 0;
}

.social-icon {
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  width: fit-content;
}
.footer-additnal p {
  font-size: 12px;
  font-family: "Poppin medium";
}
.footer-additnal span,
.footer-additnal a {
  color: var(--primary);
}

.mobile-toggle-bar {
  width: 40px;
  height: 30px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.mobile-toggle-bar span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #333;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

/* Active class for toggle effect */
.mobile-toggle-bar.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-toggle-bar.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle-bar.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.mobile-nav-items {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 1.2, 0.35, 1); /* Smooth bounce effect */
}
.mobile-nav-list {
  z-index: 10;
  background-color: var(--primary);
  padding-top: 20px;
}
.mobile-nav-items .paper-bottom {
  z-index: 1;
  width: 100%;
  position: relative;
  margin-top: -18%;
}
.mobile-nav-items a {
  font-family: "Poppin semibold";
  font-size: 16px;
  color: var(--white);
}
.active-nav-item {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.comming-soon {
  padding-top: 50px;
  padding-bottom: 50px;
}
.contact-us-card {
  background-color: var(--white);
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
}
.contact-us-card .heading {
  color: var(--primary);
}
.left-contact-us {
  color: var(--white);
  font-family: "Poppin medium";
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 700px;
}
.left-contact-us .social-icon {
  background-color: var(--white);
}
.left-contact-us .social-icon svg,
.left-contact-us .social-icon img {
  height: 30px;
  width: 30px;
  color: var(--lable);
}
.map iframe {
  height: 250px;
  border-radius: 10px;
}

.about-us-page-section {
  font-family: "Poppin medium";
  color: var(--info);
  font-size: 18px;
}
.about-us-page-section .content {
  font-family: "Poppin medium";
  color: var(--info);
}
.about-us-page-section .content span {
  font-family: "Poppin bold";
  color: var(--lable);
  font-size: 20px;
}
.our-mission-content {
  padding-left: 20px;
  font-size: 18px;
}
.our-mission-content li::marker {
  color: var(--primary);
  font-size: 1.5em; /* Increase bullet size */
  text-align: center;
}
.about-us-page-section .contact-us-section {
  border-radius: 20px;
}
.about-us-page-section .contact-us-section .contact-us-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.about-us-page-section .contact-us-section .heading {
  text-align: center;
}

.masonry {
  column-count: 5;
  column-gap: 8px;
  row-gap: 5px;
  margin-top: 50px;
}
.masonry-item {
  /* width: 100%; */
  margin-bottom: 8px;
  break-inside: avoid;
  background: #fff;
  padding: 1px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.masonry-item img {
  width: 100%;
  border-radius: 5px;
  display: block;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease-in;
}
.masonry-item:hover img {
  transform: scale(1.2);
}
.gallery-filter {
  padding: 8px 10px;
  border-radius: 8px;
  background-color: var(--white);
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppin semibold";
  color: var(--lable);
  cursor: pointer;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
  white-space: nowrap;
  width: fit-content;
}
.gallery-filter:hover {
  background-color: var(--lable);
  color: var(--white);
}
.gallery-filter-section .active {
  background-color: var(--lable);
  color: var(--white);
}
.gallery-filter-section {
  width: 90%;
  overflow-x: scroll;
}
.gallery-filter-section::-webkit-scrollbar {
  display: none;
}
.masonry-item-content {
  position: absolute;
  padding: 5px 10px;
  border-radius: 25px;
  background-color: var(--white);
  font-family: "Poppin medium";
  color: var(--lable);
  bottom: 5%;
  right: 2%;
  font-size: 14px;
}

.our-teams-page-section {
  padding: 20px;
  background-color: var(--white);
  border-radius: 10px;
}
.our-teams-message-image {
  max-width: 400px;
  width: 100%;
  max-height: 400px;
  position: relative;
  aspect-ratio: 1/1;
}
.our-teams-message-image .quote {
  position: absolute;
  top: -13px;
  left: 20px;
  height: 55px;
}
.our-teams-message-image .message-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid var(--primary);
  object-fit: cover;
}
.our-teams-page-section .message .heading {
  color: var(--lable) !important;
}
.message {
  width: 70%;
}
.disk {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: var(--lable);
}
.tags {
  font-family: "Poppin medium";
  color: var(--primary);
  font-size: 14px;
}
.tags img {
  height: 15px;
  width: 15px;
}
.message-desc {
  font-family: "Poppin medium";
  color: var(--info);
  margin-top: 10px;
}
.one-liner {
  font-family: "Poppin medium";
  font-size: 14px;
  margin-top: 10px;
}
.one-liner span {
  color: var(--primary);
}

.our-teams-member-card-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.our-teams-member-card {
  padding: 10px;
  border-radius: 10px;
  background-color: var(--white);
  border: 1px solid var(--primary);
}
.our-teams-member-card-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.our-teams-member-card .profile {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease-in;
}
.our-teams-member-card:hover .profile {
  transform: scale(1.1);
}
.our-teams-member-card .heading {
  font-size: 24px;
}

.news-page-section .news-grid {
  grid-template-columns: 2fr 1fr;
}
.news-page-section .news-grid .news-big .news-desc {
  display: flex;
  -webkit-line-clamp: 0;
  -webkit-box-orient: vertical;
  overflow: auto;
  text-overflow: none;
}
.public-disclouser-page-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.public-disclouser-card {
  width: 100%;
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.public-disclouser-card h3 {
  font-family: "Poppin semibold";
}
.not-found img {
  max-width: 600px;
  height: auto;
  width: 100%;
}
.note {
  font-size: 12px;
}
.note span {
  font-family: "Poppin semibold";
  color: var(--lable);
}
.header-image {
  position: relative;
}
@keyframes floatUpDown {
  0% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}
.counter {
  position: absolute;
  bottom: 4%;
  left: 0;
  padding: 10px;
  border-radius: 10px;
  background-color: var(--white);
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(10px);
  box-shadow: 0 4px 4px 0 #00000010;
  animation: floatUpDown 4s ease-in-out infinite;
}
.counter h3 {
  font-family: "Poppin bold";
  color: var(--primary);
  font-size: 32px;
}
.counter p {
  color: var(--lable);
  font-family: "Poppin regular";
}

.advertise-popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  border-radius: 10px;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.171);
}
.popup-wrapper {
  max-width: 600px;
  max-height: 70vh;
  background-color: var(--white);
  border-radius: 10px;
  position: relative;
  min-width: 300px;
  min-height: 300px;
}
.popup-wrapper img {
  width: 100%;
}
.cancel {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  color: white;
  font-family: "Poppin medium";
  cursor: pointer;
}
.popup-hide {
  display: none;
}
/* responsive */

@media screen and (max-width: 1200px) {
  .banner {
    flex-direction: column;
    height: auto;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .banner .left-section {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .banner .right-section img {
    width: 100%;
  }
  .banner .left-section p {
    font-size: 50px;
  }
  .backgroud-text img {
    width: 120%;
    top: 5px;
  }
  .about-us {
    flex-direction: column;
    height: auto;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .about-us img {
    width: 100%;
  }
  .about-us-content {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .our-teams-member-card-section {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 900px) {
  .manu-item {
    display: none;
  }
  .nav-btn {
    display: none;
  }
  .mobile-toggle-bar {
    display: flex;
  }
  .why-choose-us {
    flex-direction: column;
    gap: 40px;
  }
  .whychooseusSlider {
    width: 100%;
    max-width: 600px;
  }
  .awardSlider {
    width: 100%;
    max-width: 530px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .news-grid .news-heading {
    font-size: 16px;
  }
  .news-grid .news-desc {
    font-size: 14px;
  }
  .contact-us-wrapper {
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
  }
  .contact-us-content {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .our-team-heading-section-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  .our-team-heading-section {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .masonry-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 4 equal columns */
    gap: 10px; /* Space between grid items */
    width: 100%;
  }
  .contact-us-page-section {
    flex-direction: column-reverse;
    width: 100%;
    gap: 30px;
  }
  .right-contact-us {
    gap: 20px;
  }
  .right-contact-us form {
    gap: 10px;
  }
  .about-us-row {
    flex-direction: column;
  }
  .about-us-row img {
    width: 100%;
  }
  .about-us-row .heading {
    text-align: center;
    width: 100%;
  }
  .about-us-row li {
    font-size: 14px;
  }
  .quote p {
    font-size: 14px;
    text-align: center;
  }
  .contact-us-tab .contact-us-section {
    padding: 20px !important;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .contact-us-tab .heading {
    font-size: 18px;
  }
  .our-teams-member-card-section {
    grid-template-columns: 1fr 1fr;
  }
  .news-page-section .news-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .contact-us-wrapper img {
    width: 100%;
  }
  .footer-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-png {
    height: 100px;
  }
  .masonry {
    column-count: 5;
  }
  .message-section {
    flex-direction: column;
  }
  .message-section .message {
    width: 100%;
    text-align: start;
  }
  .message-section .heading {
    text-align: start !important;
  }
}
@media screen and (max-width: 650px) {
  .banner .left-section p {
    font-size: 30px;
  }
  .heading {
    font-size: 24px;
  }
  br {
    display: none;
  }
  .slider {
    width: 100%;
  }
  .rectangle {
    width: 150px;
  }
  .news-rows {
    gap: 30px;
  }
  .news-row {
    gap: 10px;
  }
  .news-row {
    flex-direction: column;
  }
  .news-rows .news-big-img-wrapper {
    height: auto;
    max-width: 100%;
    min-width: 100%;
  }
  .news-rows .news-big-img-wrapper img {
    width: 100%;
    height: auto;
  }
  .feedback-card-profile-section h4 {
    font-size: 15px;
  }
  .feedback-card-profile-section p {
    font-size: 12px;
  }
  .heading {
    text-align: center;
  }
  .why-choose-us,
  .why-choose-us-content {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .slider-arrows {
    align-items: center;
    justify-content: center;
  }
  .heighlight {
    display: none;
  }
  .heighlight-background-wrapper {
    display: none;
  }
  .headlines {
    font-size: 14px;
  }
  .feedback-card img {
    height: 60px;
    width: 60px;
  }
  .feedback-card .text-info {
    font-size: 13px;
  }
  .gallery {
    height: 70vh;
  }
  .masonry-gallery-wrapper {
    height: 70vh;
  }
  .map iframe {
    height: 100%;
  }
  .masonry {
    column-count: 3;
  }
  .our-teams-member-card-section {
    grid-template-columns: 1fr;
  }
  .our-teams-member-card-section .profile {
    height: auto;
  }
  .our-teams-member-card .heading {
    text-align: start;
  }
  .form-group {
    flex-direction: column;
  }
  .public-disclouser-card {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .public-disclouser-card h3 {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .achivement-card {
    flex-direction: column;
    text-align: center;
  }
  .heading {
    font-size: 20px;
  }
  .footer-additnal p {
    font-size: 8px;
    font-family: "Poppin medium";
  }
  .feedback-slider-section .left-overlay {
    display: none;
  }
  .feedback-slider-section .right-overlay {
    display: none;
  }
  .masonry {
    column-count: 2;
  }
  .breadcrumps {
    font-size: 12px;
  }
  .breadcrumps .active {
    color: var(--white);
    font-family: "Poppin semibold";
    font-size: 14px;
  }
}
