@import url("https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
:root {
  --gradient: linear-gradient(120deg, #00081c 0%, #0035a3 100%);
  --blue: #1e90ff;
  --white: #ffffff;
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Yantramanav', sans-serif;
  --theme-color: #22b6af;
  --theme-color2: #FDA31B;
  --theme-color-light: rgb(17, 110, 99, 0.09);
  --theme-bg-light: #F2F3F5;
  --body-text-color: #575757;
  --color-white: #ffffff;
  --color-dark: #19232B;
  --hero-overlay-color: #000000;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #012758;
  --footer-bg2: #1a1926;
  --footer-text-color: #F5FAFF;
}

a {
  color: var(--color-dark);
  display: inline-block;
  text-decoration: none;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-weight: normal;
  line-height: 1.8;
}

.menu_fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header_style {
  background: #fff;
}
.header_style .logo_img {
  height: 90px;
}
.header_style .dropdown-menu.show {
  /* Safari 4.0 - 8.0 */
  animation: fadeIn 0.3s alternate;
}
.header_style .nav-item.dropdown.dropdown-mega {
  position: static;
}
.header_style .nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 5%;
}
.header_style .navbar-toggler {
  border: none;
  padding: 10px;
  outline: none;
  background: #000;
}
.header_style .navbar-toggler:focus {
  box-shadow: none;
}
.header_style .navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}
.header_style .navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}
.header_style .navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}
.header_style .navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}
.header_style .navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.header_style .navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}
.header_style .navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}
.header_style .navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}
.header_style .navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}
.header_style .navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}
.header_style .icons {
  display: inline-flex;
  margin-left: auto;
}
.header_style .icons a {
  transition: all 0.2s ease-in-out;
  padding: 0.2rem 0.4rem;
  color: #ccc !important;
  text-decoration: none;
}
.header_style .icons a:hover {
  color: white;
  text-shadow: 0 0 30px white;
}
@media (min-width: 992px) {
  @keyframes fadeSlideIn {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .header_style .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    animation: fadeSlideIn 0.3s ease forwards;
  }
  .header_style .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header_style .dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
  }
  .header_style .dropstart .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .header_style .dropdown:hover > .dropdown-menu,
  .header_style .dropend:hover > .dropdown-menu,
  .header_style .dropstart:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    animation: fadeSlideIn 0.3s ease forwards;
  }
}
.header_style .nav-link {
  text-transform: uppercase;
  color: #000;
}

@media screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    gap: 15px;
  }
  .navbar-brand img {
    width: auto !important;
    height: 50px !important;
  }
  .menu_style {
    background: #fff !important;
    padding: 0;
  }
  .menu_style .nav-link {
    color: var(--color-dark);
  }
  .menu_style .nav-link:hover {
    color: var(--theme-color);
  }
}
.banner_home {
  margin: 0;
}
.banner_home .carousel-item img {
  max-height: 100vh !important;
}
.banner_home .carousel-item {
  position: relative;
}
.banner_home .carousel-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}
.banner_home .carousel-caption {
  bottom: 10%;
  z-index: 2;
}
.banner_home {
  /* Animation */
}
.banner_home .animate-title {
  animation: slideDown 1s ease-in-out;
  font-size: 2.5em;
}
.banner_home .animate-text {
  animation: fadeUp 1.5s ease-in-out;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (min-width: 1292px) {
  .banner_home .carousel-item img {
    height: 70vh !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.header-top {
  padding: 8px 0;
  position: relative;
  background: #142941;
  color: #fff;
  z-index: 1;
}

.header-top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.header-top-contact ul li {
  display: flex;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 20px;
}
.header-top-contact ul li:last-child {
  border: none;
  padding-right: 0;
}
.header-top-contact ul li a {
  color: var(--color-white);
  font-weight: 400;
}
.header-top-contact ul li a i {
  color: var(--theme-color2);
  margin-right: 5px;
}

.header-top-social span {
  color: var(--color-white);
  font-weight: 500;
}
.header-top-social a {
  width: 25px;
  height: 25px;
  line-height: 25px;
  color: var(--color-white);
  font-size: 14px;
  text-align: center;
  margin-left: 5px;
  border-radius: 50px;
  transition: all 0.5s ease-in-out;
}
.header-top-social a:hover {
  color: var(--theme-color);
  background: var(--color-white);
}

@media all and (max-width: 1199px) {
  .header-top-contact ul {
    gap: 10px;
  }
  .header-top-social a {
    width: 34px;
    height: 34px;
    line-height: 37px;
    margin-left: 0;
  }
}
.site-heading {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color2);
  position: relative;
  border-bottom: 2px solid var(--theme-color2);
}

.site-title-tagline i {
  line-height: 0;
  font-size: 20px;
}

.site-title {
  font-weight: 800;
  text-transform: capitalize;
  font-size: 3em;
  color: var(--color-dark);
  position: relative;
}

.site-title span {
  color: var(--theme-color2);
}

@media all and (max-width: 1199px) {
  .fa-negative {
    margin-top: -50px;
    margin-left: 20px;
  }
  .facilities-item.active::before {
    transform: scale(1);
  }
}
.theme-btn {
  font-size: 14px;
  color: #222;
  padding: 14px 2em;
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  box-shadow: var(--box-shadow);
  border: var(--theme-color) 2px solid;
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--theme-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.about_home {
  position: relative;
  padding: 3em 0;
}
.about_home p {
  color: var(--body-text-color);
}
.about_home .img1 img {
  max-width: 90%;
  border-radius: 1em;
}
.about_home .img2 {
  position: absolute;
  right: 0px;
  bottom: 40px;
  max-width: 191px;
  animation: jump-2 5s linear infinite;
  background-color: #22b6af;
  text-align: center;
  padding: 1em;
  width: 140px;
  color: #fff;
}
.about_home .img2 h4 {
  font-size: 3.5em;
  margin: 0;
}
.about_home .img2 p {
  color: #fff;
}

@media (max-width: 768px) {
  .about_home .img1 img {
    max-width: 90%;
  }
  .about_home .img2 {
    text-align: right;
  }
  .about_home .img2 img {
    max-width: 70%;
  }
}
.shape-area {
  margin: 0;
}
.shape-area .one {
  position: absolute;
  right: 0;
  bottom: 0%;
  animation: jump-2 8s linear infinite;
}
.shape-area .two {
  position: absolute;
  left: 0;
  top: 20%;
  animation: jump-2 12s linear infinite;
}

@keyframes jump-2 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 30px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.footer-area {
  background: #e9f8f8;
  position: relative;
  z-index: 1;
  padding: 3em 0 0 0;
  border-top: 10px solid #22b6af;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 220px;
  margin-bottom: 25px;
}

.copyright {
  position: relative;
}

.copyright .copyright-wrapper {
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1960784314);
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: var(--theme-color);
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: var(--theme-color);
}

.copyright .copyright-text {
  color: #142441;
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--theme-color);
  font-weight: 500;
}

.footer-widget-title {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.footer-widget-title::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 2px;
  background: rgb(0, 0, 0);
  bottom: 0;
  left: 0;
  z-index: -1;
}
.footer-widget-title::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--theme-color);
  bottom: 0;
  left: 15px;
  z-index: -1;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}
