:root {
  --white-color: #ffffff;
  --primary-color: #5bc1ac;
  --secondary-color: #5a6f80;
  --section-bg-color: #f0f8ff;
  --dark-bg: #2c3e50;
  --site-footer-bg-color: #44525d;
  --custom-btn-bg-color: #597081;
  --custom-btn-bg-hover-color: #5bc1ac;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #e9eaeb;
  --body-font-family: 'Metropolis', sans-serif;
  --h1-font-size: 52px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 16px;
  --btn-font-size: 18px;
  --copyright-font-size: 14px;
  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700
}

body {
  background-color: var(--white-color)
}

.h2New {
  color: var(--secondary-color);
  font-size: var(--h2-font-size);
  letter-spacing: -2px
}

.pNew {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 25px;
  text-align: justify;
  font-weight: 400;
}

/* Check List Styling */
.check {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
}

.check li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.check li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(91, 193, 172, 0.15);
  border-left-color: var(--primary-color);
}

.check li i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.check li:nth-child(even) i {
  color: var(--secondary-color);
}

.check li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  flex: 1;
}

.section-bg {
  background-color: var(--section-bg-color)
}

.custom-block-wrap {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  transition: all .5s
}

.custom-block-wrap:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175)
}

.custom-block-body {
  padding: 30px
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.custom-block .custom-btn {
  border-radius: 0;
  display: block
}

.custom-icon {
  color: var(--secondary-color)
}

.custom-list {
  margin-bottom: 0;
  padding-left: 0
}

.custom-list-item {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px
}

.custom-text-box {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  margin-bottom: 24px;
  padding: 40px
}

.custom-text-box-image {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover
}

.custom-text-box-icon {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  line-height: 30px
}

.custom-btn {
  background: var(--secondary-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 15px 25px;
  text-decoration: none;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  color: var(--custom-btn-bg-color);
  margin-top: 8px;
  padding: 12px 25px
}

.custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color)
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color)
}

.navbar {
  background: var(--white-color);
  z-index: 9;
  padding-top: 0;
  padding-bottom: 0
}


.logo {
  width: 80px;
  height: auto
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 20px
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px
}



.dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border: 0;
  padding: 0;
  margin-top: 20px
}

.dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px
}

.dropdown-menu li:last-child .dropdown-item {
  padding-top: 0
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
  background: 0 0;
  color: var(--primary-color)
}

.mail {
  text-decoration: none
}

@media screen and (min-width:992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: 0
}

.navbar-toggler:focus {
  outline: 0;
  box-shadow: none
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background: 0 0
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:after,
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:before {
  transition: top .3s 50ms ease, -webkit-transform .3s 350ms ease;
  transition: top .3s 50ms ease, transform .3s 350ms ease;
  transition: top .3s 50ms ease, transform .3s 350ms ease, -webkit-transform .3s 350ms ease;
  top: 0
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:before {
  transform: rotate(45deg)
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:after {
  transform: rotate(-45deg)
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms .3s ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative
}

.navbar-toggler .navbar-toggler-icon:after,
.navbar-toggler .navbar-toggler-icon:before {
  transition: top .3s 350ms ease, -webkit-transform .3s 50ms ease;
  transition: top .3s 350ms ease, transform .3s 50ms ease;
  transition: top .3s 350ms ease, transform .3s 50ms ease, -webkit-transform .3s 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: ''
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px
}

.site-header {
  background: var(--primary-color);
  padding-top: 15px;
  padding-bottom: 10px
}

.site-header .social-icon-link,
.site-header p,
.site-header p a {
  color: var(--white-color);
  font-size: var(--copyright-font-size)
}

.site-header .social-icon {
  text-align: right
}

.site-header .social-icon-link {
  background: 0 0;
  width: inherit;
  height: inherit;
  line-height: inherit;
  margin-right: 15px
}

.hero-section-full-height {
  height: 680px;
  min-height: 680px;
  position: relative
}

.carousel:hover .carousel-control-next-icon,
.carousel:hover .carousel-control-prev-icon {
  opacity: 1
}

#hero-slide .carousel-item {
  height: 680px;
  min-height: 680px
}

#hero-slide .carousel-caption {
  background: var(--white-color);
  clip-path: polygon(100% 100%, 100% 150px, 0 100%);
  color: var(--secondary-color);
  top: 1px;
  bottom: -1px;
  right: 0;
  left: auto;
  text-align: right;
  min-width: 680px;
  min-height: 680px;
  padding: 100px 100px 50px 100px
}

.carousel-image {
  display: block;
  width: 100%;
  min-height: 680px
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 1
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  background-size: 60% 60%;
  width: 80px;
  height: 80px;
  opacity: 0;
  transition: all .5s
}

.carousel-control-next-icon:hover,
.carousel-control-prev-icon:hover {
  background-color: var(--primary-color)
}

.featured-block {
  text-align: center;
  transition: all .5s ease;
  min-height: 256px;
  padding: 15px
}

.featured-block:hover {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175)
}

