/*:root {
   --default-font: "IBM  Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Raleway", sans-serif; 

  --default-font: "IBM Plex Sans", sans-serif;
}
*/

:root {
  --default-font: "IBM Plex Sans", sans-serif;
  --background-color: #ffffff;
  --default-color: #37423b;
  --heading-color: #0f2a44;
  --accent-color: #00148c;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #ffffff;
  --nav-hover-color: #00148c;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #37423b;
  --nav-dropdown-hover-color: #00148c;
}

.light-background {
  --background-color: #f7f5f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #00148c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #00148c;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  /* font-family: var(--heading-font); */
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color:
    color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color:
    color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .breadcrumbs ol li a {
  color: var(--contrast-color);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

.section-header {
  padding-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-header h2 span {
  color: var(--accent-color);
  font-style: italic;
  text-decoration: underline;
}

@media (max-width:480px) {

  .section-title h2,
  .section-header h2 {
    font-size: 26px
  }
}


.btn {
  border-radius: 40px;
  padding: 9px 16px;
  font-size: 14px;
  transition: all 0.5s;
  font-weight: 500;
}

.btn.btn-primary {
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Sticky Social Icons
--------------------------------------------------------------*/

.sticky-icon {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  width: 160px;
}

.sticky-icon a {
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(110px);
  margin: 4px 0;
  padding: 6px 10px;
  font-size: 14px;
  text-decoration: none;
  color: var(--contrast-color);
  border-radius: 30px 0 0 30px;
  text-transform: capitalize;
  transition: all .4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
}

.sticky-icon a:hover {
  transform: translateX(0);
}

.sticky-icon a i {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  font-size: 15px;
  transition: transform .5s ease;
}

.sticky-icon a:hover i {
  transform: rotate(360deg);
}

.Facebook {
  background: #3b5998;
}

.Twitter {
  background: #1DA1F2;
}

.Youtube {
  background: #FF0000;
}

.Instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.Google {
  background: #DB4437;
}

.Linkedin {
  background: #0077b5;
}

.Enquary {
  background: var(--accent-color);
}

.Whatsapp {
  background: #25D366;
}

.Facebook i {
  color: #1877F2;
}

.Youtube i {
  color: #FF0000;
}

.Twitter i {
  color: #1DA1F2;
}

.Instagram i {
  color: #E1306C;
}

.Google i {
  color: #DB4437;
}

.Linkedin i {
  color: #0077b5;
}

.Enquary i {
  color: var(--accent-color);
}

.Whatsapp i {
  color: #25D366;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #1e88e5;
  color: var(--contrast-color);
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
  transition: .3s;
}

#myBtn:hover {
  background: #333;
}

@media (max-width:768px) {
  .sticky-icon {
    width: auto;
  }

  .sticky-icon a {
    transform: translateX(0px);
    font-size: 10px;
    padding: 10px;
  }

  .sticky-icon a span {
    display: none;
  }

  .sticky-icon a i {
    width: 25px;
    font-size: 14px;
    height: 25px;
    min-width: 25px;
  }
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}


.header .header-top {
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
  font-size: 14px;
}

.header .header-top .contact-info {
  color: color-mix(in srgb, var(--contrast-color), transparent 0%);
}

.header .header-top .contact-info i {
  color: var(--accent-color);
  margin-right: 6px;
}

.header .header-top .contact-info a {
  color: color-mix(in srgb, var(--contrast-color), transparent 0%);
  transition: 0.3s;
  font-weight: 600;
}

.header .header-top .contact-info a:hover {
  color: var(--accent-color);
}

.header .header-top .contact-info span {
  color: color-mix(in srgb, var(--contrast-color), transparent 0%);
}

.header .header-top .social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .header-top .social-links a {
  font-size: 16px;
  transition: 0.3s;
  color: var(--contrast-color);
  animation: bounce 1.5s infinite;
}

.header .social-links a:nth-child(1) {
  animation-delay: 0s;
}

.header .social-links a:nth-child(2) {
  animation-delay: 0.2s;
}

.header .social-links a:nth-child(3) {
  animation-delay: 0.4s;
}

.header .social-links a:nth-child(4) {
  animation-delay: 0.6s;
}

.header .social-links a:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.header .social-links a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.header .header-main {
  padding: 18px 0;
}

.header .logo .colorlogo {
  display: none;
  visibility: hidden
}

.header .logo .whitelogo {
  filter: brightness(0) invert(1);
}

.scrolled .header .logo .colorlogo {
  display: block;
  visibility: visible
}

.scrolled .header .logo .whitelogo {
  display: none;
  visibility: hidden;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 42px;
}

.header .logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  font-size: 20px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-actions .action-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--contrast-color);
  border: 1px solid #dedede;
  transition: 0.3s;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: var(--accent-color);
}

.header-actions .action-link i {
  font-size: 18px;
  color: var(--contrast-color);
}

.header-actions h6 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: var(--contrast-color);
}

.header-actions span {
  font-size: 12px;
  display: block;
  opacity: 0.7;
}

.header-actions .action-link:hover {
  transform: translateY(-2px);
}

.header .btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.header .btn-quote:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
    margin-right: auto;
  }

  .header .btn-quote {
    order: 2;
    margin-right: 12px;
    padding: 10px 20px;
  }

  .header .header-actions {
    display: none !important;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 992px) {
  .header .logo {
    gap: 8px;
  }

  .header .logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .scrolled .mobile-nav-toggle {
    color: var(--default-color);
  }

  .default-page .mobile-nav-toggle {
    color: var(--default-color);
  }

  .nav-right {
    display: none;
  }
}

