
@charset "UTF-8";

:root {
  --default-font: "Roboto",  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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root { 
  --background-color: #f4f4f4; /* Background color for the entire website, including individual sections */
  --default-color: #232c28; /* Default color used for the majority of the text content across the entire website */
  --secondary-color: #ffc451;
  --heading-color: #012b18; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #056236; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}


:root {
  --nav-color: #232c28;  /* The default color of the main navmenu links */
  --nav-hover-color: #025832; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #232c28; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #055832; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #012f1b;
  --default-color: #dcf2e8;
  --heading-color: #ffffff;
  --secondary-color: #ffc451;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
: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);
}


/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {

  --background-color: #ffffff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  transition: all 0.5s;
  position: relative;
}

.header .logo {
  position: absolute;
  inset: 0 auto 0 0;
  padding: 0 20px;
}

.header .logo img {
  max-height: 52px;
  margin-right: 8px;
}

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

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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: 18px 20px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    transition: 0.3s;
  }



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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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 i {
    font-size: 12px;
  }

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

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Navmenu - Mobile */
@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: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    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), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .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), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    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: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
.bg-primary
{
  background-color:  var(--accent-color) !important;;
}
.bg-secondary
{
  background-color:  var(--secondary-color) !important;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  
  font-size: 16px;
  position: relative;
}


.footer .footer-top {
  padding-top: 50px;
  padding-bottom: 50px;

}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
  text-align: center;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 16px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 12px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.footer h3 {

  font-size: 22px;
  font-weight: bold;
  position: relative;
  padding-bottom: 16px;
}

.footer h4 {

  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 8px;
}

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

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li i{
  color: var(--secondary-color);
}


