/* @import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

:root {
  --heading-font: "Poppins", sans-serif;
  --body-font: "Poppins", sans-serif;
  --theme-color: #dab145;
  --theme-bg-light: #f9f9f9;
  --body-text-color: #333435;
  --color-white: #ffffff;
  --color-dark: #000000;
  --color-green: #0b5e56;
  --color-blue: #0049d0;
  --color-yellow: #f9cc47;
  --hero-overlay-color: #01060f;
  --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 0.5s ease-in-out;
  --transition2: all 0.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: #111111;
  --footer-bg2: #181818;
  --footer-text-color: #f5faff;
}

body {
  padding-top: 140px;
  color: var(--body-text-color);
  overflow-x: hidden !important;
  font-family: var(--body-font);
}

@media (max-width: 991px) {
  body {
    padding-top: 62px;
  }
}

.my-gradient-text {
  background: linear-gradient(to right, #e5b74c 0%, #f4d481 50%, #dab145 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.my-gradient-text:hover {
  color: white;
}

/* scrollTop */

#scrollTopBtn {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 1;
  display: none;
  background: linear-gradient(to right, #e5b74c 0%, #f4d481 50%, #dab145 100%);
  color: var(--color-dark);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease-in-out;
}

#scrollTopBtn:hover {
  background-color: var(--theme-color);
}

.color-green {
  color: var(--color-green);
}

p {
  text-align: justify;
  /* margin-bottom: 5px; */
}

.py-50 {
  padding: 50px 0px;
}

a {
  color: var(--body-text-color);
}

a:hover {
  color: var(--color-white);
}
img {
  max-width: 100%;
  height: auto;
}
.fas-icon {
  color: var(--theme-color);
}
ul {
  list-style-type: none;
  padding-left: 0px;
}
.card {
  background-color: var(--color-white);
  border: none;
  border-radius: 15px;
}

/* Header Section */
.navbar-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  background: transparent;
}

.top-header {
  background-color: var(--color-dark);
  display: flex;
}

.top-header ul {
  margin-bottom: 0px;
  padding: 5px;
}
.top-header ul li {
  margin-right: 10px;
  color: var(--color-white);
  font-size: 14px;
}

.top-header a {
  color: var(--theme-color);
  text-decoration: none;
}

.top-header a:hover {
  background: linear-gradient(to right, #e5b74c 0%, #f4d481 50%, #dab145 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar .navbar-brand img {
  max-height: 50px;
}

.navbar-toggler {
  border: none;
  background: transparent;
  font-size: 22px;
  color: var(--color-white);
}

.dropdown-menu{
  background-color: var(--color-dark) !important;
  white-space: nowrap;
  padding: 0.5rem 1rem !important;
}

@media (max-width:350px) {
  .dropdown-menu{
  background-color: var(--color-dark) !important;
  font-size: 14px;
}
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* @media (max-width: 768px) {
  .navbar-nav .nav-link {
    color: #000000 !important;
  }
} */
.navbar-nav .nav-link {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}

@media (min-width : 992px) and (max-width : 1199px) {
  .navbar-nav .nav-link{
    font-size: 13px !important;
  }
}

@media (max-width: 768px) {
  .nav-link {
    padding: 0px;
  }
}

@media (max-width: 991px) {
  .top-header {
    display: none;
  }

  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0px;
  }

  .navbar-nav .nav-item {
    margin: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0px;
  }
}
@media (min-width: 1025px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 0px;
  }
}

@media (max-width: 768px) {
  .navbar {
    background-color: var(--color-white);
  }
}

@media (max-width: 510px) {
  .navbar {
    width: 100%;
    border-radius: 0px;
  }
}

.toggler-iocn {
  color: var(--theme-color);
}

.nav-link {
  color: var(--body-text-color);
  font-size: 16px;
  font-weight: 600;
}

@media (min-width: 992px) and (max-width: 1025px) {
  .nav-link {
    font-size: 14px;
  }
}

.navbar {
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-dark) !important;
  font-family: var(--heading-font);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-toggler:focus {
  border: none;
  box-shadow: none;
}

