
/* Fonts */
:root {
  --default-font: "Roboto", sans-serif;
  --heading-font: "DM Sans", sans-serif;
  --nav-font: "Roboto", sans-serif;
}


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --primary-color: #2a1770;
  --secondary-color: #e5722e;
  --accent-color: #128446;
  --default-color: #333333;
  --background-color: #ffffff;
  --contrast-color: #ffffff;
  --hover-bg:#EDF2F4;
  --heading-color:#2a1770;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1210px;
    }
}
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);
}


/*--------------------------------------------------------------
# Global Main
--------------------------------------------------------------*/
.main{
  margin-top: 100px;
}
@media (max-width: 768px) {
	.main{
	  margin-top: 80px;
	}

	/* p{
		font-size: 14px!important;
	} */
	section, .section, .footer .footer-top {
		padding: 60px 0!important;
	}
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

/*--------------------------------------------------------------
# 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(--default-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--default-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.5s;
    position: relative;
  }

  .navmenu a.active::after,
  .navmenu a:hover::after{
    content: '';
    position: absolute;
    height: 5px;
    width: 80%;
    background: var(--secondary-color);
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  /* .navmenu li:last-child a {
    padding-right: 0;
  } */

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--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 color-mix(in srgb, var(--default-color), transparent 85%);
  }

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

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

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

  .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(--secondary-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(--default-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(--background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    padding: 10px 20px;
    font-family: var(--default-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(--secondary-color), transparent 90%);
  }

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

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

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--secondary-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(--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;
  }
}
@media (max-width: 768px) {
  .header .logo img{
    max-height: 60px;
  }
}

/*--------------------------------------------------------------
# Section Call to Action
--------------------------------------------------------------*/
.section-cta{
  background-color: var(--hover-bg);
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #f7f7f7;
  font-size: 14px;
  position: relative;
  background-image: url('../img/footer-bg.svg');
 background-position: bottom right;
 background-size: auto;
 background-repeat: no-repeat;
}

.footer .footer-top {
  padding: 70px 0px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 120px;
  margin-right: 6px;
}

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

.footer h4 {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.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: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(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  font-size: 16px;
}

.footer .copyright {
  padding: 30px 0;
  border-top: 1px solid rgb(106 106 106 / 10%) ;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .footer .footer-about .logo img{
    max-height:80px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .footer .footer-about .logo img{
    max-height:100px;
  }
}

/*--------------------------------------------------------------
# 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;
}
#preloader img{
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
}

@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: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# Global Button Style
--------------------------------------------------------------*/
.tctu-btn a{
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: capitalize;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    -webkit-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    gap: 8px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
}
.tctu-btn a i{
  font-size: 20px;
}

.tctu-btn a.btn-sty1{
  background-color: var(--secondary-color);
  color: var(--contrast-color);
  box-shadow: none;
  border: none;
}
.tctu-btn a.btn-sty2{
  background-color: var(--background-color);
  color: var(--primary-color);
  box-shadow: none;
  border: none;
}

.tctu-btn a:before {
    content: '';
    width: 0;
    height: 100%;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: -5%;
    background-color: var(--primary-color);
    -webkit-transition: .5s ease;
    transition: .5s ease;
    display: block;
    z-index: -1;
}
.tctu-btn a.btn-sty1:before {
    background-color: var(--accent-color);
}
.tctu-btn a.btn-sty2:before {
    background-color: var(--secondary-color);
    color: var(--contrast-color) !important;
}

.tctu-btn a:hover:before{
    width: 110%;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: #fff;
  background-color: #1F0F5A;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
 /*  text-align: center; */
  position: relative;
}

.page-title:before {
  content: "";
  background-color: #1F0F5A;
  /* position: absolute; */
  inset: 0;
}

.page-title h1, .cta-section h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.page-title .breadcrumbs ol, .cta-section .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, .cta-section .breadcrumbs ol li+li {
  padding-left: 10px;
  color: #fff;
}

.page-title .breadcrumbs ol li+li::before, .cta-section .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
/*   color: color-mix(in srgb, var(--default-color), transparent 50%); */
}
@media (max-width: 767px) {
	.page-title h1, .cta-section h1 {
		font-size: 30px;
		/* margin-bottom: 0; */
	}
	.page-title, .cta-section {
		padding: 45px 0;
	}
	
}

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 700;
  /* margin-bottom: 15px; */
  /* line-height: 50px; */
  color:var(--primary-color);
  /* margin-bottom: 30px; */
}
.section-title h2 span{
  color:var(--secondary-color);
}
@media (max-width: 768px) {
  .section-title h2{
    font-size: 30px;
    /* line-height: 40px; */
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .section-title h2{
    font-size: 36px;
    line-height: 42px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 100px);
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero .carousel{
    min-height: 250px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .hero .carousel{
     min-height: 400px;
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.section-about{

}
.section-about .flag_img{
  position: relative;
}
.section-about .flag_img::after{
    position: absolute;
    content: '';
    background-image: url('../img/flag.svg');
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-size: cover;
    background-repeat: no-repeat;
}
.section-about .flag_img img{
  z-index: 1;
  position: relative;
}
/*--------------------------------------------------------------
# Mission Section
--------------------------------------------------------------*/
.section-mission .icon-box.icon-box-sty1{
  background-color: var(--background-color);
  padding: 50px;
}
.section-mission .icon-box{
    transition: 0.5s
}
.section-mission .icon-box.icon-box-sty1 .desc-wrapper h4{
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 15px;
}
.section-mission .icon-box.icon-box-sty1.icon-box-active{
    background-color: var(--hover-bg);
}
.section-mission .icon-box:hover{
  background-color: var(--hover-bg);
}
/*--------------------------------------------------------------
# Achievements Section
--------------------------------------------------------------*/
.section-achievements{
  background: url('../img/achievements-bg.jpg') no-repeat center center;
  background-size: cover;
}
.section-who{
  background: url('../img/who-bg.jpg') no-repeat center center;
  background-size: cover;
}
.counter-box h3{
  font-size: 50px;
  font-weight: 700;
}
.counter-box .stat-label{
  font-size: 24px;
  /* line-height: 30px; */
  font-weight: 700;
}
@media (max-width: 768px) {
  .counter-box h3{
    font-size: 30px;
  }
  .counter-box .stat-label{
    font-size: 18px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .counter-box h3{
    font-size: 34px;
  }
  .counter-box .stat-label{
    font-size: 20px;
  }
}
/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery-box{
  border-radius: 12px;
}
.gallery-box .gallery-img img {
  border-radius: 12px;
  transition: 0.5s;
}
.gallery-box .gallery-img:hover img {
  border-radius: 12px;
  transform: scale(1.1);
}
/*--------------------------------------------------------------
# Board Committee Section
--------------------------------------------------------------*/
.section-boardcommittee {
  background: url('../img/pattern.png') no-repeat center center;
  background-color: #1F0F5A;
}
.member-box .member-desc h4{
  font-weight: 600;
}
/*--------------------------------------------------------------
# Blog Posts 2 Section
--------------------------------------------------------------*/
.blog-posts-2 article {
  background-color: var(--background-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.blog-posts-2 .post-img img {
  min-height: 275px;
  object-fit: cover;
  transition: 0.5s;
}

.blog-posts-2 .post-content {
  padding: 30px;
}

.blog-posts-2 .post-title {
  font-size: 20px;
  line-height: 24px;
  color: var(--heading-color);
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}

.blog-posts-2 .meta {
  position: relative;
  margin-top: -20px;
  padding: 0 30px;
}

.blog-posts-2 .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts-2 .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts-2 .meta .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  padding: 6px 12px;
  text-align: center;
  margin-right: 15px;
  border-radius: 4px;
}

.blog-posts-2 .meta .post-date span {
  display: block;
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 20px;
}

.blog-posts-2 .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
  color: var(--accent-color);
}

.blog-posts-2 .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts-2 article:hover .post-title,
.blog-posts-2 article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts-2 article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* .contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
} */

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  /* padding: 120px 0 100px; */
  background-color: #f7f7f7;
}

.contact .info-item {
  margin-bottom: 80px;
}

.contact .info-item .info-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

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

.contact .info-item .info-content h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

.contact .info-item .info-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.contact .contact-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
}

.contact .contact-details .detail-item:last-child {
  margin-bottom: 0;
}

.contact .contact-details .detail-item .detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-details .detail-item .detail-icon i {
  font-size: 18px;
  color: var(--accent-color);
}

.contact .contact-details .detail-item .detail-content {
  flex: 1;
}

.contact .contact-details .detail-item .detail-content .detail-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.contact .contact-details .detail-item .detail-content .detail-value {
  display: block;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.6;
}

.contact .form-header {
  margin-bottom: 48px;
}

.contact .form-header h3 {
  font-size: 32px;
  font-weight: 300;
  /* color: var(--heading-color); */
  margin: 0;
  letter-spacing: -0.4px;
}

.contact .form-wrapper {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
}

.contact .form-wrapper .form-group {
  margin-bottom: 32px;
}

.contact .form-wrapper .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.contact .form-wrapper .form-group input,
.contact .form-wrapper .form-group select,
.contact .form-wrapper .form-group textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  font-family: inherit;
}

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

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

.contact .form-wrapper .form-group select {
  cursor: pointer;
}

.contact .form-wrapper .form-group select option {
  padding: 10px;
}

.contact .form-wrapper .form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contact .form-wrapper .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 8px;
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.contact .form-wrapper .submit-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.contact .form-wrapper .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .form-wrapper .submit-btn:hover i {
  transform: translateX(4px);
}

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

  .contact .info-item {
    margin-bottom: 50px;
  }

  .contact .info-item .info-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }

  .contact .info-item .info-icon i {
    font-size: 20px;
  }

  .contact .info-item .info-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .contact .contact-details .detail-item {
    margin-bottom: 32px;
  }

  .contact .form-header {
    margin-bottom: 32px;
  }

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

  .contact .modern-form .form-group {
    margin-bottom: 24px;
  }
  .contact .form-wrapper .form-group {
		margin-bottom: 24px;
	}
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-masonry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  opacity: 0.5;
  z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
  margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
  margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
  color: var(--accent-color);
}

