/*!
Theme Name: msmestrategy
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: msmestrategy
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

msmestrategy is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

body{
	background:#ffffff;
	color:#222;
}

/** @format */

* {
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #0f3186;
}

.btn-primary {
  margin-top: 30px;
  background: var(--color-primary);
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  color: white;
}

.btn-primary:hover {
  color: var(--color-primary);
  background-color: white;
}

.btn-secondary-custom {
  margin-top: 30px;

  border: none;
  padding: 9px 30px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-secondary-custom:hover {
  color: white;
  background-color: var(--color-primary);
}

.btn-primary-custom {
  display: inline-flex;
align-items: center;
justify-content: space-between;
gap: 9px;
padding: 6px 15px 6px 17px;
background: var(--color-primary);
color: white;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
transition: 0.4s;
border: none;

border: 1px solid transparent;
}

.btn-primary-custom .icon {
  width: 30px;
  height: 30px;
  background: #ffffff;
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

/* Hover Effect */

.btn-primary-custom:hover {
  padding-right: 15px;
  background-color: white;
  color: var(--color-primary);
  border:1px solid var(--color-primary)
}

.btn-primary-custom:hover .icon {
  transform: translateX(5px);
   background-color: var(--color-primary);
  color: white;
}
.hero-section {
  padding: 80px 0;
  color: white;
  position: relative;
  z-index: 1;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: url("images/Home-4-bg-img.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.hero-section h1 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-section .highlight {
 color: #2F60DC;
  /* text-shadow: 2px 2px 2px white, 0px 1px 4px #ffffff; */
}

.hero-section p {
  color: #ffffff;
  margin-top: 20px;
  max-width: 520px;
}

.hero-btn span {
  background: #0c2230;
  color: white;
  border-radius: 50%;
  padding: 6px 10px;
  margin-left: 10px;
}

.hero-img img {
  width: 100%;
  border-radius: 10px;
}


/* marquee-effect */

.marquee-section .marquee-wrapper {
  overflow: hidden;
  background: var(--color-primary);
  padding: 10px 0;
	text-align:center;
}

.marquee-section  .marquee-content {
  display: inline-block;
  white-space: nowrap;
  /*animation: marquee-effect 110s linear infinite;*/
}

.marquee-section  .item {
  display: inline-block;
  margin: 0 40px;
  color: #fff;
  font-size: 16px;
  font-weight:700;
}

/* animation */
@keyframes marquee-effect {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* hover par stop */
.marquee-section  .marquee-content:hover {
  animation-play-state: paused;
}

.marquee-section  .star {
  display: inline-block;
  margin-left: 5px;
  color: #ffffff;
  animation: glowBlink-effect 1s infinite;
  margin:0 10px; 
  text-align: center;
}

@keyframes glowBlink-effect {
  0% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 5px #ffffff;
  }
  50% {
    opacity: 0.3;
    transform: scale(1.3);
    text-shadow: 0 0 15px #ffffff;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 5px #ffffff;
  }
}

/* about section */
.about-section {
  background: #f5f6f7;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: url("images/bg-pattern-img.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: -2;
}
.consult-box {
  background: #071c2c;
  color: white;
  padding: 30px;
  border-radius: 15px;
}

.consult-box h6 {
  font-size: 13px;
  opacity: 0.7;
}

.consult-box h4 {
  font-size: 18px;
  margin: 10px 0;
}



.consult-box .phone a{
	 font-weight: 600;
	text-decoration:none;
	color:white;
}

.img-box img {
  width: 100%;
  border-radius: 15px;
}

.overlay-card {
  position: relative;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px;
  border-radius: 7px 7px 15px 15px;
}

.about-title small {
  letter-spacing: 1px;
  color: #6c757d;
  font-weight: 600;
}

.about-title h2 {
  font-weight: 700;
  margin: 15px 0;
}

.feature {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 30px;
}

/* about section end  */

/* service section start */

.services-section {
  background: var(--color-primary);
  padding: 50px 0;
}

.section-title small {
  letter-spacing: 2px;
  font-weight: 600;
  color: #ffffff;
}

.section-title {
  font-size: 40px;

 
  color: black;
 text-align:center;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 18px;
  height: 100%;
  transition: 0.3s;
}

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

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #1b2a34;
  text-align:center;
}

.service-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
  text-align:center;
}

.service-card hr {
  margin: 20px 0;
}

.service-card p {
  color: #6c757d;
  font-size: 15px;
  text-align:center;
}

.learn-more {
  font-weight: 600;
  text-decoration: none;
  color: #1b2a34;
}

.learn-more:hover {
  text-decoration: underline;
}

/* service section end */

/* blog section css start */

.blog-section {
  background: var(--color-primary);
  padding: 20px 0;
  color: white;
}

.section-title small {
  letter-spacing: 2px;
  font-size: 13px;
  opacity: 0.8;
}



.blog-card {
  overflow: hidden;
  border-radius: 15px;
}

.blog-card img {
  width: 100%;
  border-radius: 15px;
  transition: 0.3s ease-in-out;
}

.blog-card img:hover {
  transform: scale(1.03);
  border-radius: 15px;
}

.blog-meta {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 15px;
}

.blog-title {
  font-size: 22px;
  font-weight: 600;
  margin: 10px 0;
}

.blog-desc {
  opacity: 0.8;
  font-size: 15px;
}

.blog-link {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

.small-blog {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: center;
}

.small-blog img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.5s ease-in-out;
}

.small-blog img:hover {
  transform: scale(1.03);
}

.small-blog h5 {
  font-size: 18px;
  font-weight: 600;
}

.small-blog p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 6px;
}