.footer-list li {
  display: block;
}

.footer-list li a {
  color: #142441;
  transition: var(--transition);
}
.footer-list li a i {
  margin-right: 5px;
  color: #142441;
}
.footer-list li a p {
  color: #142441;
  padding-right: 18px;
  margin-bottom: 20px;
}
.footer-list li a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}
.footer-social li {
  display: block;
}

.footer-contact {
  margin: 0;
  padding: 0;
}
.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #142441;
  font-size: 16px;
  margin-bottom: 15px;
}
.footer-contact li i {
  width: 30px;
  font-size: 16px;
  text-align: center;
  transition: 0.3s;
  color: var(--theme-color);
}
.footer-contact li a {
  color: #142441;
  transition: 0.3s;
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }
  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}
@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
  .copyright .copyright-wrapper {
    text-align: center;
  }
  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
  .copyright::before {
    width: 40%;
  }
  .site-title {
    font-size: 2em;
  }
  .site-title-tagline {
    font-size: 14px;
  }
  .home_about h1 {
    font-size: 2em;
  }
  .menu_style .offcanvas {
    max-width: 80%;
  }
}
.navbar-brand img {
  width: auto !important;
  height: 80px !important;
}

@media (max-width: 768px) {
  .choose-img {
    margin-left: 10px;
  }
}
.just_c {
  padding: 4em 0;
  background: #e9f8f8;
}
.just_c .box-ic .icon_bx span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 60px;
  background: var(--theme-color);
  border-radius: 50%;
}
.just_c .box-ic .icon_bx img {
  filter: brightness(0) invert(1);
  transition: 0.3s;
  width: 32px;
}
.just_c .img_right {
  position: relative;
}
.just_c .img_right .icon1 {
  position: absolute;
  top: 20%;
  left: 0px;
  transform: translateY(-50%);
  max-width: 251px;
  z-index: 10;
  animation: jump-2 5s linear infinite;
}
.just_c .img_right .icon1 img {
  max-width: 80%;
  border: #fff 6px solid;
  border-radius: 8px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.just_c .img_right .icon2 {
  max-width: 100%;
  text-align: right;
}
.just_c .img_right .icon2 img {
  max-width: 80%;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .just_c .img_right .icon1 {
    max-width: 251px;
  }
  .just_c .img_right .icon1 img {
    max-width: 50%;
  }
  .just_c .img_right .icon2 {
    max-width: 100%;
  }
  .just_c .img_right .icon2 img {
    max-width: 80%;
  }
}
.service_bx {
  margin-bottom: 3em;
  padding: 3em 0;
}
.service_bx .icon_1 {
  background: var(--theme-color);
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  margin: auto;
  border-radius: 100%;
  margin-bottom: 1em;
  transition: 0.3s;
}
.service_bx .icon_1 img {
  width: 62px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}
.service_bx h2 {
  font-size: 3em;
}
.service_bx .card {
  transition: 0.3s;
}
.service_bx .card:hover {
  transform: translateY(-10px);
}
.service_bx .card:hover .icon_1 {
  background: #000;
  transform: scale(1.1);
}
.service_bx .card:hover .icon_1 img {
  filter: brightness(0) invert(1);
}

.breadcrumb-dark {
  background-color: #222;
  padding: 1.75rem 1rem;
}
.breadcrumb-dark h1 {
  color: #fff;
}
.breadcrumb-dark .breadcrumb {
  margin-bottom: 0;
  background-color: transparent;
}
.breadcrumb-dark .breadcrumb-item {
  font-size: 0.95rem;
}
.breadcrumb-dark .breadcrumb-item a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-dark .breadcrumb-item a:hover {
  color: #ffffff;
}
.breadcrumb-dark .breadcrumb-item.active {
  color: #ffffff;
  font-weight: 500;
}
.breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before {
  color: #6c757d;
}

.contact-section {
  padding: 80px 0;
  background: #f9fafc;
}
.contact-section h2, .contact-section h3 {
  font-weight: 600;
  color: #1f3c88;
  margin-bottom: 20px;
}
.contact-section p {
  color: #2d2d2d;
  font-size: 15px;
}

.form-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}
.form-card:hover {
  transform: translateY(-5px);
}

