@font-face {
  font-family: "cabin";
  src: url("../fonts/cabin-regular-webfont.eot");
  src: url("../fonts/cabin-regular-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/cabin-regular-webfont.woff2") format("woff2"),
    url("../fonts/cabin-regular-webfont.woff") format("woff"),
    url("../fonts/cabin-regular-webfont.ttf") format("truetype"),
    url("../fonts/cabin-regular-webfont.svg#cabinregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "montserrat";
  src: url("../fonts/montserrat-regular-webfont.eot");
  src: url("../fonts/montserrat-regular-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/montserrat-regular-webfont.woff2") format("woff2"),
    url("../fonts/montserrat-regular-webfont.woff") format("woff"),
    url("../fonts/montserrat-regular-webfont.ttf") format("truetype"),
    url("../fonts/montserrat-regular-webfont.svg#montserratregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "cabin";
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Top Bar */
.top-bar {
  background: #0b2d6b;
  color: #cfe3ff;
  text-align: center;
  font-size: 17px;
  padding: 25px 0;
}

.top-bar p {
  color: #e8f1f6;
}

.top-bar span {
  color: #00b4ff;
}

.main-header {
  background: #fff;
  padding: 15px 0px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Container */
/* .main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
} */

/* Left section  */
.head-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

/* Logo */
.logo img {
  width: auto;
  display: block;
}

/* Nav + Button Wrapper */
.nav-header {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
}

/* Navigation Menu */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #0a649a;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #0b2d6b;
}

/* Apply Button */
.btn-apply {
  background: linear-gradient(90deg, #0071fe, #0a5858);
  color: #fff;
  padding: 12px 20px;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  color: #ffffff;
}

.btn-apply:hover {
  opacity: 0.9;
}

/*
.btn-apply:hover, 
.btn-apply:focus {
  color: #313133;
  transform: translateY(-6px);
}

.btn-apply:hover::before, 
.btn-apply:focus::before {
  opacity: 1;
}

.btn-apply::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 6px solid #1b347e;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.btn-apply:hover::after, 
.btn-apply:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}
*/
.neon-pulse::before,
.neon-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid #0ff;
  border-radius: inherit;
  animation: pulseOut 2s ease-out infinite;
  opacity: 0;
}

.neon-pulse::after {
  animation-delay: 1s;
}

@keyframes pulseOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* .hero {
  background: #f0f4ff;
  padding: 60px 0;
} */
.hero-section {
  display: flex;
  /* background: #f0f4ff; */
  padding: 60px 0;
  /* max-width: 1200px; */
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Left Side */
.hero-left {
  flex: 1;
  min-width: 320px;
  margin-top: -30px;
}

.hero-left h6 {
  color: #00a1ff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 17px;
  font-family: "montserrat";
}

.hero-left h1 {
  font-size: 48px;
  line-height: 55px;
  color: #3d3d3d;
  /* margin-bottom: 20px; */
  position: relative;
  margin: 16px 0 40px;
}

.hero-left .yellow-div {
  bottom: -16%;
}

.hero-left h1 span {
  color: #333;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.hero-left .subtext {
  color: #15ac3c;
  font-size: 22px;
  margin-bottom: 36px;
  line-height: 31px;
}

.btn-learn,
.learn-more-btn {
  background: #0b2d6b;
  color: #fff;
  padding: 15px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  font-family: "montserrat";
}

.yellow-div {
  position: absolute;

  /* bottom: -30%; */
  left: 8%;
}

.hero-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 320px;
}

.right-image {
  position: relative;
  width: 100%;
  text-align: right;
}

/* floating section */
.stats-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 28px 24px;
  left: -10%;
  align-items: center;
  gap: 16px;
  width: fit-content;
  position: absolute;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img {
  width: 40px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

.avatars .more {
  background: #ffd34f;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  border: 2px solid #fff;
}

.text h3 {
  margin: 0;
  font-size: 20px;
  color: #1e1e1e;
  display: flex;
  justify-content: center;
}

.text p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

/* Info Bar Section */
/* . {
    padding: 50px 0;
    display: flex;
    justify-content: center;
} */

.container-info {
  background-color: #007ae9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 80px;
  padding: 0 30px;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-box {
  padding: 46px 41px;
}

.info-card {
  padding: 46px 60px 46px 60px;
  background: #056ace;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.info-icon {
  background-color: #2caff3;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.info-icon::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  width: 30px;
  height: 60px;
  background-color: #0f548e;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.info-icon i {
  font-size: 24px;
  color: #fff;
}

/* .margin-text {
    position: relative;
}
.margin-text h2 {
    text-align: center;
    font-size: 35px;
    position: relative;
} */
.margin-text {
  position: relative;
}

.margin-text h2 {
  text-align: center;
  font-size: 35px;
  position: relative;
}

.build-future-section .yellow-divider {
  left: 50%;
  position: absolute;
  width: 200px;
  margin-left: -100px;
}

.build-future-section {
  background: #fff;
  position: relative;
  margin-top: 30px;
}

/* .build-section.c {
  max-width: 1200px;
  margin: 0 auto;
} */

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  position: relative;
}

.image-box {
  flex: 1 1 35%;
  padding: 20px;
  max-width: 400px;
}

.image-box img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
}

.text-box {
  padding: 20px;
  max-width: 500px;
  text-align: justify;
}

.text-box h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.text-box strong {
  color: #14449d;
}

a.learn-more-btn {
  margin-top: 20px;
}

.text-box p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 30px;
}

.blue-goal {
  position: absolute;
  top: 15%;
  right: 0%;
}

.learn-more-btn:hover {
  background-color: #003b99;
}

.experience-badge {
  position: absolute;
  right: -20px;
  bottom: 0;
  margin: 20px;
  background: linear-gradient(45deg, #ffc107, #f9d648);
  padding: 25px 45px;
  border-radius: 20px 0 0 20px;
  color: #1e1e1e;
  font-weight: bold;
  text-align: center;
}

.badge-inner .number {
  font-size: 32px;
  line-height: 1;
  display: block;
}

.badge-inner .text {
  font-size: 16px;
  line-height: 1.2;
}

.training-section {
  width: 100%;
  position: relative;
}

.training-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  width: 100%;
  /* max-width: 1200px; */
  margin: auto;
  position: relative;
  gap: 50px;
}

.course-detail_right_wrap {
  position: relative;
  color: #fff;
  padding: 0 30px 25px 0px;
  border-radius: 15px;
  width: 100%;
  max-width: 400px;
  margin: auto;
  z-index: 2;
  /* overflow: hidden; */
  flex: 1;
}

.blue_box {
  background: #1c65aeeb;
  z-index: 99;
  position: relative;
  padding: 35px;
  border-radius: 20px;
}

.blue_box h3 {
  font-size: 18px;
  font-weight: normal;
  color: #f7da5d;
  margin-bottom: 12px;
}

.blue_box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "montserrat";
  line-height: 25px;
}

.blue_box ul {
  list-style-type: none;
}

.blue_box ul li {
  padding-bottom: 18px;
}

.blue_box ul li i {
  padding-right: 10px;
}

.blue_box ul li .top_title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-left: 10px;
}