.testimonials .testimonial-content {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  position: relative;
}

.testimonials .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .client-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
  font-size: 0.875rem;
  color: #0a8545;
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials .testimonial-item:nth-child(3n-1),
  .testimonials .testimonial-item:nth-child(3n) {
    margin-top: 0;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 0;
  }

  .testimonials .testimonial-content {
    padding: 1.5rem;
  }

  .testimonials .testimonial-content p {
    font-size: 0.9375rem;
    margin: 1.25rem 0;
  }

  .testimonials .quote-pattern {
    width: 2.25rem;
    height: 2.25rem;
    top: -1.125rem;
  }

  .testimonials .quote-pattern i {
    font-size: 1.125rem;
  }

  .testimonials .client-info {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .testimonials .client-image {
    width: 45px;
    height: 45px;
  }

  .testimonials .client-details h3 {
    font-size: 1rem;
  }

  .testimonials .client-details .position {
    font-size: 0.8125rem;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team .team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.team .team-card:hover .member-img .social-overlay {
  opacity: 1;
}

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

.team .team-card.featured {
  transform: scale(1.03);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.team .team-card.featured .member-info {
  background: var(--accent-color);
}

.team .team-card.featured .member-info .member-badge {
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
  color: var(--contrast-color);
}

.team .team-card.featured .member-info h4 {
  color: var(--contrast-color);
}

.team .team-card.featured .member-info p {
  color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
}

.team .team-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.team .team-card .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-card .member-img img {
  width: 100%;
  /* aspect-ratio: 1/1;
  object-fit: cover; */
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.team .team-card .member-info {
  padding: 24px;
  text-align: center;
  transition: background 0.3s ease;
}


.team .team-card .member-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.team .team-card .member-info p {
  font-size: 14px;
  color: #0a8545;
  margin: 0;
}


@media (max-width: 992px) {
  .team {
    padding: 80px 0;
  }

  .team .team-card.featured {
    transform: none;
  }

  .team .team-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 576px) {
  .team {
    padding: 60px 0;
  }

  .team .team-card .member-info {
    padding: 20px;
  }

  .team .team-card .member-info h4 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/

.cta-section {
  /* margin-top: 80px; */
  /* margin-bottom: 80px; */
  padding: 80px;
  background: linear-gradient(135deg, #1F0F5A, color-mix(in srgb, #1F0F5A 70%, #6366f1));
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (max-width: 992px) {
  .cta-section {
    padding: 48px 32px;
    margin-top: 64px;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 40px 24px;
    border-radius: 16px;
  }
}

.cta-section .cta-content {
  position: relative;
  z-index: 2;
}

.cta-section .cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.cta-section .cta-label i {
  font-size: 16px;
}

.cta-section h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--contrast-color);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .cta-section h3 {
    font-size: 28px;
  }
}

.cta-section p {
  font-size: 18px;
  color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

@media (max-width: 768px) {
 .cta-section p {
    font-size: 16px;
  }
}

.cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.cta-section .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
 .cta-section .btn-cta-primary {
    width: 100%;
    justify-content: center;
  }
}

.cta-section .btn-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.cta-section .btn-cta-primary:hover i {
  transform: translateX(4px);
}

.cta-section .btn-cta-primary i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cta-section .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--contrast-color);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--contrast-color) 40%, transparent);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 576px) {
  .cta-section .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

.cta-section .btn-cta-secondary:hover {
  background: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  border-color: var(--contrast-color);
}

.cta-section .btn-cta-secondary i {
  font-size: 20px;
}

.cta-section .cta-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-section .cta-decoration .floating-shape {
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, var(--contrast-color) 10%, transparent);
}

.cta-section .cta-decoration .floating-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.cta-section .cta-decoration .floating-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: -60px;
}

.cta-section .cta-decoration .floating-shape.shape-3 {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--default-color);
}
.features-list .feature-item i {
    font-size: 16px;
    color: var(--accent-color);
    flex-shrink: 0;
}
.section-about .hero-image {
  position: relative;
}
.floating-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--accent-color);
  padding: 1.5rem;
  border-radius: 12px 0 12px 0;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
  z-index: 1;
}

@media (max-width: 768px) {
  .floating-card {
    bottom: 10px;
    left: 10px;
    padding: 1rem;
    min-width: 160px;
  }
}

.floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.floating-card .card-content h5 {
  margin: 0 0 0.25rem 0;
  color: #fff;
  font-weight: bold;
}

.floating-card .card-content .growth-percentage {
  color: #fff;
}