@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://pro.fontawesome.com/releases/v5.10.0/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap");
body {
  color: #333;
}

header .navbar-custom {
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.6s ease-in-out;
  position: relative;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
}
header .navbar-fixed {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  background-color: #fff;
}
header .navbar-hidden {
  top: -100px;
}
header .nav-item {
  position: relative;
  margin: 0 10px;
}
header .nav-item:not(.dropdown) {
  overflow: hidden;
}
header .nav-item:not(.dropdown)::after {
  content: "";
  position: absolute;
  left: -100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #004fff;
  transition: left 0.3s ease-in-out;
  z-index: -1;
  border-radius: 4px;
}
header .nav-item:not(.dropdown):hover::after {
  left: 0;
}
header .nav-item:not(.dropdown):hover .nav-link {
  color: #fff;
}
header .dropdown .dropdown-toggle {
  cursor: pointer;
}
header .dropdown .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  margin-top: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: none;
}
header .dropdown .dropdown-menu .dropdown-item {
  padding: 8px 16px;
  font-size: 0.9rem;
}
header .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #e7efff;
  color: #004fff;
}
header .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
header .nav-link {
  color: #333;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  text-transform: uppercase;
  padding: 8px 10px !important;
  letter-spacing: 1px;
}
header .nav-link.active {
  color: #fff !important;
  background: #004fff;
  border-radius: 4px;
  padding-left: 5px !important;
  padding-right: 5px !important;
}
header .phone-btn {
  padding: 8px 16px;
  border-radius: 5px;
  color: white !important;
  background-color: #24a904;
  transition: background 0.3s ease;
}
header .phone-btn:hover {
  background-color: #1f9003;
}

/* Media query for mobile devices */
@media (max-width: 991.98px) {
  header .dropdown .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  header .dropdown.show .dropdown-menu {
    display: block;
  }
}
/*Hero section start here*/
.hero-section {
  margin-top: 50px;
  border-radius: 10px;
  /* overflow: hidden; */
  position: relative;
  background-image: url("../images/hero-home.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-section.bg-primary {
  background-color: #004fff !important;
}
.hero-section .carousel-item {
  background-size: cover;
  position: relative;
}
.hero-section .carousel-caption {
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  /* Sliding background effect */
  /* On hover, slide background to left */
  /* Change text color on hover */
}
.hero-section .carousel-caption h6 {
  font-size: 1rem;
  text-transform: uppercase;
}
.hero-section .carousel-caption h1 {
  font-size: 3rem;
}
.hero-section .carousel-caption .btn {
  position: relative;
  padding: 15px 30px;
  font-size: 18px;
  background-color: #f8c80a;
  color: #333;
  border: 1px solid #f8c80a;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.4s ease;
}
.hero-section .carousel-caption .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #24a904;
  transition: left 0.4s ease;
  color: #fff;
  z-index: -1;
}
.hero-section .carousel-caption .btn:hover::before {
  left: 0;
}
.hero-section .carousel-caption .btn:hover {
  color: #fff;
}
.hero-section .animate-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}
.hero-section .animate-photo {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-in-out;
}
.hero-section .carousel-item.active .animate-text,
.hero-section .carousel-item.active .animate-photo {
  opacity: 1;
  transform: translate(0);
}
.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
  background-color: transparent;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  padding: 10px;
}
.hero-section .carousel-control-prev-icon:hover,
.hero-section .carousel-control-next-icon:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.hero-section .social-section {
  position: absolute;
  bottom: -50px;
  width: 150px;
  height: 300px;
  background-color: #24a904;
  z-index: 100;
  right: 50px;
}

/*Hero section end here*/
/*social icon section start here*/
.expert-social-section h2.head-tit {
  width: 90%;
  font-weight: 500;
  font-size: 1.5rem !important;
  text-transform: uppercase;
  color: #333;
  padding-bottom: 30px;
  font-family: "Merriweather", serif;
  letter-spacing: 1px;
}
.expert-social-section h2.head-tit span {
  color: #24a904;
  line-height: 3.5rem;
  font-size: 2.3rem;
  font-weight: 900;
  display: block;
  font-family: "Roboto", sans-serif;
}
.expert-social-section a {
  text-decoration: none;
}
.expert-social-section a .card {
  border: none;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  height: 150px;
  background-color: #e7efff;
  padding-left: 20px;
}
.expert-social-section a .card:hover {
  transform: translateY(-10px);
}
.expert-social-section a .card-body {
  text-align: center;
  padding: 10px;
  position: relative;
}
.expert-social-section a .social-icon {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #333;
  text-decoration: none;
  color: #333;
}
.expert-social-section a .social-number {
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
  /* color: $col-white !important; */
  text-align: left;
}
.expert-social-section a .card:hover .social-icon, .expert-social-section a .card:hover .social-number {
  transform: scale(1.1);
}
.expert-social-section .expertcont p {
  line-height: 1.8rem;
}
.expert-social-section .expertcont p:first-child {
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 400;
  color: #333;
}