.featured-block:hover .featured-block-image {
  transform: scale(.75)
}

.featured-block-image {
  display: block;
  margin: auto;
  transition: all .5s
}

.featured-block:hover .featured-block-text {
  margin-top: 0
}

.featured-block-text {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  margin-top: 20px;
  transition: all .5s
}

.about-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 350px;
  height: 400px;
  object-fit: cover
}

.custom-text-block {
  padding: 60px 40px
}

.news-block-top {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden
}

.news-block-info {
  padding-top: 10px;
  padding-bottom: 10px
}

.news-block-title-link {
  color: var(--dark-color)
}

.author-comment-link {
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold)
}

.cta-section {
  position: relative;
  overflow: hidden
}

.cta-section::before {
  content: "";
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -100px;
  left: -30px;
  margin: auto;
  width: 200px;
  height: 200px
}

.cta-section::after {
  content: "";
  border: 20px solid var(--custom-btn-bg-color);
  border-radius: 50%;
  position: absolute;
  bottom: -100px;
  right: 0;
  left: 0;
  margin: auto;
  width: 150px;
  height: 150px
}

.carousel-name-title {
  font-weight: var(--font-weight-semibold)
}

.contact-section {
  background: var(--white-color)
}

.contact-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 40px
}

.contact-info-wrap {
  padding-top: 40px
}

.contact-image-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  width: 100%
}

.custom-form .form-control {
  background-color: var(--section-bg-color);
  box-shadow: none;
  border: 0;
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: 0
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: var(--secondary-color)
}

.custom-form label {
  margin-bottom: 10px
}

.custom-form .form-check-group {
  margin-bottom: 20px
}

.custom-form .input-group-text {
  background: var(--secondary-color);
  border: 0;
  color: var(--white-color)
}

.custom-form button[type=submit] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all .3s;
  margin-bottom: 0
}

.custom-form button[type=submit]:focus,
.custom-form button[type=submit]:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent
}

.contact-form .form-control {
  background: var(--white-color)
}

@media screen and (min-width:1600px) {
  .featured-block {
    min-height: inherit
  }
}

@media screen and (max-width:1170px) {
  #hero-slide .carousel-image {
    height: 100%;
    object-fit: cover
  }
}

@media screen and (max-width:580px) {

  #hero-slide .carousel-item,
  .carousel-image,
  .hero-section-full-height {
    min-height: 520px
  }

  #hero-slide .carousel-caption {
    clip-path: polygon(100% 100%, 100% 100px, 0 100%);
    padding-right: 50px;
    min-width: inherit;
    min-height: inherit
  }
}

