* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body,
  html {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
  }
  /* header section start */
  header {
    width: 100%;
  }
  .header-top {
    background-color: #111;
    height: 60px;
    /* max-width: 1400px; */
    /* margin: auto; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    font-size: 14px;
  }
  .header-top-inner {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
  }
  .header-top-inner:nth-child(2) {
    display: flex;
    gap: 50px;
    align-items: center;
  }
  .header-top-inner p {
    color: #fff;
    font-size: 14px;
  }
  .header-top-inner p i {
    color: #336aea;
  }
  .header-right {
    display: flex;
    gap: 20px;
  }
  .header-right a {
    color: #fff;
    text-decoration: none;
  }
  .header-right a:hover {
    color: #336aea;
    transition: 0.3s;
  }
  .header-right a i {
    font-size: 16px;
  }
  /* header section end */
  
  /* nav-sections start */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .logo img {
    width: 100px;
    height: 60px;
    object-fit: cover;
  }
  .nav-item {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  .nav-item a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    position: relative;
    text-transform: capitalize;
  }
  .nav-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #336aea;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  .nav-item a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .nav-item a:hover {
    color: #336aea;
    transition: 0.3s;
  }
  .nav-item2 {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #111;
  }
  .call {
    background-color: #336aea;
    color: #fff;
    padding: 15px 15px;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
  }
  .call i {
    font-size: 20px;
  }
  .number p:nth-child(1) {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .nav-toggle {
    display: none;
  }
  .nav-toggle i {
    font-size: 30px;
    color: #111;
  }
  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    z-index: 9;
  }
  
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: #111;
    display: block;
    transition: 0.3s;
    cursor: default;
    text-transform: capitalize;
  }
  
  .sidenav a:hover {
    color: #111 !important;
  }
  
  .sidenav span i {
    font-size: 50px;
    color: #111;
    cursor: default;
  }
  /* Dropdown Container in Sidenav */
  .sidenav-dropdown {
    width: 100%;
  }
  
  /* Clickable Toggle */
  .sidenav-toggle {
    padding: 8px 32px;
    font-size: 20px;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  /* Dropdown Icon Animation */
  .sidenav-toggle i {
    transition: transform 0.3s ease;
  }
  
  .sidenav-toggle.open i {
    transform: rotate(180deg);
  }
  
  /* Hidden by Default */
  .sidenav-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 48px;
    background-color: #f9f9f9;
  }
  
  /* Active Dropdown */
  .sidenav-dropdown-menu.active {
    display: flex;
  }
  
  /* Dropdown Links */
  .sidenav-dropdown-menu a {
    color: #111;
    font-size: 18px;
    padding: 6px 0;
    text-decoration: none;
    display: block;
    text-transform: sentence-case;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-toggle {
    cursor: pointer;
    position: relative;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 250px;
    z-index: 1000;
    top: 100%;
    left: 0;
    /* border-radius: 4px; */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
      rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
  
  .dropdown-menu a {
    color: #111;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
  }
  
  .dropdown-menu a:hover {
    /* background-color: #444; */
    color: #007bff;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  @media screen and (max-height: 450px) {
    .sidenav {
      padding-top: 15px;
    }
    .sidenav a {
      font-size: 16px;
    }
    .navbar-toggle .toggle-icon {
      cursor: default !important;
    }
  }
  
  .main-header {
    height: 300px;
    background-image: url("/images/page-title.jpg");
    background-size: cover;
    background-position: center;
  }
  .main-header-inner {
    max-width: 1300px;
    margin: auto;
    /* background-color: red; */
    height: 100%;
    /* z-index: 999; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main-header-inner h1 {
    color: #fff;
    font-size: 50px;
    /* padding-top: 50px; */
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
      rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
      rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  }
  .approach-box {
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    border: 1px solid #ddd;
    padding: 18px;
    border-radius: 12px;
  }
  .approach-box h1 {
    font-size: 40px;
    color: #1e40af;
    text-align: center;
    margin-bottom: 20px;
  }
  .approach-box p {
    font-size: 16px;
    color: gray;
    /* text-align: center; */
    line-height: 1.8;
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .approach-box h2{
      color: #1e40af;
  }

  .membership-section {
    background-image: url("/images/pattern-tm-4.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #111;
    padding: 40px;
     margin-top: 10px;
  }
  .membership-top {
    text-align: center;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
  
    align-items: center;
  }
  .memeber-top-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }
  .memeber-top-inner h4 {
    color: #336aea;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
  }
  .line {
    width: 45px;
    height: 3px;
    background-color: #007bff;
  }
  .membership-top h1 {
    font-size: 40px;
  }
  .membership-card-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 10px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .membership-card {
    width: 300px;
    padding: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #fff;
    border-radius: 10px;
  }
  .membership-card-top {
    text-align: center;
    line-height: 1.5;
  }
  .membership-list {
    border-top: 1px solid gray;
    padding: 8px 0px;
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 8px; */
    margin-top: 10px;
  }
  .membership-list p {
    font-size: 13px;
  }
  .membership-list i {
    color: rgb(3, 208, 3);
  }
  .membership-button a button {
    width: 100%;
    padding: 15px;
    margin-top: 30px;
    background-color: #007bff;
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    
  }
  .contact-us {
    /* height: 600px; */
    /* background-color: red; */
    background-image: url("/images/shape-tm-12.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
    margin-top: 50px;
  }
  .contact-inner {
    max-width: 1300px;
    height: 100%;
    /* background-color: red; */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .contact-left {
    /* background-color: green; */
    /* height: 50%; */
    width: 50%;
    padding: 10px;
  }
  .contact-right {
    /* background-color: yellow; */
    width: 50%;
  }
  .form-container {
    width: 100%;
    background-color: #336aea;
    height: 100%;
    background-image: url("/images//bg-shape-tm-5.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 18px;
    padding: 50px;
  }
  .form-container h1 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
  }
  .form-container p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.8;
  }
  form {
    /* background-color: violet; */
    margin-top: 50px;
  }
  .form-1st {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  .form-1st input {
    width: 50%;
    padding: 25px 15px;
    /* margin-right: 10px; */
    border: none;
    outline: none;
  }
  .form-2nd {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
  }
  .form-2nd input {
    width: 100%;
    padding: 25px 15px;
    border: none;
    outline: none;
  }
  .form-2nd input:nth-child(2) {
    padding: 40px 15px;
  }
  form button {
    background-color: #111;
    color: white;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    /* font-weight: bold; */
    margin-top: 20px;
    width: 100%;
  }
  form button:hover {
    background-color: #fff;
    transition: 0.5s;
    color: #111;
  }
  .contact-right {
    padding: 55px;
  }
  
  .contact-right-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  .contact-right-top p {
    font-size: 14px;
    font-weight: bold;
    opacity: 0.8;
    color: #336aea;
  }
  .contact-right h1 {
    color: #111;
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 990;
    opacity: 0.8;
    margin-bottom: 20px;
  }
  #contact-info {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.8;
    color: gray;
  }
  .appointment a button img {
    width: 30px;
  }
  .appointment {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
  }
  #call {
    font-size: 16px;
    line-height: 1.7;
    /* opacity: 0.9; */
    color: gray;
  }
  #call b {
    color: #111;
  }
  .appointment a {
    text-decoration: none;
  }
  .appointment a button {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    padding: 12px;
    background-color: #fff;
    border: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    cursor: pointer;
  }
  footer {
    background-image: url("/images/8.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
    margin-top: 20px;
  }
  .footer-box {
    max-width: 1300px;
    height: 100%;
    /* background-color: red; */
    margin: 0 auto;
    /* background-color: red; */
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
    /* align-items: center; */
  }
  .footer-logo img {
    width: 100px;
    height: 60px;
    object-fit: cover;
  }
  .footer-inner {
    width: 200px;
    /* background-color: gray; */
    color: #fff;
  }
  .footer-inner p {
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
    line-height: 1.5;
    opacity: 0.7;
  }
  .footer-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  .footer-social a {
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(45, 45, 45);
    border-radius: 50%;
  }
  .footer-social a i {
    color: #fff;
  }
  .footer-social a:hover {
    background-color: #336aea;
    transition: 0.5s;
  }
  .footer-inner ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .line2 {
    width: 100%;
    height: 2px;
    background-color: rgb(175, 174, 174);
    margin: 10px 0px;
  }
  .footer-inner ul li {
    list-style: none;
  }
  .footer-inner ul li a {
    text-decoration: none;
    color: gray;
    font-size: 16px;
    position: relative;
  }
  .footer-inner ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #336aea;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  .footer-inner ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .dottet-line {
    max-width: 1300px;
    height: 2px;
    /* background-color: rgb(175, 174, 174); */
    margin: 10px 0px;
    border: 1px dotted gray;
  }
  .footer-bottom p {
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
  }
  @media (max-width: 1024px) {
    .section {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 20px;
      gap: 2rem;
    }
  
    .overlay-img {
      display: none;
    }
    .main-img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }
    .experience-badge {
      display: none;
    }
  
    .left {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .right p {
      text-align: left;
    }
  }
  @media screen and (max-width: 768px) {
    .header-top {
      display: none;
    }
    .nav-item {
      display: none;
    }
    .nav-toggle {
      display: block;
    }
    .misson-box {
      width: 100%;
    }
    .mission {
      flex-direction: column;
      gap: 20px;
      padding: 10px;
      margin-top: 50px;
    }
    .contact-inner {
      flex-direction: column;
      align-items: center;
      /* padding: ; */
    }
    .contact-left {
      width: 100%;
    }
    .contact-right {
      width: 100%;
    }
    .contact-us {
      padding: 0;
    }
    .form-container,
    .contact-right {
      padding: 30px;
    }
    .appointment {
      flex-direction: column;
      align-items: center;
    }
    footer {
      padding: 10px;
    }
    .approach-box {
      padding: 10px;
      margin-top: 20px;
      margin-bottom: 20px;
    }
    .approach {
      padding: 10px;
    }
    .services-container {
      flex-direction: column;
      align-items: center;
    }
    .service-card {
      width: 90%;
    }
    .cta {
      text-align: center;
      flex-direction: column;
      align-items: center;
    }
    .service-section {
      padding: 0;
    }
    .membership-card-container {
        flex-direction: column;
        align-items: center;
      }
      .membership-card {
        width: 100%;
      }
  }
  