.form-label {
  font-weight: 500;
  font-size: 14px;
  color: #2d2d2d;
}

.form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  padding: 12px 14px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.form-control:focus,
.form-select:focus {
  border-color: #4b70e2;
  box-shadow: 0 0 0 3px rgba(75, 112, 226, 0.15);
}

textarea.form-control {
  resize: none;
}

.contact-info {
  background: #1f3c88;
  color: #fff;
  padding: 40px;
  border-radius: 12px;
}
.contact-info p {
  margin-bottom: 15px;
  font-size: 15px;
}
.contact-info strong {
  color: #fff;
}

.banner_home .single-banner {
  position: relative;
  overflow: hidden;
}
.banner_home .single-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.banner_home .single-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.banner_home .single-banner .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}
.banner_home .single-banner .banner-text h2 {
  font-size: 42px;
  font-weight: 700;
}
.banner_home .single-banner .banner-text h2 .typing-text {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #fff;
  width: 0;
  display: inline-block;
  animation: typing 4s steps(30, end) forwards, blink 0.7s infinite;
}
.banner_home .single-banner .banner-text p {
  font-size: 18px;
  margin: 20px 0;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 4s;
}
.banner_home .single-banner .banner-text .banner-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ffcc00;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: btnFade 1s ease forwards;
  animation-delay: 4.5s;
}
.banner_home .single-banner .banner-text .banner-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(0) scale(1.05);
}

/* Typing */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
/* Fade Effects */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes btnFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Typing Animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* Cursor Blink */
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
/* Paragraph Fade */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .banner_home .single-banner .banner-text h2 {
    font-size: 26px;
  }
  .banner_home .single-banner .banner-text p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .banner_home .single-banner .banner-text h2 {
    font-size: 1.5em;
    font-weight: 700;
    padding-top: 1em;
  }
  .banner_home .single-banner .banner-text p {
    font-size: 14px;
    margin: 0px 0;
    line-height: normal;
  }
  .banner_home .single-banner .banner-text .btn-outline-light {
    padding: 10px 30px !important;
    margin-bottom: 1em;
    margin-top: 1em;
  }
}
.owl-carousel .item {
  height: 100px;
}

.owl-carousel .item img {
  width: 100%;
  height: 90px;
  max-width: 100%;
  max-height: 100%;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}

.vertical-accordion {
  display: flex;
  height: 420px;
  gap: 10px;
}

.v-item {
  flex: 0.5;
  background: #d8d3ce;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v-item.active {
  flex: 5;
  background: #5f5751;
  color: #fff;
}

.v-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 18px;
  letter-spacing: 1px;
}

.v-content {
  opacity: 0;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  transition: 0.3s;
}

.v-item.active .v-title {
  display: none;
}

.v-item.active .v-content {
  opacity: 1;
}

.v-content h3 {
  font-size: 40px;
  font-weight: 600;
}

.philosophy-section .section-title {
  font-weight: 600;
  color: #0a2540;
}
.philosophy-section p {
  color: #555;
  line-height: 1.6;
}
.philosophy-section .belief-list {
  padding-left: 18px;
}
.philosophy-section .belief-list li {
  margin-bottom: 8px;
  color: #444;
}
.philosophy-section .framework-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 22px;
  height: 100%;
  transition: all 0.25s ease;
}
.philosophy-section .framework-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #0a2540;
}
.philosophy-section .framework-card p {
  font-size: 15px;
  margin: 0;
}
.philosophy-section .framework-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.product_bx {
  padding: 3em 0;
}
.product_bx .product_inn {
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.product_bx .product_inn img {
  max-width: 100%;
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.product_bx .product_inn h5 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
  transition: color 0.3s ease;
}
.product_bx .product_inn:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.product_bx .product_inn:hover h5 {
  color: var(--theme-color);
}
.product_bx .product_inn:hover img {
  transform: scale(1.05);
}/*# sourceMappingURL=styles.css.map */