/*social icon section End here*/
/*featured-section start here*/
.featured-section, .wheredowecome-section {
  background-color: #e7efff;
}
.featured-section h2, .wheredowecome-section h2 {
  font-weight: 500;
  font-size: 1.2rem !important;
  text-transform: uppercase;
  color: #004fff;
  padding-bottom: 40px;
  font-family: "Merriweather", serif;
  letter-spacing: 1px;
  text-align: center;
}
.featured-section h2 span, .wheredowecome-section h2 span {
  color: #333;
  line-height: 3.5rem;
  font-size: 1.8rem;
  font-weight: 900;
  display: block;
  font-family: "Roboto", sans-serif;
}
.featured-section .card, .wheredowecome-section .card {
  height: 500px;
  border: none;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px !important;
  background-color: transparent;
}
.featured-section .card .card-body, .wheredowecome-section .card .card-body {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 20px 0px 20px;
}
.featured-section .card .card-body .card-title, .wheredowecome-section .card .card-body .card-title {
  font-family: "Roboto", sans-serif;
  color: #004fff;
  text-transform: uppercase;
  font-weight: 700;
}
.featured-section .card img, .wheredowecome-section .card img {
  border-radius: 10px;
}

/*featured-section end here*/
/*smeipo-section start here*/
.smeipo-section .smeipocont .accordion-button {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  background-color: #fff;
}
.smeipo-section .smeipocont .accordion-item:first-of-type .accordion-button, .smeipo-section .smeipocont .accordion-item:first-of-type {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}
.smeipo-section .smeipocont .accordion-button:not(.collapsed) {
  font-weight: 600;
  color: #004fff;
  background-color: #e7efff;
}
.smeipo-section .smeipocont .accordion-body {
  line-height: 2rem;
}
.smeipo-section .smeipocont .accordion-body ul li {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
}
.smeipo-section .smeipocont .accordion-body ul li i {
  color: #24a904;
  font-size: 1.5rem;
  margin-right: 15px;
}
.smeipo-section .smeipoimggallwrap {
  position: relative;
  width: 100%;
  height: 748px;
}
.smeipo-section .smeipoimggallwrap .lefttopimg {
  position: absolute;
  top: 10px;
  left: 0px;
  width: 260px;
  height: 275px;
  border-radius: 10px;
  z-index: 1;
  background-color: #e7efff;
  background-image: url("../images/sme-ipo-consulting-stage.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.smeipo-section .smeipoimggallwrap .lefttopimg img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.smeipo-section .smeipoimggallwrap .topcenterimg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 375px;
  z-index: 10;
  transform: translate(-50%, -50%);
  overflow: hidden;
  background-image: url("../images/smr-speach.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.smeipo-section .smeipoimggallwrap .righttopimg {
  position: absolute;
  top: 40px;
  right: 20px;
  width: 280px;
  height: 275px;
  border-radius: 10px;
  z-index: 1;
  background-color: #e7efff;
  background-image: url("../images/consulting-stage-growth.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.smeipo-section .smeipoimggallwrap .leftbottomimg {
  position: absolute;
  bottom: 60px;
  left: 0px;
  width: 250px;
  height: 270px;
  border-radius: 10px;
  z-index: 1;
  background-color: #e7efff;
  background-image: url("../images/consulting-stage-three.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.ipo-preparation-section {
  background-color: #e7efff;
}

.ipo-preparation-section h2, .ipo-regular-section h2, .leadershipdevelop-section h2 {
  font-size: 2.5em;
  color: #004fff;
  font-weight: 700;
}
.ipo-preparation-section p, .ipo-regular-section p, .leadershipdevelop-section p {
  padding-top: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  padding-bottom: 15px;
}
.ipo-preparation-section ul, .ipo-regular-section ul, .leadershipdevelop-section ul {
  margin-bottom: 40px;
}
.ipo-preparation-section ul li, .ipo-regular-section ul li, .leadershipdevelop-section ul li {
  display: flex;
  align-items: start;
  padding-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 400;
}
.ipo-preparation-section ul li i, .ipo-regular-section ul li i, .leadershipdevelop-section ul li i {
  color: #333;
  font-size: 1.5rem;
  margin-right: 15px;
}

.ipo-regular-section h2, .leadershipdevelop-section h2 {
  color: #24a904;
}
.ipo-regular-section ul li i, .leadershipdevelop-section ul li i {
  color: #333;
}

/*smeipo-section end here*/
/*footer-section start here*/
.footer-section {
  margin-bottom: 20px;
}
.footer-section footer {
  border-radius: 20px;
  background-color: #004fff;
  padding: 60px 30px 30px 30px;
  background-image: url("../images/footer-bg-right.png");
  background-repeat: no-repeat;
  background-position: bottom -50px left -50px;
}
.footer-section footer h4 {
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
}
.footer-section footer h4 span {
  font-weight: 500;
  display: block;
  font-size: 2.5rem;
  font-family: "Roboto", sans-serif;
}
.footer-section footer .social-icon {
  font-size: 1.6rem;
}
.footer-section footer .contact-info p {
  margin-bottom: 10px;
}
.footer-section footer .contact-info p a {
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}
.footer-section footer .contact-info p.phone a {
  font-family: "Roboto", sans-serif;
  font-size: 1.4em;
  font-weight: 600;
}

/*footer-section end here*/
/*about-smr-section start here*/
.about-smr-section .image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.about-smr-section .image-container {
  overflow: hidden;
  border-radius: 10px;
}
.about-smr-section .image-container img {
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  border-radius: 10px;
}
.about-smr-section .image-container:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.about-smr-section .smr-about-cont h1 {
  font-size: 1rem;
  color: #333;
  text-transform: uppercase;
  padding-top: 30px;
}
.about-smr-section .smr-about-cont h2 {
  font-size: 2.5rem;
  color: #004fff;
  font-weight: 700;
  padding-bottom: 20px;
}
.about-smr-section .smr-about-cont p {
  line-height: 1.9rem;
}

.vismiss-section {
  background-color: #e7efff;
}
.vismiss-section .vismiss-cont {
  width: 70%;
}
.vismiss-section .vismiss-cont h2 {
  font-size: 2rem;
  color: #004fff;
  font-weight: 700;
  padding-bottom: 20px;
}
.vismiss-section .vismiss-cont p {
  font-size: 1rem;
  padding: 0px 30px 20px 0px;
  color: #333;
}
.vismiss-section .vismisimgwrap {
  position: relative;
  z-index: 1;
}
.vismiss-section .vismisimgwrap::before {
  content: "";
  position: absolute;
  top: -30px;
  right: 60px;
  width: 10px;
  height: 100px;
  background-color: #24a904;
  border-radius: 20px;
}
.vismiss-section .vismisimgwrap::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 60px;
  width: 10px;
  height: 100px;
  background-color: #004fff;
  border-radius: 20px;
}

.corevalues-section, .whychoosescale-section {
  background-image: url("../images/core-value-bg.png");
  background-repeat: no-repeat;
  background-position: center right 40px;
}
.corevalues-section h2, .whychoosescale-section h2 {
  font-size: 2.3rem;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}
.corevalues-section h2 span, .whychoosescale-section h2 span {
  color: #004fff;
}
.corevalues-section p, .whychoosescale-section p {
  line-height: 2rem;
  padding-bottom: 30px;
  padding-top: 20px;
}
.corevalues-section .core-value-image, .whychoosescale-section .core-value-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.corevalues-section .card, .whychoosescale-section .card {
  padding: 30px;
  box-shadow: 0 2px 10px rgba(161, 161, 161, 0.5);
}
.corevalues-section .card .card-body .card-icon, .whychoosescale-section .card .card-body .card-icon {
  font-size: 40px;
  color: #24a904;
}
.corevalues-section .card .card-body .card-title, .whychoosescale-section .card .card-body .card-title {
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  letter-spacing: 2px;
}
.corevalues-section .card .card-body .card-text, .whychoosescale-section .card .card-body .card-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.6rem;
  padding-top: 10px;
  padding-bottom: 10px;
}

.whychoosescale-section {
  background-color: #e7efff;
}

/*about-smr-section End here*/
/*contact-section start here*/
.contact-section .container {
  background-color: #e7efff;
  border-radius: 20px;
  padding: 60px;
  color: #333;
}
.contact-section .container .contact-details h1 {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 10px;
}
.contact-section .container .contact-details h2 {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 70px;
}
.contact-section .container .contact-details a {
  color: #333 !important;
  text-decoration: none !important;
  font-size: 1.2rem;
  font-weight: 500;
}
.contact-section .container .contact-details a .contact-item {
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}
.contact-section .container .contact-details .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  color: white;
}
.contact-section .container .contact-details .email-icon {
  background-color: #24a904;
}
.contact-section .container .contact-details .phone-icon {
  background-color: #24a904;
}
.contact-section .container .contact-details .contact-info {
  margin-left: 15px;
  text-decoration: none;
}
.contact-section .container .contact-details .social-icon {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .container .contact-details .social-icon a {
  color: #333 !important;
  text-decoration: none !important;
  font-size: 1.5rem;
  font-weight: 500;
}
.contact-section .container .formwrap {
  display: flex;
  align-items: center;
  justify-content: end;
}
.contact-section .container .formwrap .formitem {
  width: 75%;
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.contact-section .container .formwrap .formitem .form-control {
  height: 50px;
  border-radius: 0;
  margin-bottom: 15px;
}
.contact-section .container .formwrap .formitem textarea.form-control {
  height: 100px;
}
.contact-section .container .formwrap .formitem h2 {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-section .container .formwrap .formitem p {
  font-size: 1.2rem;
  color: #333;
  font-weight: 400;
  padding-bottom: 10px;
}

/*contact-section end here*/
/*services-section start here*/
.services-section {
  padding: 50px 0;
}
.services-section .container {
  background-color: #004fff;
  border-radius: 20px;
  padding: 40px 60px;
  color: #fff;
  background-image: url("../images/hero-bg.png");
  background-repeat: no-repeat;
  background-size: auto cover auto;
}
.services-section .container .services-summary {
  font-family: "Roboto", sans-serif;
}
.services-section .container .services-summary h1 {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 20px;
  padding-top: 60px;
}
.services-section .container .services-summary h2 {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 10px;
  line-height: 3.6rem;
}
.services-section .container .services-summary p {
  line-height: 1.8rem;
}
.services-section .container .services-summary ul li a {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}
.services-section .container .services-summary ul li a i {
  color: #fff;
  font-size: 1.5rem;
  margin-right: 15px;
}
.services-section .container .services-summary ul li a:hover {
  text-decoration: underline;
}

.ipo-ment-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  padding-bottom: 20px;
}
.ipo-ment-section p {
  line-height: 2rem;
  padding-bottom: 20px;
}

.whychoose-section {
  background-image: url("../images/core-value-bg.png");
  background-repeat: no-repeat;
  background-position: center right 40px;
}
.whychoose-section h2 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  text-transform: capitalize;
  font-weight: 500;
}
.whychoose-section h2 span {
  color: #004fff;
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
}
.whychoose-section p {
  line-height: 2rem;
  padding-bottom: 30px;
  padding-top: 20px;
}
.whychoose-section .core-value-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.whychoose-section .card {
  margin-bottom: 25px;
}
.whychoose-section .card .card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #24a904;
  color: white;
  border-radius: 50%;
}
.whychoose-section .card .card-icon i {
  font-size: 1.5rem;
}
.whychoose-section .card .card-body {
  padding-left: 20px;
  width: 80%;
}
.whychoose-section .card .card-body .card-title {
  font-size: 1.3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.whychoose-section .card .card-body .card-text {
  line-height: 1.5rem;
}

.contacttoday-section {
  background-image: url("../images/contact-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.contacttoday-section .conttop h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 15px;
}
.contacttoday-section .conttop p {
  font-size: 1rem;
  color: #fff;
  font-weight: 300;
  padding-bottom: 20px;
  line-height: 1.8rem;
}
.contacttoday-section .contactcont h3 {
  font-size: 1.5rem;
  color: #f8c80a;
  font-weight: 600;
  padding-bottom: 20px;
}
.contacttoday-section .contactcont ul li {
  display: flex;
  align-items: start;
  padding-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}
.contacttoday-section .contactcont ul li i {
  color: #fff;
  font-size: 1.5rem;
  margin-right: 15px;
}
.contacttoday-section .contactcont ul li span {
  color: #fff;
  font-size: 1rem;
  margin-right: 15px;
  display: block;
}
.contacttoday-section .contactcont ul li span strong {
  font-size: 1.2rem;
}
.contacttoday-section .contformwrap {
  width: 70%;
  background-color: rgba(0, 79, 255, 0.3);
  padding: 40px;
  margin: 0 auto;
  border-radius: 30px;
}
.contacttoday-section .contformwrap .form-control {
  border-radius: 0;
  height: 45px;
}
.contacttoday-section .contformwrap {
  width: 100% !important;
}

/*services-section end here*/
.btn-primary {
  background-color: #24a904 !important;
  border-color: #24a904;
  border-radius: 4px !important;
  padding-left: 20px;
  padding-right: 20px;
  text-transform: uppercase;
  font-weight: 400;
}

.btn-circle {
  font-size: 2rem;
  color: #24a904;
  transition: all 0.3s ease-in-out;
}
.btn-circle:hover {
  color: #333;
}

.default-padding {
  padding: 80px 0;
}

/* Radial In */
.hvr-radial-in {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background: #004fff !important;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-radial-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #24a904;
  border-radius: 100%;
  transform: scale(2);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-radial-in:hover, .hvr-radial-in:focus, .hvr-radial-in:active {
  color: white;
}

.hvr-radial-in:hover:before, .hvr-radial-in:focus:before, .hvr-radial-in:active:before {
  transform: scale(0);
}

/* Radial In */
.hvr-radial-in-yellow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background: #24a904 !important;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-radial-in-yellow:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f8c80a;
  border-radius: 100%;
  transform: scale(2);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.hvr-radial-in-yellow:hover, .hvr-radial-in-yellow:focus, .hvr-radial-in-yellow:active {
  color: white;
}

.hvr-radial-in-yellow:hover:before, .hvr-radial-in-yellow:focus:before, .hvr-radial-in-yellow:active:before {
  transform: scale(0);
}

.whysmeipwrap .whysmeipoitem, .whysmeipwrap .wheredowecome {
  background: linear-gradient(135deg, #007bff, #6610f2);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.whysmeipwrap .whysmeipoitem h2, .whysmeipwrap .whysmeipoitem h3, .whysmeipwrap .whysmeipoitem h4, .whysmeipwrap .wheredowecome h2, .whysmeipwrap .wheredowecome h3, .whysmeipwrap .wheredowecome h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.whysmeipwrap .whysmeipoitem h2, .whysmeipwrap .wheredowecome h2 {
  font-size: 2.3rem;
  color: #fff;
  font-weight: 700;
  padding-bottom: 10px;
}
.whysmeipwrap .whysmeipoitem h3, .whysmeipwrap .wheredowecome h3 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  padding-bottom: 10px;
  padding-top: 20px;
}
.whysmeipwrap .whysmeipoitem h3 span, .whysmeipwrap .wheredowecome h3 span {
  display: block;
  padding-top: 10px;
  font-size: 1.8rem;
}
.whysmeipwrap .whysmeipoitem h4, .whysmeipwrap .wheredowecome h4 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  padding-bottom: 10px;
}
.whysmeipwrap .whysmeipoitem p, .whysmeipwrap .wheredowecome p {
  line-height: 1.8rem;
  color: #fff;
}
.whysmeipwrap .whysmeipoitem ul li, .whysmeipwrap .wheredowecome ul li {
  line-height: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.whysmeipwrap .whysmeipoitem ul li i, .whysmeipwrap .wheredowecome ul li i {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 10px;
}
.whysmeipwrap .whysmeban {
  background-image: url("../images/smeipo-connect.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 10px;
}
.whysmeipwrap .whysmeban .contentsme {
  border: solid 1px #fff;
  border-radius: 5px;
  padding: 20px;
}
.whysmeipwrap .whysmeban .contentsme h3 {
  color: #fff;
  font-size: 1.5rem;
}
.whysmeipwrap .whysmeban .contentsme p {
  color: #fff;
  font-size: 1rem;
}
.whysmeipwrap .wheredowecome {
  background: linear-gradient(165deg, #001A6E, #074799);
}
.whysmeipwrap .wheredowecome .checklist-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.whysmeipwrap .wheredowecome .checklist-title {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.whysmeipwrap .wheredowecome .checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.whysmeipwrap .wheredowecome .checklist-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #053a8d;
  display: flex;
  align-items: flex-start;
}
.whysmeipwrap .wheredowecome .checklist-item:last-child {
  border-bottom: none;
}
.whysmeipwrap .wheredowecome .check-icon {
  color: #fff;
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.whysmeipwrap .wheredowecome .checklist-text {
  color: #fff;
}
.whysmeipwrap .wheredowecome .highlight {
  font-weight: 500;
  color: #fff;
  display: block;
}

/*wheredowecome-section Start here*/
.wheredowecome-section {
  background-color: #e7efff;
}
.wheredowecome-section .card-hover {
  transition: all 0.3s ease;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.wheredowecome-section .card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.wheredowecome-section .icon-title {
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 1.5rem;
}
.wheredowecome-section .section-title {
  font-weight: 700;
  position: relative;
  font-family: "Roboto", sans-serif;
  padding-bottom: 10px;
  text-align: left;
  color: #004fff;
}
.wheredowecome-section .section-title span {
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #004fff;
}
.wheredowecome-section .section-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}
.wheredowecome-section .check-list {
  list-style: none;
  padding-left: 0;
}
.wheredowecome-section .check-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 35px;
}
.wheredowecome-section .check-icon {
  color: #24a904;
  position: absolute;
  left: 5px;
  top: 6px;
  font-size: 1.2rem;
}
.wheredowecome-section .highlight-box {
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(76, 201, 240, 0.05) 100%);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
  padding: 20px;
  margin: 20px 0;
}
.wheredowecome-section .person-card {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
.wheredowecome-section .person-card .coach-card h5 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 5px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
.wheredowecome-section .person-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(67, 97, 238, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .wheredowecome-section .section-container {
    padding: 60px 0;
  }
}

/*wheredowecome-section Start here*/
.watchvideowrap {
  background-color: #e7efff;
}

.text-info {
  color: #004fff !important;
}

@media only screen and (min-width: 300px) and (max-width: 600px) {
  .default-padding {
    padding: 40px 0;
  }
  .hero-section .carousel-caption {
    top: 35%;
  }
  .hero-section .carousel-caption h1 {
    font-size: 1.8rem !important;
    line-height: 2rem !important;
  }
  .hero-section .carousel-caption .btn {
    padding: 10px 20px !important;
    font-size: 14px;
  }
  .expert-section h2.head-tit {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
    width: 100% !important;
  }
  .expert-section h2.head-tit span {
    display: initial !important;
    line-height: 2.5rem !important;
  }
  .expert-section p.tit-descript {
    width: 100% !important;
    font-size: 0.9rem;
  }
  .featured-section h2 {
    font-size: 1rem !important;
  }
  .featured-section h2 span {
    font-size: 1.3rem;
    line-height: 1.8rem;
    padding-top: 10px;
  }
  .whysmeipwrap .whysmeipoitem h2 {
    font-size: 1.5rem;
  }
  .whysmeipwrap .whysmeipoitem h3 span {
    font-size: 1.5rem;
  }
  .footer-section footer h4 span {
    font-size: 2rem;
  }
  .m-wid-100 {
    width: 100% !important;
  }
  .m-mt-0 {
    margin-top: 0 !important;
  }
  .m-mb-30 {
    margin-bottom: 30px !important;
  }
  .contact-section .container {
    padding: 20px;
  }
  .contact-section .container .contact-details h2 {
    font-size: 2rem;
    padding-bottom: 40px;
  }
  .contact-section .container .contact-details a .contact-item {
    margin-bottom: 0;
    padding: 10px;
  }
  .contact-section .container .contact-details .social-icon {
    padding-top: 0 !important;
  }
  .contact-section .container .formwrap .formitem {
    width: 100%;
  }
  .services-section .container {
    padding: 30px;
  }
  .services-section .container .services-summary h2 {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .ipo-ment-section h3 {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .ipo-preparation-section h2, .ipo-regular-section h2 {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .whychoose-section h2 span {
    font-size: 2rem;
  }
  .contacttoday-section .conttop h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .default-padding {
    padding: 40px 0;
  }
  .hero-section {
    padding: 20px;
    background-color: #f5f5f5;
  }
  .hero-section .carousel-caption h1 {
    font-size: 1.8rem !important;
    line-height: 2rem !important;
  }
  .contact-section .container .formwrap .formitem {
    width: 100%;
  }
}
@media only screen and (min-width: 1366px) and (max-width: 1366px) {
  header .nav-link {
    font-size: 0.9rem !important;
    padding: 8px 10px !important;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1600px) {
  .hero-section.container, header .container, .expert-social-section .container, .footer-section .container, .featured-section .container, .smeipo-section .container, .contact-section .container, .services-section .container, .whysmeipwrap .container {
    max-width: calc(100% - 40px);
  }
}/*# sourceMappingURL=font-end.css.map */