@media (max-width: 510px) {
  .navbar {
    width: 100%;
    border-radius: 0px;
  }
}

@media (min-width: 320px) and (max-width: 510px) {
  .navbar-brand img {
    width: 200px !important;
  }
  .navbar-links .nav-link {
    padding: 7px 0.5rem !important;
  }
}
@media (min-width: 520px) and (max-width: 768px) {
  .navbar-brand img {
    width: 225px !important;
  }
  .navbar-links .nav-link {
    padding: 7px 0.5rem !important;
  }
}
@media (max-width: 1024px) {
  .navbar-brand img {
    width: 300px;
  }
}
@media (min-width: 1025px) {
  .navbar-brand img {
    width: 300px;
  }
}

.navbar-links .nav-link:hover {
  border-bottom: 3px solid var(--theme-color);
}

.navbar-links .nav-link {
  padding: 0 0.5rem;
}
.navbar-links {
  white-space: nowrap;
}
@media (min-width: 992px) {
  .navbar-nav .d-flex {
    gap: 20px;
  }
}

.toggler-iocn {
  color: var(--theme-color);
}

.nav-link {
  color: var(--body-text-color);
  font-size: 16px;
  font-weight: 600;
}

.btn-theme {
  background: linear-gradient(to right, #e5b74c 0%, #f4d481 50%, #dab145 100%);
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
}
.btn-theme:hover {
  color: var(--color-dark) !important;
  background: linear-gradient(to right, #e5b74c 0%, #f4d481 50%, #dab145 100%);
  color: var(--color-dark) !important;
}

/* Banner */

.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.display .display-5 {
  font-weight: 600;
  font-size: 65px;
  background-color: #0000007a !important;
}
.display p {
  background-color: #0000007a !important;
}
@media (max-width: 510px) {
  .display .display-5 {
    font-size: 40px;
  }
}

.hero .carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.display-3 {
  font-size: calc(1rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.carousel-caption {
  right: 0;
}

.site-heading span {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 22px;
}

.site-title {
  color: var(--theme-dark);
}

.banner-img {
  width: 100%;
  height: 625px;
}
@media (max-width: 320px) {
  .banner-img {
    height: 375px;
  }
}
@media (max-width: 375px) {
  .banner-img {
    height: 440px;
  }
}
@media (max-width: 510px) {
  .banner-img {
    height: 500px;
  }
}

/* Our Value */

.value-box {
  background: linear-gradient(to bottom, #2c2c2c, #515151);
  padding: 25px 15px;
  color: white;
  min-height: 100%;
}

.value-box1 {
  background: linear-gradient(to bottom, #726f68, #a29d94);
  padding: 25px 15px;
  color: #000;
  min-height: 100%;
}

.icon-box {
  font-size: 60px;
  color: #e5b74c;
  margin-bottom: 15px;
}

.value-box h5 {
  margin-bottom: 10px;
}

.value-box p {
  font-size: 0.9rem;
  color: #ddd;
}

/* About Section */

.image-border {
  position: absolute;
  /* top: 20px;
  left: 20px; */
  width: 100%;
  height: 100%;
  border: 4px solid var(--color-dark);
  border-radius: 12px;
  z-index: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.feature-item {
  position: relative;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.feature-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  background-color: #00000047;
  width: 100%;
  height: 100%;
  display: flex;
  color: #fff;
  flex-direction: column;
  justify-content: end;
  align-items: baseline;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-content {
  background-color: rgba(0, 0, 0, 0.7);
}

.feature-item .title {
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Services */

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.service-icon {
  background: var(--color-dark);
  padding: 10px;
  width: fit-content;
  border-radius: 5px;
  margin-bottom: 10px;
}
.service-icon img {
  width: 30px !important;
  height: 30px !important;
}
.service-number {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 50px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.1);
}
.service-title {
  font-weight: bold;
  font-size: 20px;
  margin-top: 10px;
  height: 45px;
  text-transform: uppercase;
}
.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
}
.service-text {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  margin-top: 10px;
}
.service-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 10px;
}
.service-list li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-size: 14px;
}
.service-list li::before {
  content: "✔";
  color: var(--theme-color);
  font-weight: bold;
  margin-right: 8px;
}

/* Practice Area */

.practice-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.practice-card i {
  font-size: 40px;
  margin-bottom: 20px;
}
.practice-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #e5b74c 0%, #f4d481 50%, #dab145 100%);
}
.practice-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.practice-icon {
  background: linear-gradient(to right, #e5b74c 0%, #f4d481 50%, #dab145 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.practice-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Contact Form */

.hero-section1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content1 {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
}

.left-content {
  padding: 60px;
}

.left-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}

.left-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 8px;
  color: #333;
}

@media (max-width: 510px) {
  .contact-form {
    padding: 20px;
  }
}

.contact-form h2 {
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 600;
}

.form-control {
  height: 50px;
  border-radius: 4px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #e5b74c;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

@media (max-width: 991.98px) {
  .left-content {
    padding: 30px;
  }

  .hero-content1 {
    height: auto;
    padding: 60px 0;
  }
}

/* Count */

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

.stat-item {
  text-align: center;
  border-radius: 10px;
  position: relative;
  color: #fff !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 10px;
  transition: transform 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-5px);
}
.stat-count {
  font-size: 28px;
  font-weight: 600;
}
.stat-label {
  font-size: 24px !important;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/*-----Testimonial-------*/

.swiper {
  padding: 40px 0;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none !important;
}

.swiper-slide {
  height: 100%;
}

.testimonial-card {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  height: 100%;
}

  .testimonial-card p{
    height: 150px;
  }
  @media (max-width:510px) {
    .testimonial-card p{
      height: auto;
    }
  }
  @media (min-width:511px) and (max-width:768px) {
    .testimonial-card p{
      height: 160px;
    }
  }
  @media (min-width:769px) and (max-width:1200px) {
    .testimonial-card p{
      height: 210px;
    }
  }

.testimonial-card.active {
  border-color: var(--theme-color) !important;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
}

.testimonial-img {
  width: 50px;
  height: 50px;
  object-fit: inherit;
}

.swiper-button-next,
.swiper-button-prev {
  display: block !important;
  color: var(--theme-color) !important;
}

.swiper-pagination-bullet-active {
  background: var(--theme-color) !important;
}
.swiper-pagination {
  display: none;
}

/* Stats Content */

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-box {
  border: 2px solid var(--theme-color);
  padding: 30px;
  min-width: 200px;
  text-align: center;
  flex: 1;
  transition: all 0.3s ease;
}
.no-border {
  border-right: none !important;
}

@media (max-width: 323px) {
  .no-border {
    border-bottom: none;
    border-right: 2px solid var(--theme-color) !important;
  }
}
@media (min-width: 324px) and (max-width: 510px) {
  .no-border {
    border-right: 2px solid var(--theme-color) !important;
  }
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 10px;
}
.stat-number::after {
  content: "+";
  color: inherit;
}
.stat-label {
  font-size: 16px;
  text-align: center;
  color: rgb(0, 0, 0);
  margin: 0;
}

@media (max-width: 768px) {
  .stat-box {
    min-width: 150px;
    padding: 20px;
  }
}

/* our clients  */
.logo-slider {
  overflow: hidden;
  padding: 30px 0 0 0;
  white-space: nowrap;
  position: relative;
}

.logo-slider:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 45s slide infinite linear;
}

.logos-slide img {
  width: 183px;
  height: 83px;
  margin: 0 40px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* Blog & Blog Detail Pages */

.blog-area {
        position: relative
    }

    .blog-item {
        padding: 20px;
        margin-bottom: 25px;
        background: var(--color-white);
        border-radius: 15px;
        box-shadow: var(--box-shadow);
        transition: var(--transition)
    }

    .blog-item-img {
        border-radius: 15px;
        overflow: hidden
    }

    .blog-item-img img {
        border-radius: 15px
    }

    .blog-item:hover .blog-item-img img {
        transform: scale(1.1)
    }

    .blog-item-info {
        padding: 15px 0 0
    }

    .blog-item-meta ul {
        margin: 0;
        padding: 0;
        margin-bottom: 14px;
        border-bottom: 1px solid var(--border-info-color);
        padding-bottom: 18px
    }

    .blog-item-meta ul li {
        display: inline-block;
        margin-right: 15px;
        font-weight: 500;
        position: relative;
        color: var(--color-dark)
    }

    .blog-item-meta ul li i {
        margin-right: 5px;
        color: var(--theme-color)
    }

    .blog-item-meta a:hover {
        color: var(--theme-color)
    }

    .blog-title {
        font-size: 22px;
        margin-bottom: 15px;
        text-transform: capitalize
    }

    .blog-item-info p {
        margin-bottom: 16px
    }

    .blog-item-info .theme-btn {
        margin-top: 15px
    }

    .blog-item-info h4 a {
        color: var(--color-dark);
        font-size: 18px;
        text-decoration: none;
    }

    .blog-item-info h4 a:hover {
        color: var(--theme-color)
    }

    .blog-thumb-img {
        margin-bottom: 20px
    }

    .blog-single-content img {
        border-radius: 15px
    }

    .blog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px
    }

    .blog-meta .blog-meta-left ul {
        display: flex;
        align-items: center;
        gap: 20px
    }

    .blog-meta .blog-meta-left ul li {
        font-weight: 500
    }

    .blog-meta i {
        margin-right: 5px;
        color: var(--theme-color)
    }

    .blog-meta a {
        color: var(--body-text-color);
        font-weight: 500
    }

    .blog-meta a:hover {
        color: var(--theme-color)
    }

    .blog-details-title {
        font-size: 34px;
        color: var(--color-dark)
    }

    .blockqoute {
        background: var(--theme-bg-light);
        border-left: 5px solid var(--theme-color);
        padding: 30px;
        font-size: 17px;
        font-style: italic;
        margin: 20px 0;
        border-radius: 0;
        position: relative;
        z-index: 1
    }

    .blockqoute::before {
        content: "\f10e";
        position: absolute;
        right: 150px;
        top: -20px;
        font-size: 140px;
        font-family: 'font awesome 6 pro';
        color: var(--theme-color);
        opacity: .2;
        z-index: -1
    }

    .blockqoute-author {
        margin-top: 20px;
        padding-left: 60px;
        position: relative;
        color: var(--color-dark)
    }

    .blockqoute-author::before {
        content: "";
        position: absolute;
        height: 2px;
        width: 40px;
        background: var(--theme-color);
        left: 0;
        top: 10px
    }

    .blog-details-tags {
        display: flex;
        align-items: center;
        gap: 20px
    }

    .blog-details-tags h5 {
        color: var(--color-dark)
    }

    .blog-details-tags ul {
        display: flex;
        align-items: center;
        gap: 15px
    }

    .blog-details-tags ul a {
        background: var(--theme-bg-light);
        color: var(--color-dark);
        padding: 3px 18px;
        border-radius: 50px;
        transition: var(--transition)
    }

    .blog-details-tags ul a:hover {
        background: var(--theme-color);
        color: var(--color-white)
    }

    .blog-author {
        display: flex;
        justify-content: start;
        align-items: center;
        background: var(--theme-bg-light);
        border-radius: 15px;
        margin: 50px 0;
        padding: 20px
    }

    .blog-author-img {
        width: 350px;
        padding: 8px;
        border: 5px solid transparent;
        border-right-color: var(--theme-color);
        border-radius: 50%
    }

    .blog-author-img img {
        border-radius: 50%
    }

    .author-name {
        font-size: 22px;
        color: var(--theme-color);
        margin: 8px 0
    }

    .author-info {
        padding: 0 20px
    }

    .author-social {
        margin-top: 10px
    }

    .author-social a {
        width: 35px;
        height: 35px;
        line-height: 31px;
        text-align: center;
        border: 2px solid var(--theme-color);
        border-radius: 50px;
        margin-right: 5px;
        color: var(--theme-color);
        transition: var(--transition)
    }

    .author-social a:hover {
        color: var(--color-white);
        background: var(--theme-color)
    }

    .blog-comments {
        margin-bottom: 50px
    }

    .blog-comments h3 {
        color: var(--color-dark)
    }

    .blog-comments-wrapper {
        margin: 30px 0
    }

    .blog-comments-single {
        display: flex;
        justify-content: start;
        align-items: flex-start;
        margin-top: 50px
    }

    .blog-comments-single img {
        border-radius: 50%
    }

    .blog-comments-content {
        padding: 0 0 0 20px
    }

    .blog-comments-content span {
        font-size: 14px;
        color: var(--theme-color);
        font-weight: 500
    }

    .blog-comments-content a {
        font-weight: 500;
        margin-top: 5px;
        color: var(--theme-color)
    }

    .blog-comments-content a:hover {
        color: var(--color-dark)
    }

    .blog-comments-content h5 {
        color: var(--color-dark)
    }

    .blog-comments-reply {
        margin-left: 50px
    }

    .blog-comments-form {
        padding: 30px;
        margin-top: 50px;
        border-radius: 10px;
        background: var(--theme-bg-light)
    }

    .blog-comments-form h3 {
        margin-bottom: 20px
    }

    .blog-comments-form .form-group {
        margin-bottom: 20px
    }

    .blog-comments-form .form-control {
        padding: 15px 20px;
        border-radius: 12px;
        box-shadow: none;
        transition: var(--transition)
    }

    .blog-comments-form .form-control:focus {
        border-color: var(--theme-color)
    }

    @media all and (max-width:767px) {
        .blog-meta {
            flex-direction: column;
            font-size: 15px
        }

        .blog-meta .blog-meta-left ul {
            gap: 10px
        }

        .blog-details-tags {
            flex-direction: column;
            align-items: flex-start
        }

        .blog-author {
            flex-direction: column;
            text-align: center;
            padding: 25px
        }

        .author-info {
            margin-top: 25px
        }

        .blog-author-img {
            border: none
        }

        .blog-comments-single {
            flex-direction: column;
            text-align: center;
            padding: 30px 0;
            box-shadow: var(--box-shadow);
            margin-bottom: 30px;
            border-radius: 10px
        }

        .blog-comments-single img {
            margin: 0 auto 20px
        }

        .blog-comments-reply {
            margin-left: 0
        }
    }

    .widget {
        background: var(--theme-bg-light);
        padding: 30px;
        margin-bottom: 30px;
        border-radius: 10px
    }

    .widget .widget-title {
        padding-bottom: 10px;
        margin-bottom: 30px;
        position: relative;
        font-size: 22px;
        color: var(--color-dark)
    }

    .widget .widget-title::before {
        position: absolute;
        content: '';
        width: 15px;
        border-bottom: 3px solid var(--theme-color);
        bottom: 0;
        left: 0
    }

    .widget .widget-title::after {
        position: absolute;
        content: '';
        width: 30px;
        border-bottom: 3px solid var(--theme-color);
        bottom: 0;
        left: 22px
    }

    .widget .search-form .form-control {
        padding: 12px 15px;
        border-radius: 12px;
        box-shadow: none
    }

    .widget .search-form {
        position: relative
    }

    .widget .search-form .form-control:focus {
        border-color: var(--theme-color)
    }

    .widget .search-form button {
        position: absolute;
        right: 0;
        top: 0;
        font-size: 18px;
        padding: 8px 18px 6px;
        background: 0 0;
        border: none;
        color: var(--theme-color)
    }

    .widget .category-list a {
        display: block;
        padding: 10px 0;
        font-weight: 500;
        border-bottom: 1px solid #ced4da;
        transition: var(--transition);
        text-decoration: none;
    }

    .widget .category-list a:last-child {
        margin-bottom: 0;
        border-bottom: none
    }

    .widget .category-list a:hover {
        padding-left: 10px;
        color: var(--theme-color)
    }

    .widget .category-list a i {
        margin-right: 5px;
        color: var(--theme-color)
    }

    .widget .category-list a span {
        float: right
    }

    .widget .recent-post-single {
        display: flex;
        justify-content: start;
        align-items: center;
        margin-bottom: 20px
    }

    .widget .recent-post-img {
        margin-right: 20px
    }

    .widget .recent-post-img img {
        width: 120px;
        border-radius: 8px
    }

    .widget .recent-post-bio h6 {
        font-size: 17px;
        font-weight: 600;
        text-transform: capitalize
    }

    .widget .recent-post-bio span {
        font-size: 14px;
        color: var(--theme-color)
    }

    .widget .recent-post-bio span i {
        margin-right: 5px
    }

    .widget .recent-post-bio h6 a:hover {
        color: var(--theme-color)
    }

    .widget .social-share-link a {
        width: 35px;
        height: 35px;
        line-height: 31px;
        display: inline-block;
        border: 2px solid var(--theme-color);
        color: var(--theme-color);
        text-align: center;
        margin-right: 5px;
        border-radius: 50px;
        transition: var(--transition)
    }

    .widget .social-share-link a:hover {
        background: var(--theme-color);
        color: var(--color-white)
    }

/* Notices */

 .notices li{
     margin-bottom: 20px;
     display: flex;
     align-items: center;
   }
   .notices li i{
    font-size: 22px;
    margin-right: 10px;
   }

/* Partners */

.client-box {
      border: 1px solid #dee2e6;
      padding: 20px;
      height: 150px;
      border-radius: 8px;
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .client-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    .client-logo {
      max-width: 100%;
      max-height: 80px;
      object-fit: contain;
    }

    /* Gallery page */

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
  }

  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    margin: 20px 0;
  }

  .gallery-column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }

  .gallery-item {
    margin-bottom: 8px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
  }


  .gallery-item:hover {
    transform: scale(1.02);
  }

  /* Modal Styles */
  .modal1 {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 65px;
    left: 0;
    top: 115px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
  }

  @media (max-width:768px) {
    .modal1 {
      top: 67px;
    }
  }

  @media (min-width:769px) and (max-width:1024px) {
    .modal1 {
      top: 100px !important;
    }
  }

  @media (min-width:1025px) and (max-width:1440px) {
    .modal1 {
      top: 120px !important;
    }
  }

  @media (min-width:1441px) {
    .modal1 {
      top: 120px !important;
    }
  }

  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 600px;

  }

  .close {
    position: absolute;
    top: 35px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }

  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }

  /* Responsive layout */
  @media (max-width: 992px) {
    .gallery-column {
      flex: 50%;
      max-width: 50%;
    }
  }

  @media (max-width: 576px) {
    .gallery-column {
      flex: 100%;
      max-width: 100%;
    }

    .close {
      position: absolute;
      top: 0px;
      right: 21px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      transition: 0.3s;
    }
  }