/* blog section end  */

/* new card section start */
.msme_strategy_section {
  background: white;
  padding: 50px 0px;
}

.msme_strategy_section .section-subtitle {
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
}



.msme_strategy_section .service-card {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  height: 100%;
  transition: 0.3s;
  border: 1px solid #eee;
}

.msme_strategy_section .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.msme_strategy_section .service-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #0f1f2e;
  text-align:center;
}

.msme_strategy_section .service-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align:center;
}

.msme_strategy_section .service-card p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  text-align:center;
}

.msme_strategy_section .service-card a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #0f1f2e;
}

.msme_strategy_section .service-card a:hover {
  text-decoration: underline;
}

.msme_strategy_section .service-card {
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  z-index: 1;
}

/* Overlay */
.msme_strategy_section .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: #0f3186cd;

  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}

/* Hover Effect */
.new-card-section .service-card:hover::before {
  opacity: 1;
}

/* Text color change */
.new-card-section .service-card:hover h4,
.new-card-section .service-card:hover p,
.new-card-section .service-card:hover a {
  color: white;
}

/* new card section section end */
.video-section1 .video-card {
  background: white;
  border-radius: 10px;
  padding:10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height:100% !important;
/*   width:250px; */
}

.video-section {

  background: #f5f5f5;
}

.video-card {
  background: white;
  border-radius: 10px;
  padding:10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height:215px;
/*   width:250px; */
}



.video-card h5 {
  padding: 15px;
  font-size:15px;
  font-weight: 600;
}

/* Parent*/
.video-section .owl-carousel {
    position: relative;
}

/* Common arrow style */
.video-section .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary) !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
}

/* LEFT arrow */
.video-section .owl-nav .owl-prev {
    left: -50px;  
}

/* RIGHT arrow */
.video-section .owl-nav .owl-next {
    right: -50px;
}


/* our section start */

.our-section {
  background: #0f318621;
  padding: 50px 0;
  color: white;
}



.our-section .mini-title {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.8;
  color: #000;
}

.our-section .quote {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 17px;
}

.our-section .desc {
  opacity: 0.9;
  margin-bottom: 30px;
}

.our-section .features p {
  margin-bottom: 12px;
  font-size: 15px;
}

.our-section .features i {
  margin-right: 8px;
}



.our-section .btn-custom i {
  margin-left: 10px;
}

.our-section .video-box {
  position: relative;
}

/* .our-section .play-btn {
  position: absolute;
  bottom: 60px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #d8ff4f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 20px;
} */

/* .our-section .video-text {
  position: absolute;
  bottom: 70px;
  left: 100px;
  font-weight: 600;
} */

/* our section end  */

.our-section .icon-box-card .icon {
  align-content: center;
}

.our-section .icon-box-card .icon i {
  font-size: 25px;
}

.our-section .icon-box-card {
  background: var(--color-primary);
  padding: 10px;
  border-radius: 10px 15px;
  column-gap: 10px;
   transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.our-section .icon-box-card:hover{
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
 transform: translateY(-5px);
 cursor: pointer;
}

.our-section img {
	max-height: 731px;
	object-fit: cover;
	width:100%;
}
/* projects */

.projects-section{
background:var(--color-primary);
padding:50px 0;
color:white;
}

.projects-section .small-title{
font-size:12px;
letter-spacing:2px;
text-transform:uppercase;
opacity:.8;
}



.projects-section .desc{
max-width:600px;
opacity:.8;
}





.projects-section .finance-card img{
border-radius:20px;
margin-bottom:15px;
height:260px;
width:100%;
object-fit:cover;
 transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.projects-section .finance-card img:hover {
    transform: scale(1.02);
    cursor: pointer;

}

.projects-section .card-sub{
font-size:12px;
letter-spacing:2px;
opacity:.8;
}

.projects-section .finance-card h4{
font-weight:600;
font-size: 14px;
}



.owl-carousel .owl-dots.disabled{
    display: block !important;
}


.owl-dots {
  display: block !important;   /* ensure visible */
  text-align: center;
  margin-top: 50px !important;
}

.owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ffffff;   /* blue color */
  display: block;
  border-radius: 50%;
  opacity: 1;
}

.owl-dots .owl-dot.active span {
  background: #ffffff;  /* darker blue */
}


/* Section Background */
.industries-section {
  background-color: #f0f4f9;

}



/* Card Styling */
.industry-card {
  background: white;
  padding: 25px;
  border-radius: 4px; 
  display: flex;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-5px); 
  cursor: pointer;
  background:var(--color-primary);
	
	
}

.industry-card:hover .icon-box,
.industry-card:hover .icon-box i,
.industry-card:hover .industry-name {
  color: white;
}

/* Icon Container */
.icon-box {
  width: 50px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
}

.icon-box i {
color: var(--color-primary);
font-size: 30px;
}

/* Industry Text */
.industry-name {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0;
  font-size: 1.1rem;
}