.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--secondary-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  
}
.footer .footer-contact p i
{
  color: var(--secondary-color);
}
.footer .footer-contact a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.footer .footer-contact a:hover
{
  color: var(--secondary-color);
}
.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p, .footer .copyright p a{
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.footer .copyright p a:hover{
  text-decoration: underline;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url('../img/preloader.gif') 
  50% 50% no-repeat rgb(249,249,249);
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 80px;
  z-index: 9999;
  background-color: var(--secondary-color);
  width: 60px;
  height: 60px;
  border-radius: 30px;
  transition: all 0.4s;
}

.scroll-top i, .send-email i{
  font-size: 26px;
  color: var(--default-color);
  line-height: 0;
}

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

.scroll-top.active, .send-email.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Send mail Button
--------------------------------------------------------------*/
.send-email {
  position: fixed;
  right: 20px;
  bottom: 15px;
  z-index: 9999;
  background-color: var(--secondary-color);
  width: 60px;
  height: 60px;
  border-radius: 30px;
  transition: all 0.4s;
}



/*--------------------------------------------------------------
# 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); 
  padding: 70px 0;
  position: relative;
}

.page-title .title-bg
{
  top: 0;
  left: 0;
  position: absolute;
  width:100%;
  height:100%;
  background: url("../img/title-bg.png") top center no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
  z-index: 1;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
}
.page-title h1 span
{
  color: var(--secondary-color);
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}
.page-title .breadcrumbs ol li a{
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.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 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 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: 20px;
  position: relative;
}

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

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 260px;
  height: 1px;
  background: color-mix(in srgb, var(--secondary-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(--secondary-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/* Home Page */
.home-projects
{
 background: var(--background-color);
}
.home-projects .logo
{
  padding:20px;
}
.home-projects .logo img
{
  max-width: 180px;
}
.home-projects h3
{
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.home-projects p
{
  font-size: 1.2rem;
}
.home-projects .project-slider {
  position: relative;
  padding-bottom: 20px;
}

.home-projects .project-slider .swiper-wrapper {
  height: auto !important;
}

.home-projects .project-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  padding: 0;
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
}

.home-projects .project-item .slider-text
{
  padding: 10px;
  height:130px;
}
.home-projects .project-item h4{
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: bold;
}
.home-projects .project-item p{
  font-size: 1rem;
}


.home-projects .swiper-navigation
{
  position: relative;
  margin: 25px 0;
  display: flex;

}

.home-projects .swiper-button-prev, .home-projects .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  background: var(--secondary-color);
  border-radius: 50%;
  color: var(--surface-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.home-projects .swiper-button-prev:hover,
.home-projects .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.home-projects .swiper-button-prev::after,
.home-projects .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.home-gallery .photo-gallery
{

  padding-left: 0;
}

.home-gallery .video-gallery
{

  padding-right: 0;
}
.home-gallery .photo-gallery .photo-container, .home-gallery .video-gallery .video-container
{
padding:40px;
margin-bottom:20px;
}
.home-gallery .photo-gallery .photo-container
{
  background: var(--accent-color);
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.home-gallery .video-gallery .video-container
{
  background: var(--secondary-color);
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
.home-gallery .photo-gallery img, .home-gallery .video-gallery img
{
  transition: all 0.3s ease;
  height: 240px;
  object-fit: cover;
  width: 100%;
}
.home-gallery .photo-gallery .swiper-button-prev1, .home-gallery .photo-gallery .swiper-button-next1, .home-gallery  .video-gallery .swiper-button-prev2, .home-gallery .video-gallery .swiper-button-next2 {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 50%;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.home-gallery  .photo-gallery .swiper-button-prev1:hover, .home-gallery .photo-gallery .swiper-button-next1:hover, .home-gallery  .video-gallery .swiper-button-prev2:hover, .home-gallery   .video-gallery .swiper-button-next2:hover 
  {
    background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  padding: 0px;
}

.hero .hero-wrapper {
  padding: 40px;
}

@media (max-width: 992px) {
  .hero .hero-wrapper {
    padding: 40px 0 60px;
    text-align: center;
  }
}

.hero .hero-wrapper .hero-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-wrapper .hero-content h2 {
    font-size: 2rem;
  }
}

.hero .hero-wrapper .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: justify;
}

.hero .hero-wrapper .hero-content .stats-row {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content .stats-row {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero .hero-wrapper .hero-content .stats-row .stat-item {
  margin:0 1rem;
  text-align: center;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content .stats-row .stat-item {
    margin: 0 1.5rem 1rem;
  }
}

.hero .hero-wrapper .hero-content .stats-row .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}



.hero .hero-wrapper .hero-media {
  position: relative;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-media {
    margin-top: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero .hero-wrapper .hero-media .main-image {

  transition: all 0.5s ease;
}

.home-blogs
{
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}
.home-blogs h3
{
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.home-blogs p
{
  font-size: 1.2rem;
}
.home-blogs .blog-slider {
  position: relative;
  padding-bottom: 20px;
}

.home-blogs .blog-slider .swiper-wrapper {
  height: auto !important;
}

.home-blogs .blog-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  padding: 0;
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
}

.home-blogs .blog-item .slider-text 
{
  padding: 10px;

}
.home-blogs .blog-item .slider-text .title
{
    height:70px;
}
.home-blogs .blog-item h4{
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: bold;
   margin-bottom:20px;
}
.home-blogs .blog-item p{
  font-size: 1rem;
}

.home-blogs .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.home-blogs .swiper-button-prev,
.home-blogs .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.home-blogs .swiper-button-prev:hover,
.home-blogs .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.home-blogs .swiper-button-prev::after,
.home-blogs .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;

}
.about .about-content h2 span{
  color: var(--accent-color);
  font-weight: bold;
}
.about .about-content h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.4rem;
  text-align: center;
}

.about .about-content p {
  margin-bottom: 30px;
}

.about .about-image {
  position: relative;

}

.about .about-image img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius:25px;
}


@media (max-width: 768px) {
  .about  .mission-vision {
    grid-template-columns: 1fr;
  }
}

.about .mission-vision .mission,
.about  .mission-vision .vision {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  height:100%;
}

.about  .mission-vision .mission h3,
.about  .mission-vision .vision h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-bottom:10px;
  color: var(--heading-color);
}
.about  .mission-vision .mission h3::after,
.about  .mission-vision .vision h3::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 60px;
  background-color: var(--secondary-color);
}

.about .mission-vision .mission p,
.about .mission-vision .vision p {
  margin-bottom: 0;
  font-size: 0.95rem;
}
.about .mission-vision .mission button,
.about .mission-vision .vision button {
  background: none !important;
  box-shadow: none !important;
}
#accordionVision:has(div> div.show) {
  height:100% !important;
}
.about .mission-vision .mission button::after, .about .mission-vision .mission button:not(.collapsed)::after,
.about .mission-vision .vision button::after, .about .mission-vision .vision button:not(.collapsed)::after
{
  margin-bottom: 20px !important;
}
.about .benefits h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.about .benefits {
  margin-top: 30px;
}

.about .benefits .benefit-card {
  background-color: var(--surface-color);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about .benefits .benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about .benefits .benefit-card .benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.about .benefits .benefit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.about .benefits .benefit-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}
