
html, body{
 
  overflow-x: hidden;;
}



/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #24b52e;
  --secondary-color:              #032984;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #24b52e;
  --custom-btn-bg-hover-color:    #24b52e;
  --dark-color:                   #000000;
  --p-color:                      #717275 ;
  --link-hover-color:             #71E751;

  --body-font-family: 'Lucida Console', Monospace;

  --h1-font-size:                 42px;
  --h2-font-size:                 36px;
  --h3-font-size:                 28px;
  --h4-font-size:                 24px;
  --h5-font-size:                 22px;
  --h6-font-size:                 20px;
  --p-font-size:                  16px;
  --menu-font-size:               12px;
  --btn-font-size:                14px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body { 

  background:linear-gradient(45deg, lightgreen, white);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  text-shadow: 3px 2px 4px rgba(0, 0, 0, 0.7);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
  text-shadow: 3px 2px 4px rgba(0, 0, 0, 0.7);
}

h3 {
  font-size: var(--h3-font-size);
  text-shadow: 3px 2px 4px rgba(0, 0, 0, 0.2);
}

h4 {
  font-size: var(--h4-font-size);
  text-shadow: 3px 2px 4px rgba(0, 0, 0, 0.2);
}

h5 {
  font-size: var(--h5-font-size);
  text-shadow: 3px 2px 4px rgba(0, 0, 0, 0.2);
}

h6 {
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
  text-shadow: 3px 2px 4px rgba(0, 0, 0, 0.7); 
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  text-shadow: 3px 2px 4px rgba(0, 0, 0, 0.2);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  text-shadow: 3px 2px 4px rgba(0, 0, 0, 0.2);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}




/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

::selection {
  background-color: var(--secondary-color);
  color: var(--white-color);
}


/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border: 4px solid var(--white-color);
  border-radius: 100px;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.avatar-image-left {
  position: relative;
  left: -10px;
}

.avatar-image-left + .avatar-image-left {
  left: -20px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -30px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -40px;
}

.avatar-group,
.reviews-group {
  position: relative;
  z-index: 22;
}

.reviews-group {
  display: inline-block;
  vertical-align: top;
}

.reviews-group strong {
  font-size: var(--h3-font-size);
  margin-right: 10px;
}


/*---------------------------------------
  CUSTOM LINK              
-----------------------------------------*/
.link {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  color: var(--white-color);
}

.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::before {
  content: '';
}

.link--kale::before {
  height: 10px;
  top: 100%;
  opacity: 0;
}

.link--kale:hover::before {
  opacity: 1;
  animation: lineUp 0.3s ease forwards;
}

@keyframes lineUp {
  0% {
    transform-origin: 50% 100%;
    transform: scale3d(1, 0.045, 1);
  }

  50% {
    transform-origin: 50% 100%;
    transform: scale3d(1, 1, 1);
  }

  51% {
    transform-origin: 50% 0%;
    transform: scale3d(1, 1, 1);
  }

  100% {
    transform-origin: 50% 0%;
    transform: scale3d(1, 0.045, 1);
  }
}

.link--kale::after {
  content: '';
  transition: opacity 0.3s;
  opacity: 0;
  transition-delay: 0s;
}