.scrolled .header {
  background: color-mix(in srgb, var(--background-color) 100%, transparent);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color) 12%, transparent);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 1);
  --default-color: #37423b;
}


.scrolled .header .header-top .contact-info a {
  color: var(--default-color);
}

.scrolled .header .header-top .social-links a {
  color: var(--default-color);
}

.scrolled .navmenu a,
.navmenu a:focus {
  color: var(--default-color);
}

.scrolled .navmenu li:hover>a,
.scrolled .navmenu .active,
.scrolled .navmenu .active:focus {
  color: var(--accent-color);
}

/* .scrolled .header .header-top {
  transform: translateY(-100%);
  transition: all 0.3s ease;
  display: none !important;
} */


.scrolled .header .header-top {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 16px 14px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  /* .navmenu a:after,
  .navmenu a:focus:after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 8px;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  } */

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 18px;
  }

  .navmenu a i.toggle-dropdown,
  .navmenu a:focus i.toggle-dropdown {
    font-size: 15px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color);
  }

  .navmenu li:hover>a:after,
  .navmenu .active:after,
  .navmenu .active:focus:after {
    transform: scaleX(1);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 12px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 120%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 8px;
    z-index: 99;
    box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color) 12%, transparent);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a:after {
    display: none;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 70px 20px 20px 20px;
    padding: 12px 0;
    margin: 0;
    border-radius: 12px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 18px 40px color-mix(in srgb, var(--default-color) 12%, transparent);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color) 12%, transparent);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: color-mix(in srgb, var(--accent-color) 6%, transparent);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--contrast-color);
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: color-mix(in srgb, var(--default-color) 75%, transparent);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


.default-page .header .header-top .contact-info a,
.default-page .header .header-top .social-links a,
.default-page .navmenu a,
.default-page .navmenu a:focus {
  color: var(--default-color);
}

.default-page .header .header-top {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.default-page .header .logo .whitelogo {
  filter: none;
}

@media (min-width: 1200px) {
  .nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--contrast-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--contrast-color);
  }

  .nav-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
  }

  .phone-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  }

  .whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
  }

  .nav-btn:hover {
    color: var(--contrast-color);
  }

  .nav-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-25deg);
    animation: shineMove 2.5s infinite;
  }

  @keyframes shineMove {
    0% {
      left: -120%;
    }

    100% {
      left: 120%;
    }
  }
}


/* Megamenu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .megamenu-2 {
    position: static;
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    overflow: hidden;

    background: var(--nav-dropdown-background-color, var(--accent-color));
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .navmenu .megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-inner-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 100%;
  }

  .menu-inner-row .menu-img {
    width: 50%;
    background: url('../../assets/img/bg/probanner-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-inner-row .menu-img .img-item {
    display: block;
  }

  .menu-inner-row .menu-img .img-item.hide {
    display: none;
  }


  .menu-inner-row .menu-img .img-item img {
    height: 100%;
    width: 100%;
    display: block;
    margin: 0 auto;
  }

  .menu-inner-row .menu-img .img-item.active {
    display: block;
  }

  .menu-inner-row .menu-links-wrap {
    width: 50%;
    padding: 40px 80px;
    background: var(--accent-color) url('../../assets/img/bg/mega-menu-object.svg') no-repeat right bottom;
    color: var(--contrast-color);
  }

  .menu-links-wrap h4 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--contrast-color);
  }

  .menu-links-wrap-inner {
    display: flex;
    width: 100%;
  }

  .menu-parent-links {
    width: 40%;
    padding-right: 30px;
  }

  .menu-parent-links ul.mm-parent-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
  }

  .menu-parent-links ul.mm-parent-list li a {
    display: block;
    padding: 0;
    font-size: 18px;
    line-height: 36px;
    font-weight: 300;
    cursor: pointer;
    position: relative;
    padding-right: 10px;
    color: var(--contrast-color);
    transition: color 0.2s;
  }


  .menu-parent-links ul.mm-parent-list li a:hover,
  .menu-parent-links ul.mm-parent-list li a.activelink {
    font-weight: 600;
    color: var(--contrast-color);
  }


  #mm-child-list .list {
    display: block;
  }

  #mm-child-list .list.hide {
    display: none;
  }

  #mm-child-list .list.active {
    display: block;
  }

  #mm-child-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
  }

  #mm-child-list ul li a {
    font-size: 18px;
    padding: 0;
    line-height: 34px;
    font-weight: 300;
    color: var(--contrast-color);
    display: block;
    transition: color 0.2s;
  }

  #mm-child-list ul li a:hover {
    color: var(--contrast-color);
    opacity: 0.6;
  }

  .menu-parent-links ul.mm-parent-list li a::after {
    position: absolute;
    content: "";
    top: 12px;
    right: 16px;
    width: 10px;
    height: 10px;
    opacity: 0;
    transition: 0.5s;
    background: url('../../assets/img/bg/white-shape-large.svg') center center / 9px no-repeat !important;
  }

  .menu-parent-links ul.mm-parent-list li a.activelink::after {
    opacity: 1 !important;
  }
}

@media (max-width: 1600px) {

  .menu-parent-links ul.mm-parent-list li a,
  #mm-child-list ul li a {
    font-size: 15px !important;
    line-height: 30px !important;
  }
}

@media (max-width: 1200px) {
  .menu-inner-row {
    flex-direction: column;
  }

  .menu-inner-row .menu-img,
  .menu-inner-row .menu-links-wrap {
    width: 100%;
    padding: 20px;
  }

  .menu-inner-row .menu-img .img-item img {
    height: auto;
    max-height: 350px;
  }
}



/* Megamenu 2 - Mobile */
@media (max-width: 1199px) {
  .navmenu .megamenu-2 {
    /* Hide Desktop Megamenu in Mobile */
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul {
    padding: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul li a {
    padding-left: 35px;
    font-size: 14px;
    font-weight: 400;
  }

  .navmenu .megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }

  .navmenu a i,
  .navmenu a:focus i {
    display: none;
  }

  .navmenu a i.toggle-dropdown,
  .navmenu a:focus i.toggle-dropdown {
    display: flex;
  }

}


/* =========================
   VIDEO HERO BANNER
========================= */

.video-banner1 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-banner1 .banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  z-index: 1;
  will-change: transform;
}