/*---------footer---------*/

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 20px;
}

/* Company Info Section */
.company-info img {
  max-width: 300px;
  margin-bottom: 20px;
}

.company-info p {
  font-size: 16px;
  width: 80%;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

@media (max-width: 510px) {
  .company-info p {
    width: 100%;
  }
}

/* Quick Links Section */
.quick-links h3,
.contact-info h3,
.latest-blogs h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 10px;
}

.quick-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 15px;
}

.quick-links a:hover {
  color: rgb(210, 210, 210);
}

/* Contact Info Section */
.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: start;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
}

/* Latest Blogs Section */
.latest-blogs .blog-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
}

.latest-blogs .blog-item img {
  width: 100%;
  height: 140px;
  display: block;
  transition: transform 0.3s;
}

.latest-blogs .blog-item:hover img {
  transform: scale(1.05);
}

.latest-blogs .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 15px;
  color: white;
}

.latest-blogs .blog-content small {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.latest-blogs .blog-content a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

/* Copyright Section */
.copyright {
  text-align: center;
  padding-top: 15px;
  margin-top: 40px;
  border-top: 2px solid #ffffff;
  font-size: 14px;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .quick-links h3,
  .contact-info h3,
  .latest-blogs h3 {
    margin-bottom: 15px;
  }

  .latest-blogs .blog-item {
    max-width: 300px;
  }
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.social-icons a {
  /* color: #fff; */
  font-size: 28px;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  /* border-radius: 50%; */
  /* background: rgba(255,255,255,0.1); */
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}