/* client section css */

 .client-section {
    background-color: #d4d4d4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	
  }

  .client-section  .sub-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
	text-align:center;
    margin-bottom: 10px;
  }

  .client-section  .main-title {
    font-size: 36px;
    font-weight: 700;
    color: #111;
	text-align:center;
  }

   .client-section  .description {
    font-size: 15px;
    line-height: 1.6;
    padding-left: 20px; 
  }

   .client-section  .client-logo {
   	height:100px;
	object-fit:contain;
    filter: grayscale(0%);
    background:white;
    padding:10px;
    transition: all 0.3s ease;
  }

   .client-section  .client-logo:hover {
    filter: grayscale(0%);
   
    transform: scale(1.02); 
  }


  @media (max-width: 991px) {
    .description {
      padding-left: 0;
      margin-top: 20px;
    }
  }



  /* test */
.testimonial-section {
	 
	    background-color: #f0f4f9;
}

  .testimonial-section .testimonial-card {
        border: 1px solid #e9ecef;
        min-height: 250px;
        transition: transform 0.3s ease;
    }

   
    .testimonial-section  .profile-img {
        width: 60px !important;
        height: 60px;
        object-fit: cover;
    }

    .testimonial-section  .text-success {
        color: var(--color-primary) !important;
    }



    .owl-theme .owl-dots .owl-dot.active span {
        background: #0d2137;
    }

/* HEADER */

header{
background:#fff;
padding:18px 8%;
display:flex;
justify-content:space-between;
align-items:center;
border-bottom:1px solid #eee;
}

.logo{
font-size:26px;
font-weight:700;
color:#0d6efd;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;
}

.cta-btn{
background:#0d6efd;
color:#fff;
padding:10px 20px;
border-radius:25px;
text-decoration:none;
font-weight:600;
}

/* SUBMENU DROPDOWN START */
nav ul{
    display:flex;
    gap:30px;
    list-style:none;
    margin:0;
    padding:0;
}

/* IMPORTANT */
nav ul li{
    position:relative;
}

/* SUBMENU */
nav ul li .sub-menu{
    position:absolute;
    top:120%;
    left:0;
    background:#fff;
    display:none;
    min-width:220px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    padding:10px 0;
    border-radius:10px;
    z-index:999;
}

/* SHOW ON HOVER */
nav ul li:hover .sub-menu{
    display:block;
    top:100%;
}

/* LINKS */
nav ul li .sub-menu li a{
    display:block;
    padding:10px 20px;
    color:#333;
    white-space:nowrap;
}

/* HOVER */
nav ul li .sub-menu li a:hover{
    background:var(--color-primary);
    color:#fff;
}

/* 2nd LEVEL SUBMENU */
nav ul li .sub-menu li{
    position:relative;
}

nav ul li .sub-menu li .sub-menu{
    position:absolute;
    top:0;
    left:100%;
    display:none;
    min-width:220px;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    border-radius:10px;
}

/* SHOW 2nd LEVEL */
nav ul li .sub-menu li:hover > .sub-menu{
    display:block;
}


/* SUBMENU DROPDOWN END */

/* HERO SECTION */

.hero{
padding:90px 8%;
display:flex;
align-items:center;
justify-content:space-between;
background:#f5f9ff;
gap:40px;
}

.hero-text{
max-width:600px;
}

.hero h1{
font-size:52px;
line-height:1.2;
margin-bottom:20px;
}

.hero h1 span{
color:#0d6efd;
}

.hero p{
font-size:16px;
color:#555;
margin-bottom:30px;
line-height:1.6;
}

.hero-btn{
background:#0d6efd;
color:#fff;
padding:14px 28px;
border-radius:30px;
text-decoration:none;
font-weight:600;
display:inline-block;
}

.hero-img img{
width:520px;
border-radius:10px;
}

/* MOBILE */

@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-img img{
width:100%;
}



}

.footer{
background:#0b3d91;
color:white;
padding:60px 0;
}

.footer h4{
margin-bottom:20px;
font-weight:600;
}

.footer p{
color:#cfd8ff;
line-height:1.7;
display: flex;
align-items: center;
margin-bottom:5px;
}

.footer a{
color:#cfd8ff;
text-decoration:none;
display:block;
margin-bottom:10px;
transition:0.3s;
}

.footer a:hover{
color:#ffffff;
}

.footer .active{
color:#4da3ff;
font-weight:600;
}

.footer .footer-logo{
	width: 180px;
    filter: brightness(0) invert(1);
 
    margin-bottom: 15px;
}

.social-icons a{
width:40px;
height:40px;
background:#1c5ed6;
display:inline-flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin-right:10px;
color:white;
}

.social-icons a:hover{
background:#4da3ff;
}

.contact i{
    color: #ffffff;
    margin-right: 10px;
    font-size: 20px;
    text-align: left;
}

.template-section .s-No{
	width:70px;
}

 /* form */

    /* Section spacing */


/* Heading underline */

/* Card Design */
.contact-section .contact-card{
  background:#fff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  max-width:800px;
}

/* Inputs */
.contact-section .custom-input{
  border-radius:8px;
  padding:12px;
  border:1px solid #e0e0e0;
  transition:0.3s;
}

/* Focus effect */
.contact-section .custom-input:focus{
  border-color:#1e3a8a;
  box-shadow:0 0 0 0.1rem rgba(30,58,138,0.15);
}

