/********** Template CSS **********/
:root {
    --primary: #4761FF;
    --secondary: #555555;
    --light: #F1F3FA;
    --dark: #1C2035;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    
}

 
/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: .5s;
}

.navbar .navbar-nav .nav-link {
  margin-left: 30px;
  padding: 25px 0;
  color: var(--secondary);
  font-weight: 900;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link  {
      margin-left: 0;
      padding: 10px 0;
  }

  .navbar .navbar-nav {
      margin-top: 25px;
      border-top: 1px solid #EEEEEE;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      right: 0;
      opacity: 0;
      visibility: hidden;
      transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: .5s;
      opacity: 1;
  }
}

  
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 20px 0 30px 0;
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px dotted  #07acf8;
}

.contact .info-item h3 {
  font-size: 20px;
  color:  #07acf8;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #07acf8;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid  #07acf8;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #07acf8;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background:  #000
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* General button style (reset) */
.button {
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  padding: 25px 80px;
  display: inline-block;
  margin: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  outline: none;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.button:after {
  content: '';
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* Button 1 */
.button-1 {
  border: 3px solid #fff;
  color: #fff;
}
/* Button 1a */
.button-1a:hover,
.button-1a:active {
  color: #0e83cd;
  background: #fff;
}
/* Button 1b */
.button-1b:after {
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: #fff;
}
.button-1b:hover,
.button-1b:active {
  color: #0e83cd;
}
.button-1b:hover:after,
.button-1b:active:after {
  height: 100%;
}
/* Button 1c */
.button-1c:after {
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
}
.button-1c:hover,
.button-1c:active {
  color: #0e83cd;
}
.button-1c:hover:after,
.button-1c:active:after {
  width: 100%;
}
/* Button 1d */
.button-1d {
  overflow: hidden;
}
.button-1d:after {
  width: 0;
  height: 103%;
  top: 50%;
  left: 50%;
  background: #fff;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.button-1d:hover,
.button-1d:active {
  color: #0e83cd;
}
.button-1d:hover:after {
  width: 104%;
  opacity: 1;
}
.button-1d:active:after {
  width: 101%;
  opacity: 1;
}
/* Button 1e */
.button-1e {
  overflow: hidden;
}
.button-1e:after {
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  background: #fff;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.button-1e:hover,
.button-1e:active {
  color: #0e83cd;
}
.button-1e:hover:after {
  height: 335%;
  opacity: 1;
}
.button-1e:active:after {
  height: 400%;
  opacity: 1;
}
/* Button 1f */
.button-1f {
  overflow: hidden;
}
.button-1f:after {
  width: 101%;
  height: 0;
  top: 50%;
  left: 50%;
  background: #fff;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.button-1f:hover,
.button-1f:active {
  color: #0e83cd;
}
.button-1f:hover:after {
  height: 104%;
  opacity: 1;
}
.button-1f:active:after {
  height: 130%;
  opacity: 1;
}
/* Button 2 */
.button-2 {
  background: #cb4e4e;
  color: #fff;
  -webkit-box-shadow: 0 4px #ab3c3c;
  -moz-box-shadow: 0 4px #ab3c3c;
  box-shadow: 0 4px #ab3c3c;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
/* Button 2a */
.button-2a {
  border-radius: 0 0 5px 5px;
}
.button-2a:hover {
  box-shadow: 0 0 #ab3c3c;
  top: 2px;
}
.button-2a:active {
  box-shadow: 0 0 #ab3c3c;
  top: 6px;
}
/* Button 2b */
.button-2b {
  border-radius: 0 0 5px 5px;
}
.button-2b:hover {
  box-shadow: 0 6px #ab3c3c;
  top: -2px;
}
.button-2b:active {
  box-shadow: 0 0 #ab3c3c;
  top: 6px;
}
/* Button 2c */
.button-2c {
  border-radius: 5px;
}
.button-2c:hover {
  box-shadow: 0 4px #ab3c3c;
  top: 2px;
}
.button-2c:active {
  box-shadow: 0 0 #ab3c3c;
  top: 6px;
}
/* Button 2d */
.button-2d {
  border-radius: 5px;
}
.button-2d:hover {
  box-shadow: 0 6px #ab3c3c;
  top: -2px;
}
.button-2d:active {
  box-shadow: 0 0 #ab3c3c;
  top: 6px;
}
/* Button 2e */
.button-2e {
  border-radius: 5px;
  box-shadow: -4px 0 #ab3c3c;
}
.button-2e:hover {
  box-shadow: -4px 0 #ab3c3c;
  left: -2px;
}
.button-2e:active {
  box-shadow: 0 0 #ab3c3c;
  left: -6px;
}
/* Button 2f */
.button-2f {
  border-radius: 5px;
  box-shadow: 4px 0 #ab3c3c;
}
.button-2f:hover {
  box-shadow: 4px 0 #ab3c3c;
  left: 2px;
}
.button-2f:active {
  box-shadow: 0 0 #ab3c3c;
  left: 6px;
}
/* Button 2g */
.button-2g {
  border-radius: 40px;
}
.button-2g:hover {
  box-shadow: 0 4px #ab3c3c;
  top: 2px;
}
.button-2g:active {
  box-shadow: 0 0 #ab3c3c;
  top: 6px;
}
/* Button 2h */
.button-2h {
  border-radius: 20px;
}
.button-2h:hover {
  box-shadow: 0 4px #ab3c3c;
  top: 2px;
}
.button-2h:active {
  box-shadow: 0 0 #ab3c3c;
  top: 6px;
}
/* Button 2i */
.button-2i {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  padding: 0;
}
.button-2i:hover {
  box-shadow: 0 4px #ab3c3c;
  top: 2px;
}
.button-2i:active {
  box-shadow: 0 0 #ab3c3c;
  top: 6px;
}
/* Button 2j */
.button-2j {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  padding: 0;
}
.button-2j:hover {
  box-shadow: 0 6px #ab3c3c;
  top: -2px;
}
.button-2j:active {
  box-shadow: 0 0 #ab3c3c;
  top: 6px;
}
/* Button 3 */
.button-3 {
  background: #147fd6;
  color: #fff;
}
.button-3:hover {
  background: #147fd6;
}
.button-3:active {
  background: #147fd6;
  top: 2px;
}
.button-3>.fa {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  font-size: 140%;
  width: 60px;
}
.button-3>.fa:before {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
/* Button 3a */
.button-3a {
  padding: 25px 60px 25px 120px;
}
.button-3a>.fa {
  background: rgba(0, 0, 0, 0.05);
}
/* Button 3b */
.button-3b {
  padding: 25px 60px 25px 120px;
  border-radius: 10px;
}
.button-3b>.fa {
  border-right: 2px solid rgba(255, 255, 255, 0.75);
}
/* Button 3c */
.button-3c {
  padding: 80px 20px 20px 20px;
  border-radius: 10px;
  box-shadow: 0 3px#147fd6;
}
.button-3c>.fa:before {
  position: static;
}
.button-3c:active {
  box-shadow: 0 3px #147fd6;
}
.button-3c>.fa {
  height: 60px;
  width: 100%;
  line-height: 60px;
  background: #fff;
  color: #147fd6;
  border-radius: 10px 10px 0 0;
}
.button-3c:active:before {
  color: #147fd6;
}
/* Button 3d */
.button-3d {
  padding: 25px 60px 25px 120px;
  border-radius: 10px;
}
.button-3d>.fa {
  background: #fff;
  color: #147fd6;
  z-index: 2;
  border-radius: 10px 0 0 10px;
}
.button-3d:after {
  width: 20px;
  height: 20px;
  background: #fff;
  z-index: 1;
  left: 55px;
  top: 50%;
  margin: -10px 0 0 -10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.button-3d:active:before {
  color: #147fd6;
}
.button-3d:active {
  top: 0;
}
.button-3d:active:after {
  left: 60px;
}
/* Button 3e */
.button-3e {
  padding: 25px 120px 25px 60px;
  overflow: hidden;
}
.button-3e>.fa {
  left: auto;
  right: 10px;
  z-index: 2;
}
.button-3e:after {
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  right: 0;
  top: 0;
  margin: -5px 0 0 -5px;
  -webkit-transform-origin: 0 0;
  -webkit-transform: rotate(-20deg);
  -moz-transform-origin: 0 0;
  -moz-transform: rotate(-20deg);
  -ms-transform-origin: 0 0;
  -ms-transform: rotate(-20deg);
  transform-origin: 0 0;
  transform: rotate(-20deg);
}
.button-3e:hover:after {
  width: 35%;
}
/* Button 4 */
.button-4 {
  border-radius: 50px;
  border: 3px solid #fff;
  color: #fff;
  overflow: hidden;
}
.button-4:active {
  border-color: #902866;
  color: #902866;
}
.button-4:hover {
  background: #AB327A;
}
.button-4>.fa {
  position: absolute;
  height: 100%;
  font-size: 125%;
  line-height: 3.5;
  color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.button-4:active>.fa {
  color: #902866;
}
/* Button 4a */
.button-4a>.fa {
  left: 130%;
  top: 0;
}
.button-4a:hover>.fa {
  left: 80%;
}
/* Button 4b */
.button-4b>.fa {
  left: -50%;
  top: 0;
}
.button-4b:hover>.fa {
  left: 10%;
}
/* Button 4c */
.button-4c>.fa {
  left: 70%;
  opacity: 0;
  top: 0;
}
.button-4c:hover>.fa {
  left: 80%;
  opacity: 1;
}
/* Button 4d */
.button-4d>.fa {
  left: 30%;
  opacity: 0;
  top: 0;
}
.button-4d:hover>.fa {
  left: 10%;
  opacity: 1;
}
/* Button 5 */
.button-5 {
  background: #165F8E;
  color: #fff;
  min-height: 70px;
  min-width: 260px;
  line-height: 24px;
  font-size: 16px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.button-5:active {
  background: #1871A9;
  top: 2px;
}
.button-5 span {
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -webkit-backface-visibility: hidden;
  -moz-transition: all 0.3s;
  -moz-backface-visibility: hidden;
  transition: all 0.3s;
  backface-visibility: hidden;
}
.button-5>.fa {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 2.5;
  font-size: 180%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.button-5:active>.fa {
  color: #53AFE8;
}
/* Button 5a */
.button-5a:hover span {
  -webkit-transform: translateY(300%);
  -moz-transform: translateY(300%);
  -ms-transform: translateY(300%);
  transform: translateY(300%);
}
.button-5a>.fa {
  left: 0;
  top: -100%;
}
.button-5a:hover>.fa {
  top: 0;
}
/* Button 5b */
.button-5b:hover span {
  -webkit-transform: translateX(200%);
  -moz-transform: translateX(200%);
  -ms-transform: translateX(200%);
  transform: translateX(200%);
}
.button-5b>.fa {
  left: -100%;
  top: 0;
}
.button-5b:hover>.fa {
  left: 0;
}

/* Special trash effect */
.trash-effect {
  position: relative;
  max-width: 320px;
  margin: 60px auto 0;
}
.trash-effect .icon-file {
  font-size: 30px;
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  top: 50%;
  margin: -45px 0 0 -25px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translateX(90px) translateY(20px) scale(1);
  -moz-transform: translateX(90px) translateY(20px) scale(1);
  -ms-transform: translateX(90px) translateY(20px) scale(1);
  transform: translateX(90px) translateY(20px) scale(1);
}
.trash-effect .icon-file:nth-child(2) {
  -webkit-transform: translateX(140px) translateY(-10px) scale(1);
  -moz-transform: translateX(140px) translateY(-10px) scale(1);
  -ms-transform: translateX(140px) translateY(-10px) scale(1);
  transform: translateX(140px) translateY(-10px) scale(1);
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.trash-effect .icon-file:nth-child(3) {
  -webkit-transform: translateX(140px) translateY(50px) scale(1);
  -moz-transform: translateX(140px) translateY(50px) scale(1);
  -ms-transform: translateX(140px) translateY(50px) scale(1);
  transform: translateX(140px) translateY(50px) scale(1);
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.trash-effect.trash-effect-active .icon-file {
  -webkit-transform: translateX(-100px) translateY(-10px) scale(0);
  -moz-transform: translateX(-100px) translateY(-10px) scale(0);
  -ms-transform: translateX(-100px) translateY(-10px) scale(0);
  transform: translateX(-100px) translateY(-10px) scale(0);
}
@-webkit-keyframes openTrash {
  50% {
      -webkit-transform: rotate(-35deg);
  }
  100% {
      -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes openTrash {
  50% {
      -moz-transform: rotate(-35deg);
  }
  100% {
      -moz-transform: rotate(0deg);
  }
}
@keyframes openTrash {
  50% {
      transform: rotate(-35deg);
  }
  100% {
      transform: rotate(0deg);
  }
}



/*=================================================================
  About us section
==================================================================*/
.about {
    background: #fff;
  }
  .about h2 {
    font-size: 40px;
    font-weight: bold;
    margin-top: 0;
  }
  @media (max-width: 992px) {
    .about h2 {
      font-size: 25px;
    }
  }
  .about h4 {
    font-size: 14px;
    color: #f0326b;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .about p {
    line-height: 1.6;
    margin-top: 20px;
  }
  .about .content {
    padding: 50px 0;
  }
  @media (max-width: 992px) {
    .about .content {
      padding: 5px 0;
    }
  }
  
  


/*=================================================================
  Latest Posts
==================================================================*/
.post-item {
    background: #fff;
    margin-bottom: 40px;
  }
  .post-item .post-thumb {
    margin-right: 10px;
  }
  .post-item .post-thumb img {
    height: auto;
  }
  .post-item .post-title {
    margin-top: 20px;
  }
  .post-item .post-title h3 {
    font-size: 23px;
  }
  .post-item .post-title h3 a {
    color: #000;
  }
  .post-item .post-meta {
    font-size: 14px;
    color: #888;
  }
  .post-item .post-meta a {
    color: #000;
    margin: 3px 0;
  }
  .post-item .post-content p {
    color: #757575;
    margin: 10px 0;
  }
  .post-item .btn-main, .post-item .btn-main-sm {
    font-size: 12px;
    margin-top: 10px;
    padding: 8px 20px;
    margin: 15px 0;
  }
  

/*============================================
    END Call to Action
*=============================================*/


            
/*** Footer ***/
.footer {
  color: white;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffff;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffff;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid #ffff;
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}


a {
  color: #0f60da;
}
a:link, a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #000;
}

.link-more {
  font-weight: 700;
}
.link-more i {
  font-weight: 700;
  top: 2px;
  margin-left: 5px;
  position: relative;
  font-size: 16px;
}
.link-more.color {
  color: #fc6a2a;
}


img.pull-left {
  margin-right: 20px;
  margin-bottom: 20px;
}
img.pull-right {
  margin-left: 20px;
  margin-bottom: 20px;
}

.unstyled,
ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.solid-bg {
  background: #f5f5f5;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.dark-bg {
  background: #252525;
  color: #fff;
}
.dark-bg h2,
.dark-bg h3 {
  color: #fff;
}

.solid-row {
  background: #f0f0f0;
}

.media-left,
.media > .pull-left {
  padding-right: 20px;
}




/* Button */
.btn.focus, .btn:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-primary.focus, .btn-primary:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

button:focus {
  outline: 0 solid;
}

.btn.btn-primary,
.btn-dark,
.btn-border,
.btn-white {
  font-size: 13px;
  font-weight: 700;
  padding: 10px 25px;
  line-height: 1.33;
  border-radius: 3px;
  border: 0;
  -webkit-transition: color 400ms, background-color 400ms, border-color 400ms;
  transition: color 400ms, background-color 400ms, border-color 400ms;
  transition: color 400ms, background-color 400ms, border-color 400ms;
}

.btn-white.btn-primary {
  background: #fff;
  color: #0a0a0a;
}

.btn.btn-primary {
  background: #147fd6;
  border: 2px solid transparent;
}
.btn.btn-dark {
  background: #242724;
  border: 2px solid transparent;
}
.btn.btn-white {
  background: #fff;
  border: 2px solid transparent;
}
.btn.btn-white:hover {
  background-color: #242427;
  color: #fff;
}

.btn-border {
  border: 2px solid #fff;
  background: none;
  color: #fff;
}

.btn-primary:hover,
.btn-dark:hover,
.btn-white.btn-primary:hover {
  background: #079426;
  color: #fff;
}

.btn-border:hover {
  background: #07641b;
  border: 2px solid transparent;
  color: #fff;
}

.general-btn {
  clear: both;
  margin-top: 60px;
}

.intro-content .btn-border {
  margin-right: 15px;
}

/* box button */

.btn-box {
    background: #1e2227;
    color: #fff;
    padding: 15px;
}

.btn-box:hover {
    background: #000;
    color: #fff;
}




/* Services
======================================*/

/* Service All */

.ts-services {
    padding: 80px 0;
}

.ts-service-content .service-title{
   margin-bottom: 10px;
}

/* Single Service */

.single-service-img img{
   width: 100%;
   height: auto;
   margin-bottom: 30px;
}

.service-blocknumber .block-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #da0f32;
    color: #FFFFFF;
    border-radius: 100px;
    margin-right: 10px;
    display: inline-block;
    text-align: center;
}

.service-content-area .service-text {
    margin-left: 50px;
}

.service-content-area h3{
   margin-bottom: 5px;
}


.news-post .post-body{
   background: none;
}


/* ts-service-box */

.ts-service-row-box .ts-service-box {
    background:  #fff;
    border: 1px solid #eaeaea;
}

.ts-service-row-box .ts-service-content {
    padding:  20px;
    text-align:  center;
}

.no-padding .ts-service-pattern {
  padding: 100px 0;
}

.ts-service-pattern {
  position: relative;
  z-index: 2;
}
.ts-service-pattern:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/pattern/pattern_arrow.png") no-repeat top left;
}
.ts-service-pattern:after {
  background: url("../images/pattern/pattern_box.png") no-repeat bottom right;
  content: "";
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .ts-service-pattern:before, .ts-service-pattern:after {
    display: none;
  }
}

.ts-service-content {
  position: relative;
}
.ts-service-content p {
  margin-bottom: 0;
}
.ts-service-content p .link-more {
  margin-top: 10px;
  display: block;
}

.ts-service-icon i {
  font-size: 70px;
  position: absolute;
  right: 0;
  color: #f2f2f2;
  z-index: -1;
}

.service-title {
  margin-top: 25px;
}

/* Service Single */
.sidebar .download-btn {
  border: 1px solid #eaeaea;
  padding: 20px 30px;
  font-size: 22px;
  margin: 0;
}

.how-to-apply h3 {
  font-size: 24px;
  color: #fff;
}
.how-to-apply p {
  color: #fff;
}

.widget.box-primary {
  padding: 30px;
}

.box-primary .btn {
  font-size: 16px;
  font-weight: 600;
}

.service-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-menu li a {
  display: block;
  background: #f7f9fd;
  padding: 15px 20px;
  margin-bottom: 8px;
  color: #626c84;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service-menu li a:hover {
  background: #0f2dda;
  color: #fff !important;
}
.service-menu li a:before {
  content: "\f105";
  font-family: FontAwesome;
  padding-right: 10px;
  font-weight: normal;
}
.service-menu li:last-child a {
  margin-bottom: 0;
}

/*Service area */

.ts-service-wrapper {
    max-width: 350px;
    display: flex;
    flex-wrap: wrap;
}

.justify-content-self-center {
    padding-right: 100px;
}

.ts-service-area {
   position: relative;
}


/* News Single
================================================== */
.post-single {
  position: relative;
}
.post-single .post-body {
  border: 1px solid #f1f1f1;
  background: none;
  padding: 40px;
}
.post-single .post-meta-date {
  position: absolute;
  top: 30px;
  left: 35px;
  display: block;
  text-align: center;
}
.post-single .post-author .avatar {
  width: 30px;
  height: 30px;
}
.post-single .post-author a {
  display: inline-block;
  margin-left: 6px;
}
.post-single .post-author:after {
  border: 0;
}
.post-single .entry-header .entry-title {
  font-size: 36px;
}
.post-single .entry-content p {
  margin-bottom: 30px;
}
.post-single .entry-content h3 {
  margin: 30px 0;
}
.post-single .post-footer {
  border-top: 1px solid #f1f1f1;
  margin: 40px 0 0;
  padding-top: 40px;
}

.tags-area {
  margin: 20px 0;
}

.post-tags strong {
  margin-right: 5px;
}
.post-tags a {
  border: 1px solid #f1f1f1;
  color: #626c84;
  display: inline-block;
  font-size: 14px;
  padding: 3px 15px;
  margin-left: 3px;
  border-radius: 25px;
}
.post-tags a:hover {
  background: #da0f32;
  color: #fff;
  border: 1px solid transparent;
}

/* Post social */
.post-social-icons > li {
  display: inline-block;
}
.post-social-icons a {
  margin-left: 10px;
  font-size: 16px;
  color: #252a37;
  text-align: center;
}
.post-social-icons a:hover {
  color: #da0f32;
}

/* Post navigation */
.post-navigation span:hover,
.post-navigation h3:hover {
  color: #da0f32;
}
.post-navigation .post-previous,
.post-navigation .post-next {
  padding: 0 40px;
  width: 50%;
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
  display: table-cell;
  position: relative;
  vertical-align: middle;
}
.post-navigation i {
  margin: 0 5px;
  color: #da0f32;
}
.post-navigation span {
  font-size: 14px;
  color: #626c84;
  margin-bottom: 10px;
}
.post-navigation .post-previous {
  text-align: left;
  float: left;
  border-left: 0 none;
  border-right: 0 none;
  padding: 0 40px 0 0;
}
.post-navigation .post-next {
  text-align: right;
  float: left;
  border-right: 0 none;
  padding: 0 0 0 40px;
}
.post-navigation h3 {
  font-size: 20px;
  line-height: 26px;
  margin: 8px 0 0;
}

/* Author box */
.author-box {
  padding: 40px;
  margin: 40px 0;
}

.author-img img {
  width: 100px;
  height: 100px;
  margin-right: 30px;
  border-radius: 100%;
}

.author-info h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}
.author-info h3 span {
  font-size: 12px;
  color: #999;
  border-left: 1px solid #AFAFAF;
  padding-left: 10px;
  margin-left: 10px;
  font-weight: 500;
}
.author-info p {
  padding-left: 130px;
}

.author-url a {
  font-size: 14px;
  color: #626c84;
}

/* Comments area */
.comments-area {
  margin: 40px 0;
}

.comments-list .comment-content {
  margin: 15px 0;
}
.comments-list .comment-reply {
  color: #252a37;
  font-weight: 400;
  font-size: 14px;
}
.comments-list .comment-reply i {
  margin-right: 5px;
}
.comments-list .comment-reply:hover {
  color: #da0f32;
}

.comments-counter {
  font-size: 18px;
}
.comments-counter a {
  color: #323232;
}

.comments-list {
  list-style: none;
  margin: 0;
  padding: 20px 0;
}
.comments-list .comment {
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.comments-list .comment.last {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.comments-list img.comment-avatar {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  margin-right: 30px;
}
.comments-list .comment-body {
  margin-left: 110px;
}
.comments-list .comment-author {
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 700;
  font-size: 18px;
  color: #252a37;
}
.comments-list .comment-date {
  color: #252a37;
  font-size: 14px;
  display: block;
  margin-top: -5px;
}

.comments-reply {
  list-style: none;
  margin: 0 0 0 70px;
}

.comments-form {
  margin-bottom: 0;
}
.comments-form .title-normal {
  margin-bottom: 20px;
}
.comments-form .btn.btn-primary {
  margin-top: 20px;
}

/* Sidebar
================================================== */
.sidebar .widget-title {
  font-size: 24px;
  position: relative;
  margin: 0 0 30px;
  padding-left: 15px;
  border-left: 3px solid #da0f32;
}
.sidebar .widget {
  margin-bottom: 40px;
  border: 1px solid #f1f1f1;
  padding: 40px;
}
.sidebar .widget.widget-ad {
  padding: 0;
  border: none;
}

/* Widget common */
.sidebar-left .widget {
  margin-right: 20px;
}

.sidebar-right .widget {
  margin-left: 20px;
}

.sidebar .widget.box {
  padding: 25px;
}

.widget.box.solid {
  background: #f2f2f2;
}
.widget.box.red {
  background: #ec483b;
  color: #fff;
}
.widget.box.red .widget-title {
  color: #fff;
}
.widget ul li {
  line-height: 30px;
}

.sidebar .widget ul li a:hover {
  color: #da0f32;
}
.sidebar .widget ul li i {
  margin-right: 5px;
  font-weight: 500;
}
.sidebar .btn {
  font-weight: 800;
  margin-top: 15px;
}

/* Widget search */
.widget.widget-search {
  background: none;
  position: relative;
  padding: 0;
}

.input-group-btn {
  background: #da0f32;
  color: #fff;
}

.widget-search .form-control {
  border: 0 !important;
  font-style: italic;
  background-color: none;
}
.widget-search .form-control:focus {
  border: 0 !important;
  font-style: italic;
  background-color: none;
}
.widget-search i {
  color: #fff;
  background: #da0f32;
  font-size: 18px;
  position: relative;
  top: 0;
  padding: 15px;
}

/* Sidebar nav */
.widget-nav-tabs {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget-nav-tabs li {
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px dashed #EAEAEA;
  margin-bottom: 20px;
}
.widget-nav-tabs li a {
  font-size: 16px;
  color: #626c84;
  font-family: 'Fira Sans', sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.widget-nav-tabs li span {
  float: right;
}
.widget-nav-tabs li:after {
  display: block;
  content: "";
  clear: both;
}
.widget-nav-tabs li:last-child {
  border: none;
  padding: 0;
  margin: 0;
}


/*** Facts ***/
.fact-item .fact-icon {
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 120px;
  transition: .5s;
}

.fact-item:hover .fact-icon {
  background: rgba(236, 234, 234, 0.904);
}

.fact-item .fact-icon i {
  color: var(--primary);
  transition: .5;
}

.fact-item:hover .fact-icon i {
  color: #FFFFFF;
}


/*** About ***/
@media (min-width: 992px) {
  .container.about {
      max-width: 100% !important;
  }

  .about-text  {
      padding-right: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .about-text  {
      padding-right: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .about-text  {
      padding-right: calc(((100% - 1320px) / 2) + .75rem);
  }
}
/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
      max-width: 100% !important;
  }

  .feature-text  {
      padding-left: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text  {
      padding-left: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text  {
      padding-left: calc(((100% - 1320px) / 2) + .75rem);
  }
}
.page-header {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}



/* Carousel Inner Overlay */
.owl-carousel-inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
  padding: 0 15px;
}

/* Carousel Item Base */
.header-carousel .owl-carousel-item {
  position: relative;
  width: 100%;
  height: 600px; /* balanced and presentable */
  overflow: hidden;
}

.header-carousel .owl-carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
 
  top: 0;
  left: 0;
  z-index: 1;
}


.owl-carousel-inner,
.owl-carousel-item img {
  transition: all 0.5s ease-in-out;
}
/* Responsive for mobile */
@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    height: 400px;
  }

  .header-carousel .owl-carousel-item img {
    max-height: 100%;
    width: auto;
  }

  .owl-carousel-inner {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
  }

  .owl-carousel-inner .col-10,
  .owl-carousel-inner .col-lg-8 {
    width: 100%;
  }

  .header-carousel .owl-carousel-item p {
    font-size: 16px;
  }
}

/* Carousel Navigation Thumbnails */
.header-carousel .owl-dots {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.header-carousel .owl-dots .owl-dot {
  width: 45px;
  height: 45px;
  margin: 6px 0;
  background: var(--dark);
  border-radius: 5px;
  overflow: hidden;
  transition: 0.4s;
}

.header-carousel .owl-dots .owl-dot.active {
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
}

.header-carousel .owl-dots .owl-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.4s;
}

.header-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}



.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

/* Caption Styling */
.owl-carousel-item p {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 2rem;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.4);
  display: inline-block;
  padding: 10px 20px;
  border-left: 4px solid #0d55a8;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* Button Styling */
.owl-carousel-item .btn {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background-color: #0d55a8;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.owl-carousel-item .btn:hover {
  background-color: #063b76;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}



/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: 'Nunito', sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #080808;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
  color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
      position: relative;
      background: #FFFFFF;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
      padding: 10px 0;
      color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
      color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      border-bottom: 1px solid rgba(256, 256, 256, .1);
      z-index: 999;
  }
  
  .sticky-top.navbar-dark {
      position: fixed;
      background: #FFFFFF;
  }

  .navbar-dark .navbar-nav .nav-link::before {
      position: absolute;
      content: "";
      width: 0;
      height: 2px;
      bottom: -1px;
      left: 50%;
      background: var(--primary);
      transition: .5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
      width: 100%;
      left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
      display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
      color: var(--primary);
  }
}
/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 66, 41, .6);
}


/*** Button ***/
.btn {
  transition: .5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
/* =========================================================
   AWAI AMAH HERO SECTION
========================================================= */

:root{
  --primary:#0B1F33;
  --secondary:#14b8a6;
  --accent:#38bdf8;
  --white:#ffffff;
}

/* =========================================================
   HERO WRAPPER
========================================================= */

.hero-wrapper{
  overflow:hidden;
  position:relative;
}

/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image{
  width:100%;
  height:780px;
  object-fit:cover;
}

/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
      to right,
      rgba(11,31,51,0.94),
      rgba(16,42,67,0.80),
      rgba(11,31,51,0.42)
  );
  z-index:1;
}

/* =========================================================
   CONTENT POSITION
========================================================= */

.owl-carousel-inner{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  align-items:center;
}

/* =========================================================
   HERO TAG
========================================================= */

.hero-tag{
  display:inline-block;
  padding:8px 18px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  backdrop-filter:blur(8px);

  color:#ffffff;
  font-size:11px;
  font-weight:500;
  letter-spacing:1.3px;
  text-transform:uppercase;

  border-radius:50px;
  margin-bottom:16px;
}

/* =========================================================
   HERO TITLE
========================================================= */

.hero-title{
  font-size:52px;
  font-weight:700;
  line-height:1.12;
  color:#ffffff;
  margin-bottom:16px;
  max-width:650px;
}

/* =========================================================
   HERO TEXT
========================================================= */

.hero-text{
  max-width:500px;
  font-size:14px;
  line-height:1.65;
  color:rgba(255,255,255,0.82);
  margin-bottom:24px;
  font-weight:400;
}

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

/* PRIMARY BUTTON */

.hero-btn-primary{
  background:linear-gradient(
      to right,
      #14b8a6,
      #38bdf8
  );

  color:#ffffff;
  padding:12px 24px;
  border-radius:8px;
  text-decoration:none;

  font-size:13px;
  font-weight:600;

  transition:0.35s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.hero-btn-primary:hover{
  transform:translateY(-3px);
  color:#ffffff;
  box-shadow:0 10px 25px rgba(20,184,166,0.25);
}

/* OUTLINE BUTTON */

.hero-btn-outline{
  border:1px solid rgba(255,255,255,0.20);
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(8px);

  color:#ffffff;
  padding:12px 24px;
  border-radius:8px;
  text-decoration:none;

  font-size:13px;
  font-weight:600;

  transition:0.35s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.hero-btn-outline:hover{
  background:#ffffff;
  color:#0B1F33;
}

/* =========================================================
   OWL NAVIGATION
========================================================= */

.header-carousel .owl-nav{
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    transform:translateY(-50%);
    z-index:10;
    pointer-events:none;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next{

    position:absolute;

    width:50px;
    height:50px;

    border-radius:50% !important;

    background:rgba(255,255,255,0.10) !important;
    border:1px solid rgba(255,255,255,0.18) !important;

    backdrop-filter:blur(8px);

    color:#ffffff !important;
    font-size:17px !important;

    transition:0.35s ease;

    display:flex !important;
    align-items:center;
    justify-content:center;

    pointer-events:auto;
}

.header-carousel .owl-nav .owl-prev{
    left:22px;
}

.header-carousel .owl-nav .owl-next{
    right:22px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover{
    background:#14b8a6 !important;
    border-color:#14b8a6 !important;
}

/* =========================================================
   OWL DOTS
========================================================= */

.header-carousel .owl-dots{

    position:absolute;
    bottom:20px;
    right:22px;

    z-index:5;

    display:flex;
    align-items:center;
    gap:7px;
}

.header-carousel .owl-dot img{
    width:54px;
    height:54px;
    object-fit:cover;

    border-radius:8px;

    opacity:0.55;
    transition:0.35s ease;

    border:2px solid transparent;
}

.header-carousel .owl-dot.active img{
    opacity:1;
    border-color:#14b8a6;
    transform:translateY(-2px);
}

/* =========================================================
   TABLETS
========================================================= */

@media(max-width:991px){

  .hero-image{
      height:680px;
  }

  .hero-title{
      font-size:40px;
      max-width:100%;
  }

  .hero-text{
      font-size:13px;
      max-width:90%;
  }

}

/* =========================================================
   MOBILE & SMALL TABLETS
========================================================= */

@media(max-width:768px){

  .hero-image{
      height:560px;
  }

  .owl-carousel-inner{
      padding:90px 0 70px;
      align-items:center;
  }

  .hero-overlay{
      background:linear-gradient(
          to bottom,
          rgba(11,31,51,0.93),
          rgba(16,42,67,0.84)
      );
  }

  /* HERO TAG */

  .hero-tag{
      font-size:9px;
      padding:6px 13px;
      margin-bottom:12px;
  }

  /* TITLE */

  .hero-title{
      font-size:28px;
      line-height:1.2;
      margin-bottom:10px;
      max-width:90%;
  }

  /* TEXT */

  .hero-text{
      max-width:85%;
      font-size:12px;
      line-height:1.5;
      margin-bottom:16px;
  }

  /* BUTTONS */

  .hero-buttons{
      display:flex;
      flex-direction:row;
      flex-wrap:wrap;
      gap:8px;
      align-items:flex-start;
      max-width:85%;
      margin-left: 50px
  }

  .hero-btn-primary,
  .hero-btn-outline{

      width:auto !important;
      min-width:auto !important;

      padding:10px 16px;
      font-size:11px;

      border-radius:7px;

      white-space:nowrap;
  }

  /* NAVIGATION */

  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next{
      width:40px;
      height:40px;
      font-size:13px !important;
  }

  .header-carousel .owl-nav .owl-prev{
      left:10px;
  }

  .header-carousel .owl-nav .owl-next{
      right:10px;
  }

  /* DOTS */

  .header-carousel .owl-dots{
      right:10px;
      bottom:10px;
      gap:5px;
  }

  .header-carousel .owl-dot img{
      width:40px;
      height:40px;
      border-radius:7px;
  }

}

/* =========================================================
   MOBILE PHONES
========================================================= */

@media(max-width:576px){

  .hero-image{
      height:500px;
  }

  .hero-title{
      font-size:22px;
      line-height:1.18;
      max-width:100%;
  }

  .hero-text{
      max-width:82%;
      font-size:11px;
      line-height:1.45;
      margin-bottom:14px;
  }

  .hero-buttons{
      max-width:82%;
      gap:7px;
  }

  .hero-btn-primary,
  .hero-btn-outline{
      padding:9px 14px;
      font-size:10px;
      border-radius:6px;
  }

  /* NAV */

  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next{
      width:34px;
      height:34px;
      font-size:11px !important;
  }

  .header-carousel .owl-nav .owl-prev{
      left:6px;
  }

  .header-carousel .owl-nav .owl-next{
      right:6px;
  }

  /* DOTS */

  .header-carousel .owl-dots{
      bottom:8px;
      right:6px;
      gap:4px;
  }

  .header-carousel .owl-dot img{
      width:32px;
      height:32px;
      border-radius:6px;
  }

}
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}

.project {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.project h6 {
  font-weight: 400;
}

.project h6::before {
  content: "";
  height: 2px;
  width: 30px;
  display: inline-block;
  background: var(--brand);
  vertical-align: middle;
  margin-right: 10px;
}


.project .overlay {
  width: 100%;
  height: 220px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 76, 41, 0) 0%, var(--dark) 100%);
}

.project .content {
  position: absolute;
  left: 10%;
  bottom: 10%
}

.project h2,
.project h6 {
  color: #fff;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.aboutx h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin: 30px 0;
}

@media (min-width: 991px) {
  .aboutx h2 {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.aboutx .our-story {
  padding: 40px;
  background-color: #f5f6f7;
}

@media (min-width: 991px) {
  .aboutx .our-story {
    padding-right: 35%;
  }
}

.aboutx .our-story h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #838893;
}

.aboutx .our-story h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.aboutx .our-story p:last-child {
  margin-bottom: 0;
}

.aboutx ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.aboutx ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.aboutx ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
}

.aboutx .watch-video i {
  font-size: 32px;
  transition: 0.3s;
  color: var(--color-primary);
}

.aboutx .watch-video a {
  font-weight: 600;
  color: var(--color-secondary);
  margin-left: 8px;
  transition: 0.3s;
}

.aboutx .watch-video:hover a {
  color: var(--color-primary);
}

.aboutx .aboutx-img {
  min-height: 600px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 992px) {
  .aboutx .aboutx-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/*** Service ***/
.service-item .service-text {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0 0 45px rgba(0, 0, 0, .06);
  transition: .5s;
  z-index: 2;
}

.service-item:hover .service-text {
  top: -1.5rem;
}

.service-item .service-text h5 {
  transition: .5s;
}

.service-item:hover .service-text h5 {
  color: var(--primary);
}

.service-item .service-btn {
  position: absolute;
  width: 80%;
  height: 3rem;
  left: 10%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
  transition: .5s;
  z-index: 1;
}

.service-item:hover .service-btn {
  bottom: -1.5rem;
}
/*** Products ***/
.product {
  background: linear-gradient(
  180deg,
  #ffffff 0%,
  #f8fafc 45%,
  #eef2f7 100%
), url(../img/product-bg.png) left bottom no-repeat;
  background-size: auto;
}

.product-carousel .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
  margin: 0 10px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: #07acf8;
  border-radius: 55px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .15);
  font-size: 25px;
  transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
  background: #FFFFFF;
  color: var(--primary);
}

/*** Project ***/
.project-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  padding-top: 60px;
  transition: .5s;
}

.project-item:hover .project-overlay {
  opacity: 1;
  padding-top: 0;
}

.project-carousel .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
  display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
  margin-left: 15px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border-radius: 55px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .15);
  font-size: 25px;
  transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .project-carousel .owl-nav {
      top: -70px;
      right: auto;
      left: 50%;
      transform: translateX(-50%);
  }

  .project-carousel .owl-nav .owl-prev,
  .project-carousel .owl-nav .owl-next {
      margin: 0 7px;
      width: 45px;
      height: 45px;
      font-size: 20px;
  }
}


/*** Project ***/
.project-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  padding-top: 60px;
  transition: .5s;
}

.project-item:hover .project-overlay {
  opacity: 1;
  padding-top: 0;
}

.project-carousel .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
  display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
  margin-left: 15px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border-radius: 55px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .15);
  font-size: 25px;
  transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .project-carousel .owl-nav {
      top: -70px;
      right: auto;
      left: 50%;
      transform: translateX(-50%);
  }

  .project-carousel .owl-nav .owl-prev,
  .project-carousel .owl-nav .owl-next {
      margin: 0 7px;
      width: 45px;
      height: 45px;
      font-size: 20px;
  }
}



/*** Testimonial ***/
.testimonial-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
  transition: .5s;
}

.owl-item .testimonial-item,
.testimonial-item * {
  transition: .5s;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
  background: var(--primary);
}

.owl-item.center .testimonial-item *,
.testimonial-item:hover * {
  color: #FFFFFF !important;
}

.testimonial-item img {
  width: 100px !important;
  height: 100px !important;
  border-radius: 100px;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
  display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-left: 15px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border-radius: 55px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .15);
  font-size: 25px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .testimonial-carousel .owl-nav {
      top: -70px;
      right: auto;
      left: 50%;
      transform: translateX(-50%);
  }

  .testimonial-carousel .owl-nav .owl-prev,
  .testimonial-carousel .owl-nav .owl-next {
      margin: 0 7px;
      width: 45px;
      height: 45px;
      font-size: 20px;
  }
}
.service-card {
  transition: all 0.4s ease;
  border: 1px solid #f1f1f1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
}

.icon-box {
  width: 85px;
  height: 85px;
  background: rgba(7, 172, 248, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 34px;
  color: #07acf8;
}

.service-card h4 {
  font-weight: 700;
  color: #1b1b1b;
}

.service-card p {
  font-size: 15px;
  line-height: 1.8;
}

.btn-outline-primary {
  border-radius: 30px;
  padding: 10px 24px;
}
.service-box{
  background:#fff;
  padding:40px;
  border-radius:20px;
  transition:.4s;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  border:1px solid #f1f5f9;
}

.service-box:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.service-icon{
  width:80px;
  height:80px;
  background:linear-gradient(135deg,#07acf8,#2563eb);
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;
}

.service-icon i{
  color:#fff;
  font-size:32px;
}

.service-box h4{
  font-weight:700;
  margin-bottom:20px;
  color:#0f172b;
}

.service-box p{
  color:#64748b;
  line-height:1.8;
}

.service-box ul{
  padding-left:18px;
  margin-top:20px;
  margin-bottom:25px;
}

.service-box ul li{
  margin-bottom:10px;
  color:#334155;
}

.service-btn{
  display:inline-block;
  padding:12px 28px;
  background:#07acf8;
  color:#fff;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.service-btn:hover{
  background:#2563eb;
  color:#fff;
}
/* =========================
   GLOBAL STYLING
========================= */

:root{
  --primary-color:#0ea5e9;
  --secondary-color:#2563eb;
  --dark-color:#0f172a;
  --text-color:#64748b;
  --light-bg:#f8fafc;
  --white:#ffffff;
  --border-color:#e2e8f0;
}

body{
  font-family:'Inter', sans-serif;
  background:var(--light-bg);
  color:var(--dark-color);
  overflow-x:hidden;
}
/* =========================
   HOME SERVICES HEADING
========================= */

.section-heading{
  max-width:720px;
}

/* Thin Line Style */
.home-heading-line{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  position:relative;
}

/* Left & Right Lines */
.home-heading-line::before,
.home-heading-line::after{
  content:"";
  height:1px;
  width:60px;
  background:linear-gradient(to right, transparent, #1F6B45);
}

.home-heading-line::after{
  background:linear-gradient(to left, transparent, #1F6B45);
}

/* Text in Middle */
.home-heading-line span{
  padding:0 14px;
  font-size:12px;
  font-weight:700;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:#1F6B45;
  background:#F5F7FA;
}

/* Main Heading */
.home-main-heading{
  font-size:42px;
  font-weight:800;
  color:#102A43;
  margin-bottom:15px;
}

/* Description */
.home-heading-text{
  font-size:16px;
  line-height:1.8;
  color:#52606D;
}

/* Responsive */
@media(max-width:768px){

  .home-main-heading{
      font-size:30px;
  }

  .home-heading-line::before,
  .home-heading-line::after{
      width:40px;
  }
}
/* =========================
 SERVICE CARD
========================= */

.service-card{
  position:relative;
  background:var(--white);
  border-radius:24px;
  padding:45px 35px;
  overflow:hidden;
  transition:all .4s ease;
  border:1px solid rgba(226,232,240,.7);
  box-shadow:
  0 10px 30px rgba(15,23,42,.04);
}

/* Hover Effect */
.service-card:hover{
  transform:translateY(-12px);
  box-shadow:
  0 25px 50px rgba(15,23,42,.10);
  border-color:rgba(14,165,233,.15);
}

/* Top Gradient Border */
.service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(
  90deg,
  var(--primary-color),
  var(--secondary-color)
  );
}

/* =========================
 ICON BOX
========================= */

.icon-box{
  width:90px;
  height:90px;
  margin:auto;
  margin-bottom:30px;
  border-radius:24px;

  background:
  linear-gradient(
  135deg,
  rgba(14,165,233,.12),
  rgba(37,99,235,.10)
  );

  display:flex;
  align-items:center;
  justify-content:center;

  transition:.4s;
}

/* Icon */
.icon-box i{
  font-size:36px;
  color:var(--primary-color);
  transition:.4s;
}

/* Hover Animation */
.service-card:hover .icon-box{
  background:
  linear-gradient(
  135deg,
  var(--primary-color),
  var(--secondary-color)
  );

  transform:rotate(-5deg) scale(1.05);
}

.service-card:hover .icon-box i{
  color:#fff;
}

/* =========================
 SERVICE TEXT
========================= */

.service-card h4{
  font-size:24px;
  font-weight:700;
  color:var(--dark-color);
  margin-bottom:18px;
}

.service-card p{
  color:var(--text-color);
  font-size:15px;
  line-height:1.9;
  margin-bottom:28px;
}

/* =========================
 BUTTON
========================= */

.service-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:14px 28px;

  border-radius:50px;

  background:
  linear-gradient(
  135deg,
  var(--primary-color),
  var(--secondary-color)
  );

  color:#fff;
  font-weight:600;
  font-size:15px;
  text-decoration:none;

  transition:.4s;
}

/* Hover */
.service-btn:hover{
  color:#fff;
  transform:translateY(-3px);
  box-shadow:
  0 10px 25px rgba(37,99,235,.25);
}

/* =========================
 SERVICE GRID SPACING
========================= */

.services-wrapper{
  padding:100px 0;
}

/* =========================
 RESPONSIVE
========================= */

@media(max-width:991px){

  .services-section-title h1{
      font-size:38px;
  }

  .service-card{
      padding:40px 30px;
  }
}

@media(max-width:768px){

  .services-section-title h1{
      font-size:32px;
  }

  .services-section-title .lead{
      font-size:16px;
  }

  .service-card{
      padding:35px 25px;
  }

  .icon-box{
      width:80px;
      height:80px;
  }

  .icon-box i{
      font-size:32px;
  }
}
.services-wrapper{
  background:
  radial-gradient(circle at top left,
  rgba(14,165,233,.05),
  transparent 30%);
}
.service-btn{
  min-width:170px;
  justify-content:center;
}
/* ===================================
   BASE
=================================== */
.premium-why-section{
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f7fa 20%,
    #0b2a44 100%
  );

  overflow: hidden;
}
.premium-why-section{
  background: linear-gradient(135deg, #0b1f33, #102a43);
}

.premium-row{
  margin-left: 0;
  margin-right: 0;
}
/* HEADER (DARK THEME COMPATIBLE) */
.premium-section-header{
  padding: 90px 20px 50px;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* BADGE */
.premium-badge{
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #60a5fa; /* light blue for contrast */
  background: rgba(96,165,250,0.12);

  border-radius: 30px;
  margin-bottom: 14px;
  font-weight: 600;
}

/* TITLE (2 LINES CONTROLLED) */
.premium-title{
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;

  line-height: 1.2;
  margin-bottom: 16px;
}

/* force nice spacing between lines */
.premium-title br{
  display: block;
}

/* SUBTITLE */
.premium-subtitle{
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px){
  .premium-title{
    font-size: 30px;
  }

  .premium-section-header{
    padding: 70px 16px 40px;
  }
}
/* ===================================
   IMAGE LAYER (BASE)
=================================== */

.intersect-image-wrapper{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;

  z-index: 1; /* base layer */
}

.intersect-image{
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 24px; /* adds elegant curve */

  display: block;

  box-shadow: 0 35px 80px rgba(15,23,42,.14);
}

/* ===================================
   FEATURES (OVERLAPPING LAYER)
=================================== */

.premium-features{
  display: flex;
  flex-direction: column;
  gap: 22px;

  position: relative;
  z-index: 5; /* ABOVE image */

  margin-left: -80px; /* KEY OVERLAP SHIFT */
}

/* FEATURE CARD */
.premium-feature-item{
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 24px;

  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);

  border-radius: 24px;
  border: 1px solid rgba(226,232,240,.7);

  box-shadow: 0 20px 45px rgba(15,23,42,.10);

  transition: .35s ease;

  position: relative;
}

/* staggered interlock */
.premium-feature-item:nth-child(1){
  transform: translateX(-60px);
  z-index: 4;
}

.premium-feature-item:nth-child(2){
  transform: translateX(-40px);
  z-index: 5;
}

.premium-feature-item:nth-child(3){
  transform: translateX(-20px);
  z-index: 6;
}

.premium-feature-item:nth-child(4){
  transform: translateX(0px);
  z-index: 7;
}

/* hover effect */
.premium-feature-item:hover{
  transform: translateX(10px) scale(1.02);
  z-index: 10;
  box-shadow: 0 30px 60px rgba(15,23,42,.18);
}

/* ICON */
.premium-feature-icon{
  width: 70px;
  height: 70px;
  min-width: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: linear-gradient(135deg,#0ea5e9,#2563eb);

  color: #fff;
  font-size: 24px;
}

/* TEXT */
.premium-feature-text h5{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
}

.premium-feature-text p{
  margin: 0;
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
}

/* ===================================
   RESPONSIVE RESET
=================================== */

@media (max-width: 991px){

  .premium-features{
    margin-left: 0;
  }

  .premium-feature-item{
    transform: none !important;
  }

  .premium-title{
    font-size: 30px;
  }

  .premium-section-header{
    padding: 70px 16px 40px;
  }
}/* ===================================
   TESTIMONIAL SECTION
=================================== */

.testimonial-section{
  padding: 80px 0;

  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #eef2f6 100%
  );

  overflow: hidden;
}

/* ===================================
   HEADER
=================================== */

.premium-title{
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;

  margin-bottom: 14px;
  line-height: 1.2;
}

.premium-subtitle{
  font-size: 15px;
  line-height: 1.8;

  color: #64748b;
  margin: 0;
}

/* TOP LABEL */
.home-heading-line span{
  display: inline-block;

  padding: 6px 14px;

  background: rgba(37,99,235,0.08);

  color: #2563eb;

  border-radius: 30px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  margin-bottom: 14px;
}

/* ===================================
   SMALL ELEGANT CARD
=================================== */

.testimonial-card{
  max-width: 540px;

  padding: 34px 30px;

  background: #ffffff;

  border-radius: 20px;

  text-align: center;

  box-shadow:
    0 15px 40px rgba(15,23,42,0.08);

  border: 1px solid rgba(226,232,240,0.8);

  transition: 0.35s ease;
}

.testimonial-card:hover{
  transform: translateY(-5px);

  box-shadow:
    0 20px 50px rgba(15,23,42,0.12);
}

/* TEXT */
.testimonial-text{
  font-size: 16px;
  line-height: 1.8;

  color: #334155;

  margin-bottom: 18px;
}

/* NAME */
.testimonial-name{
  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;
  text-transform: uppercase;

  color: #2563eb;

  margin: 0;
}

/* ===================================
   CAROUSEL CONTROLS
=================================== */

.carousel-control-prev,
.carousel-control-next{
  width: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter: invert(25%);
  opacity: 0.7;

  width: 2rem;
  height: 2rem;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 768px){

  .testimonial-section{
    padding: 65px 18px;
  }

  .testimonial-card{
    max-width: 100%;
    padding: 28px 22px;
  }

  .premium-title{
    font-size: 30px;
  }

  .testimonial-text{
    font-size: 15px;
  }
}
/* ===================================
   STATS SECTION
=================================== */

.stats-section{
  position: relative;

  padding: 80px 0;

  background: #ffffff;
}

/* ===================================
   CARD
=================================== */

.stats-card{
  background: #ffffff;

  border-radius: 24px;

  padding: 40px 25px;

  text-align: center;

  border: 1px solid rgba(226,232,240,0.8);

  box-shadow:
    0 15px 40px rgba(15,23,42,0.06);

  transition: 0.35s ease;
}

/* HOVER */
.stats-card:hover{
  transform: translateY(-8px);

  box-shadow:
    0 25px 55px rgba(15,23,42,0.10);
}

/* NUMBER */
.stats-number{
  font-size: 52px;
  font-weight: 800;

  margin-bottom: 10px;

  background: linear-gradient(
    135deg,
    #0ea5e9,
    #2563eb
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.stats-text{
  font-size: 15px;
  font-weight: 500;

  color: #64748b;

  margin: 0;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 768px){

  .stats-section{
    padding: 60px 20px;
  }

  .stats-card{
    padding: 32px 20px;
  }

  .stats-number{
    font-size: 42px;
  }
}
/* ===================================
   PROJECTS SECTION
=================================== */

.projects-section{
  padding: 90px 0;

  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 100%
  );
}

/* ===================================
   PROJECT CARD
=================================== */

.project-card{
  position: relative;

  height: 260px;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 18px 45px rgba(15,23,42,0.10);

  transition: 0.4s ease;
}

.project-card:hover{
  transform: translateY(-6px);
}

/* IMAGE */
.project-img{
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.6s ease;
}

.project-card:hover .project-img{
  transform: scale(1.08);
}

/* OVERLAY */
.project-overlay{
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(11,31,51,0.85),
    rgba(11,31,51,0.2)
  );

  display: flex;
  align-items: flex-end;

  padding: 18px;

  opacity: 0;

  transition: 0.4s ease;
}

.project-card:hover .project-overlay{
  opacity: 1;
}

/* TEXT */
.project-content h5{
  color: #ffffff;

  font-size: 16px;
  font-weight: 700;

  margin-bottom: 4px;
}

.project-content p{
  color: rgba(255,255,255,0.85);

  font-size: 13px;

  margin: 0;
}

/* ===================================
   SMOOTH FADE EFFECT
=================================== */

.carousel-fade .carousel-item{
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: none !important;
}

.carousel-fade .carousel-item.active{
  opacity: 1;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev{
  transform: none !important;
}

/* ===================================
   CONTROLS
=================================== */

.carousel-control-prev,
.carousel-control-next{
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter: invert(100%);
  opacity: 0.7;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 768px){

  .project-card{
    height: 220px;
  }

  .premium-title{
    font-size: 30px;
  }
}
/* ===================================
   PROJECTS SECTION
=================================== */

.projects-section{
  padding: 90px 0;
  background: #f8f9fa;
}

/* ===================================
   OWL CONTAINER
=================================== */

.projects-owl{
  padding: 0 15px;
}

/* ===================================
   PROJECT CARD (FIXED HEIGHT ISSUE)
=================================== */

.project-card{
  position: relative;

  height: 280px; /* KEY FIX: prevents long images */

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 18px 45px rgba(15,23,42,0.10);

  transition: all 0.4s ease;
}

.project-card:hover{
  transform: translateY(-6px);
}

/* ===================================
   IMAGE FIX (NO STRETCHING)
=================================== */

.project-card img{
  width: 100%;
  height: 100%;

  object-fit: cover;        /* IMPORTANT */
  object-position: center;  /* keeps focus */

  display: block;

  transition: transform 0.6s ease;
}

.project-card:hover img{
  transform: scale(1.06);
}

/* ===================================
   OVERLAY
=================================== */

.project-overlay{
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(11,31,51,0.85),
    rgba(11,31,51,0.15)
  );

  display: flex;
  align-items: flex-end;

  padding: 20px;

  opacity: 0;

  transition: 0.4s ease;
}

.project-card:hover .project-overlay{
  opacity: 1;
}

/* TEXT */
.project-content h5{
  color: #ffffff;

  font-size: 18px;
  font-weight: 700;

  margin-bottom: 4px;
}

.project-content p{
  color: rgba(255,255,255,0.85);

  font-size: 13px;

  margin: 0;
}

/* ===================================
   OWL NAV BUTTONS (OPTIONAL POLISH)
=================================== */

.owl-nav button{
  width: 45px;
  height: 45px;

  border-radius: 50% !important;

  background: #ffffff !important;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);

  transition: 0.3s ease;
}

.owl-nav button:hover{
  background: #0ea5e9 !important;
  color: #fff !important;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 768px){

  .project-card{
    height: 240px; /* slightly smaller on mobile */
  }
}

.cta-section{
  background: linear-gradient(135deg, #0b2a44, #0ea5e9);

  padding: 80px 20px;

  color: #ffffff;
}

.cta-section h2{
  font-size: 34px;
  font-weight: 800;

  margin-bottom: 15px;
}

.cta-section p{
  max-width: 600px;

  margin: 0 auto 30px;

  color: rgba(255,255,255,0.85);

  line-height: 1.7;
}

.cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 28px;

  background: #ffffff;

  color: #0b2a44;

  font-weight: 600;

  border-radius: 50px;

  text-decoration: none;

  transition: 0.3s ease;
}

.cta-btn:hover{
  transform: translateY(-3px);

  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