.video-banner1 .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.25));
  z-index: 2;
}

.video-banner1 .banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.video-banner1 .hero-btn {
  position: absolute;
  right: 80px;
  bottom: 20%;
  animation: floatBtn 3s ease-in-out infinite;
}

.video-banner1 .hero-btn img {
  width: 220px;
  max-width: 100%;
  transition: all 0.4s ease;
  filter: brightness(0) invert(1);
}

.video-banner1 .hero-btn a:hover img {
  transform: scale(1.08);
}

@keyframes floatBtn {
  0% {
    transform: translateX(-20px);
  }

  50% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-20px);
  }
}

.video-banner1 .scroll-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  cursor: pointer;
}

.video-banner1 .scroll-down span {
  display: block;
  width: 14px;
  height: 14px;
  margin: 6px auto;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: scrollAnim 1.6s infinite;
}

.video-banner1 .scroll-down span:nth-child(2) {
  animation-delay: 0.2s;
}

.video-banner1 .scroll-down span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes scrollAnim {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}

.video-banner1 .social-icons {
  position: absolute;
  right: 30px;
  bottom: 40px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-banner1 .social-title {
  color: var(--contrast-color);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  padding: 6px 14px;
  display: inline-block;
  border-radius: 8px;
  background: linear-gradient(270deg, #ff512f, #dd2476, #24c6dc, #514a9d);
  background-size: 600% 600%;
  backdrop-filter: blur(8px);
  animation: titleGradient 6s ease infinite;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes titleGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.video-banner1 .social-list {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.video-banner1 .social-list li {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

.video-banner1 .social-list li:nth-child(1) {
  animation-delay: 0.5s;
}

.video-banner1 .social-list li:nth-child(2) {
  animation-delay: 0.7s;
}

.video-banner1 .social-list li:nth-child(3) {
  animation-delay: 0.9s;
}

.video-banner1 .social-list li:nth-child(4) {
  animation-delay: 1.1s;
}

.video-banner1 .social-list a {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  color: var(--default-color);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease;
}

.video-banner1 .social-list a:hover {
  transform: translateY(-4px) scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  .video-banner1 .hero-btn {
    right: 30%;
    bottom: 50%;
    transform: translateX(50%);
    animation: none;
  }

  .video-banner1 .hero-btn img {
    width: 180px;
  }

  .video-banner1 .social-icons {
    right: 15px;
    bottom: 20px;
  }

  .video-banner1 .social-list a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .video-banner1 .scroll-down {
    bottom: 15px;
  }
}

.video-banner1 a.linkedIn:hover {
  background-color: #0077b5;
}

.video-banner1 a.facebook:hover {
  background-color: #1877f2;
}

.video-banner1 a.instagram:hover {
  background-color: #e4405f;
}

.video-banner1 a.youTube:hover {
  background-color: #ff0000;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  /* background-color: var(--accent-color);
  color: #d1d5db;
  z-index: 2;
  position: relative;
  margin-top: 60px; */

  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;

}

/* .footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 92px;
  top: -64px;
  background-image: url('/../assets/img/bg/tourism-shape.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100%;
} */


.footer .footer-top {
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .footer-top .widget-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 10px;
}

.footer .footer-top .widget-desc {
  font-size: 15px;
  opacity: 0.85;
}

.footer .newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer .newsletter-form input {
  flex: 1;
  height: 48px;
  border: none;
  padding: 0 15px;
  border-radius: 6px;
  outline: none;
}

.footer .newsletter-form button {
  background: var(--default-color);
  border: none;
  padding: 0 22px;
  color: var(--surface-color);
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.footer .newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.footer .footer-logo {
  margin-bottom: 20px;
}

.footer .footer-logo img {
  max-height: 42px;
}

.footer .footer-middle {
  padding: 50px 0 50px;
}

.footer .footer-widget {
  margin-bottom: 30px;
}

.footer .footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--contrast-color);
  position: relative;
}

.footer .footer-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.footer .company-desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer .site-map {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .site-map li {
  margin-bottom: 10px;
}

.footer .site-map li a {
  color: #cbd5e1;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  padding-left: 18px;
}

.footer .site-map li a:before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--contrast-color);
  font-size: 18px;
}

.footer .site-map li a:hover {
  color: var(--contrast-color);
  padding-left: 22px;
}

.footer .address-widget {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .address-widget li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
}

.footer .address-widget i {
  color: var(--contrast-color);
  font-size: 18px;
  margin-top: 3px;
}

.footer .address-widget a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer .address-widget a:hover {
  color: var(--contrast-color);
}

.footer .footer-social {
  display: flex;
  gap: 12px;
  padding: 0;
  margin-top: 20px;
  list-style: none;
}

.footer .footer-social li a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 23%);
  color: var(--contrast-color);
  transition: 0.3s;
}

.footer .footer-social li a:hover {
  background: var(--contrast-color);
  transform: translateY(-4px);
  color: var(--background-color);
}

.footer .footer-bottom {
  padding: 18px 0;
  font-size: 14px;
}

.footer .copy-right-menu {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .copy-right-menu li a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer .copy-right-menu li a:hover {
  color: var(--contrast-color);
}

@media(max-width:991px) {

  .footer .copy-right-menu {
    justify-content: center;
    margin-top: 10px;
  }

  .footer-bottom .row {
    text-align: center;
  }

}

@media(max-width:768px) {

  .footer .newsletter-form {
    flex-direction: column;
  }

  .footer .newsletter-form button {
    width: 100%;
    padding: 10px;
  }


  .footer .newsletter-form input {
    padding: 15px;
  }

}

/* ===============================
   ABOUT SECTION
================================ */
.about-section-2 {
  position: relative;
  overflow: hidden;
  background-color: var(--background-color);
  z-index: 1;
  padding: 100px 0 50px;
}

/* ===============================
   SHAPES
================================ */
.about-section-2 .left-shape,
.about-section-2 .right-shape,
.about-section-2 .maize-shape,
.about-section-2 .maize-shape-2 {
  position: absolute;
  z-index: -1;
}

.about-section-2 .left-shape {
  top: 10%;
  left: 0;
}

.about-section-2 .right-shape {
  top: 10%;
  right: 0;
}

.about-section-2 .maize-shape {
  top: 20%;
  left: 30px;
}

.about-section-2 .maize-shape-2 {
  top: 15%;
  right: 30px;
}

/* ===============================
   ANIMATIONS
================================ */
.float-bob-y {
  animation: float-bob-y 3s linear infinite;
}

@keyframes float-bob-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-bob-x {
  animation: float-bob-x 3s linear infinite;
}

@keyframes float-bob-x {

  0%,
  100% {
    transform: translateX(30px);
  }

  50% {
    transform: translateX(10px);
  }
}

/* ===============================
   SECTION TITLE
================================ */
.about-section-2 .section-title-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(47, 47, 47, 0.2);
  padding-bottom: 60px;
  margin-bottom: 48px;
}

.about-section-2 .section-title1 .sub-title-2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-section-2 .section-title1 h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 10px 0;
  line-height: 1.2;
  color: var(--heading-color);
}