.link--kale:hover::after {
  opacity: 1;
  transition-delay: 0.3s;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.btn-naira {
  padding: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btn-naira::before {
  content: '';
  position: absolute;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--primary-color);
  top: -50%;
  z-index: -1;
  -webkit-transform: translate3d(0, -100%, 0) rotate3d(0, 0, 1, -10deg);
  transform: translate3d(0, -100%, 0) rotate3d(0, 0, 1, -10deg);
}

.btn-naira.btn-inverted::before {
  background: var(--primary-color);
}

.btn-naira > span {
  display: block;
  vertical-align: middle;
}

.btn-naira .btn-icon {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  color: var(--white-color);
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.btn-naira > span,
.btn-naira .btn-icon {
  padding: 10px 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.btn-naira:hover::before {
  -webkit-animation: anim-naira-1 0.3s forwards ease-in;
  animation: anim-naira-1 0.3s forwards ease-in;
}

@-webkit-keyframes anim-naira-1 {
  50% {
    -webkit-transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
    transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes anim-naira-1 {
  50% {
    -webkit-transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    transform: translate3d(0, -50%, 0) rotate3d(0, 0, 1, -10deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
    transform: translate3d(0, 0%, 0) rotate3d(0, 0, 1, 0deg);
  }
}

.btn-naira:hover {
  background-color: var(--primary-color);
  -webkit-transition: background-color 0s 0.3s;
  transition: background-color 0s 0.3s;
}

.btn-naira.btn-inverted:hover {
  background-color: var(--primary-color);
}

.btn-naira:hover .btn-icon {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.btn-naira:hover > span {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: rgba(0, 0, 0, 0.85);
}

.navbar {
  background: transparent;
  z-index: 99;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--white-color);
}

.navbar-brand-icon {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  vertical-align: top;
  color: var(--white-color);
  font-size: var(--h6-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
}

.navbar-brand-icon::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10px;
  right: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent var(--secondary-color) transparent;
  pointer-events: none;
  transform: rotate(65deg);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

@media screen and (min-width: 991px){
.submenu {
  display: none; /* Hide submenu by default */
  position: absolute;
  background-color: #000; /* Background color */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Box shadow */
  z-index: 0;
  top: 80%; /* Adjust the vertical position (distance from the top) */
  left: 57%; /* Adjust the horizontal position (distance from the left) */
}

/* Show submenu on hover */
.nav-item:hover .submenu {
  display: block;
}

.submenu li {
  list-style: none; /* Remove bullets */
}

/* Style for submenu links */
.submenu .nav-item {
  margin: 0; /* Reset margin for submenu items */
}

.submenu .nav-link {
  display: block;
  padding: 10px; /* Add padding for better styling */
  color: #fff; /* Text color for submenu links */
  text-decoration: none; /* Remove default underline */
  transition: background-color 0.3s ease; /* Add transition for smooth hover effect */
}

/* Style for active/hover state of submenu links */
.submenu .nav-link:hover,
.submenu .nav-link.active {
  background-color: rgba(255, 255, 255, 0.1); /* Background color for hover/active state */
}
}


/* Media Query for smaller screens */
@media screen and (max-width: 768px) {
  .submenu {
    display: none; /* Hide submenu by default */
  
  }
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-image: url('../images/businessman-sitting-by-table-cafe.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 50px;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.45);
}

.hero-section .row {
  position: relative;
  z-index: 22;
  top: 100px;
}

.hero-image {
  position: relative;
  z-index: 2;
  bottom: 100px;
  display: block;
  margin: auto;
}

@media screen and (min-width: 991px) {
  .hero-section {
    height: calc(90vh - 88px);
    padding-top: 350px;
  }
}


/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-section {
  background-color: var(--custom-btn-bg-color);
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}

.featured-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 675px 450px;
  border-color: transparent transparent #24b52e transparent;
  pointer-events: none;
}


/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
  background-image: url('../images/businessman-sitting-by-table-cafe.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.custom-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.45);
}

.custom-block .avatar-image {
  min-width: 60px;
  margin: auto;
  left: 0;
}

.custom-block .bi-star {
  color: var(--white-color);
}

.custom-block .bi-star-fill {
  color: var(--secondary-color);
}

.custom-block-image-wrap {
  background-color: rgba(231, 111, 81, 0.85);
  border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: auto;
  padding: 25px 45px;
}

.custom-block-info {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.custom-block-info strong,
.custom-block-info p {
  color: var(--white-color);
}

.custom-block-info p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}


/*---------------------------------------
  THE BOOK SECTION            
-----------------------------------------*/
.book-section-info {
  padding-top: 40px;
  padding-right: 40px;
  padding-left: 40px;
  text-align:justify;
}

.nav-pills {
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: sticky;
  top: 120px;
  padding: 30px;
}

.nav-pills .nav-link {
  background: var(--section-bg-color);
  color: var(--p-color);
  border-radius: var(--border-radius-large);
  margin-top: 5px;
  margin-bottom: 10px;
  padding: 15px 30px;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active, 
.nav-pills .show>.nav-link {
  background: var(--primary-color);
  color: var(--white-color);
}

.scrollspy-example-2 {
  padding-right: 30px;
  padding-left: 30px;
}

.scrollspy-example-item {
  border-bottom: 5px dotted var(--p-color);
  min-height: 500px;
  padding-top: 20px;
  padding-bottom: 50px;
}

.scrollspy-example-item:last-child {
  border-bottom: 0;
}

.scrollspy-example-item-image {
  border-radius: var(--border-radius-medium);
}

.scrollspy-example-item h5 {
  padding-top: 30px;
  padding-bottom: 20px;
}

.blockquote {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--site-footer-bg-color);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 80px 40px 40px 40px;
  text-align: center;
}

.blockquote::before {
  content: "“";
  color: var(--custom-btn-bg-color);
  font-size: 100px;
  line-height: 1rem;
  display: block;
}

/* Media Query for smaller screens */
@media screen and (max-width: 768px) {
  .book-section-info {
  padding-top: 40px;
  padding-right: 40px;
  padding-left: 40px;
  text-align: left;
  
}


  
}


/*---------------------------------------
  AUTHOR SECTION            
-----------------------------------------*/
.author-section {
  background-image: url('../images/circle-scatter-haikei.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  position: relative;
  margin-top: 50px;
}

.author-image {
  border: 10px solid var(--secondary-color);
  border-radius: 100%;
  display: block;
  margin: auto;
  width: 350px;
  height: 350px;
  object-fit: cover;
}


/*---------------------------------------
  DIVIDER SECTION               
-----------------------------------------*/
.divider-section {
  background-image: url('../images/wave-haikei.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--custom-btn-bg-color);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 450px 450px 0 0;
  border-color: var(--white-color) transparent transparent;
  pointer-events: none;
}

.contact-section .container {
  position: relative;
}

.contact-section p {
  color: var(--white-color);
  font-size: var(--h6-font-size);
}

.contact-link {
  color: var(--white-color);
}

.contact-section .copyright-text {
  font-size: var(--copyright-font-size);
}

/*---------------------------------------
  EBOOK DOWNLOAD FORM               
-----------------------------------------*/
.ebook-download-form {
  border-radius: var(--border-radius-medium);
  position: relative;
  z-index: 2;
  padding: 5%; /* Adjust padding for responsiveness */
}

/*---------------------------------------
  CUSTOM FORM SECTION             
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--p-color);
  padding: 1em; /* Adjust padding for responsiveness */
  outline: none;
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: var(--primary-color);
}

.custom-form .form-control:focus + .input-group-text .custom-form-icon,
.custom-form .form-control:hover + .input-group-text .custom-form-icon {
  opacity: 1;
}

.custom-form .input-group-text {
  background: transparent;
  border: 0;
  border-radius: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 10px;
}

.custom-form-icon {
  position: relative;
  z-index: 22;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), 
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control, 
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select, 
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-radius: var(--border-radius-large);
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Media Query for smaller screens */
@media screen and (max-width: 768px) {
  .contact-section::before {
    border-width: 300px 300px 0 0; /* Adjust border-width for smaller screens */
  }

  .ebook-download-form {
    padding: 3%; /* Adjust padding for smaller screens */
  }

  .custom-form .form-control {
    padding: 0.8em; /* Adjust padding for smaller screens */
  }
}

/*---------------------------------------
  SERVICES SECTION            
-----------------------------------------*/

.services-section {
  text-align: center;
}

.services-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.service {
  flex: 0 0 calc(100% - 30px); /* Full width for small screens, adjust as needed */
  margin: 15px;
}

.service-images {
  width: 100%; /* Full width for small screens */
  max-width: 250px;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 2);
}

.service-title {
  font-size: 16px;
  text-align: center; /* Center text for all screen sizes */
  color: #0f0f0f;
  font-weight: bold;
}

.service-overlay {
  width: 100%;
  height: 50%;
  border-radius: 5%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 5);
  background-color: rgba(0, 0, 0, 0.15); /* Adjust the opacity value as needed */
}

/* Media Query for smaller screens */
@media screen and (min-width: 768px) {
  .service {
    flex: 0 0 calc(50% - 30px); /* Reset to 50% width for larger screens */
  }

  .service-title {
    text-align: right; /* Align text to the right for larger screens */
  }
}

/*---------------------------------------
  PRODUCTS SECTION          
-----------------------------------------*/

.products {
  grid-column: 1 / 13;
  grid-row: 3;
  padding: 50px 0; /* Adjusted padding for responsiveness */
  position: relative;
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.products > div:first-child {
  width: 100%;
  margin: 10px;
  text-align: center;
}

.products > div:not(:first-child) {
  width: 100%; /* Full width for small screens, adjust as needed */
  max-width: 400px; /* Set a maximum width for larger screens */
  margin: 10px;
  text-align: center;
  border-radius: 15px;
  padding: 20px; /* Adjusted padding for responsiveness */
  background-color: #f9faff;
  box-shadow: 0px 0px 22px -15px rgba(0, 0, 0, 0.75);
  cursor: pointer;
  position: relative;
}

.products > div:hover:not(:first-child) {
  background-color: #eafbff;
}

.products > div:not(:first-child) > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Media Query for smaller screens */
@media screen and (max-width: 768px) {
  .products > div:not(:first-child) {
    max-width: 100%; /* Full width for small screens */
  }
}

/*---------------------------------------
  CONTACT FORM             
-----------------------------------------*/

.contact-left {
  grid-column: 2 / 8;
  grid-row: 1 / 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 2;
  /* border: 1px solid blue; */
}

.contact-right {
  background-color: #9fc5e8; /* Set your desired background color */
  border-radius: 0px; /* Adjust the border-radius for curved corners */
  border: 6px solid #ccc; /* Set the border properties */
  padding: 30px; /* Adjust the padding as needed */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-right p,
.contact-right h1 {
  /* Add any additional styling for the text inside .contact-right if needed */
}





@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

*{

  margin:0; padding:0;
  box-sizing: border-box;
  outline: none; border:none;
  text-decoration: none;
  text-transform: capitalize;
  transition: .2s linear;
}






/*---------------------------------------
  ELIGIBLE SECTION             
-----------------------------------------*/
.ccontainer{

 z-index: 2;
 padding:15px 9%;
 padding-bottom: 100px;
}

.ccontainer .heading{

  text-align: center;
  padding-bottom: 15px;
  color:#fff;
  text-shadow: 0 5px 10px rgba(0,0,0,.2);
  font-size: 50px;
}

.ccontainer .box-ccontainer{

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap:15px;
}

.ccontainer .box-ccontainer .box{

  box-shadow: 0 5px 10px rgba(0,0,0,.2);
  border-radius: 5px;
  background: #fff;
  text-align: center;
  padding:30px 20px;
}

.ccontainer .box-ccontainer .box img{
  height: 80px;
}

.ccontainer .box-ccontainer .box h3{
  color:#444;
  font-size: 22px;
  padding:10px 0;
}

.ccontainer .box-ccontainer .box p{

  color:#777;
  font-size: 15px;
  line-height: 1.8;
}

.ccontainer .box-ccontainer .box .btn{

  margin-top: 10px;
  display: inline-block;
  background:#333;
  color:#fff;
  font-size: 17px;
  border-radius: 5px;
  padding: 8px 25px;
}

.ccontainer .box-ccontainer .box .btn:hover{
  letter-spacing: 1px;
}

.ccontainer .box-ccontainer .box:hover{
  box-shadow: 0 10px 15px rgba(0,0,0,.3);
  transform: scale(1.03);
}

@media (max-width:768px){
  .ccontainer{
    padding:20px;
  }


  
}

/*---------------------------------------
  REQUIRED DOCUMENTS              
-----------------------------------------*/

.hhero-section {
  position: relative;
  background-image: url('../images/girl.jpg');
  background-repeat: no-repeat;
  background-position: right;
  position: relative;
  padding-top: 100px;
}

.hhero-text {
  position: absolute;
  top: 80%; /* Adjust as needed */
  left: 10%; /* Adjust the left value based on your preference */
  transform: translateY(-50%);
  color: darkblue;
  -webkit-text-stroke: 0.3px floralwhite;
  z-index: 2;
  font-family: 'Copperplate', Fantasy;
  text-shadow: 8px 5px 4px rgba(0, 0, 0, 0.5);
  font-size: 52px;
}

.hhero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

@media screen and (min-width: 991px) {
  .hhero-section {
    height: calc(100vh - 88px);
    padding-top: 350px;
  }

  .hhero-text {
    top: 10%; /* Adjust for larger screens */
    font-size: 72px; /* Adjust font size for larger screens */
  }

  .hhero-list {
    top: 60%; /* Adjust for larger screens */
    font-size: 20px; /* Adjust font size for larger screens */
  }
}

.hhero-list {
  list-style-type: square;
  position: absolute;
  top: 40%; /* Adjust as needed */
  left: 10%; /* Adjust the left value based on your preference */
  color: white;
  z-index: 2;
  font-weight: bold;
  text-shadow: 5px 3px 4px rgba(0, 0, 0, 0.5);
  font-size: 17px;
}

/* Responsive adjustments for mobile screens */
@media screen and (max-width: 768px) {
  .hhero-section {
    padding-top: 550px; /* Adjust padding for smaller screens */
    
    background-position: calc(70% - (-120px));
    
      
  }

  .hhero-text {
    top: 15%; /* Adjust position for smaller screens */
    left: 5%;
    font-size: 30px; /* Adjust font size for smaller screens */
  }

  .hhero-list {
    top: 25%; /* Adjust position for smaller screens */
    left: 2%;
    font-size: 12px; /* Adjust font size for smaller screens */
  }
}



/*---------------------------------------
  IMAGE IN ELIGIBLE              
-----------------------------------------*/

.with-shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* Adjust values as needed */
}

.image-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 40px;
  margin-left: 200px; /* Adjust margin for smaller screens */
  margin-right: 200px; /* Adjust margin for smaller screens */
}

.mdec img,
.bsn img {
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5));
}

/* Media Query for smaller screens */
@media screen and (max-width: 768px) {
  .image-container {
    flex-direction: column; /* Stack items vertically on smaller screens */
    align-items: center; /* Center items horizontally on smaller screens */
    margin-left: 10px; /* Adjust margin for smaller screens */
    margin-right: 10px; /* Adjust margin for smaller screens */
  }
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: rgba(0, 0, 0, 0.65);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .scrollspy-example-2 .scrollspy-example-item:first-child {
    padding-top: 0;
  }

  .scrollspy-example-item h5 {
    padding-bottom: 5px;
  }

  .book-section-info {
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .ebook-download-form {
    padding: 30px;
  }

  
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
    text-align: right;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  p {
    text-align: left;
  }

  .navbar-brand {
    font-size: var(--p-font-size);
  }

  .navbar-brand-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .navbar-brand-icon::after {
    top: 5px;
  }

  .btn-naira > span, 
  .btn-naira .btn-icon {
    font-size: 12px;
    padding: 5px 15px;
  }

  .navbar-brand img {
   width: 30px;
   height: 30px; 
 }
}


/* Styling for section_5 */
#section_5 {
    padding: 50px 0; /* Add space before and after the section */
    text-align: center;
}

#section_5 h2 {
    color: darkblue; /* Blue color for heading */
    margin-top: 20px; /* Add space above the heading */
    margin-bottom: 20px; /* Add space below the heading */
}

#section_5 p {
    margin-bottom: 20px; /* Add space below paragraphs */
    text-align: left;
    
}

#section_5 h3 {
    color: #FFE61A; /* Blue color for subheadings */
    margin-top: 30px; /* Add space above subheadings */
    margin-bottom: 10px; /* Add space below subheadings */
    text-shadow: 
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000; /* Add outline effect */
    text-align: left;
}

#section_5 ul {
    list-style-type: none; /* Remove bullet points */
    padding-left: 0; /* Remove default padding */
    margin-bottom: 20px; /* Add space below unordered lists */
}

