/* -- header and banner css start here -- */
:root {
  --eduact-white-rgb: 255, 255, 255;
  --eduact-black2-rgb: 0, 0, 0;
}
 body {
	margin: 0;
	font-family: 'Urbanist', sans-serif;
}
button.navbar-toggler {
    position: relative;
    z-index: 99;
}
.choose-box i {
    color: #fff;
}
.hero-wrapper {
	background: linear-gradient(145deg, #4c4ce0, #5a54f2);
	position: relative;
	z-index: 1;
	overflow: hidden;
	}
.navbar-brand {
    font-weight: bold;
    color: #fff;
    position: relative;
    z-index: 9;
}
.d-flex.gap-3 i {
    color: #fff;
    position: relative;
    top: 8px;
}
.nav-link {
    color: #fff !important;
    margin: 0 19px !important;
    font-weight: 300 !important;
}
.nav-item .dropdown-menu {
	background-color: #fff;
}
.nav-item .dropdown-menu a {
	color: #333;
}
/*our course css*/
.d-flex.gap-3 p{
    position: relative;
    right: 9px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030; /* Higher than most content */
  background-color: #4f5de4; /* Or any background to prevent transparency issue */
}
@media(min-width:768px){
    body,html{
        overflow-x:hidden;
    }

}
.navbar-expand-lg .navbar-collapse {
    width: 125%;
}
.btn-orange {
	background-color: #ff7b00;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: 600;
}
.hero-section {
    position: relative;
    z-index: 1;
    padding: 75px 0px;
    background: #4f5de4;
}
.hero-content h1 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
}
.hero-content p {
	font-size: 16px;
	color: #ffffff;
	margin: 20px 0;
	line-height: 27px;
}
.hero-buttons .btn {
	margin-right: 15px;
	border-radius: 8px;
	padding: 12px 25px;
	font-weight: 600;
}
.btn-outline-light {
	border: 2px solid #fff;
	color: #fff;
}
.hero-image {
	position: relative;
	border-radius: 50%;
	border: 8px solid #ff7b00;
	width: 350px;
	height: 350px;
	margin: 0 auto;
}
.hero-buttons {
    position: relative;
    z-index: 1;
}
.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.workshop-card {
	position: absolute;
	bottom: -30px;
	left: 10px;
	background: #fff;
	padding: 10px;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	color: #333;
	width: 160px;
}
.workshop-card small {
	font-size: 12px;
	color: gray;
}
.workshop-card .btn {
	font-size: 12px;
	padding: 4px 10px;
	margin-top: 5px;
}
.nav-icons {
	display: flex;
	align-items: center;
}
.nav-icons i {
	color: #fff;
	font-size: 18px;
	margin-left: 15px;
	cursor: pointer;
}
.navbar-collapse {
	flex-grow: unset;
}
.navbar-nav {
	margin: 0 auto;
}

a.navbar-brand img {
    width: 80% !important;
    padding-top: 8px;
    padding-bottom: 8px;
}
a.btn.btn-orange:hover {
    background: #f57005;
}
.hero-banner__bg-shape1 {
    position: absolute;
    left: -180px;
    top: -157px;
    width: 759px;
    height: 759px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(var(--eduact-white-rgb), 0.09) 0%, rgba(var(--eduact-white-rgb), 0) 100%);
    box-shadow: 54px 24px 39px 0px rgba(var(--eduact-black2-rgb), 0.02);
}
.col-md-6.hero-content {
    position: relative;
    z-index: 4;
}