.blue_box ul li p {
  padding-left: 28px;
  color: #00dcff;
  font-size: 14px;
}

.feature-card h3 {
  color: #373535;
  font-size: 14px;
}

/* .course-detail {
  position: absolute;
   background: rgba(0, 58, 117, 0.95); semi-transparent blue 
  color: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  width: 100%;
  max-width: 400px;
  margin: auto;
  z-index: 2;
  overflow: hidden;

} */
.course-box h3 {
  color: #ffd700;
  margin: 0 0 10px;
}

.course-box h4 {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.4;
}

.course-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.course-box li {
  margin-bottom: 10px;
  font-size: 15px;
}

.join-btn {
  background-color: #2be7ee;
  color: #1f2a9f;
  padding: 13px 50px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  /* font-weight: bold; */
  font-size: 15px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.join-btn:hover {
  background-color: #ffffff;
}

/* Background Image: Girl with Laptop */
.offer-background img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 15px;
}

/* Offer Tag (Bring Your Laptop) */
.offer-tag {
  position: absolute;
  top: -20%;
  right: 0%;
  width: auto;
  z-index: 99;
}

.offer-tag img {
  width: 200px;
}

.offer-background {
  width: 400px;
  position: absolute;
  height: 460px;
  right: 0px;
  top: 22%;
}