.about .core-values
{
  border-radius: 25px;
  padding: 10px 20px;
  background-color: var(--surface-color);
}
.about .core-values img
{
  border-radius: 25px;
}
.about .core-values ul, .about .core-values ul li
{
  list-style: none;
  margin: 0;
  padding: 0;
}
.about .core-values ul li
{

  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 1rem;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%)
}
.about .core-values ul li:hover
{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .core-values ul li:last-child
{
  margin-bottom: 0;
}
.about .core-values ul li h4{
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0;
}
.about .core-values ul li p{
  margin-bottom: 0;
}
.about .md-message
{
  background: var(--accent-color);
  border-radius: 25px;
}
.about .md-message .message-container
{
  background:  var(--accent-color);
  border-radius: 25px;
}
.about .md-message .message-container .message-img{
  padding :40px;
  background: var(--surface-color);
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.about .md-message .message-container .message-text
{
  font-size: 1.25rem;
  padding: 40px;
  color: color-mix(in srgb, var(--surface-color), transparent 20%);
 line-height: 1.7;
}
.about .md-message .md-photo
{
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
@media (max-width: 576px) {
  .about .md-message .md-photo
  {
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
  }
  .about .md-message .message-container .message-img
    {
      padding: 20px;
      border-bottom-right-radius: 0;
      border-top-right-radius: 25px;
    }
  .about .md-message .message-container .message-text
  {
    padding: 20px;
  }

}



.careers .careers-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--heading-color), transparent 95%);
  transition: all 0.3s ease;
  height: 100%;
}

.careers .careers-card:hover {
  transform: translateY(-5px);
}

.careers .careers-card .careers-img {
  overflow: hidden;
}

.careers .careers-card .careers-img img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.careers .careers-card .careers-content {
  padding: 1.25rem;
  text-align: center;
}

.careers .careers-card .careers-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.careers .careers-card .careers-content .btn
{
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color:var(--default-color);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--heading-color), transparent 95%);
}
.careers .careers-card .careers-content .btn:hover
{
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color:var(--surface-color);
}


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

@media (max-width: 992px) {

  .careers .careers-card .careers-img img {
    height: 250px;
  }
}


.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 20px;
}

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

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}


/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .project-item {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  height: 100%;
}

.projects .project-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.projects .project-item .project-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.projects .project-item .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.projects .project-item .project-image:hover img {
  transform: scale(1.05);
}