@media screen and (max-width:480px) {
  h1 {
    font-size: 40px
  }

  h2 {
    font-size: 28px
  }

  h3 {
    font-size: 26px
  }

  h4 {
    font-size: 22px
  }

  h5 {
    font-size: 20px
  }

  #hero-slide .carousel-caption {
    min-width: inherit;
    padding-bottom: 30px
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    width: 45px;
    height: 45px
  }
}

.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  padding: 30px 0;
  margin-top: 0;
  border: none;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  background: var(--white-color)
}

.mega-menu .container {
  max-width: 1200px
}

.mega-menu-title a{
  text-decoration: none;
  color: var(--primary-color);
  font-size: medium;
  font-weight: var(--font-weight-bold);
  margin-bottom: 15px;
  padding-bottom: 0px;
  border-bottom: 2px solid var(--primary-color);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.mega-menu-list li {
  margin-bottom: 8px
}

.mega-menu-link {
  color: var(--p-color);
  font-size: medium;
  font-weight: var(--font-weight-normal);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: all .3s ease;
  border-radius: var(--border-radius-small);
  padding-left: 10px;
  margin-left: -10px
}

.mega-menu-link:hover {
  color: var(--primary-color);
  background-color: var(--section-bg-color);
  transform: translateX(5px)
}

.mega-menu-link:hover i {
  transform: scale(1.2)
}

.mega-menu-banner {
  background: linear-gradient(135deg, var(--primary-color) 0, var(--secondary-color) 100%);
  border-radius: var(--border-radius-medium);
  padding: 25px 30px;
  color: var(--white-color);
  margin-top: 20px
}

.mega-menu-banner h5 {
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px
}

.mega-menu-banner p {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 0;
  font-size: 14px
}

.mega-menu-banner .custom-btn {
  background: var(--white-color);
  color: var(--primary-color);
  border: 2px solid var(--white-color);
  font-size: 14px;
  padding: 10px 20px;
  font-weight: var(--font-weight-semibold)
}

.mega-menu-banner .custom-btn:hover {
  background: 0 0;
  color: var(--white-color);
  border-color: var(--white-color)
}

.dropdown:hover .mega-menu {
  display: block
}

@media screen and (max-width:991px) {
  .mega-in {
    overflow-x: hidden;
    padding: 0 0 0 14px;
    overflow-y: scroll;
    height: 200px;
    width: 100%
  }

  .mega-menu {
    padding: 20px 0
  }

  .mega-menu .container {
    padding: 0 15px
  }

  .mega-menu-title {
    font-size: 18px;
    margin-bottom: 12px
  }

  .mega-menu-link {
    font-size: 15px;
    padding: 10px 0
  }

  .mega-menu-banner {
    padding: 20px;
    text-align: center
  }

  .mega-menu-banner .custom-btn {
    margin-top: 15px;
    display: inline-block
  }
}

@media screen and (max-width:767px) {
  .mega-menu {
    padding: 15px 0
  }

  .mega-menu .col-md-6 {
    margin-bottom: 25px
  }

  .mega-menu-title {
    font-size: 16px;
    margin-bottom: 10px
  }

  .mega-menu-link {
    font-size: 14px;
    padding: 8px 0
  }

  .mega-menu-banner {
    padding: 15px
  }

  .mega-menu-banner h5 {
    font-size: 18px
  }

  .mega-menu-banner p {
    font-size: 13px
  }
}

.mega-menu {
  animation: fadeInDown .3s ease-out
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.nav-item.dropdown.position-static .dropdown-menu {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%
}

@media screen and (max-width:991px) {
  .nav-item.dropdown.position-static .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px
  }

  .mega-menu {
    box-shadow: none;
    border: 1px solid var(--border-color)
  }
}

.section-header {
  text-align: center;
  margin-bottom: 60px
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
  position: relative
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  opacity: .8;
  max-width: 600px;
  margin: 0 auto
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px
}

.content-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  border-left: 5px solid var(--primary-color);
  transition: transform .3s ease, box-shadow .3s ease
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15)
}