.career-section {
  flex: 1;
  text-align: center;
  padding: 60px 0px;
  background: #fff;
}

.career-section h2 {
  font-size: 2em;
  color: #222;
  margin-bottom: 10px;
}

.career-section .description {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1.1em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 25px;
  justify-content: center;
}

.card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  margin-bottom: 13px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100px;
}

/* Background colors */
.pink {
  background: #ffe5ef;
}

.blue {
  background: #e8f0ff;
}

.green {
  background: #e9ffe8;
}

.light-blue {
  background: #e8faff;
}

.purple {
  background: #f1e8ff;
}

.yellow {
  background: #fff8e5;
}

/* placement section */
.placement-section {
  background: url(../images/hiredsection.png) no-repeat left top;
  color: white;
  border-radius: 20px;
  padding: 40px 100px;
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  /* margin: auto; */
}

.placement-content {
  flex: 1 1 50%;
  max-width: 500px;
}

.placement-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.placement-content p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.apply-btn {
  display: inline-block;
  background: white;
  color: #003a75;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.apply-btn:hover {
  background: #e0e0e0;
}

/* professional */
.learning-section {
  background-color: #0d1b3d;
}

.learning-container {
  /* background-color: #0D1B3D; */
  color: #fff;
  text-align: center;
  padding: 50px 20px 30px;
  margin-top: 50px;
}

.learning-container .description {
  max-width: 800px;
  margin: 0 auto 60px;
  color: #cfd8f3;
  font-size: 1.05em;
  line-height: 1.6;
}

.yellow-divider {
  text-align: center;
}

.learning-cards {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-content: center;
}

.learn-card,
.learn-card-box {
  background-color: #182a59;
  padding: 20px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.learn-card-box {
  transform: translateY(44px);
}

.learn-card img,
.learn-card-box img {
  width: auto;
  margin: 10px 0;
  /* filter: invert(90%) sepia(20%) saturate(200%) hue-rotate(180deg); */
}

.learn-card h3,
.learn-card-box h3 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

.learn-card:hover {
  background-color: #1e3a8a;
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 150, 255, 0.4);
}
.learn-card-box:hover {
  background-color: #1e3a8a;
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 150, 255, 0.4);
}

.footer-text {
  padding-top: 8%;
  font-size: 1.05em;
  color: #2caff3;
  /* float: left; */
  /* width: 100%; */
  padding-bottom: 40px;
}

/* .newsletter-container {
  background-color: #E8E9ED;
  padding: 0px ;
  
  justify-content: center;
  align-items: center;
} */
section.newsletter-section {
  background: url(../images/cta-bg.png) no-repeat center center;
}

.newsletter-container {
  display: flex;
  /* background-color: #E8E9ED; */
  padding: 0px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  /* max-width: 1200px; */
  width: 100%;
  position: relative;
}

.newsletter-left {
  background-color: #040b28;
  color: white;
  padding: 50px 30px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  flex: 1;
}

.newsletter-left h2 {
  color: #00aaff;
  font-size: 22px;
  margin-bottom: 10px;
  text-align: left;
}

.newsletter-left p {
  font-size: 16px;
  color: #dcdcdc;
}

.newsletter-form {
  display: flex;
  flex: 1;
  gap: 15px;
  justify-content: flex-end;
}

.newsletter-form input {
  flex: 1;
  padding: 18px 25px;
  border: none;
  border-radius: 40px;
  background-color: #d3d5dc;
  color: #0b1a40;
  font-size: 15px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #0b1a40;
  opacity: 0.8;
}

.newsletter-form button {
  background-color: #040b28;
  color: white;
  border: none;
  border-radius: 40px;
  padding: 18px 40px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #0b1a40;
}