.projects .project-item .project-image .project-date-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
  color: var(--contrast-color);
  padding: 8px 12px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.projects .project-item .project-image .project-date-overlay .date {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.projects .project-item .project-details {
  padding: 1.5rem;
}

.projects .project-item .project-details .project-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.projects .project-item .project-details .project-category .badge {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.projects .project-item .project-details .project-category .badge.academic {
  background: linear-gradient(45deg, #e3f2fd, #bbdefb);
  color: #0d47a1;
}

.projects .project-item .project-details .project-category .badge.sports {
  background: linear-gradient(45deg, #e8f5e8, #c8e6c9);
  color: #2e7d32;
}

.projects .project-item .project-details .project-category .badge.arts {
  background: linear-gradient(45deg, #ffebee, #ffcdd2);
  color: #c62828;
}

.projects .project-item .project-details .project-category .badge.community {
  background: linear-gradient(45deg, #fff3e0, #ffe0b2);
  color: #e65100;
}

.projects .project-item .project-details .project-category .project-time {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.3rem 0.7rem;
  border-radius: 15px;
}

.projects .project-item .project-details h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: var(--heading-color);
}

.projects .project-item .project-details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.projects .project-item .project-details .project-info {
  margin-bottom: 1.5rem;
}

.projects .project-item .project-details .project-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.projects .project-item .project-details .project-info .info-row i {
  font-size: 1rem;
  color: var(--accent-color);
  margin-right: 0.6rem;
  width: 16px;
}

.projects .project-item .project-details .project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.projects .project-item .project-details .project-footer .register-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 20%));
  color: var(--contrast-color);
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.projects .project-item .project-details .project-footer .register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.projects .project-item .project-details .project-footer .project-share {
  display: flex;
  gap: 0.5rem;
}

.projects .project-item .project-details .project-footer .project-share i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.projects .project-item .project-details .project-footer .project-share i:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.projects .projects-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.projects .projects-navigation .filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.projects .projects-navigation .filter-tabs .filter-tab {
  padding: 0.6rem 1.2rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.projects .projects-navigation .filter-tabs .filter-tab:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.projects .projects-navigation .filter-tabs .filter-tab.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.projects .projects-navigation .view-calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background-color: var(--surface-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.projects .projects-navigation .view-calendar-btn i {
  font-size: 1.1rem;
}

.projects .projects-navigation .view-calendar-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}
.project .swiper-button-prev, .project .swiper-button-next {

  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.project .swiper-button-prev:hover, .project .swiper-button-next:hover 
  {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
.swiper-button-next::after, .swiper-button-prev::after
{
  font-size: 16px;
}
.project-links
{
 
  padding:6px 4px;
  text-align: center;
}
.project-links ul
{
  padding: 0;
  margin: 0;
  list-style: none;
}
.project-links ul li
{
  display: inline-block;
}
.project-links ul li a
{
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 6px;
   display: block;
   border: 1px solid var(--accent-color);
}
.project-links ul li a:hover, .project-links ul li a:focus
{
  background:var(--accent-color);
  color:var(--contrast-color);
}

.project .amenities   .amenities-container
{
  padding: 1.5rem;
  background:  var(--surface-color);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.project .amenities .amenities-container .amenities-item {
  margin-bottom: 2.5rem;
}

.project .amenities .amenities-container .amenities-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project .amenities .amenities-container .amenities-item i {
  font-size: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.project .amenities .amenities-container .amenities-item img {
 width: 40px;
 opacity: 0.7;
}

.project .amenities .amenities-container .amenities-item span {
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.project .amenities .amenities-container .amenities-item:hover {
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 5%);
}

.project .amenities .amenities-container .amenities-item.active {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.project .amenities .amenities-container .amenities-item.active i,
.project .amenities .amenities-container .amenities-item.active span {
  color: var(--accent-color);
}


.project .project-gallery  a:before,
.project .project-gallery  a:after {
  content: "";
  position: absolute;
  width: 30%;
  height: 30%;
  background-color:  var(--accent-color);
  z-index: -1;
}

.project .project-gallery  a:before {
  bottom: 5px;
  left: 5px;  
}

.project .project-gallery  a:after {
  top: 5px;
  right: 5px;
}
.glightbox, .glightbox3 
{
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding:8px;
}
.playWrapper {
  position: absolute;
  z-index: 2;
  width: 80px;
  height: 80px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  opacity: 0.60;
}
.playWrapper img
{
  width: 100% !important;
 max-width: 100% !important;
 height: 100% !important;
}
.popup-video
{
  max-width: 480px;
  margin: 10px auto;
}
.featured-projects .featured-project-item
{  
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid
  color-mix(in srgb, var(--default-color), transparent 90%); 
  display: block;
}
.featured-projects .featured-project-item:hover
{
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}
.featured-projects .featured-project-item:last-child
{
    border-bottom: none;
}
.featured-projects .featured-project-item img
{
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}
.featured-projects .featured-project-item .post-title
{
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.2;
}
.featured-projects .featured-project-item .post-title a
{
  color: var(--default-color);
}
.featured-projects .featured-project-item .post-location
{
  color: var(--accent-color);
  margin-top: 0.25rem;
  font-weight: 400;
}
.featured-projects .featured-project-item .post-location i
{
  color: var(--secondary-color);

}
.featured-projects .featured-project-item p
{
  margin-bottom: 0 ;
}
.featured-projects .featured-project-item p span
{
  font-size: 0.8125rem;
 color: color-mix(in srgb, var(--default-color), transparent 30%);  
}
.action-buttons
{
  padding: 1rem;
}
.action-buttons a
{
    background: var(--secondary-color);
    color: var(--default-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: block;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin:6px 0;
}

.action-buttons a:hover
{
  background: var(--accent-color);
  color: var(--contrast-color);
}

.action-buttons a i
{
 margin-right: 4px;
 font-weight: bold;
}
.btn-readmore
{
    background: var(--secondary-color);
    color: var(--default-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin:6px 0;
}

.btn-readmore:hover
{
  background: var(--accent-color);
  color: var(--contrast-color);
}

.btn-readmore i
{
 margin-right: 4px;
 font-weight: bold;
}

@media (max-width: 768px) {
  .projects .project-item .project-image {
    height: 180px;
  }

  .projects .project-item .project-details {
    padding: 1.25rem;
  }

  .projects .project-item .project-details .project-category {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .projects .projects-navigation .filter-tabs {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .projects .projects-navigation .view-calendar-btn {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
}

.pagination-2 nav {
  position: relative;
}

.pagination-2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.pagination-2 li.ellipsis {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 8px 16px;
  user-select: none;
}

.pagination-2 li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 16px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
}

.pagination-2 li a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pagination-2 li a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pagination-2 li a i {
  font-size: 14px;
}

.pagination-2 li a span {
  margin: 0 4px;
}

@media (max-width: 575px) {
  .pagination-2 ul {
    gap: 4px;
  }

  .pagination-2 li a {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# project Section
--------------------------------------------------------------*/
.project .project-meta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 8px;
}

.project .project-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.project .project-meta .meta-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.project .project-meta .meta-item span {
  font-weight: 500;
}

.project .project-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .project .project-content h2 {
    font-size: 1.8rem;
  }
}

.project .project-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}
.project .project-content h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(45deg, var(--secondary-color),color-mix(in srgb, var(--secondary-color), var(--secondary-color)30%));
  border-radius: 2px;
}

.project .project-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}
.project .overview
{
  text-align: center;
}
.project .overview .overview-list
{
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.project .overview .overview-list li
{
  display: inline-block;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  margin-right: 24px;
}
.project .overview .overview-list li i
{
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.project .features .card-item {
  background-color: var(--surface-color);
  padding: 20px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--surface-color);
}

.project .features .card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.project .features .card-item .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.project .features .card-item .feature-icon i {
  font-size: 28px;
  color: var(--accent-color);
}
.project .features .card-item .feature-icon img {
 width:40px;
}

.project .features .card-item h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.project .project-content .why-project .why-box
{
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 2rem;
  border-radius: 8px;

}
.project .project-content .why-project .why-box div
{
  margin: 2px 0;
  text-align: center;
}
.project .project-content .why-project .why-box div h5
{
  font-weight: bold;
    margin-bottom: 20px;;
}
.project .project-content .why-project .why-box div .btn
{
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  margin:20px 12px;
  transition: all 0.3s ease;
  font-weight: 600;
  animation: shadowPulse 1s infinite linear;
}
.project .project-content .why-project .why-box div .btn:hover {
  background-color:  var(--secondary-color);
  border-color:  var(--secondary-color);
  color: var(--default-color);
 
}
.project .project-content .why-project .why-box div .btn::after
{
  position: absolute;
  content: '';

  border:  var(--secondary-color) solid 2px;
  animation: ringPulse 1s infinite linear;
}

  @keyframes ringPulse {
      0% {
          opacity: 0;
          transform: scale(0.95);
      }

      10% {
          opacity: 1;
      }

      80%, 100% {
          opacity: 0;
          transform: scale(2);
      }
  }

  @keyframes shadowPulse {
      0% {
          box-shadow: 0 0 8px 6px transparent,
                      0 0 0 0 transparent,
                      0 0 0 0 transparent;
      }

      10% {
          box-shadow: 0 0 8px 6px  color-mix(in srgb, var(--accent-color), transparent 65%),
                      0 0 12px 10px transparent,
                      0 0 12px 5px  color-mix(in srgb, var(--accent-color), transparent 65%);
      }

      80%, 100% {
          box-shadow: 0 0 8px 6px transparent,
                      0 0 0 40px transparent,
                      0 0 0 40px transparent;
      }
  }

.project .project-content .why-project .why-box i
{
  color: var(--accent-color);
  font-size: 2rem;
  margin-right: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-whyproject .modal-header
{
  background-color: var(--accent-color);
}
.modal-whyproject .modal-header .modal-title
{
  color: var(--surface-color) !important;
}
.modal-whyproject .modal-body ol > li::marker {
  font-weight: bold;
  color: var(--accent-color);
}
.modal-whyproject .modal-footer .btn
{
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.modal-whyproject h5
{
  color: var(--accent-color);
  font-weight: bold;
}

.project .project-content .project-highlights {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.project .project-content .project-highlights li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.project .project-content .project-highlights li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 3px;
}

.project .project-content .project-highlights li span {
  flex: 1;
}

.project .project-content .schedule-table {
  margin-top: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.project .project-content .schedule-table .schedule-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.project .project-content .schedule-table .schedule-row:last-child {
  border-bottom: none;
}

.project .project-content .schedule-table .schedule-row:nth-child(odd) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 576px) {
  .project .project-content .schedule-table .schedule-row {
    flex-direction: column;
  }
}

.project .project-content .schedule-table .schedule-time {
  width: 180px;
  padding: 15px;
  font-weight: 600;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
}

@media (max-width: 576px) {
  .project .project-content .schedule-table .schedule-time {
    width: 100%;
  }
}

.project .project-content .schedule-table .schedule-activity {
  flex: 1;
  padding: 15px 20px;
}

.project .project-content .schedule-table .schedule-activity h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.project .project-content .schedule-table .schedule-activity p {
  margin: 0;
  font-size: 0.95rem;
}

.project .project-content .project-gallery img {
  transition: all 0.3s ease;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.project .project-content .project-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project .project-sidebar .sidebar-widget {
  margin-bottom: 30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.project .project-sidebar .sidebar-widget h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.project .project-sidebar .sidebar-widget h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  background-color: var(--secondary-color);
}
.project .project-sidebar .enquiry-form .form-label {
  margin-bottom: 0;
  font-size: 0.864rem;
}

.project .project-sidebar .enquiry-form .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.project .project-sidebar .enquiry-form .btn-submit:hover {
  background-color:  var(--accent-color);
  color: var(--surface-color);
  transform: translateY(-2px);
}

.project .project-sidebar .enquiry-form .btn-submit:active {
  transform: translateY(0);
}

.project .project-sidebar .organizer-info .organizer-details {
  display: flex;
  flex-direction: column;
}

.project .project-sidebar .organizer-info .organizer-details .organizer-image {
  margin-bottom: 15px;
}

.project .project-sidebar .organizer-info .organizer-details .organizer-image img {
  border-radius: 8px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project .project-sidebar .organizer-info .organizer-details .organizer-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.project .project-sidebar .organizer-info .organizer-details .organizer-content .organizer-position {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.project .project-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
}

.project .project-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.project .project-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p:last-child {
  margin-bottom: 0;
}

.project .project-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p i {
  color: var(--accent-color);
}

.project .project-sidebar .featured-projects .related-project-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.project .project-sidebar .featured-projects .related-project-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project .project-sidebar .featured-projects .related-project-item .related-project-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 70px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
}

.project .project-sidebar .featured-projects .related-project-item .related-project-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.project .project-sidebar .featured-projects .related-project-item .related-project-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.project .project-sidebar .featured-projects .related-project-item .related-project-info {
  flex: 1;
}

.project .project-sidebar .featured-projects .related-project-item .related-project-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.project .project-sidebar .featured-projects .related-project-item .related-project-info p {
  margin: 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.contact-map
{
  padding-bottom: 0 !important;
}
.contact-map .map-container 
{
  height:300px;
}


@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-content .contact-title h2{
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--accent-color);
}

.contact .contact-card {
  padding: 14px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;

}

.contact .contact-card:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact   .social-links {
  display: flex;
  padding: 14px 20px;
  gap: 12px;

}

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

.contact  .social-links a:hover {
  background-color:  var(--accent-color);
  color: var(--surface-color);
  transform: translateY(-3px);
}


.contact .contact-form-container {
  background-color: var(--surface-color);
  border-radius: 16px;  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  background-color: var(--secondary-color);
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

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

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

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}


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

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}
.blogs .card-post
{
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}
.blogs .post-content
{
  padding:1.2rem;
}
.blogs .date
{
  font-size: 0.96rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.blogs .post-title
{
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 0 0 20px 0;
}
.blogs .post-title a
{
 color: color-mix(in srgb, var(--heading-color), transparent 20%);
  transition: 0.3s;
}
.blogs .btn-blog-details
{
  font-weight: bold;
  margin-left: 5px;
  transition: transform 0.3s;
}
.blogs .btn-blog-details:hover
{
 transform: translateX(5px);
}
.blog-title
{
  color: var(--accent-color);
  font-weight: bold;
  font-size: 2.5rem;
}
.contactModal .modal-header, .contactModal .modal-footer
{
 background-color: var(--accent-color);

}
.contactModal .modal-header h3
{
   color:var(--contrast-color)
}
.ast{
  margin-left: 6px;
  color:#d00;
}

.fade2 {
    transform: scale(0.9);
    opacity: 0;
    transition: all .2s linear;
}

.fade2.show {
    opacity: 1;
    transform: scale(1);
}
.btn-yellow
{
   background-color: var(--secondary-color);
}
.btn-yellow:hover
{
   background-color: color-mix(in srgb,var(--secondary-color), transparent 30%);
}