.card-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700
}

.card-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555
}

.vision-list {
  list-style: none;
  padding: 0
}

.vision-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative
}

.vision-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem
}

.mission-list {
  list-style: none;
  padding: 0
}

.mission-list li {
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  transition: background-color .3s ease
}

.mission-list li:hover {
  background: #e8f5f3
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px
}

.objective-item {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 25px;
  border-radius: 12px;
  transition: transform .3s ease
}

.objective-item:hover {
  transform: scale(1.05)
}

.objective-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: .9
}

.objective-text {
  font-size: 1rem;
  line-height: 1.6
}

.highlight-text {
  color: var(--primary-color);
  font-weight: 600
}

.company-name {
  color: var(--secondary-color);
  font-weight: 700
}

@media (max-width:768px) {


  .section-title {
    font-size: 2.5rem
  }

  .content-card {
    padding: 30px 20px
  }

  .card-title {
    font-size: 1.7rem;
    flex-direction: column;
    text-align: center;
    gap: 10px
  }

  .objectives-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:480px) {
  .section-title {
    font-size: 2rem
  }

  .card-title {
    font-size: 1.5rem
  }

  .card-content {
    font-size: 1rem
  }
}

.footer {
  background: linear-gradient(135deg, var(--dark-bg) 0, var(--secondary-color) 100%);
  color: var(--light-text);
  padding: 60px 0 0;
  margin-top: auto
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px
}

.footer-section h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px
}

.footer-section p {
  margin-bottom: 15px;
  color: #bdc3c7;
  line-height: 1.8
}

.footer-section ul {
  list-style: none
}

.footer-section ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px
}

.footer-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color .3s ease
}

.footer-section ul li a:hover {
  color: var(--primary-color)
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0
}

.contact-text {
  color: #bdc3c7
}

.contact-text strong {
  color: var(--light-text);
  display: block
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all .3s ease;
  font-weight: 700
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px)
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  text-align: center
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px
}

.footer-bottom p {
  color: #95a5a6;
  margin: 0
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap
}

.footer-links a {
  color: #95a5a6;
  text-decoration: none;
  transition: color .3s ease
}

.footer-links a:hover {
  color: var(--primary-color)
}

.company-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px
}

@media (max-width:768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center
  }

  .footer-links {
    justify-content: center
  }

  .social-links {
    justify-content: center
  }
}

@media (max-width:480px) {
  .footer {
    padding: 40px 0 0
  }

  .footer-content {
    padding: 0 15px
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px
  }
}

:root {
  --shobhan-primary: #5bc1ac;
  --shobhan-secondary: #5a6f80;
  --shobhan-primary-light: #7dd0be;
  --shobhan-primary-dark: #4aa896;
  --shobhan-secondary-light: #6d8294;
  --shobhan-secondary-dark: #485862;
  --shobhan-white: #ffffff;
  --shobhan-light-gray: #f8fafb;
  --shobhan-gray: #e2e8f0;
  --shobhan-dark-gray: #64748b;
  --shobhan-success: #10b981;
  --shobhan-error: #ef4444;
  --shobhan-warning: #f59e0b;
  --shobhan-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shobhan-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shobhan-gradient: linear-gradient(135deg, var(--shobhan-primary) 0%, var(--shobhan-primary-dark) 100%);
  --shobhan-gradient-secondary: linear-gradient(135deg, var(--shobhan-secondary) 0%, var(--shobhan-secondary-dark) 100%)
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

.shobhan-enviro-body {
  font-family: Inter, sans-serif;
  line-height: 1.6;
  color: var(--shobhan-secondary);
  background: linear-gradient(135deg, #f0f9ff 0, #e0f2fe 50%, #f8fafc 100%);
  min-height: 100vh
}

.shobhan-enviro-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem
}

.shobhan-enviro-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: shobhanFadeInUp 1s ease-out
}