.learning-container h2 {
  font-size: 2.2em;
  font-weight: 600;
  margin-bottom: 20px;
  /* text-align: left; */
  color: #fff;
}

.placement-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff;
  text-align: left;
}

.learner-section {
  background-color: #f6f7fb;
  padding: 50px 0 0px;
}

.learner-container {
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  /* padding: 0 20px; */
  padding-bottom: 50px;
}

.cta-container {
  position: absolute;
  position: absolute;
  margin-top: -7%;
  width: 100%;
  padding: 0;
}

/* Left image */
.learner-left {
  flex: 1 1 40%;
  text-align: center;
}

.learner-left img {
  max-width: 100%;
  height: auto;
}

/* Right content */
.learner-right {
  flex: 1 1 55%;
}

/* Testimonial */
.testimonial-box i {
  font-size: 27px;
  margin-bottom: 8px;
  color: #29ceff;
}

.testimonial h2 {
  font-size: 35px;
  color: #222;
  margin-bottom: 20px;
}

.testimonial-box {
  background-color: #9eb5df30;
  border-radius: 10px;
  padding: 40px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin: 30px 0 5px;
}

.testimonial-box h3 {
  color: #173b8e;
  margin-bottom: 10px;
}

.testimonial-box p {
  color: #444;
  margin-bottom: 0;
  line-height: 22px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 23px 0 7px;
}

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.user-info h4 {
  margin: 0;
  color: #222;
}

.user-info span {
  font-size: 14px;
  color: #888;
}