/* Button */
.contact-section .submit-btn{
  background:#1e3a8a;
  color:#fff;
  padding:14px 40px;
  border-radius:50px;
  font-weight:bold;
  transition:0.3s;
  width: 100%;
}

/* Button hover */
.contact-section .submit-btn:hover{
  background:#162d6b;
  color: white;
}


/* branch office section start */

.office-details-section {
	padding:50px 0;
}
/* Card Design */
.office-details-section .branch-card{
  background:var(--color-primary);
  color:#fff;
  padding:30px;
  border-radius:8px;
  height:100%;
  transition:0.3s ease;
}

/* Heading */
.office-details-section .branch-card h4{
  font-weight:bold;
  margin-bottom:20px;
}

/* Text */
.office-details-section  .branch-card p{
  margin-bottom:8px;
  font-size:15px;
}

/* Hover Effect  */
.office-details-section  .branch-card:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* branch office section end */



/* timeline */


.timeline-section{
  padding: 50px 0;
}
.timeline {
    list-style: none;
    padding: 20px 0 20px;
    position: relative;
}

    .timeline:before {
        top: 0;
        bottom: 0;
        position: absolute;
        content: " ";
        width: 3px;
        background-color: #eeeeee;
        left: 50%;
        margin-left: -1.5px;
    }

    .timeline > li {
        margin-bottom: 20px;
        position: relative;
    }

        .timeline > li:before,
        .timeline > li:after {
            content: " ";
            display: table;
        }

        .timeline > li:after {
            clear: both;
        }

        .timeline > li:before,
        .timeline > li:after {
            content: " ";
            display: table;
        }

        .timeline > li:after {
            clear: both;
        }

        .timeline > li > .timeline-panel {
            width: 46%;
            float: left;
            border: 1px solid #d4d4d4;
            border-radius: 2px;
            padding: 20px;
            position: relative;
            -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
        }

            .timeline > li > .timeline-panel:before {
                position: absolute;
                top: 26px;
                right: -15px;
                display: inline-block;
                border-top: 15px solid transparent;
                border-left: 15px solid #ccc;
                border-right: 0 solid #ccc;
                border-bottom: 15px solid transparent;
                content: " ";
            }

            .timeline > li > .timeline-panel:after {
                position: absolute;
                top: 27px;
                right: -14px;
                display: inline-block;
                border-top: 14px solid transparent;
                border-left: 14px solid #fff;
                border-right: 0 solid #fff;
                border-bottom: 14px solid transparent;
                content: " ";
            }

        .timeline > li > .timeline-badge {
            color: #fff;
            width: 25px;
            height: 25px;
            line-height: 50px;
            font-size: 1.4em;
            text-align: center;
            position: absolute;
            top: 35px;
            left: 51%;
            margin-left: -25px;
            background-color: var(--color-primary);
            z-index: 100;
            border-top-right-radius: 50%;
            border-top-left-radius: 50%;
            border-bottom-right-radius: 50%;
            border-bottom-left-radius: 50%;
        }

        .timeline > li.timeline-inverted > .timeline-panel {
            float: right;
        }

            .timeline > li.timeline-inverted > .timeline-panel:before {
                border-left-width: 0;
                border-right-width: 15px;
                left: -15px;
                right: auto;
            }

            .timeline > li.timeline-inverted > .timeline-panel:after {
                border-left-width: 0;
                border-right-width: 14px;
                left: -14px;
                right: auto;
            }


.timeline-title {
    margin-top: 0;
    color: inherit;
}

.timeline-body > p,
.timeline-body > ul {
    margin-bottom: 0;
}

    .timeline-body > p + p {
        margin-top: 5px;
    }

@media (max-width: 767px) {
    ul.timeline:before {
        left: 40px;
    }

    ul.timeline > li > .timeline-panel {
        width: calc(100% - 90px);
        width: -moz-calc(100% - 90px);
        width: -webkit-calc(100% - 90px);
    }

    ul.timeline > li > .timeline-badge {
        left: 15px;
        margin-left: 0;
        top: 16px;
    }

    ul.timeline > li > .timeline-panel {
        float: right;
    }

        ul.timeline > li > .timeline-panel:before {
            border-left-width: 0;
            border-right-width: 15px;
            left: -15px;
            right: auto;
        }

        ul.timeline > li > .timeline-panel:after {
            border-left-width: 0;
            border-right-width: 14px;
            left: -14px;
            right: auto;
        }
}



/* contract section */

.contract{

color:white;
padding:60px 0;
text-align:center;
}