.shobhan-enviro-main-title {
  font-family: Poppins, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--shobhan-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.shobhan-enviro-subtitle {
  font-size: 1.3rem;
  color: var(--shobhan-secondary);
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
  opacity: .9
}

.shobhan-enviro-tagline {
  font-size: 1.1rem;
  color: var(--shobhan-dark-gray);
  margin-top: 1rem;
  font-style: italic
}

.shobhan-enviro-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start
}

.shobhan-enviro-info-section {
  animation: shobhanSlideInLeft 1s ease-out .3s both
}

.shobhan-enviro-form-section {
  animation: shobhanSlideInRight 1s ease-out .5s both
}

.shobhan-enviro-director-card {
  background: var(--shobhan-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shobhan-shadow);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: all .3s ease
}

.shobhan-enviro-director-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--shobhan-gradient)
}

.shobhan-enviro-director-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shobhan-shadow-lg)
}

.shobhan-enviro-director-title {
  font-family: Poppins, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--shobhan-secondary-dark);
  margin-bottom: .5rem
}

.shobhan-enviro-director-name {
  font-size: 1.3rem;
  color: var(--shobhan-primary);
  font-weight: 600;
  margin-bottom: .3rem
}

.shobhan-enviro-company-name {
  font-size: 1.1rem;
  color: var(--shobhan-secondary);
  font-weight: 500;
  margin-bottom: 1.5rem
}

.shobhan-enviro-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  transition: all .3s ease;
  cursor: pointer
}

.shobhan-enviro-contact-item:hover {
  background: var(--shobhan-light-gray);
  transform: translateX(5px)
}

.shobhan-enviro-contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--shobhan-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--shobhan-white);
  font-size: 1.2rem;
  transition: all .3s ease
}

.shobhan-enviro-contact-item:hover .shobhan-enviro-contact-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(91, 193, 172, .3)
}

.shobhan-enviro-contact-details h4 {
  font-weight: 600;
  color: var(--shobhan-secondary-dark);
  margin-bottom: .2rem
}

.shobhan-enviro-contact-details p {
  color: var(--shobhan-dark-gray);
  font-size: .95rem
}

.shobhan-enviro-contact-details a {
  color: var(--shobhan-primary);
  text-decoration: none;
  transition: color .3s ease
}

.shobhan-enviro-contact-details a:hover {
  color: var(--shobhan-primary-dark)
}

.shobhan-enviro-social-section {
  background: var(--shobhan-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shobhan-shadow);
  text-align: center
}

.shobhan-enviro-social-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--shobhan-secondary-dark);
  margin-bottom: 1.5rem
}

.shobhan-enviro-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem
}

.shobhan-enviro-social-links i {
  z-index: 1
}

.shobhan-enviro-social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shobhan-white);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all .3s ease;
  position: relative;
  overflow: hidden
}

.shobhan-enviro-social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  transition: all .3s ease
}

.shobhan-enviro-social-link.linkedin::before {
  background: linear-gradient(135deg, #0077b5, #004182)
}

.shobhan-enviro-social-link.twitter::before {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9)
}

.shobhan-enviro-social-link.facebook::before {
  background: linear-gradient(135deg, #1877f2, #0d5aa7)
}

.shobhan-enviro-social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2)
}

.shobhan-enviro-form-container {
  background: var(--shobhan-white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shobhan-shadow);
  position: relative;
  overflow: hidden
}

.shobhan-enviro-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--shobhan-gradient)
}

.shobhan-enviro-form-title {
  font-family: Poppins, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--shobhan-secondary-dark);
  margin-bottom: .5rem
}

.shobhan-enviro-form-description {
  color: var(--shobhan-dark-gray);
  margin-bottom: 2rem;
  font-size: 1.1rem
}

.shobhan-enviro-form-group {
  margin-bottom: 1.5rem;
  position: relative
}