.about-section-2 .section-title-area .content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--default-color);
}

.about-section-2 .link-btn-2 {
  font-weight: 600;
  font-size: 16px;
  color: var(--accent-color);
  text-decoration: underline;
}

/* ===============================
   COUNT SECTION
================================ */
.about-section-2 .count-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 130px;
  justify-content: space-between;
}

.about-section-2 .count-item-2 {
  flex: 1 1 30%;
  text-align: center;
}

.about-section-2 .count-item-2.style-top {
  margin-top: -100px;
}

.about-section-2 .count-item-2 h2 {
  font-size: clamp(80px, 10vw, 200px);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-color);
  margin-bottom: 10px;
  line-height: 1;
}

.about-section-2 .count-item-2.active h2 {
  color: var(--accent-color);
  -webkit-text-stroke: 0;
}

.about-section-2 .count-item-2 p {
  font-size: 1rem;
  max-width: 300px;
}

.about-section-2 .trac-wrap {
  text-align: center;
  margin-top: -60px;
}

.about-section-2 .tractor-image img {
  max-width: 491px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 150px rgba(245, 216, 62, 0.5));
}

.about-section-2 .paddy-image {
  position: relative;
  margin-top: -180px;
}

.about-section-2 .paddy-image img {
  width: 100%;
  border-radius: 20px;
}

.about-section-2 .video-btn {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  text-align: center;
  font-size: 25px;
  z-index: 9;
}

.about-section-2 .video-btn::before,
.about-section-2 .video-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.25);
  animation: ripple 2s linear infinite;
}

.about-section-2 .video-btn::before {
  width: 198px;
  height: 198px;
}

.about-section-2 .video-btn::after {
  width: 154px;
  height: 154px;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@media (max-width: 992px) {

  .about-section-2 {
    padding: 80px 0 40px;
  }

  .about-section-2 .section-title-area {
    grid-template-columns: 1fr;
  }

  .about-section-2 .count-wrap {
    margin-top: 60px;
  }

  .about-section-2 .count-item-2.style-top {
    margin-top: 0;
  }

  .about-section-2 .trac-wrap {
    margin-top: 20px;
  }

  .about-section-2 .paddy-image {
    margin-top: 40px;
  }

  .about-section-2 .video-btn {
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 20px;
  }
}


@media (max-width: 576px) {

  .about-section-2 {
    padding: 60px 0 30px;
  }

  .about-section-2 .section-title-area {
    gap: 20px;
  }

  .about-section-2 .count-item-2 h2 {
    font-size: 70px;
  }

  .about-section-2 .count-item-2 p {
    font-size: 14px;
  }

  .about-section-2 .video-btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 16px;
    bottom: 50px;
  }

  .about-section-2 .paddy-image {
    margin-top: 20px;
  }

  .about-section-2 .left-shape,
  .about-section-2 .right-shape,
  .about-section-2 .maize-shape,
  .about-section-2 .maize-shape-2 {
    display: none;
  }
}

