/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #761113;
    --light: #fff;
    --dark: #000;
	--secondary: #0062ac;
	--yellow: #f8d809;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Merriweather', serif;
}
body {
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
	background: #f6f4ee;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.top-bar{
	background: var(--primary);
	color: #fff;
	padding: 5px 0;
}
.top-bar i{
	color: #fff;
	font-size: 16px;
}
.top-bar a{
	text-decoration: none;
	color: #fff;
}
.top-bar-inner{
	display: flex;
	gap: 20px;
}
.top-bar-icon {
    display: flex;
    gap: 12px;
    align-items: center;
}
.top-bar-icon p{
    margin: 0 !important;
}
.top-bar-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .main-header {
      left: 0;
      width: 100%;
      z-index: 10;
      background: #fff !important;
	padding: 20px 0;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: #fff !important;
    padding: 12px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.logo-box {
    position: absolute;
    top: 0px;
    z-index: 20;
    background: #ffffff;
    padding: 25px 10px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.3);
}
.logo a {
    text-decoration: none !important;
    color: #000;
    /* font-size: 50px !important; */
}
.logo h5 {
    font-size: 32px;
    /* text-decoration: none !important; */
}
.logo-box img {
    width: 120px;
    height: auto;
}
.wpcf7-submit {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0;
    transition: all 0.3s ease;
	display: inline-block;
	border: none;
}
.wpcf7-submit:hover {
    border-radius: 0 20px;
}
.site-header .nav > li > a {
  text-decoration: none;
  padding: 5px 15px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  display: inline-block;
  color: #000 !important;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
    background: var(--secondary);
    padding: 5px 15px;
	color: #fff !important;
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#mobileMenuBtn:hover{
	background: #fff;
}
#mobileMenuBtn i{
	color: var(--primary) !important;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
 