/* CTA section */
.cta-box {
  background-color: #040b28;
  color: #fff;
  border-radius: 12px;
  padding: 40px 50px;
  /* margin: 40px 0; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-box h3 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: normal;
}

.cta-box p {
  color: #d4d7e2;
}

.cta-btn {
  background-color: #fff;
  color: #040b28;
  padding: 15px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #00aaff;
  color: #fff;
}

/* FAQ section */
.faq-section {
  max-width: 1200px;
  /* margin: 0 auto; */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  padding: 0;
}

.faq-left {
  width: 500px;
  padding: 40px 0px;
  border-radius: 12px;
  color: #222;
}

.faq-left p {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 10px;
}

.faq-left .small-text {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 30px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #0a2c75;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #001c5a;
}

.faq-left h2 {
  text-align: left;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 4px solid #00000036;
  display: inline-block;
  padding-bottom: 5px;
}

.faq-container {
  background: linear-gradient(178deg,
      lch(3.56 25.42 289.56 / 0.12),
      lch(80 47.22 195.18 / 0.12));
  padding: 130px 0 50px;
}

.faq-right {
  width: 600px;
  margin: 10px auto;
  border-radius: 12px;
  flex: 1;
}

/* --- REMOVED unused <details> styles --- */

.footer-section {
  background: #091d4c;
}

.footer-container {
  /* background: #091d4c; */
  color: #cfe3ff;
  text-align: center;
  font-size: 17px;
  padding: 25px 0;
  text-align: center;
  display: flex;
  gap: 15px;
}

.socials a {
  color: #2caff3;
  margin-left: 14px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  /* background-color: #fff; */
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3 ease;
}

.social a:hover {
  background-color: #ddd;
  color: #000;
}

.socials {
  width: 33%;
  text-align: right;
}

.menu-toggle {
  font-size: 1.4rem;
  cursor: pointer;
  display: none;
  transition: transform 0.3s ease;
  position: absolute;
  left: -77px;
  color: #000;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 30;
  padding-top: 60px;
  opacity: 0;
  transform: translateX(50px);
}

.mobile-menu.active {
  right: 0;
  opacity: 1;
  transform: translateX(0);
}

/* Apply now page css added */

/* --- MERGED .body.apply rules --- */
body.apply {
  background: url(../images/applyback.jpg) no-repeat center center/cover;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Layout */
.container-card {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.logo {
  text-align: center;
}

.logo img {
  width: 140px;
  margin-bottom: 8px;
}

.signup-text {
  font-size: 14px;
  color: #555;
}

.signup-text a {
  color: #0066ff;
  text-decoration: none;
}

.signup-text a:hover {
  text-decoration: underline;
}

h2 {
  text-align: center;
  margin: 20px 0;
  color: #222;
  font-weight: 600;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-section {
  border: 0;
  border-radius: 10px;
  padding: 20px;
  /* background: #fafbff; */
  padding: 0;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Terms */
.terms {
  text-align: left;
  font-size: 14px;
}

.terms a {
  color: #0066ff;
  text-decoration: none;
}

/* Button */
.submit-btn {
  text-align: center;
}

.submit-btn button {
  background: #0b2d6b;
  color: #fff;
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.submit-btn button:hover {
  background: #093277;
}

.main-section {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #fbd6e6; */
  flex: 1;
  padding: 3rem 1rem;
}

.login-container {
  /* display: flex; */
  background: rgba(255, 255, 255, 0.705);
  border-radius: 30px;
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.apply-container {
  display: flex;
}

.login-card {
  flex: 2;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* border-radius: 0 30px 30px 0; */
  background: #fbfcff;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.signup-text {
  margin-bottom: 1.5rem;
  color: #666;
}

.signup-text a {
  color: #5f4dee;
  text-decoration: none;
  font-weight: 600;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  color: #6c6a6a;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  padding: 15px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: 0.3s;
  background: transparent;
  margin-bottom: 10px;
  color: #5a5858;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #0066ff;
  outline: none;
}

.form-group select option {
  color: #000;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background-color: #fff;
  /* -webkit-appearance: none; */
}

/* Terms */
.terms {
  text-align: left;
  font-size: 14px;
}

.terms a {
  color: #0066ff;
  text-decoration: none;
}

/* Button */
.submit-btn {
  text-align: center;
}

.submit-btn button {
  background: #0b2d6b;
  color: #fff;
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.submit-btn button:hover {
  background: #093277;
}

/* right side */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-section h4 {
  color: #5e5e5e;
  margin-bottom: 14px;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.right-card {
  flex: 1;
  background: #1c65aeeb;

  display: flex;
  justify-content: center;
  align-items: center;
}

.course-box {
  z-index: 99;
  position: relative;
  padding: 0 35px;
  border-radius: 20px;
}

.course-box h3 {
  font-size: 18px;
  font-weight: normal;
  color: #fdfdfd;
  margin-bottom: 12px;
}

.course-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
  font-family: "montserrat";
  line-height: 25px;
}

.course-box ul {
  list-style-type: none;
}

.course-box ul li {
  padding-bottom: 18px;
}

.course-box ul li i {
  padding-right: 10px;
  width: 28px;
  color: #fff;
}

.course-box ul li .top_title {
  font-size: 17px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.4px;
}

.course-box ul li p {
  padding-left: 30px;
  color: #f6fbfc;
  font-size: 14px;
}

.offer {
  background: #0b2d6b;
  text-align: center;
  border-radius: 15px;
  padding: 10px;
}

.offer p {
  font-size: 18px;
  color: #fffdfd;
  padding: 10px 0;
}

/* Button */
.submitnow-btn {
  text-align: center;
}

.submitnow-btn button {
  background: #0b2d6b;
  color: #fff;
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.submitnow-btn button:hover {
  background: #093277;
}

.joinnow-btn {
  text-align: center;
}

.joinnow-btn button {
  background: #fff;
  color: #000;
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 25px;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  /* transition: transform 0.3s 
ease; */
  position: absolute;
  right: 0;
  color: rgb(26, 25, 25);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 30;
  padding-top: 60px;
  opacity: 0;
  transform: translateX(50px);
}

.mobile-menu.active {
  right: 0;
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 25px;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}

.mobile-menu ul li a:hover {
  color: #007bff;
  transform: translateX(5px);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
}

/*thank you page*/
.thank_you-section {
  padding: 50px 0;
  text-align: center;
  background: #f3fcff;
}

.checkmark-container {
  padding: 50px 0;
  width: 400px;
  height: 400px;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
}

i.fas.fa-check.checkmark-animated {
  font-size: 100px;
  background: #008000;
  padding: 20px;
  border-radius: 50%;
  color: #fff;
  margin-bottom: 30px;
}

.checkmark-container h4 {
  font-size: 30px;
  padding-bottom: 30px;
}

.checkmark-animated {
  color: green;
  font-size: 2em;
  /* Adjust size */
  opacity: 0;
  animation: fadeInCheck 0.7s forwards ease-in;
}

@keyframes fadeInCheck {
  to {
    opacity: 1;
  }
}

/* Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #00d1b2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Success Checkmark Animation */
.checkmark {
  width: 60px;
  height: 60px;
  display: block;
  stroke-width: 4;
  stroke: #28a745;
  stroke-miterlimit: 10;
  margin: 0 auto;
  box-sizing: content-box;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 4;
  stroke-miterlimit: 10;
  stroke: #28a745;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: check 0.3s 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes check {
  100% {
    stroke-dashoffset: 0;
  }
}

input.error,
select.error {
  border-color: red !important;
  background: #ffe6e6;
}

.error-message {
  margin-top: 4px;
}

.contact-container {
  width: 50%;
  /* display: flex; */
  background: rgb(255, 255, 255);
  border-radius: 30px;
  overflow: hidden;
  max-width: 1000px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-card {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  flex: 2;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* border-radius: 0 30px 30px 0; */
  /* background: #fbfcff; */
}

.contact-right-card {
  flex: 1;
  background: #1c65aeeb;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.apply .main-section,
body.thank_you_page .thank_you-section {
  flex: 1;
}

/* body.apply, (This was part of the duplicate rule) */
body.thank_you_page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --- Contact Form Styles --- */
.contact-message-area {
  height: 150px;
  width: 100%;
  padding: 10px;
  font-family: "cabin";
  font-size: 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: transparent;
  color: #5a5858;
}

.contact-message-area:focus {
  border-color: #0066ff;
  outline: none;
}

/* --- NEW Testimonial Slider Styles --- */
.review-slider-viewport {
  position: relative;
  overflow: hidden;
  /* The "viewport" */
  width: 100%;
}

.review-slider-wrapper {
  /* This wrapper holds all slides in a long row */
  display: flex;
  /* Width is set by jQuery */
}

.review-slide {
  /* Each slide takes up 100% of the viewport width */
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* This holds the sliding text content */
.review-content {
  margin-bottom: 20px;
  /* Space before the user info */
}

.review-content h3 {
  color: #173b8e;
  margin-bottom: 10px;
}

.review-content p {
  color: #444;
  margin-bottom: 0;
  line-height: 22px;
}

/* --- bxSlider Testimonial Styles --- */

/* This is the content that slides */
.review-slide h3 {
  color: #173b8e;
  margin-bottom: 10px;
}

.review-slide p {
  color: #444;
  margin-bottom: 20px;
  line-height: 22px;
}

/* Hide the default bxSlider border and shadow */
.bx-wrapper {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  margin: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.bx-viewport {
  box-sizing: border-box;
}

/* --- jQuery UI Accordion Styles (FAQ) --- */
/* --- REMOVED conflicting FontAwesome FAQ styles --- */

/* ============================================= */
/* ===== FAQ Accordion Style (for index.php) ===== */
/* ============================================= */
/* This is the only FAQ style needed, as it matches your script */

/* Remove default jQuery UI theme styles */
#faq-accordion.ui-accordion .ui-accordion-header,
#faq-accordion.ui-accordion .ui-accordion-content {
  background: transparent;
  border: none;
  color: #333;
}

/* Style for the header (to look like <summary>) */
#faq-accordion.ui-accordion .ui-accordion-header {
  padding: 15px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  position: relative;
  
  /* Apply the <details> box style */
  border: 2px solid lch(0 0 0 / 0.2);
  box-shadow: 2px 5px 11px #b3c1bc94;
  
  /* Spacing between questions */
  margin-top: 8px;
  
  /* Default state (closed) */
  border-radius: 10px;
}

/* Style for the content (to look like <details> content) */
#faq-accordion.ui-accordion .ui-accordion-content {
  padding: 15px 20px 15px 20px;
  font-size: 14px;
  color: #555;
  
  /* Bottom half of the box */
  border: 2px solid lch(0 0 0 / 0.2);
  border-top: none; /* Header has the top border */
  box-shadow: 2px 5px 11px #b3c1bc94;
  margin-top: 0; /* Connects to header */
  border-radius: 0 0 10px 10px;
}

/* Remove top margin from the very first question */
#faq-accordion.ui-accordion .ui-accordion-header:first-of-type {
  margin-top: 0;
}

/* Hide default jQuery UI icon */
#faq-accordion.ui-accordion .ui-accordion-header .ui-icon {
  display: none; 
}

/* Add custom '+' icon */
#faq-accordion.ui-accordion .ui-accordion-header::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Change to '−' icon when active */
#faq-accordion.ui-accordion .ui-accordion-header.ui-state-active::after {
  content: "−";
}

/* Adjust borders when active (open) */
#faq-accordion.ui-accordion .ui-accordion-header.ui-state-active {
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0; /* Remove gap between header and content */
}

/* =========================================
   Admin Applicants Page Styles
========================================= */

body.admin-page {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0; /* Reset margin */
    background: #f7f7f7;
    color: #222;
    display: flex; /* Use flex to match other pages */
    flex-direction: column;
    min-height: 100vh;
}

body.admin-page .main-section {
    flex: 1; /* Make content grow */
    padding: 20px;
}

body.admin-page .wrap {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 18px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

body.admin-page h1 {
    margin: 0 0 12px;
    font-size: 20px;
}

body.admin-page table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    table-layout: fixed;
    word-wrap: break-word;
}

body.admin-page th,
body.admin-page td {
    padding: 8px 10px;
    border: 1px solid #e6e6e6;
    text-align: left;
    vertical-align: top;
    word-break: break-word;
    white-space: normal;
}

body.admin-page th {
    background: #fafafa;
}

body.admin-page tr:nth-child(even) {
    background: #fcfcfc;
}

body.admin-page .small {
    font-size: 12px;
    color: #666;
}

body.admin-page .no-data {
    padding: 30px;
    text-align: center;
    color: #666;
}

body.admin-page .top-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

body.admin-page .btn {
    display: inline-block;
    padding: 8px 12px;
    background: #007bff;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
}

body.admin-page .btn.secondary {
    background: #6c757d;
}

body.admin-page .pagination {
    margin-top: 14px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

body.admin-page .page-link {
    padding: 6px 10px;
    background: #fff;
    border: 1px solid #ddd;
    color: #007bff;
    text-decoration: none;
    border-radius: 4px;
}

body.admin-page .page-link.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

body.admin-page .page-info {
    margin-left: auto;
    color: #666;
    font-size: 13px;
}

@media (max-width:900px) {
    body.admin-page table {
        font-size: 13px;
    }

    body.admin-page .wrap {
        padding: 12px;
    }
}
.error-404-wrap {
  text-align: center;
  padding: 40px 0 80px;
}

.error-code {
  font-size: 150px;
  font-weight: 700;
  color: #0b2d6b;
  /* Subtle grey so it's not overwhelming */
  line-height: 1;
  margin-bottom: -20px;
  /* Slight overlap effect */
  position: relative;
  z-index: 1;
}

.error-message h2 {
  font-size: 36px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.error-message p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.search-container {
  max-width: 500px;
  margin: 0 auto 40px;
}

/* Button styling matching your Thank You page style */
.btn-404 {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 12px 35px;
  border-radius: 5px;
  background: #0b2d6b;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-404:hover {
  background: #094bdbff;
  color: #fff;
  transform: translateY(-2px);
}
/* Hide the default CF7 loader if you want cleaner UI */
div.wpcf7 .ajax-loader {
    display: none; 
}

/* Style the Success/Error Messages */
div.wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 10px !important;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}
/* =========================================
   UPDATED COURSE GRID STYLES
   ========================================= */

/* Main Section Wrapper */
.popular-courses-section,
.courses-listing {
    background-color: #f9fbfc;
}

/* The Grid Container */
.course-grid {
    display: grid;
    /* responsive columns: min 320px wide, fits as many as possible */
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

/* The Card */
.course-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #edf2f7;
    height: 100%; /* Ensures all cards in a row are same height */
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(11, 45, 107, 0.1);
}

/* Thumbnail Area */
.course-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #eee;
}

.course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-thumb img {
    transform: scale(1.1);
}

/* Card Content Area */
.course-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes footer to bottom */
}

/* Tags Styling */
.course-tags {
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.course-tag-item {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: #e8f0ff;
    color: #0b2d6b;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.2s;
    letter-spacing: 0.5px;
}

.course-tag-item:hover {
    background: #0b2d6b;
    color: #fff;
}

/* Title */
.course-content h3 {
    font-size: 20px;
    margin: 0 0 15px;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.course-content h3 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}

.course-content h3 a:hover {
    color: #007bff;
}

/* Meta Data (Duration/Mode) */
.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    list-style: none;
    padding: 0;
}

.course-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-meta i {
    color: #00aaff;
}

/* Footer (Price + Button) */
.course-footer {
    margin-top: auto; /* Push to bottom of flex container */
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0b2d6b;
}

/* Buttons */
.btn-course {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

/* Active Button (Apply) */
.btn-course.active {
    background: #0b2d6b;
    color: #fff;
}

.btn-course.active:hover {
    background: #007bff;
}

/* Upcoming Button */
.btn-course.upcoming {
    background: #e0e0e0;
    color: #777;
    cursor: default;
    pointer-events: none;
}

/* --- Single Course Page Styles --- */
.single-course-hero {
    background: linear-gradient(135deg, #0b2d6b 0%, #001c5a 100%);
    padding: 60px 0;
    color: #fff;
}
.single-course-hero h1 { 
    font-size: 42px; 
    margin-bottom: 15px; 
    font-family: 'Montserrat', sans-serif;
}
.single-course-meta { 
    display: flex; 
    gap: 20px; 
    font-size: 16px; 
    opacity: 0.9; 
}
.single-course-meta span i { margin-right: 8px; }

/* Sidebar on Single Page */
.sidebar-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    position: sticky;
    top: 105px;
}

.sidebar-info-list { list-style: none; padding: 0; margin: 0; }

.sidebar-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 15px;
}
.sidebar-info-list li:last-child { border-bottom: none; }
.sidebar-info-list li strong { color: #222; font-weight: 600; }

/* Single Page Apply Button */
.btn-apply-now {
    display: block;
    width: 100%;
    text-align: center;
    background: #0b2d6b;
    color: #ffffff;
    font-weight: 700;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 25px;
    /* transition: 0.3s; */
}
.btn-apply-now:hover { 
    background: #fff; 
    border: 1px solid #0b2d6b; 
    color: #0b2d6b;
}

.btn-coming-soon {
    display: block;
    width: 100%;
    text-align: center;
    background: #f0f0f0;
    color: #888;
    padding: 15px;
    border-radius: 8px;
    margin-top: 25px;
    font-weight: 600;
    border: 1px solid #ddd;
}
.course-description.content-style p{
  line-height: 1.7;
  font-size: 17px;
  margin-bottom: 15px;
}
.course-description.content-style h3{
  font-size: 22px;
  line-height: 2;
}
.course-description.content-style b{
  font-size: 18px;
}
.course-description.content-style ul{
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
}
p.course-excerpt {
margin-bottom: 20px;
min-height: 100px;
color: #5c5757;
}
img.attachment-full.size-full.wp-post-image {
    height: 350px;
    object-fit: cover;
}
.single_text li {
  margin-left: 30px;
}
.single_text {
  line-height: 2;
  padding: 20px;
  font-size: 17px;
}
.footer-links {
  width: 33%;
  text-align: center;
}
.footer-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  margin-right: 25px;
}
.left-footer {
  width: 33%;
  text-align: left;
  font-size: 16px;
}
.left-footer a {
  text-decoration: none;
  color: #ffffff;
}