.contract .contract-card-box{
      background: var(--color-primary);
      height: 300px;
    padding: 25px;
    color: white;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.contract .contract-card-box:hover{
  transform: scale(1.02);
  cursor: pointer;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.contract .step{
position:relative;
}

.contract .circle{
width:110px;
height:110px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 20px;
font-size:40px;
}

.contract .yellow{background:#f4e58a;}
.contract .orange{background:#f89c2a;}
.contract .blue{background:#3d6de0;}

.contract h4{
margin-top:10px;
font-weight:600;
}

.contract p{
font-size:15px;
opacity:.8;
max-width:280px;
margin:10px auto 0;
}

.contract .line{
position:absolute;
top:50px;
right:-50%;
width:100%;
border-top:2px dashed rgba(255,255,255,0.4);
}

.contract .arrow{
position:absolute;
top:40px;
right:-20px;
font-size:20px;
}

.contract .bottom-text{
margin-top:40px;
font-weight:500;
color:black;
}

.contract .bottom-text span{
color:black;
font-weight:600;
}


/* event card section */

.event-card-ui{
background:#f1f2f4;
padding:50px 0;
}


.event-card-ui .title h2{
font-weight:700;
}

.event-card-ui .card-box{
position:relative;
border-radius:10px;
overflow:hidden;
}

.event-card-ui .card-box img{
width:100%;
height:250px;
object-fit:cover;
}

.event-card-ui .content{
background:white;
padding:25px;

position:relative;

box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition: 0.3s ease-in-out;
height:210px;
}

.event-card-ui .content:hover,
.event-card-ui .content:hover .read,
.event-card-ui .content:hover .meta{
  background: var(--color-primary);
  color: white;
}

.event-card-ui .tag{
position:absolute;
top:-15px;
left:20px;
background:var(--color-primary);
color:white;
padding:5px 15px;
border-radius:20px;
font-size:12px;
}

.event-card-ui .meta{
font-size:13px;
color:var(--color-primary);
margin-bottom:10px;
transition: 0.3s ease-in-out;
}

.event-card-ui h5{
font-weight:600;
line-height:1.4;
}

.event-card-ui .read{
display:inline-block;
margin-top:15px;
color:var(--color-primary);
font-weight:600;
text-decoration:none;
transition: 0.3s ease-in-out;
}

.event-card-ui .read::before{
content:"— ";
}




/*  new*/

 /* Hero */
    .hero-section {
      padding: 80px 0;
      background: #f8f9fb;
    }

    .hero-section h1 {
      font-weight: 700;
    }

    .hero-img {
      border-radius: 20px;
      width: 100%;
    }

    /* Cards */
    .card-custom {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      border: 1px solid #eee;
      transition: 0.3s;
      height: 100%;
		text-align:left;
    }

    .card-custom:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    /* Icon Circle */
    .icon-circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(255, 140, 0, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
    }

    .icon-circle i {
      color: #f97316;
      font-size: 22px;
    }

    /* Stats */
    .stat-card {
      padding: 40px;
      border-radius: 20px;
      border: 1px solid #eee;
      background: #fff;
      transition: 0.3s;
	  height:200px;
	  
    }

    .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .stat-number {
      font-size: 48px;
      font-weight: 700;
	  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	  border-radius:20px;
	  margin-bottom:10px;
    }

    



/* member-section*/

.member-section .team-card{
position:relative;
overflow:hidden;
border-radius:10px;
cursor:pointer;
	margin-bottom:20px
}

.member-section .team-card img{
width:100%;
display:block;
border-radius:10px;
	height:250px;
	object-fit:cover;
}

/* overlay */

.member-section .card-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
color:white;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;

opacity:0;
transition:0.4s;
padding: 20px;
}

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

.member-section .card-overlay h4{
font-weight:700;
margin-bottom:10px;
}

.member-section .card-overlay p{
font-size:16px;
}


/* about hero */
.about-hero-section {
  padding: 40px 0;
  color: white;
  position: relative;
  z-index: 1;
}

.about-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

 background: linear-gradient(45deg, #0D6EFD, #416CB4);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: -2;
}

.about-hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.about-hero-section .icon-text i {
    margin-right: 5px;
}

.list-unstyled li{
	    background: rgb(248 249 250);
    color: black;
    padding: 10px;
    border-radius: 5px;
    margin-top: 17px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	transition:0.3s ease-in-out;
}

.list-unstyled li:hover{
	transform:translatey(-5px);
	cursor:pointer;
}

.new-hero-img{
	border-radius: 20px;
    width: 100%;
    height: 480px;
    object-fit: cover;
}


/*  what we do css*/

.we-do-section {
  padding: 80px 0;
  color: white;
  position: relative;
  z-index: 1;
}

.we-do-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background-image:url('https://yellowgreen-dunlin-572463.hostingersite.com/wp-content/uploads/2026/03/compagnons-AQTA5E6mCNU-unsplash-scaled.jpg');
/*   background-image: linear-gradient(45deg, #0D6EFD, #416CB4); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.we-do-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 67%);
  z-index: -1;
}


.do-hero-section h2{
    text-align: center;
}


.we-do-text-section .we-do-inner-text{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 10px;
}



/* contact form */
.contact-section-our-team{
    padding: 40px 0;
}

.contact-section-our-team .contact-card{
  background:#fff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  max-width:800px;
}

/* Inputs */
.contact-section-our-team .custom-input{
  border-radius:8px;
  padding:12px;
  border:1px solid #e0e0e0;
  transition:0.3s;
}

/* Focus effect */
.contact-section-our-team .custom-input:focus{
  border-color:#1e3a8a;
  box-shadow:0 0 0 0.1rem rgba(30,58,138,0.15);
}

/* Button */
.contact-section-our-team .submit-btn{
  background:#1e3a8a;
  color:#fff;
  padding:14px 40px;
  border-radius:50px;
  font-weight:bold;
  transition:0.3s;
  width: 100%;
}

/* Button hover */
.contact-section-our-team .submit-btn:hover{
  background:#162d6b;
  color: white;
}


/* Business Strategy & Growth css */
.business-section{
    padding: 40px 0;
    background: #f5f9ff;
}

.business-section .business-card{
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.business-section .business-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.business-section .business-icon{
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
    margin: 0 auto 15px;
}

.business-section .business-title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.business-section .business-text{
    font-size: 14px;
    color: #666;
}



.why-choose-section{
   
   
    color: black;
	padding: 20px;
}

.why-choose-section .why-content h2{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-choose-section .why-content p{
    font-size: 15px;
    opacity: 0.9;
}

/* Cards */
.why-choose-section .why-card{
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background:rgb(11 61 145 / 10%);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.why-choose-section .why-card:hover{
    transform: translateX(10px);
   background:rgb(11 61 145 / 10%);
}

.why-choose-section .why-icon{
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.why-choose-section .why-card h6{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.why-choose-section .why-card p{
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.overview-section{
	padding:30px 0px;
}

.overview-section h2{
	font-size:40px;
}


/* pricing page css */



.pricing-section .pricing-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: relative;
  transition: 0.3s;
  border: 1px solid var(--color-primary);
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.pricing-section .pricing-card:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.pricing-section .pricing-card:hover ul li i,
.pricing-section .pricing-card:hover .desc,
.pricing-section .pricing-card:hover h2 span {
    color: #ffffff;
}

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

.pricing-section .pricing-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-section .pricing-card .desc {
  font-size: 20px;
  color: #000000;
  font-weight:700;
  text-align:left;
  margin-bottom:0px;
}

.pricing-section .pricing-card h2 {
 
  font-weight: bold;
  text-align:left;
}

.pricing-section .pricing-card h2 span {
  font-size: 14px;
  color: black;
}

.pricing-section .pricing-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.pricing-section .pricing-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
  column-gap: 10px;
  display: flex;
}

.pricing-section .pricing-card h6 i{
	font-size:18px;
	margin-right:7px;
}



.pricing-section .pricing-card ul li i {
  color: #000000;
  font-size: 15px;
  margin-top: 3px;
}

/* Buttons */
.pricing-section .btn-custom {
 display: block;
 text-align: center;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 25px;
  padding: 10px;
  margin: 15px 0;
  border: 1px solid white;
   text-decoration: none;
}

.pricing-section .btn-custom:hover{
    background-color: white;
  color: black; 
}


.pricing-section .icon-title-bage{
     position: relative;
	top:15px;
    font-size: 15px;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-weight: 500;
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
       
    margin-bottom: 20px;
    font-family: inherit;
    padding: 4px 30px;
    background: var(--color-primary);
}

.pricing-section .icon-title-bage::before{
	position: absolute;
    content: "";
    top: 0px;
    left: -15px;
    width: 16px;
    height: 30px;
    -webkit-clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 100%, 90% 50%);
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 100%, 90% 50%);
   background: var(--color-primary);
}

.pricing-section .icon-title-bage::after{
	position: absolute;
    content: "";
    top: 0px;
    right: -15px;
    width: 16px;
    height: 30px;
    -webkit-clip-path: polygon(100% 0px, 10% 50%, 100% 100%, 0px 100%, 0px 0px);
    clip-path: polygon(100% 0px, 10% 50%, 100% 100%, 0px 100%, 0px 0px);
    background: var(--color-primary);
}

.pricing-card h6 {
    text-align: left;
    display: flex;
    align-items: start;
	font-size:14px;
}


/*  */
.top-header-bar{
  background: var(--color-primary);
  color: white;
  padding: 10px;
  font-weight: 700;
}

.top-header-bar .top-bar-info{
  display: flex;
  column-gap: 20px;
  justify-content: flex-end;
}
/*  */

/* PARENT MENU ICON */
nav ul li.menu-item-has-children > a::after{
        content: "";
    width: 6px;
    height: 6px;
    position: relative;
    right: 0;
    bottom: 2px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: currentColor;
    display: inline-block;
    margin-left: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* SUBMENU (2nd LEVEL) ICON */
nav ul li .sub-menu li.menu-item-has-children > a::after{
   -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 0;
    border-width: 0 2px 2px 0;
    width: 8px;
    height: 8px;
	float:right;
	margin-top:5px;
}



.template-section{
padding:40px 0;
background:#f7f7f7;
}

.template-section .table-custom{
background:white;
border-radius:5px;
overflow:hidden;
padding: 20px;
}

.template-section .table-custom thead{
background:#e6e6e6;
font-weight:600;
}

.template-section .table-custom tbody tr:nth-child(even){
background:#f2f2f2;
}

.template-section .template-link{
color:var(--color-primary);
text-decoration:none;
font-weight:500;
}



.template-section .table td{
vertical-align:middle;
font-size:14px;
}


/* home page css */

.custom-gallery .custom-gallery-img {
    overflow: hidden;
    border-radius: 20px;
}

.custom-gallery .custom-gallery-img img {
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Top Image Height */
.custom-gallery .col-12 .custom-gallery-img img {
    height: 400px;
}

/* Bottom Images Height */
.custom-gallery .col-md-6 .custom-gallery-img img {
    height: 250px;
}

/* Hover Effect (optional) */
.custom-gallery .custom-gallery-img:hover img {
    transform: scale(1.05);
}


/*about custome  */


.about-custom-gallery .custom-gallery-img-new {
    overflow: hidden;
    border-radius: 20px;
}

 .custom-gallery-img-new img {
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Top Image Height */
 .custom-gallery-img-new img {
    height: 300px !important;
}



/* Hover Effect (optional) */
.custom-gallery-img-new:hover img {
    transform: scale(1.05);
}

.about-our-para-text{
	line-height:2.1;
}

.about-our-para-text .muted {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	padding:10px;
	border-radius:10px;
}


.our-values-section{
	background-color:rgb(220 220 220);
}

.counter-section{
	background-color:rgb(220 220 220);
}



/* contact us css start */
/* Card Design */
.contact-section-inner-info .contact-card{
  background:#fff;
  padding:40px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  max-width:800px;
}

.contact-section-page textarea.wpcf7-form-control.wpcf7-textarea.form-control.custom-input{
	height:100px !important;
}

/* Inputs */
.contact-section-inner-info.custom-input{
  border-radius:8px;
  padding:12px;
  border:1px solid #e0e0e0;
  transition:0.3s;
}

/* Focus effect */
.contact-section-inner-info .custom-input:focus{
  border-color:#1e3a8a;
  box-shadow:0 0 0 0.1rem rgba(30,58,138,0.15);
}

/* Button */
.contact-section-inner-info .submit-btn{
  background:#1e3a8a;
  color:#fff;
  padding:14px 40px;
  border-radius:50px;
  font-weight:bold;
  transition:0.3s;
  width: 100%;
}

/* Button hover */
.contact-section-inner-info .submit-btn:hover{
  background:#162d6b;
  color: white;
}

/* Image Section */
.contact-section-page .contact-img{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.contact-section-page.contact-img img{
  border-radius: 20px;
}

/* Overlay */
.contact-section-page .img-overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.contact-section-page .img-overlay h5{
  font-weight: 600;
}

.contact-section-page .img-overlay p{
  font-size: 13px;
  color: #ddd;
}





/*  */
.top-header-bar{
  background: var(--color-primary);
  color: white;
  padding: 20px;
}

.top-header-bar .top-bar-info{
  display: flex;
  column-gap: 20px;
}




.contact-map-info-section {
  background: #f7f7f7;
}

.contact-map-info-section .small-text {
  font-family: sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 10px;
}

.contact-map-info-section .main-heading {
  font-size: 34px;
  font-weight: 700;
  color: #0b1c2c;
}

.contact-map-info-section .main-heading span {
  color: var(--color-primary);
}

.contact-map-info-section .icon-box {
  width: 55px;
  height: 55px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-map-info-section .icon-box i{
	color:white;
}

.contact-map-info-section h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-map-info-section p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.contact-img-left{
max-width: 100%;
    height: 600px;
    object-fit: cover;
}



.map-box iframe {
  border-radius: 20px;
  height: 400px;
  width: 100%;
}

.click-btn-info a{
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}


/* partner-page css */
.partner-section{
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
    position: relative;
    overflow: hidden;
}

.partner-content .partner-list-unstyled {
    list-style: none;
    padding-left: 0;
}

.partner-content .partner-list-unstyled span{
    margin-right: 10px;
}



.btn-info-new {
    width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 12px 15px 12px 30px;
  background: var(--color-primary);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.4s;
  border: 1px solid transparent;
}

.btn-info-new .icon {
  width: 30px;
  height: 30px;
  background: #ffffff;
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  
}

/* Hover Effect */

.btn-info-new:hover {
  padding-right: 15px;
  background-color: white;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-info-new:hover .icon {
  transform: translateX(5px);
   background-color: var(--color-primary);
  color: white;
}

.partner-content .partner-list-unstyled span i{
 color: var(--color-primary);
}

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

.partner-content ul li{
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    
}

.partner-content .btn{
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.partner-content .btn:hover{
    background: #000;
    color: #fff;
}

.partner-img img{
    /* max-width: 350px; */
	border-radius:10px;
	height: 500px;
    object-fit: cover;
    animation: float 3s ease-in-out infinite;
}

/* floating animation */
@keyframes float{
    0%{ transform: translateY(0px); }
    50%{ transform: translateY(-10px); }
    100%{ transform: translateY(0px); }
}


/* refundpolicy css */

.refundpolicy-inner-info{
     box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
     padding: 20px;
     border-radius: 10px;
}

.refundpolicy-inner-info a{
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
       
}

.refundpolicy-inner-info p{
 font-family: "Barlow", sans-serif;
 line-height: 2;
}


/* blog css */

.blog-page .blog-post h2{
    font-size: 24px;
    font-weight: 600;
}

.blog-page .blog-post p{
    font-size: 15px;
    line-height: 1.6;
}

.blog-page .pagination a,
.blog-page .pagination span{
    margin: 0 5px;
    padding: 8px 12px;
    background: var(--color-primary);
    border-radius: 5px;
    text-decoration: none;
}

.blog-page .pagination .current{
    background: #007bff;
    color: #fff;
}
.featured_img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

button.accordion-button {
    background-color: #0f3186 !important;
	color: white !important;
	font-weight: 700;
}

.accordion-button::after {
    color: #ffffff !important;
	filter: invert(100%);
}



/* DEFAULT DESKTOP */
.mobile-menu{
  display:block;
}

.menu-toggle{
  display:none;
}

.close-menu{
	display:none;
}

/* =====================
   MOBILE MENU STYLE
===================== */
@media(max-width:991px){

  .menu-toggle{
    display:block;
    font-size:24px;
    cursor:pointer;
  }

  /* SIDE MENU */
  .mobile-menu{
    position:fixed;
    top:0;
    left:-100%;
    width:500px;
    height:100%;
    background:#fff;
    z-index:9999;
    padding:20px;
    transition:0.4s ease;
    box-shadow:0 0 20px rgba(0,0,0,0.2);
  }

  /* OPEN STATE */
  .mobile-menu.active{
    left:0;
  }

  /* MENU LIST */
  .mobile-menu ul{
    list-style:none;
    padding:0;
	flex-direction:column;
	 row-gap: 10px;
  }

  .mobile-menu ul li{
    margin-bottom:15px;
  }

  /* CLOSE BUTTON */
  .close-menu{
    text-align:right;
    font-size:22px;
    margin-bottom:20px;
    cursor:pointer;
	 display:block;
  }
	
	
  /* desktop menu hide */
  .main-navigation > ul{
    display:none;
  }
	
	
	nav ul li .sub-menu li .sub-menu {
		left:100%;
		top:0;
	}
	.site-header{
		flex-wrap:wrap;
		row-gap: 10px;
	}
	
	.partner-section .partner-img{
		margin-top:30px;
	}
	.video-card{
		height:270px;
	}
	
	.contract .contract-card-box{
		margin-top:10px;
	}
	.video-section .owl-nav .owl-prev{
		left: -33px;
	}
	
	.video-section .owl-nav .owl-next {
	right: -33px;
}
}
 /* mobile styles */
@media (max-width: 576px){
 .video-section .owl-nav .owl-next {
	right: -12px;
}
 .video-section .owl-nav .owl-prev{
	left: -12px;
	}
	.contract .contract-card-box{
	margin-bottom:10px;
	}
	
	.top-header-bar .top-bar-info {
	 font-size:12px;	
	}
	.section-title{
	font-size: 26px;
	}
	.member-section .team-card{
		margin-bottom:10px;
	}
	
	.mobile-menu{
    position:fixed;
    top:0;
    left:-100%;
    width:260px;
    height:100%;
    background:#fff;
    z-index:9999;
    padding:20px;
    transition:0.4s ease;
    box-shadow:0 0 20px rgba(0,0,0,0.2);
  }
	
	 nav ul li .sub-menu li .sub-menu {
        left: 0;
        top: 40px;
    }
	
	.about-title small{
		margin-top:25px;
		display: block;
	}
	
	.post-title{
		font-size: 21px !important;

	}
	.footer-bar .inner-bar{
		flex-direction:column;
	}
	.footer-bar .footer-bar-links{
		flex-direction:column;
		
	}
	.footer-bar .footer-bar-links a{
		margin-left:0px !important;
	}
	
	.footer-bar{
		        text-align: center;
	}
	
	
}
	


/* privacy police css */



.privacy-policy-inner-info{
     box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
     padding: 20px;
     border-radius: 10px;
}

.privacy-policy-inner-info a{
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
       
}

.privacy-policy-inner-info p{
 font-family: "Barlow", sans-serif;
 line-height: 2;
}


/* Terms-and-Conditions css */
.Terms-and-Conditions


.Terms-and-Conditions-inner-info{
     box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
     padding: 20px;
     border-radius: 10px;
}

.Terms-and-Conditions a{
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
       
}

.Terms-and-Conditions p{
 font-family: "Barlow", sans-serif;
 line-height: 2;
}


/* footer bar css */
.footer-bar{
  background-color: white;
  color: rgb(0, 0, 0);
  padding: 20px 20px;
  font-weight: 600;
}

.footer-bar .inner-bar{
  display: flex;
  justify-content: space-between;
}


.footer-bar .inner-bar span{
  color:var(--color-primary) ;
}
.footer-bar .footer-bar-links{
	display:flex;
}

.footer-bar .footer-bar-links a{
  color: rgb(0, 0, 0);
  text-decoration: none;
  margin-left: 20px;
}

.footer-bar .footer-bar-links a:hover{
  color: var(--color-primary);
}

.filter-btn {
  position: relative;
  padding: 10px 20px;
  border: none;
  background: transparent;
  margin: 5px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}

/* bottom line */
.filter-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #0f3186;
  transition: 0.3s ease;
}

/* hover */
.filter-btn:hover::after {
  width: 100%;
   color: #0f3186;
}

/* active state */
.filter-btn.active::after {
  width: 100%;
   color: #0f3186;
}

.filter-btn.active {
  color: #0f3186;
}





/* .team-item {
    opacity: 1;
    
	transform: translateY(0) scale(1);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    
}

.team-item.hide {
    opacity: 0;
	
	transform: translateY(20px) scale(0.95);
    pointer-events: none;
    
} */


.hide {
    display: none;
}

.team-item {
	 position: relative;
    opacity: 1;
    transform: translateY(0) scale(1);
   transition: opacity 0.5s ease, transform 0.5s ease;
}

.team-item.hide {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
}