#section_5 li {
    
    margin-bottom: 10px; /* Add space below list items */
}

#section_5 li strong {
    
}

#section_5 p:last-child {
    margin-bottom: 0; /* Remove margin-bottom for the last paragraph */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    #section_5 {
        padding: 30px 0; /* Adjust padding for smaller screens */
    }
}

/* Style for phase boxes */
#section_5 .phase-container {
    display: flex; /* Use flexbox */
    flex-wrap: wrap; /* Allow boxes to wrap to the next line */
    justify-content: center; /* Center the boxes horizontally */
}

#section_5 .phase-box {
    box-shadow: 0 5px 7px rgba(0,0,0,.5);
    width: calc(25% - 20px); /* Set width for each box */
    background-color: royalblue; /* Light gray background color for each box */
    border: 2px solid #fff; /* Add border around each box */
    border-radius: 5px; /* Add rounded corners to each box */
    margin: 10px; /* Add space around each box */
    padding: 20px; /* Add padding inside each box */
    box-sizing: border-box; /* Include border and padding in the box's dimensions */

}

#section_5 .phase-info {
    color: white;
}

#section_5 .update-box {
  box-shadow: 0 5px 8px rgba(0,0,0,.5);
    width: calc(90% - 100px); /* Adjust the width as needed */
    margin: 0 auto; /* Center the boxes horizontally */
    background-color: #FEFB8A; /* Light gray background color for each box */
    border: 0.5px solid #ccc; /* Add border around each box */
    border-radius: 4px; /* Add rounded corners to each box */
    margin-top: 20px; /* Add space between each box */
    margin-bottom: 20px; /* Add space between each box */
    padding: 20px; /* Add padding inside each box */
}

#section_5 .update-info {
    color: #717275; /* Black color for update info */
}

#section_5 .slides {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    #section_5 .slide {
        flex: 0 0 100%;
        max-width: 700px; /* Adjust the max-width as needed */
        margin: 10px;
    }

    #section_5 img {
        width: 100%;
        height: auto;
    }
    #section_5 .carousel-inner img {

      width: 100%;
      height: auto;
    }

    /* Media Query for smaller screens */
@media (max-width: 768px) {
  #section_5 .phase-container {
    display: flex; /* Use flexbox */
    flex-wrap: ; /* Allow boxes to wrap to the next line */
    justify-content: center; /* Center the boxes horizontally */
}

#section_5 .phase-box {
    box-shadow: 0 5px 7px rgba(0,0,0,.5);
    width: calc(50% - 20px); /* Set width for each box */
    background-color: royalblue; /* Light gray background color for each box */
    border: 2px solid #fff; /* Add border around each box */
    border-radius: 5px; /* Add rounded corners to each box */
    margin: 10px; /* Add space around each box */
    padding: 50px; /* Add padding inside each box */
    box-sizing: border-box; /* Include border and padding in the box's dimensions */

}

}

    