.shobhan-enviro-form-label {
  display: block;
  font-weight: 600;
  color: var(--shobhan-secondary-dark);
  margin-bottom: .5rem;
  font-size: .95rem
}

.shobhan-enviro-form-input,
.shobhan-enviro-form-select,
.shobhan-enviro-form-textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid var(--shobhan-gray);
  border-radius: 12px;
  font-size: 1rem;
  transition: all .3s ease;
  background: var(--shobhan-white);
  font-family: inherit
}

.shobhan-enviro-form-input:focus,
.shobhan-enviro-form-select:focus,
.shobhan-enviro-form-textarea:focus {
  outline: 0;
  border-color: var(--shobhan-primary);
  box-shadow: 0 0 0 3px rgba(91, 193, 172, .1);
  transform: translateY(-2px)
}

.shobhan-enviro-form-textarea {
  resize: vertical;
  min-height: 120px
}

.shobhan-enviro-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.shobhan-enviro-submit-btn {
  background: var(--shobhan-gradient);
  color: var(--shobhan-white);
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 1rem
}

.shobhan-enviro-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transition: left .6s ease
}

.shobhan-enviro-submit-btn:hover::before {
  left: 100%
}

.shobhan-enviro-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(91, 193, 172, .4)
}

.shobhan-enviro-submit-btn:active {
  transform: translateY(0)
}

.shobhan-enviro-submit-btn.loading {
  pointer-events: none;
  opacity: .8
}

.shobhan-enviro-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: shobhanSpin 1s linear infinite;
  margin-right: .5rem
}

.shobhan-enviro-validation-message {
  font-size: .875rem;
  margin-top: .5rem;
  padding: .5rem;
  border-radius: 6px;
  display: none
}

.shobhan-enviro-validation-message.error {
  color: var(--shobhan-error);
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .2)
}

.shobhan-enviro-validation-message.success {
  color: var(--shobhan-success);
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .2)
}

.shobhan-enviro-form-input.error,
.shobhan-enviro-form-select.error,
.shobhan-enviro-form-textarea.error {
  border-color: var(--shobhan-error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .1)
}

.shobhan-enviro-form-input.success,
.shobhan-enviro-form-select.success,
.shobhan-enviro-form-textarea.success {
  border-color: var(--shobhan-success);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .1)
}

@keyframes shobhanFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes shobhanSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes shobhanSlideInRight {
  from {
    opacity: 0;
    transform: translateX(50px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes shobhanSpin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes shobhanPulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .7
  }
}

@keyframes shobhanFloat {
  0% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-20px) rotate(180deg)
  }

  100% {
    transform: translateY(0) rotate(360deg)
  }
}

@media (max-width:1024px) {
  .shobhan-enviro-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .shobhan-enviro-main-title {
    font-size: 2.5rem
  }
}

@media (max-width:768px) {
  .shobhan-enviro-container {
    padding: 1rem
  }

  .shobhan-enviro-main-title {
    font-size: 2rem
  }

  .shobhan-enviro-subtitle {
    font-size: 1.1rem
  }

  .shobhan-enviro-director-card,
  .shobhan-enviro-form-container {
    padding: 1.5rem
  }

  .shobhan-enviro-form-row {
    grid-template-columns: 1fr
  }

  .shobhan-enviro-social-links {
    gap: .5rem
  }

  .shobhan-enviro-social-link {
    width: 50px;
    height: 50px;
    font-size: 1.2rem
  }
}

@media (max-width:480px) {
  .shobhan-enviro-main-title {
    font-size: 1.8rem
  }

  .shobhan-enviro-contact-item {
    flex-direction: column;
    text-align: center;
  }

  .shobhan-enviro-contact-icon {
    margin-right: 0;
    margin-bottom: .5rem
  }
}
.contact-item a{
text-decoration: none;
}
.floating-whatsapp-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366; /* WhatsApp green */
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  background-color: #128C7E; /* Darker green on hover */
}