#mobileMenu .menu-item-has-children {
    position: relative;
}
#mobileMenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
	color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children.active > .sub-menu {
    display: block;
}
#mobileMenu .sub-menu li a {
    padding: 0 10px;
    display: block;
    font-size: 15px;
    color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children > a {
    position: relative;
    padding-right: 40px;
}
#mobileMenu .dropdown-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#mobileMenu .menu-item-has-children.active .dropdown-arrow i {
    transform: rotate(180deg);
}
.top-bar-icon .social-icons a i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.top-bar-inner-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 40%;
	z-index: 2;
}
section.breadcrumb-section {
    background: linear-gradient(45deg, #c5c5c5, #761113);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 48vh;
    position: relative;
}
.breadcrumb-item.active {
    color: #ffffff !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: var(--primary) !important;
}
.breadcrumb-title h2 {
    color: #ffffff;
}
li.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.tags{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    font-size: 15px;
}

.tags i{
    color: #d4a017;
    font-size: 18px;
}

.tags a{
    display: inline-block;
    padding: 10px 18px;
    background: #f5f7fa;
    color: #111;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.tags a:hover{
    background: #d4a017;
    color: #fff;
    transform: translateY(-3px);
    border-color: #d4a017;
    box-shadow: 0 8px 20px rgba(212,160,23,0.25);
}

/* Remove comma spacing issue */
.tags a:not(:last-child){
    margin-right: 5px;
}

/* Responsive */

@media (max-width: 767px){

    .tags{
        gap: 10px;
    }

    .tags a{
        font-size: 13px;
        padding: 8px 14px;
    }
}
/*===============================
      FOOTER SECTION CSS
================================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: var(--primary);
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--primary);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer {
    position: relative;
    background: url(https://webzensys.com/work/aureusuniversity.ca/wp-content/uploads/2026/03/footer-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000;
    z-index: 1;
	padding-top: 30px;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #bfbfbf, #3d6db3);
    z-index: -1;
}
footer > * {
    position: relative;
    z-index: 2;
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 155px;
    display: block;
}
.footer_menu {
    padding: 40px 0 0 0;
}
.footer-details li {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    gap: 20px;
}
ul.footer-details li i {
    background: var(--secondary);
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
.menu,.footer-details {
    margin-top: 25px;
}
footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a{
	color: var(--dark) !important;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	transition: transform 0.3s ease;
	line-height: 40px;
}
footer .menu li::after {
  content: "\f061"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: var(--primary);
}

footer .menu li:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}
footer .social-icons {
    display: flex;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--primary);
}
h5.footr-logo {
    font-size: 27px;
    font-weight: 600;
    color: #1c1c1c;
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--light);
    background-color: #2f558d;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: #000;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--secondary);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: var(--white);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
a.btn-primary {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0;
    transition: all 0.3s ease;
	display: inline-block;
}

a.btn-primary:hover {
    border-radius: 0 20px;
    background: var(--secondary);
}


/* slider section  */
.hero-slider .carousel-item {
    height: 100vh;
    min-height: 650px;
    position: relative;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay */
.hero-slider .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.hero-slider .carousel-caption {
    z-index: 2;
    bottom: 50%;
    transform: translateY(50%);
    text-align: left;
    max-width: 700px;
}

.hero-slider .sub-title {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #d7d7d7;
    margin-bottom: 15px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #0d6efd38, #76111394);
}

.hero-slider .carousel-caption h1 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-slider .carousel-caption p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.slider-btns .btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    margin-right: 15px;
}

.slider-btns .btn-primary {
    background: var(--primary);
    border-color: #000;
}

.slider-btns .btn-primary:hover {
    background: var(--secondary);
    border-color: #000;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

@media (max-width: 991px) {

    .hero-slider .carousel-item {
        height: 85vh;
    }

    .hero-slider .carousel-caption h1 {
        font-size: 45px;
    }
}

@media (max-width: 767px) {

    .hero-slider .carousel-caption {
        text-align: center;
        left: 5%;
        right: 5%;
    }

    .hero-slider .carousel-caption h1 {
        font-size: 34px;
    }

    .hero-slider .carousel-caption p {
        font-size: 15px;
    }

    .slider-btns .btn {
        padding: 12px 24px;
        margin-bottom: 10px;
    }
}

/* About Section  */
.about-section {
    background: #ffffff;
}

.about-content {
    padding-right: 40px;
}

span.sub-title {
display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
}
.about-content h2 {
    font-size: 33px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #111;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.feature-item {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background: #e66d00;
    color: #fff;
}

.about-image {
    position: relative;
    height: 420px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
img.award {
    position: absolute;
    width: 172px;
    box-shadow: none !important;
    right: 0px;
    top: -58px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    padding: 4px;
}
/* RESPONSIVE */
@media (max-width: 991px) {

    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {

    .about-content h2 {
        font-size: 30px;
    }

    .feature-item {
        font-size: 15px;
    }
}

.finance-cards-section {
    background: #f8f9fc;
}

.section-title span {
    color: var(--secondary);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 33px;
    font-weight: 700;
    margin-top: 10px;
    color: #111;
}

.finance-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 550px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

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

.finance-card-image {
    overflow: hidden;
}

.finance-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s ease;
}

.finance-card:hover img {
    transform: scale(1.08);
}

.finance-card-content {
    padding: 30px 30px 0px 30px;
}
.finance-card-content a {
    margin-bottom: 20px;
}
.finance-card-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.finance-card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.finance-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.finance-btn:hover {
    background: #e56d00;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .section-title h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {

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

    .finance-card-content {
        padding: 25px;
    }
}


.why-trust-section {
    background: #dddddd;
    position: relative;
}

.sub-title {
    display: inline-block;
    background: #ffffff12;
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    color:#111827;
}

.section-desc{
    font-size:18px;
    color:#6b7280;
}

.counter-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid var(--secondary);
}

.counter-box:hover{
    transform:translateY(-8px);
}

.counter-icon {
    background: var(--primary);
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    /* align-self: center; */
    border-radius: 20px;
    margin: 0 auto 10px;
}
.counter-icon img{
    width:60px;
}

.counter-number{
    font-size:35px;
    font-weight:800;
    color:#005ca2;
    margin-bottom:9px;
}

.counter-box h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#111827;
}

.counter-box p{
    color:#6b7280;
    font-size:16px;
    line-height:1.7;
}

.cta-text{
    font-size:18px;
    color:#4b5563;
    margin-bottom:25px;
}
.section-desc {
    font-size: 18px;
    color: #3f4247;
    font-weight: 400;
}

/* Logo  Slider */
.logo-slider-section{
    background:#f8fafc;
    overflow:hidden;
}

.logo-item {
    background: #fff;
    border: 1px solid var(--secondary);
    border-radius: 16px;
    padding: 25px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}
.logo-item img {
    max-width: 221px;
    max-height: 119px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s ease;
}

.logo-item:hover img{
    filter:grayscale(0%);
    opacity:1;
}
.swiper-pagination{
    position:relative;
    margin-top:30px;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#cbd5e1;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#0d6efd;
}

/* Contact Section  */
.contact-section{
    background:#f8fafc;
}

.contact-content .sub-title {
    display: inline-block;
    background: #0d6efd00;
    color: #0d6efd;
    padding: 8px 5px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    /* margin-bottom: 20px; */
}

.contact-content h2{
    font-size:42px;
    font-weight:700;
    color:#111827;
    margin-bottom:20px;
}

.contact-content p{
    color:#6b7280;
    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
}

.contact-info .info-box{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
}

.contact-info .info-box i{
    width:60px;
    height:60px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-info .info-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-info .info-box a{
    color:#6b7280;
    text-decoration:none;
}

.contact-form-box{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* .contact-form-box .form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    padding:15px;
    box-shadow:none;
} */

/* .contact-form-box textarea.form-control{
    height:auto;
} */
/* 
.contact-form-box .form-control:focus{
    border-color:#0d6efd;
} */

.select-wrapper{
    position:relative;
}

.select-wrapper select.form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    padding:0 45px 0 15px;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    box-shadow:none;
}

.select-wrapper i{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    color:#6b7280;
    font-size:14px;
    pointer-events:none;
}



/* Contact Form Wrapper */
.wpcf7 {
    width: 100%;
}

.wpcf7 form {
    max-width: 700px;
    margin: auto;
}

/* Input Fields */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    color: #333;
    margin-bottom: 20px;
    transition: 0.3s ease;
    outline: none;
}