@media (min-width: 1400px) {

  .about-section-2 .section-title1 h2 {
    font-size: 3.5rem;
  }

  .about-section-2 .count-item-2 h2 {
    font-size: 180px;
  }
}



/* ===============================
   BEFORE / AFTER SLIDER
================================ */
.before-after-slider {
  max-width: 100%;
  margin: auto;
  position: relative;
  padding-top: 0;
}

.twentytwenty-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.twentytwenty-container {
  overflow: hidden;
  border-radius: 10px;
}


.slider-info {
  text-align: center;
  margin-top: 20px;
  display: none;
}

.read-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--accent-color), var(--default-color));
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: var(--default-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {

  .before-after-slider {
    padding: 0 15px;
  }

  .twentytwenty-container {
    border-radius: 8px;
  }

  .read-more-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {

  .before-after-slider {
    padding: 0 10px;
  }

  .twentytwenty-container {
    border-radius: 6px;
  }

  .slider-info {
    display: none;
    font-size: 14px;
    color: var(--default-color);
  }

  .read-more-btn {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (min-width: 1400px) {

  .before-after-slider {
    max-width: 100%;
  }

  .twentytwenty-container {
    border-radius: 12px;
  }

  .read-more-btn {
    font-size: 16px;
  }
}

/* ===============================
   VISION & COMMITMENT SECTION
================================ */
.vision-commitment {
  position: relative;
  padding: 0;
}

.vision-commitment .container-fluid {
  padding: 0;
}

.vision-commitment .banner-area {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 550px;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.vision-commitment .banner-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.vision-commitment .vision-item {
  flex: 1 1 25%;
  min-width: 25%;
  position: relative;
  cursor: pointer;
  z-index: 2;
  transition: all 0.4s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.vision-commitment .vision-item:last-child {
  border-right: none;
}

.vision-commitment .overlay-text {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  z-index: 3;
  transition: opacity 0.3s ease;
}

.vision-commitment .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 30px 20px;
  text-align: center;
  color: var(--contrast-color);
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.vision-commitment .vision-item.active .box,
.vision-commitment .vision-item:hover .box {
  opacity: 1;
  transform: translateY(0);
}

.vision-commitment .vision-item.active .overlay-text,
.vision-commitment .vision-item:hover .overlay-text {
  opacity: 0;
}

.vision-commitment .box h4 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--contrast-color);
}

.vision-commitment .box p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 992px) {

  .vision-commitment .banner-area {
    min-height: auto;
  }

  .vision-commitment .vision-item {
    flex: 1 1 50%;
    min-width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .vision-commitment .vision-item:nth-child(2n) {
    border-right: none;
  }

  .vision-commitment .overlay-text {
    bottom: 15px;
  }

  .vision-commitment .box {
    padding: 25px 15px;
  }
}

@media (max-width: 576px) {

  .vision-commitment .banner-area {
    flex-direction: column;
  }

  .vision-commitment .vision-item {
    flex: 1 1 100%;
    min-width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .vision-commitment .overlay-text {
    font-size: 16px;
    bottom: 10px;
  }

  .vision-commitment .box {
    opacity: 1;
    transform: none;
    background: rgba(0, 0, 0, 0.65);
  }

  .vision-commitment .overlay-text {
    display: none;
  }
}

@media (min-width: 1400px) {

  .vision-commitment .banner-area {
    min-height: 650px;
  }

  .vision-commitment .box p {
    font-size: 16px;
  }
}

/* ===============================
   HOME PRODUCTS SECTION
================================ */
.home-products-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
  background: url("../../assets/img/bg/home-products-bg.png") no-repeat center / cover;
}

.home-products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 20, 140, 0.65),
      rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.home-products-section .container {
  position: relative;
  z-index: 2;
}

.home-products-section .products-title {
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
  color: var(--contrast-color);
  line-height: 1.3;
}

.home-products-section .products-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--contrast-color);
  opacity: 0.9;
  margin-bottom: 15px;
}

.home-products-section .btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.home-products-section .btn-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.home-products-section .product-slider {
  margin-top: 50px;
  padding-bottom: 20px;
}

.home-products-section .swiper-slide {
  display: flex;
  justify-content: center;
}

.home-products-section .product-card {
  width: 100%;
  max-width: 260px;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
}

.home-products-section .product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 25px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.home-products-section .product-card:hover img {
  transform: scale(1.1);
}

.home-products-section .product-card h4 {
  color: var(--contrast-color);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  margin-top: 10px;
}

.home-products-section .product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: 0.3s;
}

.home-products-section .product-card:hover::before {
  opacity: 1;
}

/* .home-products-section .swiper-slide:not(:last-child) .product-card img {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
} */

.home-products-section .product-slider {
  position: relative;
}

.home-products-section .slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.home-products-section .swiper-button-prev,
.home-products-section .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  pointer-events: all;
  transition: 0.3s ease;
  z-index: 10;
}

/* .home-products-section .swiper-button-prev {
  left: -20px;
}

.home-products-section .swiper-button-next {
  right: -20px;
} */

.home-products-section .swiper-button-prev:hover,
.home-products-section .swiper-button-next:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-50%) scale(1.1);
}

.home-products-section .swiper-button-next:after,
.home-products-section .swiper-button-prev:after {
  font-size: 16px;
}

