* {
  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-color: red;
  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: 80px;
  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;
}
.section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  max-width: 1300px;
  margin: auto;
  margin-top: 50px;
  /* background-color: red; */
}

.left {
  position: relative;
}

.main-img {
  width: 80%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 600px;
  object-fit: cover;
}

.overlay-img {
  position: absolute;
  top: 60px;
  right: -60px;
  width: 40%;
  border-radius: 12px;
  border: 6px solid #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background-color: #1e40af;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  font-size: 14px;
  animation: popIn 0.6s ease-in-out;
}
.experience-badge img {
  width: 50px;
}
.experience-badge span {
  font-size: 24px;
  font-weight: 800;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.right h5 {
  text-transform: uppercase;
  color: #1e40af;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.right h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.right p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #374151;
}

.features li i {
  color: #336aea;
  font-size: 20px;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.author-info small {
  color: #6b7280;
}

.btn {
  background-color: #1e40af;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #15359c;
}
.mission {
  /* height: 400px; */
  /* background-color: red; */
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  gap: 20px;
  justify-content: space-between;

}
.misson-box {
  /* background-color: blue; */
  /* height: 100px; */
  width: 50%;
  padding: 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;  border-radius: 5px;
}
.misson-box-inner h1{
    font-size: 1.5rem;
    /* font-weight: 800; */
    color: #1e40af;
    margin-bottom: 1rem;
}
.misson-box-inner p{
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.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;
  }
}
@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;
  }
}