/* Focus Effect */
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

/* Textarea */
.wpcf7 textarea {
    height: 140px;
    resize: none;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Hover */
.wpcf7 input[type="submit"]:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Response Message */
.wpcf7-response-output {
    margin-top: 20px;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
}

/* Validation Error */
.wpcf7-not-valid-tip {
    color: #e63946;
    font-size: 13px;
    margin-top: -12px;
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 textarea,
    .wpcf7 select {
        padding: 12px 15px;
        font-size: 15px;
    }

    .wpcf7 input[type="submit"] {
        width: 100%;
    }
}

.award-sec {
    padding: 20px 0px 46px;
    background: #f9f3f3eb;
}

.award-header{
    margin-bottom: 40px;
}

.award-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.award-item{
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.award-item:hover{
    transform: translateY(-5px);
}

.award-item img {
    max-width: 250px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Blog Section */
.blog-card{
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-img{
    position: relative;
    overflow: hidden;
}

.blog-img img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s ease;
    display: block;
}

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

.blog-content{
    padding: 30px;
}

.blog-title {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-title a{
    color: #111;
    text-decoration: none;
    transition: 0.3s ease;
}

.blog-title a:hover{
    color: #d4a017;
}

.blog-excerpt{
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #d4a017;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover{
    background: #111;
    color: #fff;
    transform: translateY(-3px);
}

.blog-bottom{
    margin-bottom: 20px;
}
footer.mb-4 {
    display: none !important;
}

/* Responsive */

@media (max-width: 767px){

    .blog-content{
        padding: 20px;
    }

    .blog-title{
        font-size: 22px;
    }

    .blog-excerpt{
        font-size: 15px;
    }

    .btn-primary{
        width: 100%;
    }
}

/* Home Blog */

.home-blog-section {
    padding: 0px 0 50px;
    background: #f8f9fc;
}

.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2{
    font-size: 42px;
    color: #111;
    font-weight: 700;
}

.blog-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.blog-card{
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.blog-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.blog-img{
    overflow: hidden;
}

.blog-img img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s ease;
    display: block;
}

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

.blog-content{
    padding: 28px;
}

.blog-date{
    display: inline-block;
    font-size: 14px;
    color: #999;
    margin-bottom: 14px;
}

.blog-title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 700;
}
.blog-title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.blog-excerpt{
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
}

/* .blog-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    background: #d4a017;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-btn:hover{
    background: #111;
    color: #fff;
} */

/* Responsive */

@media (max-width: 991px){

    .blog-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .section-title h2{
        font-size: 34px;
    }
}

@media (max-width: 767px){

    .home-blog-section{
        padding: 70px 0;
    }

    .blog-grid{
        grid-template-columns: 1fr;
    }

    .section-title{
        margin-bottom: 40px;
    }

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

    .blog-content{
        padding: 22px;
    }

    .blog-title{
        font-size: 21px;
    }

    .blog-btn{
        width: 100%;
    }
}