@media (max-width: 768px) {

  .home-products-section .swiper-button-prev {
    left: 5px;
  }

  .home-products-section .swiper-button-next {
    right: 5px;
  }

  .home-products-section .swiper-button-prev,
  .home-products-section .swiper-button-next {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 992px) {

  .home-products-section .product-card {
    max-width: 220px;
  }

  .home-products-section .product-card img {
    height: 160px;
    padding: 20px;
  }
}

@media (max-width: 768px) {

  .home-products-section {
    padding: 60px 0;
  }

  .home-products-section .products-title,
  .home-products-section .products-desc {
    text-align: center;
  }

  .home-products-section .btn-main {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .home-products-section .product-slider {
    margin-top: 30px;
  }

  .home-products-section .product-card {
    max-width: 200px;
  }

  .home-products-section .product-card img {
    height: 140px;
    padding: 15px;
  }

  .home-products-section .product-card img {
    border-right: none !important;
  }
}

@media (max-width: 480px) {

  .home-products-section .product-card {
    max-width: 180px;
  }

  .home-products-section .product-card h4 {
    font-size: 14px;
  }

  .home-products-section .swiper-button-prev,
  .home-products-section .swiper-button-next {
    width: 35px;
    height: 35px;
  }
}

@media (min-width: 1400px) {

  .home-products-section .product-card {
    max-width: 280px;
  }

  .home-products-section .product-card img {
    height: 200px;
  }
}


/* ===============================
   TEST SECTION
================================ */
.test-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.test-section .test-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: clamp(30px, 6vw, 60px);
}

.test-section .test-icon img {
  width: 100px;
  transition: transform 0.4s ease;
}

.test-section .test-icon img:hover {
  transform: rotate(8deg) scale(1.08);
}

.test-section .test-content h4 {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.test-section .test-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--heading-color);
}

.test-section .test-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}


.test-section .test-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.test-section .test-image img {
  width: 100%;
  display: block;
  border-radius: 18px;
  transition: transform 0.6s ease;
}

.test-section .test-image:hover img {
  transform: scale(1.08);
}

.test-section .test-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 20, 140, 0.25),
      transparent);
  opacity: 0;
  transition: 0.3s;
}

.test-section .test-image:hover::after {
  opacity: 1;
}

.test-section .test-text h2 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.test-section .test-text p {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 25px;
}

.test-section .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg,
      var(--accent-color),
      var(--heading-color));
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.test-section .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg,
      var(--heading-color),
      var(--accent-color));
}

@media (max-width: 992px) {

  .test-section .test-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .test-section .test-header {
    flex-direction: column;
    text-align: center;
  }

  .test-section .test-content h2 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .test-section {
    padding: 60px 0;
  }

  .test-section .test-header {
    gap: 20px;
  }

  .test-section .test-text h2 {
    text-align: center;
  }

  .test-section .test-text p {
    text-align: center;
  }

  .test-section .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
}


@media (max-width: 480px) {

  .test-section .test-content h4 {
    font-size: 12px;
  }

  .test-section .test-content h2 {
    font-size: 20px;
  }

  .test-section .test-text p {
    font-size: 14px;
  }
}

@media (min-width: 1400px) {

  .test-section .test-text h2 {
    font-size: 50px;
  }

  .test-section .test-wrapper {
    gap: 80px;
  }
}

/* ===============================
   WE ARE SECTION
================================ */
.weare-section {
  position: relative;
  background: var(--background-color);
  padding: clamp(60px, 8vw, 100px) 0;
}

.weare-section .weare-wrapper {
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
  flex-wrap: wrap;
}

/* LEFT CONTENT */
.weare-section .weare-content {
  flex: 1;
  max-width: 420px;
}

.weare-section .weare-content h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.weare-section .weare-content p {
  font-size: clamp(14px, 1.2vw, 15px);
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 25px;
}

/* BUTTON */
.weare-section .btn-primary {
  display: inline-block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.weare-section .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
}

/* RIGHT SLIDER */
.weare-section .weare-slider {
  flex: 1;
  overflow: hidden;
  padding: 10px 0;
  width: 100%;
  position: relative;
}

.weare-section .weare-slider .swiper-wrapper {
  align-items: center;
  width: 100%;
}

.weare-section .weare-slider .swiper-slide {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.4;
  transform: scale(0.85);
}

.weare-section .weare-slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.weare-section .weare-slider img {
  width: 100%;
  height: clamp(240px, 30vw, 200px);
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Gradient overlay on active slide */
.weare-section .weare-slider .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 20, 140, 0.35), transparent);
  opacity: 0;
  transition: 0.3s;
}

.weare-section .weare-slider .swiper-slide-active::after {
  opacity: 1;
}

/* Hover effect for desktop */
@media (hover: hover) and (min-width: 992px) {
  .weare-section .weare-slider .swiper-slide:hover {
    transform: scale(0.92);
    opacity: 0.8;
  }
}

/* ===============================
   WE ARE SLIDER PAGINATION
================================ */
.weare-slider .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.weare-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid #dedede;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.weare-slider .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background: var(--accent-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .weare-section .weare-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .weare-section .weare-content {
    text-align: center;
    max-width: 100%;
  }

  .weare-section .weare-content p {
    margin: 0 auto 20px;
  }
}