.hero-banner__bg-shape1::after {
  position: absolute;
  left: -140px;
  top: -140px;
  content: '';
  width: calc(100% + 280px);
  height: calc(100% + 280px);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(var(--eduact-white-rgb), 0.09) 0%, rgba(var(--eduact-white-rgb), 0) 100%);
  box-shadow: 54px 24px 39px 0px rgba(var(--eduact-black2-rgb), 0.02);
  animation: blinker 2s ease-in-out infinite;
  transform-origin: center;
  z-index: 0;
}
@keyframes blinker {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;         /* Halka fade */
    transform: scale(1.03); /* Bas halka grow */
  }
}
.hero-banner__bg-round {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    animation: circle 15s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
.hero-banner__bg-round {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    animation: circle 15s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
.hero-banner__bg-round-border {
    width: 33px;
    height: 33px;
    border-radius: 100%;
    border: 1px solid #D9D9D9;
    position: absolute;
    right: 250px;
    top: 0;
}
/* Define the animation */
@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn.btn-orange.eduact-btn {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    color: #fff;
    background: #ff7b00;
    border: 2px solid #fff;
    overflow: hidden;
    transition: color 0.3s;
    z-index: 1;
}
.btn.btn-orange.eduact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -137%;
    width: 150%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(339deg);
    transition: left 0.4s ease-in-out;
    z-index: -1;
}
.btn.btn-orange.eduact-btn:hover::before {
  left: 0;
}

.btn.btn-orange.eduact-btn:hover {
  color: #fff;
}
.hero-banner__thumb {
    position: relative;
    z-index: 4;
    width: 560px;
    height: 560px;
	paddi-top:50px;
    border-radius: 50%;
    padding: 34px;
    background: linear-gradient(147deg, #FF7200 0%, #6A78FF 100%);
    box-shadow: 27px 27px 52px 0px rgba(0, 0, 0, 0.08);
    margin: 0 0 0 95px;
}
.hero-banner__thumb > img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.hero-banner__cap {
    position: absolute;
    left: -46px;
    top: 50px;
    animation: floatMove 6s ease-in-out infinite;
}

/* Animation Keyframes */
@keyframes floatMove {
    0% {
        transform: translate(0px, 0px);
    }
    25% {
        transform: translate(10px, -10px);
    }
    50% {
        transform: translate(0px, -20px);
    }
    75% {
        transform: translate(-10px, -10px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
.hero-banner__star {
    position: absolute;
    left: 146px;
    right: 0;
    margin: auto;
    text-align: center;
    top: -54px;
    animation: growStar 4s ease-in-out infinite;
}
/* Grow keyframes */
@keyframes growStar {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}
.hero-banner__map {
    position: absolute;
    right: 17px;
    top: 32px;
    animation: rotateMap 10s linear infinite;
}
/* Rotate keyframes */
@keyframes rotateMap {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.hero-banner__book {
    position: absolute;
    right: 35px;
    bottom: 22px;
    animation: growPulse 2s infinite ease-in-out;
}
/* Animation Keyframes */
@keyframes growPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}
.hero-banner__cart__content-inner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 26px 28px 20px;
    background: #fff;
    top: -224px;
    width: 44%;
    left: -104px;
}
p.hero-banner__cart__text {
    color: #000;
    margin-bottom: 4px;
}
/*header and banner css close here*/
/*Ablout us section css start here*/
    .who-section {
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }
    .circle-img-wrapper {
      position: relative;
      width: 100%;
      max-width: 500px;
      margin: auto;
    }
    .circle-img-wrapper img {
      width: 86%;
      border-radius: 50%;
      object-fit: cover;
    }
    .circle-img-wrapper .group-study {
        height: 460px;
        }
    .contact-box {
      position: absolute;
      bottom: 20px;
      left: 0;
      background: #fff;
      padding: 15px 20px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      max-width: 320px;
    }
    .contact-icon {
      width: 40px;
      height: 40px;
      background: #fd7e14;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-right: 15px;
      font-size: 18px;
    }
    .contact-info small {
      font-size: 13px;
      color: #777;
    }
    .contact-info strong {
      display: block;
      font-size: 16px;
      color: #4d4cf5;
    }
    @media (max-width: 768px) {
      .circle-img-wrapper {
        max-width: 350px;
      }
      .contact-box {
        position: relative;
        bottom: unset;
        left: unset;
        margin-top: 20px;
      }
    }
	img.shap-images {
    position: absolute;
    height: wi;
    width: 30%;
    top: 50%;
    left: 77%;
    /* background: #00000000; */
    box-shadow: 0px !important;
}
img.shap-images2 {
    position: absolute;
    width: 118px;
    top: 1px;
    left: 13px;
    z-index: -1;
    animation: rotate 20s linear infinite;
}
.col-lg-6.Who-We-Are h2 {
    font-size: 35px;
    color: #2a254d;
    font-weight: 600;
}
h5.text-primary.fw-semibold.mb-2.who-we-are {
    color: #ff7b00 !important;
}
h5.mt-4.fw-semibold.vision {
    color: #5752ee;
}
.status-buttons .bg-light {
    background-color: rgb(87 82 238) !important;
    color: #fff !important;
    padding: 15px 20px !important;
    font-size: 15px !important;
}
/* Grow animation keyframes */
@keyframes growPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}
/* Rotate animation keyframes */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*About us section close here*/
/*Second section start here*/

.choose-us {
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    width: 100%;
}
h5.fw-semibold.text-center.learn {
    color: #ff7900;
    margin-bottom: -16px;
}
.feature-card {
      border-radius: 14px;
      padding: 40px 25px;
      background: #fff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
      border: 1px solid #E0E3FD;
      transition: 0.3s;
      height: 100%;
      box-shadow: 11px 15px 30px 0px rgba(128, 137, 225, 0.1);
    }

    .feature-card:after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 50px;
        background: #f7f9fb;
        border-top-left-radius: 100%;
        z-index: 0;
    }

    .feature-card:hover:after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 50px;
        background: rgb(87 82 238);
        border-top-left-radius: 100%;
        z-index: 0;
    }

    .feature-card:hover .feature-card-icon {
      background: rgb(87 82 238);
    }
    .feature-card:hover i {
      transform: scale(0.9);
      transition: 1s;
    }

    .feature-card-icon {
        background: #ff7900;
        color: #fff;
        border-radius: 20px;
        padding: 16px 26px 16px 26px;
        display: inline-block;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .feature-card h5 {
      font-weight: 700;
      font-size: 20px;
      margin-bottom: 15px;
      color: #1a1a1a;
    }

    /*.feature-card p {
      font-size: 15px;
      color: #666;
      margin-bottom: 20px;
    }*/

    .feature-card a {
      color: #ff7900;
      font-weight: 600;
      text-decoration: none;
    }

    .feature-card a:hover {
      color: #f55b00;
    }

    .read-more-icon {
      margin-left: 8px;
      color: #3b3bd3;
    }

/*Second section End here*/
/* why choose us section start here */
.why-choose-section {
    background-color: #0c1023;
    color: #ffffff;
    padding: 60px 20px;
    font-family: 'Urbanist', sans-serif;
    background-position: bottom;
    background-image: url('../images/footer-bg-1.png');
}

.why-choose-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}

.why-choose-image {
  flex: 1 1 45%;
  border-radius: 0 200px 200px 0;
  overflow: hidden;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 200px 200px 0;
}

/* Text Content */
.why-choose-content {
  flex: 1 1 50%;
}

.subtitle {
    color: #FF7F08;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-choose-content h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

/* Feature Boxes */
.why-choose-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.choose-box {
  display: flex;
  background-color: #241e4e;
  border-radius: 10px;
  padding: 15px 20px;
  align-items: flex-start;
  gap: 15px;
}

.choose-box .icon {
    font-size: 24px;
    height: 50px;
    width: 50px;
    border-radius: 76px;
    background: #ff6f17;
}
.choose-box .icons {
    font-size: 24px;
    height: 50px;
    width: 50px;
    border-radius: 76px;
    background: #ff6f17;
}

.choose-box h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
img.students {
    position: absolute;
    left: 30%;
    top: 85%;
}
.about-one__thumb__one img {
    height: 500px;
    margin-left: 15px;
}
.icon i {
    padding: 12px 10px;
}
.icons {
    padding: 7px;
}
.choose-box p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #fff;
}
.choose-box h3 {
    color: #fff;
}
i.fa-brands.fa-discourse {
    padding: 13px 15px !important;
}
/* why choose us section end here */
/* cource section start here */
.page-banner {
  background: url('../images/page-header-bg-1-2.jpg') no-repeat center center/cover;
  padding: 100px 0 92px 0;
  text-align: center;
  position: relative;
  color: #fff;
}

.page-banner::before {
  content: "";
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   background-color: rgba(var(--eduact-black2-rgb), 0.8);
}

.page-banner .container,
.page-banner .banner-content {
  position: relative;
  z-index: 2;
  color: #fff; 
}
section.page-banner h2 {
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
}
section.page-banner p {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
}
.swiper {
    padding: 85px 0;
    width: 100%;
    margin: 0 auto;
}
p.text-muteds {
    text-align: center;
    padding: 0px 127px !important;
}
section.slider {
    padding: 53px;
    background: #fff;
}

.swiper-slide {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 27% !important;
    padding: 25px;
    transition: all 0.3s ease;
}

    .swiper-slide:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
.top-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: -97px auto 37px;
}
.top-image img {
    width: 150px;
    height: 150px;
    margin-left: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #f7f7f7;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}
.heart-icon {
    position: absolute;
    top: 10px;
    left: 50px;
    background-color: #ff6a00;
    color: #fff;
    border-radius: 50%;
    padding: 6px 9px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.hour-tag {
    background-color: #5A65F1;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    top: 33px;
    position: absolute;
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-block;
    margin: 0 auto 12px;
    text-align: center;
}
.rating {
    color: #FFA534;
    font-size: 14px;
    text-align: left;
    margin-bottom: 25px;
    margin-top: -16px;
    font-weight: 600;
    display: none;
}
.course-title {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 35px;
    color: #ff5f13;
}
h2.courses {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
}

.course-details {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.course-details .left {
    font-size: 13px;
    line-height: 1.5;
    color: #000;
    font-weight: 800;
}

.course-details .left span {
  font-weight: 600;
  color: #111;
}

.course-details .right {
  text-align: right;
}

.price {
  font-size: 17px;
  font-weight: 700;
  color: #5A65F1;
}

.lessons {
    font-size: 13px;
    color: #FF6A00;
    font-weight: 600;
}

i.fa-solid.fa-user-graduate {
    padding-right: 14px;
}
i.fa-solid.fa-person-chalkboard {
    margin-right: 26px;
}
.swiper-button-next,
.swiper-button-prev {
  color: #5A65F1;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #ff6a00;
}

.swiper-pagination {
margin-top: 30px;
text-align: center;
}
.swiper-slide swiper-slide-prev{
	margin-left: 70px !important;
}
.swiper-wrapper {
  overflow: visible !important;
}
.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: #ccc;
    opacity: 1;
    margin: 0 6px;
    border-radius: 50%;
	border: 2px solid rgb(0 120 255 / 28%);
    transition: background 0.3s;
}

.swiper-pagination-bullet-active {
    background: #ff6a00;
    font-size: 49px !important;
    height: 15px;
    width: 15px;
    border: 2px solid rgb(0 120 255 / 28%);
}

@media (max-width: 768px) {
  .swiper-slide {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .course-title {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .swiper-slide {
    width: 100% !important;
    box-sizing: border-box;
    padding: 10px;
  }

  .top-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .course-title,
  .hour-tag,
  .rating,
  .course-details {
    text-align: center;
  }

  .course-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .course-details .left,
  .course-details .right {
    width: 100%;
    text-align: center;
  }
}
/* cource section end here */
/* testmonial section start here */

.testimonial-section {
    padding: 60px 0px 60px 0px;
    position: relative;
    overflow: hidden;
    background-color: #f7f9fb;
    background-image: url(../images/service-bg-1.png);
    background-position: left;
}
.testimonial-section h2{
    font-size: 35px;
}
.testimonial-box {
    border-radius: 20px;
    position: relative;
}
.testimonial-box img.profile {
    height: 100px;
}
.testimonial-box h6 {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #ff7b00 !important;
}
div#testimonialCarousel {
    border: 1px solid #dcdffc;
    padding: 24px;
    border-radius: 20px;
    background: #fff;
}
.testimonial-box small {
  color: #888;
}
h5.text-primary.text-center.mb-2 {
    color: #ff7b00 !important;
}
.testimonial-text {
  font-size: 16px;
  color: #333;
  margin-top: 5px;
}
.testimonial-img {
  position: relative;
}
.carousel-indicators [data-bs-target] {
  background-color: #5a54f4;
}
.carousel .justify-content-center {
    justify-content: right !important;
}
.testimonial-box h6 {
    color: #5752ee;
}
button.btn.btn-light {
    color: #4F5DE4;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #F1F2FD;
}
button.btn.btn-light:hover {
    color: #fff;
    background: #4F5DE4;
}
.testimonial-img img {
    width: 86%;
}

/* testmonial section close here */
/* counter section start here */
.countdown-section {
  color: white;
  position: relative;
  overflow: hidden;
}
.countdown-card {
    background: white;
    border-radius: 50%;
    padding: 43px 40px 57px 41px;
    max-width: 403px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    color: #0b0b3b;
    position: relative;
}
.countdown-card:before {
    position: absolute;
    left: 87px;
    bottom: 161px;
    width: 58%;
    height: 1.5px;
    content: "";
    background-color: #f6f6f6;
    margin: auto;
}
.countdown-card:after {
    position: absolute;
    left: 198px;
    bottom: 60px;
    width: 1.5px;
    height: calc(59% - 25px);
    content: "";
    background-color: #f6f6f6;
    margin: auto;
}
.countdown-card h4 span {
  color: #ff7a00;
}
.time-box {
    display: inline-block;
    padding: 10px 30px 10px 30px;
    background: #f2f4ff;
    border-radius: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #4e4ed7;
}
.time-label {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  color: #888;
}
.join-btns {
    background: linear-gradient(to right, #ff7a00, #ff6200);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 25px !important;
    border: 2px solid #fff;
}
.promo-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 16px;
  max-width: 450px;
  position: relative;
  color: white;
  font-size: 16px;
}
.promo-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: orange;
  clip-path: polygon(100% 0, 100% 100%, 0% 100%);
  border-radius: 0 0 16px 0;
}
.counter-section  {
    background-position: center;
    background-size: cover;
    padding: 30px 0px;
}
/* Counter section close here */


/***** contact page css start ******/
/** banner css **/

.contact-section {
    text-align: center;
    padding: 60px 7%;
    background: #fff;
    position: relative;
    background-size: cover;
}
.contact-section h6 {
    color: #FF7B00;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-section h2 {
  font-size: 36px;
  color: #1c1738;
  font-weight: 700;
  margin-bottom: 40px;
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

input,
textarea {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 6px;
  color: #333;
  font-family: 'Urbanist', sans-serif;
}

textarea {
  grid-column: span 2;
  min-height: 140px;
  resize: none;
}

.form-btn {
    grid-column: span 2;
    margin-top: 15px;
}

.form-btn button {
  background: linear-gradient(90deg, #ff6a00, #ff9800);
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-btn button:hover {
  opacity: 0.9;
}
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

@media (max-width: 768px) {
  form {
    grid-template-columns: 1fr;
  }
  textarea,
  .form-btn {
    grid-column: span 1;
  }
.contact-section {
    padding: 50px 6%;
}
.contact-boxs {
    display: block !important
	;
}
.contact-section2 {
    padding: 40px 15px 65px 15px !important;
}
    }
/*****  *******/	

.contact-section2 {
    background: #f7f9fb;
    padding: 60px 0px 60px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-boxs {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    margin: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 17px 0px #cfcfcf82;
}

.contact-item {
    flex: 1;
    text-align: center;
    padding: 64px 20px;
    background: #ffffff;
    transition: 0.3s ease;
}

.contact-item.center {
  background: #4f5bd5;
  color: #fff;
}

.contact-item .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}

.contact-item .subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 6px;
}

.contact-item.center .subtitle {
  color: #dfe3ff;
}

.contact-item .info {
  font-size: 18px;
  color: #222;
}
.contact-item i {
    font-size: 40px;
    padding-bottom: 20px;
    color: #4f5bd5;
}
i.fa-regular.fa-envelope-open {
    color: #fff;
}
.contact-item.center .info {
  color: #fff;
}
section.map {
    margin-bottom: -7px;
}
/***** contact page css end ******/

/***** Our Courses page css start ******/

.our-courses {
    background: #f7f9fb;
    background-position: bottom;
    padding: 60px 0px 67px 0px;
}
.our-courses2 {
.our-courses .choose-box {
    background-color: #241e4e;
}
.our-courses .choose-box h3 {
    color: #fff;
}
.our-courses .choose-box p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #fff;
}
.our-courses .choose-box .icon {
    color: #fff;
}
.our-courses .about-one__thumb__one img {
    height: 483px;
}
i.fa-solid.fa-code-compare {
    color: #fff;
    padding-left: 6px;
}
.new-boxes {
    display: flex;
    gap: 20px;
}
.box {
    padding: 15px 151px 15px 20px;
}
i.fa-brands.fa-wordpress {
    padding-left: 13px;
}
i.fa-solid.fa-database {
    padding-left: 15px;
}
i.fa-solid.fa-tag {
    padding-left: 14px;
}
/***** Our Courses page css end ******/
/*Footer section css start here
.footer-background {
    background-image: url('../images/footer-bg-1.png');
    background-color: #241e4e;
    color: #ccc;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.col-md-5.about-us {
    padding-right: 74px;
}
a {
    color: white;
    text-decoration: none;
}
footer h5 {
  color: #fff;
  position: relative;
  margin-bottom: 20px;
}
footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #3955bc, #ff5f13);
  animation: animateLine 2s linear infinite alternate;
}
@keyframes animateLine {
  0% { transform: translateX(0); }
  100% { transform: translateX(20px); }
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.footer-links a:hover {
  color: #ff5f13;
}
.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: #312c5c;
  color: #fff;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}
.social-icons a:hover {
  background-color: #ff5f13;
}
.footer-bottom {
    background-color: #1b1538;
    text-align: center;
    padding: 15px;
    color: #fff;
}
footer .icons i {
    color: #ff7b00;
}
.input-group {
    gap: 0px;
}
.footer-bottom a {
    color: #fff !important;
}*/


/* mobile view responsive css */
@media (max-width: 767px) {
.about-one__thumb__one img {
    height: 335px;
}
.hero-content h1 {
    font-size: 43px;
    line-height: 57px;
}
.hero-buttons .btn {
    margin-top: 16px;
}
.hero-content p br {
    display: none;
}
.btn.btn-orange.eduact-btn {
    padding: 12px 25px;
}
.hero-section {
    padding: 0px 0px;
}
.countdown-card {
    padding: 32px 40px 40px 41px;
}
.countdown-card:after {
    left: 174px;
    bottom: 42px;
    height: calc(65% - 25px);
}
.countdown-card:before {
    left: 60px;
    bottom: 143px;
    width: 65%;
}
.choose-us {
    padding: 0px 0px 75px 0px;
}
.responsive {
    margin-top: 30px;
}
section.slider {
    padding: 50px 20px 50px 20px;
}
.rating {
    margin-bottom: 5px;
}
.course-title {
    margin-bottom: 10px;
}
.page-banner {
    padding: 70px 0;
}
div#navbarContent {
    position: absolute;
    height: 285px;
    left: 0px;
    z-index: 999;
    background: #4d4ce6;
    top: 94px;
    padding: 0px 124px 0px 121px;
}
p.text-muteds {
    text-align: center;
    padding: 0px 0px 9px 0px !important;
}
.our-courses .about-one__thumb__one img {
    height: 300px;
}
.our-courses .why-choose-content {
    padding: 0px 20px 0px 20px;
}
.new-boxes {
    display: block;
}
.choose-box.box {
    margin: 15px 0px 15px 0px;
}
.box {
    padding: 26px 74px 26px 20px;
}
.hero-banner__bg-shape1 {
    width: 100% !important;
    height: 759px;
}
.col-md-5.about-us {
    padding-right: 74px;
    padding-bottom: 18px;
}
.footer-column {
    margin-top: 30px;
}
.testimonial-img img {
    width: 100%;
}
.carousel-inner {
    padding-bottom: 20px;
}
}