@media (max-width: 768px) {
  .weare-section .weare-content h2 {
    font-size: clamp(22px, 5vw, 28px);
  }

  .weare-section .weare-slider img {
    height: clamp(200px, 25vw, 280px);
  }

  .weare-slider .swiper-pagination {
    gap: 6px;
    bottom: 8px;
  }

  .weare-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .weare-slider .swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .weare-section .weare-content h2 {
    font-size: 24px;
  }

  .weare-section .weare-content p {
    font-size: 14px;
  }

  .weare-section .weare-slider img {
    height: 240px;
  }

  .weare-slider .swiper-pagination {
    gap: 4px;
    bottom: 6px;
  }

  .weare-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .weare-slider .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
  }
}

/* ===============================
   BLOG SECTION
================================ */
.blog-section {
  position: relative;
  background: var(--background-color);
}

.blog-section .blog-header {
  margin-bottom: 50px;
}

.blog-section .blog-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
}

.blog-section .blog-title span {
  color: var(--accent-color);
}

.blog-section .blog-subtitle {
  font-size: 16px;
  color: var(--default-color);
  margin-top: 8px;
}


.blog-section .blog-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  border: 1px solid #dedede;
}

.blog-section .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.blog-section .blog-card-img {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.blog-section .blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-section .blog-card:hover img {
  transform: scale(1.05);
}

.blog-section .blog-card-content {
  flex: 1;
  padding: 20px 25px;
}

.blog-section .blog-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.blog-section .blog-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.blog-section .blog-card-desc {
  font-size: 14px;
  color: var(--default-color);
  margin-bottom: 12px;
  line-height: 1.6;
}

.blog-section .blog-date {
  font-size: 13px;
  color: var(--default-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-section .swiper-button-prev,
.blog-section .swiper-button-next {
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  background: var(--surface-color);
  border: 1px solid #dedede;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.blog-section .swiper-button-prev:hover,
.blog-section .swiper-button-next:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.blog-section .swiper-pagination {
  text-align: center;
  margin-top: 20px;
}

.blog-section .swiper-button-next:after,
.blog-section .swiper-button-prev:after {
  font-size: 16px;
}

@media (max-width: 992px) {
  .blog-section .blog-card {
    flex-direction: column !important;
  }

  .blog-section .blog-card-content {
    padding: 15px 20px;
    text-align: center;
  }

  .blog-section .blog-title {
    font-size: 28px;
  }

  .blog-section .blog-subtitle {
    font-size: 14px;
  }

  .blog-section .blog-card-title {
    font-size: 18px;
  }

  .blog-section .blog-card-desc {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }

  .blog-section .blog-title {
    font-size: 24px;
  }

  .blog-section .blog-card-content {
    padding: 12px 15px;
  }

  .blog-section .blog-card-desc {
    font-size: 12px;
  }

  .blog-section .blog-badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

@media (max-width: 480px) {
  .blog-section .blog-title {
    font-size: 20px;
  }

  .blog-section .blog-card-title {
    font-size: 16px;
  }

  .blog-section .blog-card-desc {
    font-size: 11px;
  }

  .blog-section .blog-badge {
    font-size: 10px;
    padding: 3px 8px;
  }
}



/*--------------------------------------------------------------
# History Section
--------------------------------------------------------------*/
.history .campus-showcase {
  position: relative;
}

.history .campus-showcase img {
  width: 100%;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.history .campus-showcase .experience-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.history .campus-showcase .experience-badge .years {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1;
}

.history .campus-showcase .experience-badge .label {
  display: block;
  font-size: 0.85rem;
  margin-top: 5px;
  opacity: 0.9;
}

@media (max-width: 576px) {
  .history .campus-showcase .experience-badge {
    right: 15px;
    bottom: -15px;
    padding: 15px 20px;
  }

  .history .campus-showcase .experience-badge .years {
    font-size: 2rem;
  }
}

.history .story-content .subtitle {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.history .story-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.history .story-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.history .story-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .history .story-content h2 {
    font-size: 1.8rem;
  }
}

.history .milestones .milestone-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px 25px;
  height: 100%;
  border-top: 4px solid var(--accent-color);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.history .milestones .milestone-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.history .milestones .milestone-card .milestone-year {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.history .milestones .milestone-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.history .milestones .milestone-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.history .purpose-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--surface-color);
  padding: 35px 30px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  border-left: 5px solid var(--accent-color);
  transition: all 0.3s ease;
}

.history .purpose-card:hover {
  box-shadow: 0 10px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.history .purpose-card .purpose-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.history .purpose-card .purpose-icon i {
  font-size: 26px;
  color: var(--accent-color);
}

.history .purpose-card .purpose-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.history .purpose-card .purpose-body p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 576px) {
  .history .purpose-card {
    flex-direction: column;
    padding: 25px 20px;
  }
}

.history .values-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.history .principle-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px 0;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: all 0.3s ease;
}

.history .principle-item:hover .principle-number {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.history .principle-item .principle-number {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-color);
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease;
}

.history .principle-item .principle-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.history .principle-item .principle-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-tile {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 3px solid var(--accent-color);
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
  height: 100%;
}

.contact .info-tile:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-bottom-color: var(--accent-color);
}

.contact .info-tile .tile-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.contact .info-tile .tile-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.contact .info-tile h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .info-tile p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.contact .map-block {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 88%);
}

.contact .map-block iframe {
  width: 100%;
  height: 100%;
}

.contact .social-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 18px 24px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .social-bar span {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.contact .social-bar .social-icons {
  display: flex;
  gap: 10px;
}

.contact .social-bar .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .social-bar .social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .contact .social-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.contact .form-block {
  background-color: var(--surface-color);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 88%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact .form-block .form-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.contact .form-block .form-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.contact .form-block .form-header p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.contact .form-block label {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact .form-block .php-email-form {
  flex: 1;
}

.contact .form-block .php-email-form .form-control {
  padding: 12px 16px;
  border-radius: 8px;
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact .form-block .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 88%);
  background-color: var(--surface-color);
}

.contact .form-block .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 65%);
}

.contact .form-block .php-email-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact .form-block .php-email-form button[type=submit] {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.contact .form-block .php-email-form button[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact .form-block {
    padding: 25px 20px;
  }

  .contact .form-block .form-header h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .contact .map-block {
    height: 260px;
  }
}


/* Category Card Container */
.category-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid #dedede;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card h5 {
  padding: 12px 10px;
  font-size: 16px;
  color: var(--default-color);
  font-weight: 600;
  text-transform: capitalize;
}

.category-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
  background-color: var(--accent-color);
}

.category-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card:hover h5 {
  color: var(--contrast-color);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .category-card img {
    height: 200px;
  }

  .category-card h5 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .category-card img {
    height: 180px;
  }

  .category-card h5 {
    font-size: 14px;
    padding: 10px 8px;
  }
}

/* Certificate Card */
.certificate-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--surface-color);
  padding: 20px;
  border: 1px solid #dedede;
  height: 100%;
}

.certificate-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.certificate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 140, 0.7);
  color: var(--contrast-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 15px;
}

.certificate-overlay h5 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--contrast-color);
}

.certificate-overlay a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.certificate-overlay a:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.certificate-card:hover img {
  transform: scale(1.05);
}

.certificate-card:hover .certificate-overlay {
  opacity: 1;
}

.certificate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .certificate-card img {
    height: 180px;
  }

  .certificate-overlay h5 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .certificate-card img {
    height: 150px;
  }

  .certificate-overlay h5 {
    font-size: 14px;
  }

  .certificate-overlay a {
    padding: 5px 12px;
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-nine {
  background-image: url('/../assets/img/bg/world-map-bg.svg');
  background-repeat: no-repeat;
  background-position: center bottom;
}

.testimonials .testimonial-item {
  background-color: color-mix(in srgb, var(--background-color), transparent 0%);
  border: 1px solid #E4EBF1;
  box-shadow: 0px 4px 14px 0px rgba(194, 194, 194, 0.2509803922);
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 16px;
  color: #f7b50d;
}

.testimonials .testimonial-item .stars i {
  font-size: 18px;
  margin: 0 2px;
}

.testimonials .testimonial-item p {
  font-size: 15px;
  font-style: italic;
  margin: 0 0 20px 0;
}

.testimonials .testimonial-item .profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials .testimonial-item .profile .testimonial-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.testimonials .testimonial-item .profile .info h4 i {
  font-size: 14px;
  color: var(--accent-color);
  margin-left: 4px;
}

.testimonials .testimonial-item .profile .info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-item {
    margin: 0;
  }
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
#gallery {
  background-color: var(--background-color);
  padding: 60px 0;
}

#gallery .section-title {
  text-align: center;
  margin-bottom: 40px;
}

#gallery .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

#gallery .section-title p {
  font-size: 16px;
  color: var(--default-color);
  max-width: 650px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 10px;
  background-color: var(--surface-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 140, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  z-index: -1;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item::before {
  content: '\f002';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--contrast-color);
  font-size: 24px;
  transition: transform 0.3s ease;
  z-index: -1;
}

.gallery-item:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 992px) {
  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .gallery-item img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-item img {
    height: 150px;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
}

.blog-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .blog-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.blog-details .article-content {
  padding: 0 1rem;
}

.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.blog-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.blog-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-details .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.blog-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 100%;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.blog-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-details .article-content .content .content-grid {
  margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}

.blog-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.blog-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.blog-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.blog-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 20px 0;
}

.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}

.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}

.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }

  .blog-comments .comments-header .title {
    font-size: 24px;
  }

  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }

  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }

  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }

  .blog-comments .comment-content {
    padding: 20px;
  }

  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }

  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }

  .blog-comments .comment-body p {
    font-size: 14px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 30px auto 0 auto;
  padding-top: 10px;
}

.blog-comment-form form {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-comment-form .form-header h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.blog-comment-form .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9375rem;
}

.blog-comment-form .input-group {
  margin-bottom: 1rem;
  position: relative;
}

.blog-comment-form .input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.875rem;
}

.blog-comment-form .input-group input,
.blog-comment-form .input-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.blog-comment-form .input-group input::placeholder,
.blog-comment-form .input-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .input-group input:hover,
.blog-comment-form .input-group textarea:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .input-group input:focus,
.blog-comment-form .input-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown),
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown)+.error-text,
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown)+.error-text {
  opacity: 1;
  transform: translateY(0);
}

.blog-comment-form .input-group textarea {
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .input-group .error-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #dc3545;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.blog-comment-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comment-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.blog-comment-form button[type=submit]:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 1.5rem;
  }

  .blog-comment-form .form-header h3 {
    font-size: 1.5rem;
  }

  .blog-comment-form button[type=submit] {
    width: 100%;
    padding: 0.875rem 1rem;
  }
}



/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}



/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "â€¢";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid var(--default-color);
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid var(--default-color);
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}



/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "Ã¢â‚¬Â¢";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}