/*
Template Name: Fruitkha - Responsive Bootstrap4 Shop Template
Template URI: 
Description: Bootstrap template for fruits or any other kind of shop
Author: Imran Hossain
Author URI: https://imransdesign.com/
Version: 1.0
*/
/* -----------------------------------------------------------------------------

# Base - Genral & Typography

----------------------------------------------------------------------------- */
html {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: #051922;
  overflow-x: hidden;
}

body img {
  max-width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #6495ED;
  text-decoration: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  color: #051922;
}

h1:last-child, .h1:last-child,
h2:last-child, .h2:last-child,
h3:last-child, .h3:last-child,
h4:last-child, .h4:last-child,
h5:last-child, .h5:last-child,
h6:last-child, .h6:last-child {
  margin: 0;
}

h1, .h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
}

@media only screen and (max-width: 767.96px) {
  h1, .h1 {
    font-size: 3rem;
    line-height: 3.25rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h1, .h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

h2, .h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.25rem;
}

@media only screen and (max-width: 767.96px) {
  h2, .h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h2, .h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}

h3, .h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.25rem;
}

@media only screen and (max-width: 575.96px) {
  h3, .h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

h4, .h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75rem;
}

@media only screen and (max-width: 575.96px) {
  h4, .h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: #051922;
  margin: 0 0 1.25rem 0;
}

p:last-child {
  margin: 0;
}

/* -----------------------------------------------------------------------------

# All Common Styles

----------------------------------------------------------------------------- */
.loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1111;
  background: #fff;
  overflow-x: hidden;
}

.loader-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
}

.circle {
  width: 8vmax;
  height: 8vmax;
  border-right: 4px solid #000;
  border-radius: 50%;
  -webkit-animation: spinRight 800ms linear infinite;
  animation: spinRight 800ms linear infinite;
}

.circle:before {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #6495ED;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
}

.circle:after {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #6495ED;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
  width: 4vmax;
  height: 4vmax;
  top: calc(50% - 2vmax);
  left: calc(50% - 2vmax);
  border: 0;
  border-right: 2px solid #000;
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@-webkit-keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.mt-80 {
  margin-top: 80px;
}

@media only screen and (max-width: 767.96px) {
  .mt-80 {
    margin-top: 50px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}

@media only screen and (max-width: 767.96px) {
  .mb-80 {
    margin-bottom: 50px;
  }
}

.mt-100 {
  margin-top: 100px;
}

@media only screen and (max-width: 767.96px) {
  .mt-100 {
    margin-top: 80px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}

@media only screen and (max-width: 767.96px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}

.mt-150 {
  margin-top: 150px;
}

@media only screen and (max-width: 767.96px) {
  .mt-150 {
    margin-top: 100px;
  }
}

.mb-150 {
  margin-bottom: 150px;
}

@media only screen and (max-width: 767.96px) {
  .mb-150 {
    margin-bottom: 100px;
  }
}

.pt-80 {
  padding-top: 80px;
}

@media only screen and (max-width: 767.96px) {
  .pt-80 {
    padding-top: 50px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}

@media only screen and (max-width: 767.96px) {
  .pb-80 {
    padding-bottom: 50px;
  }
}

.pt-100 {
  padding-top: 100px;
}

@media only screen and (max-width: 767.96px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media only screen and (max-width: 767.96px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pt-150 {
  padding-top: 150px;
}

@media only screen and (max-width: 767.96px) {
  .pt-150 {
    padding-top: 100px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}

@media only screen and (max-width: 767.96px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

.gray-bg {
  background-color: #f5f5f5;
}

.orange-text {
  color: #6495ED;
}

.blue-bg {
  background-color: #051922;
}

a.boxed-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: #6495ED;
  color: #fff;
  padding: 10px 20px;
}

a.bordered-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  color: #fff;
  border: 2px solid #6495ED;
  padding: 7px 20px;
}

a.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  color: #051922;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}

a.read-more-btn:hover {
  color: #6495ED;
}

a.boxed-btn, a.bordered-btn, a.cart-btn {
  border-radius: 50px;
}

.section-title h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.section-title h3 .orange-text {
  color: #6495ED;
  padding-left: 8px;
}

.section-title .text {
  margin-top: 20px;
}

.section-title .text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.section-title p {
  font-size: 15px;
  width: 530px;
  margin: 0 auto;
  color: #555;
  margin-top: 10px;
  line-height: 1.8;
}

.section-title {
  margin-bottom: 80px;
}

.breadcrumb-bg {
  background-image: url(../img/breadcrumb-bg.jpg);
}

.breadcrumb-text p {
  color: #6495ED;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
}

.breadcrumb-text h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  margin-top: 20px;
}

.breadcrumb-section {
  padding: 150px 0;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
  padding-top: 200px;
}

.breadcrumb-section:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #051922;
  z-index: -1;
  opacity: 0.8;
}

/* -----------------------------------------------------------------------------

# Header Styles

----------------------------------------------------------------------------- */
ul.navbar-nav li.nav-item a.nav-link, ul.navbar-nav li.nav-item.active a.nav-link {
  color: #051922;
}

.top-header-area {
  position: absolute;
  z-index: 999;
  width: 100%;
  padding: 25px 0;
}

.top-header-area.white ul.navbar-nav li.nav-item a.nav-link, .top-header-area.white ul.navbar-nav li.nav-item.active a.nav-link {
  color: #fff;
}

ul.navbar-nav li.nav-item a.nav-link, ul.navbar-nav li.nav-item.active a.nav-link {
  color: #fff;
  font-weight: 700;
  margin-right: 14px;
}

a.navbar-brand img {
  max-width: 150px;
}

nav.main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav.main-menu ul li {
  display: inline-block;
}

nav.main-menu ul li a {
  color: #fff;
  font-weight: 700;
  display: block;
  padding: 15px;
}

nav.main-menu ul > li {
  position: relative;
}

nav.main-menu ul ul.sub-menu {
  position: absolute;
  background-color: #fff;
  width: 220px;
  padding: 15px 15px;
  margin: 0;
  left: 0;
  top: 50px;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0 0 20px #555555;
  box-shadow: 0 0 20px #555555;
}

nav.main-menu ul ul.sub-menu li {
  display: block;
  text-align: left;
}

nav.main-menu ul ul.sub-menu li a {
  color: #555;
  font-weight: 600;
  padding: 7px 10px;
  font-size: 13px;
}

nav.main-menu ul > li:hover ul {
  opacity: 1;
  visibility: visible;
}

nav.main-menu ul li:last-child a {
  display: inline-block;
}

nav.main-menu > ul li:last-child {
  float: right;
}

.site-logo {
  float: left;
  max-width: 150px;
}

ul.sub-menu li:last-child {
  float: none !important;
}

.mean-container .mean-bar {
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 15px;
}

.mean-bar a.meanmenu-reveal {
  background-color: #6495ED;
}

.main-menu-wrap {
  position: relative;
}

.mean-container a.meanmenu-reveal {
  color: #051922;
}

.mean-container a.meanmenu-reveal span {
  background-color: #051922;
}

.mean-container .mean-nav ul li a {
  padding: 0.5em 5%;
}

.mean-container .mean-nav ul li li a {
  padding: 0.5em 10%;
}

.mean-container .mean-nav ul li a.mean-expand {
  font-size: 16px;
  height: 10px;
  line-height: 10px;
  width: 15px;
}

.mean-container a.meanmenu-reveal {
  padding: 8px 8px 6px;
}

nav.mean-nav > ul > li:first-child > a {
  border-top: none;
}

.header-icons a {
  color: #fff;
  display: inline-block;
  padding: 10px;
}

.site-logo {
  padding: 6px 0;
}

.top-header-area.sepherate-header ul li > a, .top-header-area.sepherate-header .header-icons a {
  color: #051922;
}

nav.main-menu ul ul.sub-menu li {
  display: block;
}

nav.main-menu ul ul.sub-menu li a {
  color: #555;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
}

nav.main-menu ul li.current-list-item > a {
  color: #6495ED;
}

nav.main-menu li:hover > a {
  color: #6495ED;
}

nav.main-menu li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.top-header-area .header-icons a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.top-header-area .header-icons a:hover {
  color: #6495ED;
}

.sticky-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999 !important;
}

.sticky-wrapper.is-sticky .top-header-area {
  background-color: #051922;
  padding: 15px 0;
}

.top-header-area {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.navbar-nav {
  margin: 0 auto;
}

.search-area {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5555;
  background-color: #051922;
  width: 100%;
  height: 100%;
  text-align: center;
}

span.close-btn {
  position: absolute;
  right: 0%;
  color: #fff;
  top: 5%;
  cursor: pointer;
}

.search-area {
  height: 100%;
}

.search-area div {
  height: 100%;
}

.search-bar {
  height: 100%;
  display: table;
  width: 100%;
}

a.mobile-show {
  display: none;
}

.search-area .search-bar div.search-bar-tablecell {
  display: table-cell;
  vertical-align: middle;
  height: auto;
}

.search-bar-tablecell input {
  border: none;
  padding: 15px;
  width: 60%;
  background-color: transparent;
  border-bottom: 1px solid #6495ED;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

.search-bar-tablecell button[type=submit] {
  border: none;
  background-color: #6495ED;
  padding: 15px 30px;
  cursor: pointer;
  display: inline-block;
  border-radius: 50px;
  font-weight: 700;
}

.search-bar-tablecell input::-webkit-input-placeholder {
  color: #fff;
}

.search-bar-tablecell input:-ms-input-placeholder {
  color: #fff;
}

.search-bar-tablecell input::-ms-input-placeholder {
  color: #fff;
}

.search-bar-tablecell input::placeholder {
  color: #fff;
}

.search-bar-tablecell button[type=submit] i {
  margin-left: 5px;
}

.search-area {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.search-area.search-active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.search-bar-tablecell h3 {
  color: #fff;
  margin-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 7px;
}

/* -----------------------------------------------------------------------------

# Footer Styles

----------------------------------------------------------------------------- */
.single-logo-item img {
  max-width: 180px;
  margin: 0 auto;
}

.logo-carousel-section {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.footer-area {
  background-color: #051922;
  color: #fff;
  padding: 150px 0;
}

h2.widget-title {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  padding-bottom: 20px;
  color: #fff;
}

h2.widget-title:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: #6495ED;
  content: "";
}

.footer-box p {
  color: #fff;
  opacity: 0.7;
  line-height: 1.8;
}

.footer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-box ul li {
  opacity: 0.7;
  margin-bottom: 10px;
  line-height: 1.8;
}

.footer-box ul li:last-child {
  margin-bottom: 0;
}

.footer-box.subscribe form input[type=email] {
  border: none;
  background-color: #012738;
  width: 78%;
  padding: 15px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  color: #fff;
}

.footer-box.subscribe form button {
  width: 20%;
  border: none;
  background-color: #012738;
  color: #6495ED;
  padding: 14px 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  cursor: pointer;
}

.footer-box.subscribe form button:focus {
  outline: none;
}

.copyright {
  background-color: #051922;
  border-top: 1px solid #232a35;
}

.copyright p {
  margin: 0;
  color: #fff;
  opacity: 0.7;
  padding: 16px 0;
  font-size: 15px;
}

.copyright a {
  color: #6495ED;
  font-weight: 700;
}

.copyright a:hover {
  color: #f59d53;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons ul li {
  display: inline-block;
}

.social-icons ul li a {
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
  padding: 16px 10px;
  display: block;
}

.footer-box ul li a {
  color: #fff;
}

.footer-box.pages ul li {
  position: relative;
  padding-left: 20px;
}

.footer-box.pages ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #6495ED;
}

/* -----------------------------------------------------------------------------

# Hover Styles

----------------------------------------------------------------------------- */
a.navbar-brand {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.navbar-brand:hover {
  opacity: 0.7;
}

a.boxed-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.boxed-btn:hover {
  background-color: #051922;
  color: #6495ED;
}

a.bordered-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.bordered-btn:hover {
  background-color: #6495ED;
  color: #fff;
}

ul.sub-menu a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.sub-menu li:hover a {
  color: #6495ED;
}

.single-tof-box {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-tof-box:hover {
  -webkit-box-shadow: 0 0 80px #353535;
  box-shadow: 0 0 80px #353535;
}

a.video-play-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.video-play-btn:hover {
  background-color: #333;
  color: #6495ED;
}

.latest-news-bg {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-latest-news:hover .latest-news-bg {
  opacity: 0.8;
}

a.tof-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.tof-btn i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.tof-btn:hover {
  color: #6495ED;
}

a.tof-btn:hover i {
  margin-left: 10px;
}

.single-latest-news {
  -webkit-box-shadow: 0 0 20px #dddddd;
  box-shadow: 0 0 20px #dddddd;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-latest-news:hover {
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.single-logo-item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-logo-item:hover {
  opacity: 0.7;
}

.footer-box.pages ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-box.pages ul li:hover a {
  color: #6495ED;
}

.footer-box.subscribe form button {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-box.subscribe form button:hover {
  background-color: #6495ED;
  color: #051922;
}

.social-icons ul li:hover a {
  color: #6495ED;
}

.social-icons ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.social-link-team li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.social-link-team li a:hover {
  background-color: #051922;
  color: #6495ED;
}

.counter-box {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.counter-box:hover {
  -webkit-box-shadow: 0 0 80px #6f6f6f;
  box-shadow: 0 0 80px #6f6f6f;
}

input[type="submit"] {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px !important;
}

input[type="submit"]:hover {
  background-color: #051922;
  color: #6495ED;
}

div.owl-controls, .owl-controls div {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

div.owl-controls div.owl-nav div:hover {
  opacity: 0.7;
}

.pagination-wrap ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.pagination-wrap ul li:hover a {
  background-color: #6495ED;
}

.icons a i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.icons a:hover i {
  color: #6495ED;
}

.tof-text a.tof-btn {
  margin-top: 15px;
  display: inline-block;
}

.single-pricing-table {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-pricing-table:hover {
  -webkit-box-shadow: 0 0 20px #ddd;
  box-shadow: 0 0 20px #ddd;
}

.product-image img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.product-image img:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.cart-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.cart-btn:hover {
  background-color: #051922;
  color: #6495ED;
}

.recent-posts ul li {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.recent-posts ul li:hover {
  opacity: 0.7;
}

ul.sub-menu li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.sub-menu li:hover a {
  color: #6495ED !important;
}

.sidebar-section ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.sidebar-section ul li a:hover {
  opacity: 0.7;
}

.comment-text-body h4 a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.comment-text-body h4 a:hover {
  color: #6495ED;
}

ul.product-share li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.product-share li:hover a {
  color: #6495ED;
}

.service-menu ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.service-menu ul li a.active {
  font-weight: 600;
  color: #ffe200;
}

.service-menu ul li a:hover {
  color: #ffe200;
}

.single-product-item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-product-item:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.search-bar-tablecell button[type=submit] {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.search-bar-tablecell button[type=submit]:hover {
  background-color: #fff;
  color: #000;
}

span.close-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

span.close-btn:hover {
  color: #fff;
}

a.mobile-show.search-bar-icon {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.mobile-show.search-bar-icon:hover {
  color: #6495ED;
}

/* -----------------------------------------------------------------------------

# Hero Styles

----------------------------------------------------------------------------- */
.hero-bg {
  background-image: url(../img/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text-tablecell {
  display: inline-block;
  padding: 1.5rem 2rem;
  animation: fadeIn 1s ease-in;
  width: auto;
  max-width: 100%;
  background: none;
  backdrop-filter: none;
}

.hero-area {
  height: 100%;
  position: relative;
  z-index: 1;
}

html, body {
  height: 100%;
}

.hero-area:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #051922;
  z-index: -1;
  opacity: 0.6;
}

.hero-text p.subtitle {
  color: #6495ED;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-area div {
  height: 100%;
}

.hero-area div.hero-text {
  height: 100%;
  width: 100%;
}

.hero-area div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
}

.hero-area div.hero-text-tablecell div {
  height: auto;
}

.hero-btns {
  margin-top: 35px;
}

.hero-btns a.bordered-btn {
  margin-left: 15px;
}

.hero-area div.hero-form {
  background-color: #fff;
  text-align: center;
  width: 380px;
  margin: 0 auto;
  margin-right: 0;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px #2d2d2d;
  box-shadow: 0 0 15px #2d2d2d;
  position: absolute;
  right: 30px;
  bottom: -15%;
  height: 600px;
}

input[type="submit"] {
  background-color: #6495ED;
  color: #051922;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  border: none !important;
  cursor: pointer;
  padding: 15px 25px;
  border-radius: 3px;
}

.homepage-bg-0 {
  background-image: url(../img/banner-00.jpg);
}

.homepage-bg-1 {
  background-image: url(../img/banner-01.jpg);
}

.homepage-bg-2 {
  background-image: url(../img/banner-02.jpg);
}

.homepage-bg-3 {
  background-image: url(../img/banner-03.jpg);
}

.homepage-bg-4 {
  background-image: url(../img/banner-05.jpg);
}

.homepage-bg-5 {
  background-image: url(../img/banner-04.jpg);
}

.homepage-bg-6 {
  background-image: url(../img/banner-07.jpg);
}

.homepage-slider {
  height: 100%;
}

.homepage-slider div {
  height: 100%;
}

.homepage-slider div.hero-text {
  display: table;
  width: 100%;
}

.homepage-slider div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
  display: table-cell;
}

.homepage-slider div.hero-text-tablecell div {
  height: auto;
}

.single-homepage-slider {
  position: relative;
}

.single-homepage-slider:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
      rgba(5, 25, 34, 0.8) 0%,
      rgba(5, 25, 34, 0.6) 50%,
      rgba(5, 25, 34, 0.4) 100%
  );
  z-index: 1;
}

.single-homepage-slider:after {
  display: none;
}

div.owl-controls, .owl-controls div {
  height: auto;
  top: 50%;
  color: #6495ED;
  font-size: 48px;
}

.homepage-slider {
  position: relative;
}

.owl-prev {
  position: absolute;
  left: 60px;
  margin-top: -30px;
}

.owl-next {
  position: absolute;
  right: 60px;
  margin-top: -30px;
}

/* -----------------------------------------------------------------------------

# List Styles

----------------------------------------------------------------------------- */
.list-section {
  background-color: #f5f5f5;
}

.list-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.list-box:hover {
  transform: translateY(-5px);
}

.list-icon {
  font-size: 2.5em;
  color: #6495ED;
  margin-right: 20px;
}

.list-box .content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.list-box .content p {
  margin: 0;
  color: #555;
}

/* -----------------------------------------------------------------------------

# News Styles

----------------------------------------------------------------------------- */
.news-bg-1 {
  background-image: url(../img/service-cctv.jpg);
  background-size: cover;
  background-position: center;
  height: 200px;
}

.news-bg-2 {
  background-image: url(../img/service-home-security.jpg);
  background-size: cover;
  background-position: center;
  height: 200px;
}

.news-bg-3 {
  background-image: url(../img/service-access-control.jpg);
  background-size: cover;
  background-position: center;
  height: 200px;
}

.news-bg-4 {
  background-image: url(../img/service-cash-management.jpg);
  background-size: cover;
  background-position: center;
  height: 200px;
}

.news-bg-5 {
  background-image: url(../img/service-rapid-response.jpg);
  background-size: cover;
  background-position: center;
  height: 200px;
}

.news-bg-6 {
  background-image: url(../img/service-dog-section.jpg);
  background-size: cover;
  background-position: center;
  height: 200px;
}

.latest-news-bg {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.latest-news-bg:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 25, 34, 0.3);
  transition: all 0.3s ease;
}

.single-latest-news {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  transform: translateY(0);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
  height: 450px;
  display: flex;
  flex-direction: column;
}

.single-latest-news:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.single-latest-news:hover .latest-news-bg:after {
  animation: scanEffect 1.5s ease-in-out forwards;
}

.news-text-box {
  padding: 25px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-text-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.news-text-box h3 a {
  color: #051922;
  transition: 0.3s;
}

.news-text-box h3 a:hover {
  color: #6495ED;
}

.news-text-box p.excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
  flex-grow: 1;
}

.read-more-btn {
  display: inline-block;
  color: #6495ED;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
  padding: 8px 0;
  align-self: flex-start;
}

.read-more-btn i {
  margin-left: 5px;
  transition: 0.3s;
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/* Security Animation Elements */
.latest-news-bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
      transparent 0%,
      transparent 45%,
      rgba(255, 0, 0, 0.8) 50%,
      transparent 55%,
      transparent 100%
  );
  transform: translateY(-100%);
  animation: none;
}

.single-latest-news:hover .latest-news-bg:after {
  animation: scanEffect 1.5s ease-in-out forwards;
}

.single-latest-news:before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  background: #6495ED;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Animation Keyframes */
@keyframes scanEffect {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(100, 149, 237, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(100, 149, 237, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(100, 149, 237, 0);
  }
}

/* Grid layout improvements */
.row {
  display: flex;
  flex-wrap: wrap;
}

.col-lg-4 {
  display: flex;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .single-latest-news {
    height: auto;
    min-height: 400px;
  }
}

/* Keep existing animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animations */
.single-latest-news:nth-child(1) { animation-delay: 0.1s; }
.single-latest-news:nth-child(2) { animation-delay: 0.2s; }
.single-latest-news:nth-child(3) { animation-delay: 0.3s; }
.single-latest-news:nth-child(4) { animation-delay: 0.4s; }
.single-latest-news:nth-child(5) { animation-delay: 0.5s; }
.single-latest-news:nth-child(6) { animation-delay: 0.6s; }

/* Section title animation */
.section-title {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* -----------------------------------------------------------------------------

# Cart Banner Styles

----------------------------------------------------------------------------- */
.cart-banner {
  background-color: #f5f5f5;
}

.cart-banner .image-column {
  position: relative;
  margin-top: 40px;
}

.cart-banner .image-column .price-box {
  position: absolute;
  left: 15%;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: rgba(242, 129, 35, 0.75);
}

.cart-banner .image-column .price-box .inner-price {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 0 auto;
  margin-top: 8px;
  text-align: center;
  border-radius: 50%;
  background-color: #6495ED;
}

.cart-banner .image-column .price-box .inner-price .price {
  color: #051922;
  padding-top: 27px;
  position: relative;
  display: inline-block;
  line-height: 18px;
  font-weight: 400;
}

.cart-banner .image-column .price-box .inner-price .price strong {
  color: #051922;
  font-size: 24px;
}

.cart-banner .content-column {
  position: relative;
  padding-top: 40px;
}

.cart-banner .content-column h3 {
  font-size: 40px;
}

.cart-banner .content-column h4 {
  position: relative;
  font-weight: 300;
  text-transform: uppercase;
}

.cart-banner .content-column .text {
  position: relative;
  font-weight: 400;
  line-height: 1.8em;
  margin-top: 25px;
  margin-bottom: 25px;
}

.time-counter {
  position: relative;
  margin-bottom: 25px;
}

.time-counter .time-countdown {
  position: relative;
}

.time-countdown .counter-column {
  position: relative;
  display: inline-block;
  margin: 0px 0px 5px;
  font-size: 13px;
  line-height: 1em;
  padding: 8px 20px 14px;
  text-transform: capitalize;
  text-align: center;
  border: 2px solid #6495ED;
}

.time-countdown .counter-column .count {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 1.4em;
  padding: 0px 0px;
  color: #6495ED;
  font-weight: 700;
  letter-spacing: 1px;
}

/* -----------------------------------------------------------------------------

# Testimonial Styles

----------------------------------------------------------------------------- */
.testimonial-section {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    padding: 80px 0;
    margin: 0;
    color: #fff;
}

.testimonial-section .section-title h3 {
    color: #fff;
    margin-bottom: 15px;
}

.testimonial-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.single-testimonial-slider {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    margin: 20px 10px;
    transition: transform 0.3s ease;
}

.single-testimonial-slider:hover {
    transform: translateY(-5px);
}

.client-meta {
    text-align: center;
}

.client-avater {
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.client-avater img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #6495ED;
    padding: 3px;
}

.client-meta h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.client-meta h3 span {
    display: block;
    font-size: 14px;
    color: #6495ED;
    font-weight: 400;
    margin-top: 8px;
}

.testimonial-body {
    position: relative;
    margin-top: 25px;
    padding-top: 25px;
}

.testimonial-body:before {
    content: '';
    width: 50px;
    height: 2px;
    background: #6495ED;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-body p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 20px;
}

.rating {
    color: #ffd700;
    font-size: 18px;
    margin-top: 15px;
}

.rating i {
    margin: 0 2px;
}

/* Slider Navigation Customization */
.testimonial-sliders .slick-prev,
.testimonial-sliders .slick-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-sliders .slick-prev:hover,
.testimonial-sliders .slick-next:hover {
    background: #6495ED;
}

.testimonial-sliders .slick-dots li button:before {
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-sliders .slick-dots li.slick-active button:before {
    color: #6495ED;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .single-testimonial-slider {
        padding: 30px 20px;
    }

    .testimonial-body p {
        font-size: 15px;
    }
}

/* -----------------------------------------------------------------------------

# About Styles

----------------------------------------------------------------------------- */
a.video-play-btn {
  position: absolute;
  background-color: #6495ED;
  color: #051922;
  width: 90px;
  height: 90px;
  text-align: center;
  line-height: 92px;
  border-radius: 50%;
  font-size: 20px;
  padding-left: 5px;
  display: block;
  z-index: 2;
  top: 50%;
  margin-top: -45px;
  -webkit-box-shadow: 0 0 20px #adadad;
  box-shadow: 0 0 20px #adadad;
  left: 50%;
  margin-left: -45px;
}

.abt-bg {
  background-image: url(../img/video.jpg);
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.abt-bg:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #051922;
  opacity: 0.3;
}

.abt-section .abt-text {
  padding: 50px;
  padding-left: 30px;
}

.abt-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.abt-text p.top-sub {
  opacity: 0.8;
  margin-bottom: 10px;
}

.abt-text p:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------------------------------------

# Shop Banner Styles

----------------------------------------------------------------------------- */
.shop-banner {
    position: relative;
    background-color: #f5f5f5;
    padding: 80px 0;
    overflow: hidden;
}

.book-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
}

.book-content {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
    position: relative;
    border-left: 4px solid #6495ED;
    transition: all 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.section-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #6495ED;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(100, 149, 237, 0.3);
}

.section-icon i {
    font-size: 20px;
}

.content-section h4 {
    color: #333;
    margin: 15px 0;
    font-size: 22px;
    font-weight: 600;
    padding-left: 45px;
}

.content-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Download section styling */
.download-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1s;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: #6495ED;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(100, 149, 237, 0.3);
}

.download-btn:hover {
    background: #4a7ae0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(100, 149, 237, 0.4);
}

.download-btn i {
    margin-right: 10px;
    font-size: 20px;
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Stagger animations for content sections */
.content-section:nth-child(1) { animation-delay: 0.2s; }
.content-section:nth-child(2) { animation-delay: 0.4s; }
.content-section:nth-child(3) { animation-delay: 0.6s; }
.content-section:nth-child(4) { animation-delay: 0.8s; }
.content-section:nth-child(5) { animation-delay: 1.0s; }
.content-section:nth-child(6) { animation-delay: 1.2s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .book-container {
        padding: 20px;
    }
    
    .content-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .section-icon {
        width: 35px;
        height: 35px;
        left: 20px;
    }
    
    .content-section h4 {
        font-size: 20px;
        padding-left: 35px;
    }
    
    .download-btn {
        padding: 12px 25px;
    }
}

/* -----------------------------------------------------------------------------

# About Page Styles

----------------------------------------------------------------------------- */
.feature-bg {
  position: relative;
  margin: 150px 0;
}

.feature-bg:after {
  background-image: url(../img/feature-bg.jpg);
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  content: "";
  background-size: cover;
  background-position: center;
  border-top-left-radius: 5px;
  -webkit-box-shadow: 0 0 20px #cacaca;
  box-shadow: 0 0 20px #cacaca;
  border-bottom-left-radius: 5px;
}

.team-bg-1 {
  background-image: url(../img/team/team-1.jpg);
}

.team-bg-2 {
  background-image: url(../img/team/team-2.jpg);
}

.team-bg-3 {
  background-image: url(../img/team/team-3.jpg);
}

.team-bg-4 {
  background-image: url(../img/team/team-4.jpg);
}

.team-bg {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  background-color: #ddd;
}

.single-team-item {
  position: relative;
}

.single-team-item h4 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
}

.single-team-item h4 span {
  font-size: 70%;
  display: block;
  margin-top: 10px;
  opacity: 0.7;
}

ul.social-link-team {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

ul.social-link-team li {
  display: inline-block;
}

ul.social-link-team li a {
  color: #fff;
  background-color: #6495ED;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  display: block;
  margin: 5px;
}

/* -----------------------------------------------------------------------------

# Contact Page Styles

----------------------------------------------------------------------------- */
.form-title {
  margin-bottom: 25px;
}

.form-title h2 {
  font-size: 25px;
}

.form-title p {
  font-size: 15px;
  line-height: 1.8;
}

.contact-form form p input[type=text], .contact-form form p input[type=tel], .contact-form form p input[type=email] {
  width: 49%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.contact-form form p textarea {
  border: 1px solid #ddd;
  padding: 15px;
  height: 200px;
  border-radius: 3px;
  width: 100%;
  resize: none;
}

.contact-form-wrap {
  background-color: #FBFBFB;
  padding: 45px 30px;
  border-radius: 5px;
}

.contact-form-box {
  padding-left: 40px;
  margin-bottom: 30px;
}

.contact-form-box h4 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
}

.contact-form-box h4 i {
  position: absolute;
  left: -13%;
  color: #6495ED;
  top: 2px;
}

.contact-form-box p {
  line-height: 1.8;
  opacity: 0.8;
}

.contact-form-wrap .contact-form-box:last-child {
  margin: 0;
}

.find-location p {
  color: #fff;
  font-size: 40px;
  margin: 0;
  font-weight: 600;
  padding: 95px 0;
}

.find-location p i {
  margin-right: 10px;
  color: #6495ED;
}

#form_status span {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  background: #E74C3C;
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 0px;
  border-radius: 3px;
  margin-bottom: 18px;
}

#form_status span.loading {
  color: #333;
  background: #eee;
  border-radius: 3px;
  padding: 18px 0px;
}

#form_status span.notice {
  color: yellow;
}

#form_status .success {
  color: #fff;
  text-align: center;
  background: #2ecc71;
  border-radius: 3px;
  padding: 30px 0px;
}

#form_status .success i {
  color: #fff;
  font-size: 45px;
  margin-bottom: 14px;
}

#form_status .success h3 {
  color: #fff;
  margin-bottom: 10px;
}

/* -----------------------------------------------------------------------------

# Shop Page Styles

----------------------------------------------------------------------------- */
.product-filters {
  margin-bottom: 80px;
}

.product-filters ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.product-filters ul li {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  margin: 15px;
  border: 2px solid #051922;
  color: #323232;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 25px;
}

.product-filters ul li.active {
  border: 2px solid #6495ED;
  background-color: #6495ED;
  color: #fff;
}

.single-product-item {
  margin-bottom: 30px;
}

.product-image {
  padding: 30px;
  padding-bottom: 0;
}

.product-image img {
  width: 90%;
  border-radius: 5px;
  margin-bottom: 20px;
}

.single-product-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

p.product-price {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

p.product-price span {
  display: block;
  opacity: 0.8;
  font-size: 15px;
  font-weight: 400;
}

a.cart-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: #6495ED;
  color: #fff;
  padding: 10px 20px;
}

a.cart-btn i {
  margin-right: 5px;
}

.single-product-img img {
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px #ddd;
  box-shadow: 0 0 20px #ddd;
}

.single-product-content h3 {
  font-size: 22px;
  font-weight: 600;
}

p.single-product-pricing span {
  font-size: 18px;
  display: block;
  opacity: 0.8;
  margin-bottom: 10px;
  font-weight: 400;
}

.single-product-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.single-product-content p.single-product-pricing {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #051922;
  line-height: inherit;
}

input[type="number"] {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  width: 100px;
  margin-bottom: 15px;
}

.single-product-form a.cart-btn {
  margin-bottom: 15px;
}

.single-product-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 35px;
}

ul.product-share {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.product-share li {
  display: inline-block;
}

ul.product-share li a {
  display: block;
  color: #051922;
  margin-right: 10px;
}

.single-product-content {
  margin-left: 30px;
}

table.cart-table {
  border: 1px solid #f9f9f9;
  width: 100%;
}

thead {
  border-bottom: 1px solid #eee;
}

tr.table-head-row th {
  border-right: 1px solid #efefef;
  padding: 15px;
  font-weight: 500;
  text-align: center;
}

tr.table-head-row th:last-child {
  border-right: none;
}

.cart-table-wrap tbody tr td {
  text-align: center;
}

td.product-image img {
  max-width: 50px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.cart-table-wrap tbody tr td {
  border: 1px solid #efefef;
  padding: 20px 0;
  color: #051922;
}

thead.cart-table-head tr {
  background-color: #efefef;
}

td.product-quantity input {
  margin-bottom: 0;
}

td.product-remove a {
  color: #051922;
}

.total-section table.total-table {
  border: 1px solid #efefef;
  width: 100%;
}

tr.table-total-row {
  background-color: #efefef;
}

tr.table-total-row th {
  font-weight: 500;
  font-size: 15px;
  padding: 15px;
}

table.total-table tbody tr.total-data td {
  border: 1px solid #efefef;
  padding: 19px 15px;
}

tr.total-data td strong {
  margin-right: 32px;
}

.cart-buttons {
  margin-top: 30px;
}

.cart-buttons a:first-child {
  margin-right: 20px;
}

.coupon-section {
  margin-top: 50px;
}

.coupon-section h3 {
  font-size: 20px;
  font-weight: 500;
}

.coupon-form-wrap form p input[type=text] {
  border: 1px solid #ddd;
  color: #051922;
  padding: 15px;
  width: 100%;
  border-radius: 5px;
  font-size: 15px;
}

.card.single-accordion {
  margin-bottom: 15px;
  border-bottom: 1px solid #EFEFEF !important;
}

.card.single-accordion .card-header {
  background-color: #fff;
  border: none;
  padding: 0;
}

.card.single-accordion:last-child {
  margin-bottom: 0;
}

.card.single-accordion .card-header h5 button {
  color: #051922;
  font-size: 15px;
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px;
  text-decoration: none;
  border: none;
  background-color: #EFEFEF;
  position: relative;
  padding-left: 50px;
  font-weight: 600;
}

.card.single-accordion {
  border: 1px solid #F9F9F9;
}

.billing-address-form {
  padding: 20px;
}

.billing-address-form form p input {
  border: 1px solid #ddd;
  padding: 15px;
  width: 100%;
  border-radius: 3px;
}

.billing-address-form form p textarea {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 15px;
  height: 120px;
  resize: none;
}

.shipping-address-form p, .card-details p {
  margin: 0;
}

.card.single-accordion .card-header h5 button:before {
  position: absolute;
  left: 20px;
  top: 50%;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 22px;
  margin-top: -11px;
  color: #6495ED;
}

.billing-address-form form p:last-child {
  margin-bottom: 0;
}

table.order-details {
  border: 1px solid #efefef;
}

table.order-details thead tr th {
  background-color: #efefef;
  padding: 18px;
  font-size: 15px;
  font-weight: 500;
}

table.order-details tbody td {
  border: 1px solid #efefef;
  padding: 15px;
}

.order-details-wrap > a {
  margin-top: 30px;
}

.card.single-accordion {
  border: 1px solid #eeeeee;
}

.single-product-item {
  -webkit-box-shadow: 0 0 20px #e4e4e4;
  box-shadow: 0 0 20px #e4e4e4;
  padding-bottom: 50px;
  border-radius: 5px;
}

/* -----------------------------------------------------------------------------

# 404 Page Styles

----------------------------------------------------------------------------- */
.error-text i {
  font-size: 90px;
  margin-bottom: 30px;
}

.error-text h1 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}

.error-text p {
  font-size: 15px;
  margin-bottom: 30px;
}

.full-height-section {
  height: 100%;
  display: table;
  width: 100%;
}

.full-height-tablecell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

/* -----------------------------------------------------------------------------

# CTA Section Styling

----------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(rgba(5, 25, 34, 0.95), rgba(5, 25, 34, 0.95)), 
              url('../img/cta-bg.jpg') center/cover no-repeat;
  color: #fff;
}

.cta-content h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  color: #fff;
  opacity: 0.9;
  font-size: 16px;
  margin-bottom: 25px;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-benefits li {
  margin: 10px 0;
  font-size: 16px;
}

.cta-benefits li i {
  color: #6495ED;
  margin-right: 10px;
}

.cta-action {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.cta-action h3 {
  color: #fff;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.cta-buttons .boxed-btn,
.cta-buttons .bordered-btn {
  width: 100%;
  text-align: center;
  margin: 0;
}

.or-divider {
  color: #fff;
  opacity: 0.7;
  font-size: 14px;
}

.cta-note {
  color: #fff;
  opacity: 0.7;
  font-size: 14px;
  margin-top: 20px;
}

/* -----------------------------------------------------------------------------

# Button hover effects

----------------------------------------------------------------------------- */
.boxed-btn:hover,
.bordered-btn:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Coverage Section Styling */
.coverage-section {
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    margin: 0;
}

/* Content Styling */
.achievement-list {
    margin: 30px 0;
}

.achievement-list li {
    margin: 18px 0;
    font-size: 17px;
    line-height: 1.5;
}

.achievement-list li i {
    margin-right: 12px;
    font-size: 22px;
    width: 25px;
    text-align: center;
}

/* Stats Container Styling */
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.stat-box:nth-child(1) { animation-delay: 0.2s; }
.stat-box:nth-child(2) { animation-delay: 0.4s; }

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 40px;
    color: #6495ED;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #051922;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

/* Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Stagger animations for content sections */
.content-section:nth-child(1) { animation-delay: 0.2s; }
.content-section:nth-child(2) { animation-delay: 0.4s; }
.content-section:nth-child(3) { animation-delay: 0.6s; }
.content-section:nth-child(4) { animation-delay: 0.8s; }
.content-section:nth-child(5) { animation-delay: 1.0s; }
.content-section:nth-child(6) { animation-delay: 1.2s; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .book-container {
      padding: 20px;
  }
  
  .content-section {
      padding: 20px;
      margin-bottom: 20px;
  }
  
  .section-icon {
      width: 35px;
      height: 35px;
      left: 20px;
  }
  
  .content-section h4 {
      font-size: 20px;
      padding-left: 35px;
  }
  
  .download-btn {
      padding: 12px 25px;
  }
}

/* History Section Styling */
.history-section {
    padding: 80px 0;  /* Added bottom padding back */
    background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(45deg, #6495ED 0%, #4a7ae0 100%);
    transform: skewY(-3deg);
    transform-origin: top left;
}

.history-content {
    position: relative;
    z-index: 2;
}

.history-year-badge {
    background: #6495ED;
    color: white;
    font-size: 24px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(100, 149, 237, 0.3);
    animation: slideInDown 0.6s ease forwards;
}

.history-text {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: fadeIn 0.8s ease forwards;
}

.history-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.history-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.history-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #6495ED;
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    margin-top: 5px;
}

.history-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.history-description .lead {
    font-size: 1.25rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item i {
    color: #6495ED;
    font-size: 40px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #051922;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 16px;
}

/* Animations */
@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Counter Animation JavaScript */
.stat-number.counting {
    transition: all 2s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .history-intro {
        grid-template-columns: 1fr;
    }
    
    .history-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .history-section {
        padding: 60px 0;
    }
    
    .history-text {
        padding: 30px;
    }
    
    .history-year-badge {
        font-size: 20px;
        padding: 12px 25px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .experience-badge .years {
        font-size: 28px;
    }
    
    .experience-badge .text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .history-stats {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Typography for History Section */
.history-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #051922;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.history-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #6495ED;
    border-radius: 2px;
}

.history-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.history-description .lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #6495ED;
}

.history-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.history-description p:hover {
    transform: translateX(10px);
    color: #333;
}

/* Highlight important text */
.history-description strong {
    color: #051922;
    font-weight: 600;
}

/* Text highlights */
.highlight-text {
    background: linear-gradient(120deg, rgba(100, 149, 237, 0.2) 0%, rgba(100, 149, 237, 0.2) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.4em;
    background-position: 0 88%;
    transition: background-size 0.25s ease-in;
}

.highlight-text:hover {
    background-size: 100% 100%;
}

/* Stats text enhancement */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #051922, #6495ED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Typography */
@media (max-width: 992px) {
    .history-text h2 {
        font-size: 2rem;
    }
    
    .history-description .lead {
        font-size: 1.25rem;
    }
    
    .history-description p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .history-text h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Service List Styling */
.service-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.service-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: '\f0c8';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #6495ED;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
}

.service-list li:hover {
    transform: translateX(10px);
    color: #333;
}

.service-list li:hover::before {
    color: #051922;
}

/* About Page CTA Section Styling */
.about-page-cta {
    background: linear-gradient(rgba(5, 25, 34, 0.95), rgba(5, 25, 34, 0.95)),
                url('../img/cta-bg.jpg') center/cover no-repeat fixed;
    color: #fff;
    padding: 80px 0;
    margin: 0; /* Remove margins */
    position: relative;
}

.about-cta-wrapper {
    position: relative;
    z-index: 2;
}

.about-cta-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 40px;
}

.about-contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-contact-item:last-child {
    margin-bottom: 0;
}

.about-contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.about-contact-item i {
    color: #6495ED;
    font-size: 24px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.about-contact-item:hover i {
    background: #6495ED;
    color: #fff;
    transform: rotate(360deg);
}

.about-contact-item span,
.about-contact-item a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-contact-item a:hover {
    color: #6495ED;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-page-cta {
        padding: 50px 0;
    }

    .about-cta-title {
        font-size: 28px;
    }

    .about-cta-subtitle {
        font-size: 16px;
    }

    .about-contact-info {
        padding: 25px;
    }

    .about-contact-item {
        padding: 10px;
    }

    .about-contact-item i {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }

    .about-contact-item span,
    .about-contact-item a {
        font-size: 14px;
    }
}

/* Animation for contact items */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-contact-item {
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
}

.about-contact-item:nth-child(1) { animation-delay: 0.2s; }
.about-contact-item:nth-child(2) { animation-delay: 0.4s; }
.about-contact-item:nth-child(3) { animation-delay: 0.6s; }

/* About Blueprint Section Styling */
.about-blueprint-section {
    padding: 80px 0;  /* Added top and bottom padding */
    background: #fafafa;  /* Slightly different shade of white */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);  /* Subtle separator */
}

.blueprint-wrapper {
    position: relative;
}

.blueprint-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 60px;  /* Added space between image and content */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);  /* Added shadow for depth */
    border-radius: 15px;  /* Rounded corners */
}

.blueprint-content {
    padding: 0;  /* Removed vertical padding since section has it */
    position: relative;
    background: #fff;  /* Pure white content area */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.blueprint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.blueprint-item {
    background: #fafafa;  /* Slightly off-white background */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.blueprint-item:hover {
    transform: translateY(-5px);
    background: #ffffff;  /* Pure white on hover */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .history-section,
    .about-blueprint-section {
        padding: 50px 0;  /* Consistent padding on mobile */
    }

    .blueprint-content {
        padding: 20px;
    }

    .blueprint-image {
        margin-bottom: 40px;
    }
}

/* Additional style for visual separation */
.history-text {
    background: #ffffff;  /* Pure white for contrast with gradient background */
    /* ... existing styles ... */
}

.history-stats {
    background: #fafafa;  /* Slightly off-white for stats section */
    padding: 30px;
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-item {
    background: #ffffff;  /* Pure white stat items */
    /* ... existing styles ... */
}

/* Company Overview Section Styling */
.company-overview-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Media Section */
.overview-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.overview-video-bg {
    height: 500px;
    background: linear-gradient(rgba(5, 25, 34, 0.3), rgba(5, 25, 34, 0.3)),
                url('../img/about/company-video-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overview-video-btn {
    width: 80px;
    height: 80px;
    background: #6495ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.overview-video-btn i {
    color: #fff;
    font-size: 24px;
    margin-left: 5px;
}

.video-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(100, 149, 237, 0.5);
    animation: pulse 2s infinite;
}

/* Content Section */
.overview-content {
    padding-left: 50px;
}

.overview-subtitle {
    color: #6495ED;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.overview-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight-text {
    color: #6495ED;
}

.overview-highlight {
    font-size: 18px;
    line-height: 1.8;
    color: #051922;
    font-weight: 500;
    margin-bottom: 20px;
    border-left: 4px solid #6495ED;
    padding-left: 20px;
}

.overview-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Features Cards */
.overview-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    color: #6495ED;
    font-size: 24px;
}

.feature-card span {
    font-weight: 500;
    color: #051922;
}

/* Button Styling */
.overview-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #6495ED;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(100, 149, 237, 0.3);
}

.overview-btn:hover {
    background: #051922;
    color: #6495ED;
    transform: translateY(-2px);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .overview-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .overview-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .company-overview-section {
        padding: 60px 0;
    }
    
    .overview-video-bg {
        height: 350px;
    }
    
    .overview-title {
        font-size: 32px;
    }
    
    .overview-features {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 15px;
    }
}

/* Security Services Section */
.security-services-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.services-header {
    margin-bottom: 60px;
}

.services-subtitle {
    color: #6495ED;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    color: #051922;
    margin-bottom: 20px;
}

.services-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #6495ED;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(100, 149, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 30px;
    color: #6495ED;
}

/* Security Tips Section */
.security-tips-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.tips-header {
    margin-bottom: 60px;
}

.tips-subtitle {
    color: #6495ED;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.tips-title {
    font-size: 42px;
    font-weight: 700;
    color: #051922;
    margin-bottom: 20px;
}

.tips-intro {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.tips-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.tips-category {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tips-category h3 {
    color: #051922;
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tips-category h3 i {
    color: #6495ED;
    font-size: 28px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tip-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: #6495ED;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tip-card:hover .tip-icon {
    transform: rotate(360deg);
}

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

.tip-card h4 {
    color: #051922;
    font-size: 18px;
    margin-bottom: 15px;
}

.tip-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .tips-category {
        padding: 30px 20px;
    }

    .tips-title {
        font-size: 32px;
    }

    .tips-category h3 {
        font-size: 22px;
    }
}

/* Animation for tip cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tip-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.tips-category:nth-child(1) .tip-card { animation-delay: 0.1s; }
.tips-category:nth-child(2) .tip-card { animation-delay: 0.2s; }
.tips-category:nth-child(3) .tip-card { animation-delay: 0.3s; }

/* Security Tips Hero Section */
.tips-hero-section {
    position: relative;
    height: 70vh;
    min-height: 600px;
    background: url('../img/tips-hero-bg.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tips-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(5, 25, 34, 0.95) 0%,
        rgba(100, 149, 237, 0.85) 100%
    );
}

.tips-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tips-hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.typing-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 0 30px;
    min-width: 60%; /* Ensure container is wide enough */
}

.typing-icon {
    color: #6495ED;
    font-size: 24px;
    margin-right: 15px;
    animation: pulse 2s infinite;
}

.typing-text {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    border-right: 4px solid #6495ED;
    white-space: nowrap;
    transition: opacity 0.5s ease;
}

.tips-hero-description {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.tips-counter {
    position: absolute;
    right: 0;
    bottom: -50px;
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.9);
}

.current-tip {
    font-size: 24px;
    font-weight: 700;
    color: #6495ED;
}

.separator {
    margin: 0 5px;
    opacity: 0.5;
}

.total-tips {
    font-size: 18px;
    opacity: 0.7;
}

.tips-hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('../img/waves.svg') repeat-x;
    animation: wave 20s linear infinite;
}

/* Enhanced Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: #6495ED }
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1000px; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .tips-hero-title {
        font-size: 48px;
    }
    
    .typing-text {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .tips-hero-section {
        height: 60vh;
    }

    .tips-hero-title {
        font-size: 36px;
    }
    
    .typing-text {
        font-size: 22px;
    }
    
    .typing-container {
        padding: 0 20px;
        height: 70px;
    }
}

/* Security Services Showcase Section */
.security-services-showcase {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

/* Service Card Styling */
.security-service-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.security-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Service Image */
.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: all 0.5s ease;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

/* Service Content */
.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.service-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-content h3 a:hover {
    color: #6495ED;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service Features List */
.service-features {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.service-features i {
    color: #6495ED;
    margin-right: 8px;
}

/* Background Images */
.cctv-bg {
    background-image: url('../img/cctv.jpg');
}

/* Add similar classes for other service backgrounds */
.home-security-bg {
    background-image: url('../img/home-security.jpg');
}

.access-control-bg {
    background-image: url('../img/advanced-access-control.jpg');
}

.cash-management-bg {
    background-image: url('../img/cash-management-services.jpg');
}

.rapid-response-bg {
    background-image: url('../img/rapid-response.jpg');
}

.k9-unit-bg {
    background-image: url('../img/canine-unit.jpg');
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .security-service-card {
        margin-bottom: 30px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
}

/* Security Solutions Section Styling */
.security-solutions-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.section-header {
    margin-bottom: 30px;
}

/* Remove bottom margin from cards */
.security-solution-card {
    margin-bottom: 0;
}

/* Adjust row gutter */
.row.g-4 {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}

.row.g-4 > * {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: 0 !important;
    margin-bottom: var(--bs-gutter-y);
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #051922;
    margin-bottom: 20px;
}

.section-header .lead {
    color: #555;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Card Styling */
.security-solution-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(100, 149, 237, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(100, 149, 237, 0.1);
}

.security-solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(100, 149, 237, 0.2);
}

/* Image Container */
.solution-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 25, 34, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-solution-card:hover .solution-overlay {
    opacity: 1;
}

.view-details {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border: 2px solid #6495ED;
    border-radius: 30px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: rgba(100, 149, 237, 0.1);
}

.security-solution-card:hover .view-details {
    transform: translateY(0);
}

/* Content Styling */
.solution-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: rgba(100, 149, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.solution-icon i {
    font-size: 24px;
    color: #6495ED;
    transition: all 0.3s ease;
}

.security-solution-card:hover .solution-icon {
    background: #6495ED;
}

.security-solution-card:hover .solution-icon i {
    color: #fff;
}

/* Heading Styling */
.solution-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.solution-content h3 a {
    color: #051922;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solution-content h3 a:hover {
    color: #6495ED;
}

/* Description Styling */
.solution-description p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Features List Styling */
.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.solution-features li {
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.solution-features li i {
    color: #6495ED;
    margin-right: 10px;
    font-size: 16px;
}

/* CTA Button Styling */
.solution-cta {
    margin-top: auto;
}

.btn-learn-more {
    display: inline-block;
    padding: 12px 25px;
    background: #6495ED;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #6495ED;
}

.btn-learn-more:hover {
    background: #051922;
    color: #6495ED;
    border-color: #051922;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .security-solution-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .solution-image {
        height: 200px;
    }
    
    .solution-content {
        padding: 20px;
    }
    
    .solution-content h3 {
        font-size: 20px;
    }

}

@media (max-width: 575px) {
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header .lead {
        font-size: 16px;
    }
}

/* Enhanced pulsing effect for security indicator */
.single-latest-news {
  position: relative;
}

.single-latest-news:before {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 12px;
  height: 12px;
  background: #6495ED;
  border-radius: 50%;
  z-index: 2;
}

/* Primary pulse */
.single-latest-news:after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 12px;
  height: 12px;
  background: rgba(100, 149, 237, 0.6);
  border-radius: 50%;
  z-index: 1;
  animation: pulse-primary 2s infinite;
}

/* Secondary pulse layer */
.single-latest-news .pulse-layer {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 12px;
  height: 12px;
  background: rgba(100, 149, 237, 0.4);
  border-radius: 50%;
  z-index: 1;
  animation: pulse-secondary 2s infinite 0.3s;
}

/* Tertiary pulse layer */
.single-latest-news .pulse-layer-2 {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 12px;
  height: 12px;
  background: rgba(100, 149, 237, 0.2);
  border-radius: 50%;
  z-index: 1;
  animation: pulse-tertiary 2s infinite 0.6s;
}

@keyframes pulse-primary {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes pulse-secondary {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes pulse-tertiary {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Quote Form Styles */
.quote-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.quote-form-wrapper h3 {
    color: #051922;
    margin-bottom: 30px;
}

.form-control {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 15px;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: #6495ED;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
    padding: 15px;
}

.services-checklist {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

.services-checklist h4 {
    color: #051922;
    margin-bottom: 20px;
    font-size: 18px;
}

.form-check-label {
    color: #555;
    cursor: pointer;
}

.form-check-input:checked + .form-check-label {
    color: #6495ED;
}

.btn-submit {
    background: #6495ED;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #051922;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quote-form-wrapper {
        padding: 20px;
      }
}

/* Enhanced Quote Form Styles */
.quote-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    max-width: 900px;
    margin: 0 auto;
}

.quote-form-wrapper:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.quote-form-wrapper h3 {
    color: #051922;
    margin-bottom: 30px;
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
}

.quote-form-wrapper h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #6495ED;
    border-radius: 2px;
}

/* Form Controls */
.form-control {
    height: 55px;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 0 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.form-control:focus {
    border-color: #6495ED;
    box-shadow: 0 0 0 3px rgba(100, 149, 237, 0.1);
}

textarea.form-control {
    height: 120px;
    padding: 15px 20px;
    resize: vertical;
}

/* Services Checklist Enhancement */
.services-checklist {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    margin: 30px 0;
}

.services-checklist h4 {
    color: #051922;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

/* Custom Checkbox Styling */
.form-check {
    padding-left: 35px;
    margin-bottom: 15px;
    position: relative;
}

.form-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.form-check-label {
    position: relative;
    cursor: pointer;
    padding-top: 3px;
    font-size: 16px;
    color: #555;
    transition: color 0.3s ease;
}

.form-check-label:before {
    content: '';
    position: absolute;
    left: -35px;
    top: 2px;
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-check-input:checked + .form-check-label:before {
    background: #6495ED;
    border-color: #6495ED;
}

.form-check-input:checked + .form-check-label:after {
    content: '✓';
    position: absolute;
    left: -30px;
    top: 1px;
    color: #fff;
    font-size: 14px;
}

/* Submit Button */
.btn-submit {
    background: #6495ED;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(100, 149, 237, 0.3);
}

.btn-submit:hover {
    background: #051922;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(100, 149, 237, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .quote-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .quote-form-wrapper {
        padding: 25px;
        margin: 0 15px;
    }

    .quote-form-wrapper h3 {
        font-size: 24px;
    }

    .form-control {
        height: 50px;
        font-size: 15px;
    }

    .services-checklist {
        padding: 20px;
    }

    .form-check-label {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .quote-form-wrapper {
        padding: 20px;
    }

    .quote-form-wrapper h3 {
        font-size: 22px;
    }

    .btn-submit {
        width: 100%;
        padding: 12px 20px;
    }

    .services-checklist .row {
        margin: 0;
    }

    .services-checklist [class*='col-'] {
        padding: 0;
    }
}


/* Executive Team Styles */
.executive-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

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

.executive-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.executive-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.executive-info h3 {
  margin-bottom: 5px;
  color: #051922;
}

.executive-info .title {
  color: #6495ED;
  font-weight: 600;
}

/* Team Section Styles */
.team-photo {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery Styles */
.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Location Card Styles */
.location-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 250px; /* Fixed height */
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

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

.location-icon {
  font-size: 40px;
  color: #6495ED;
  margin-bottom: 20px;
}

.location-card h3 {
  color: #051922;
  margin-bottom: 15px;
}

.location-card p {
  margin-bottom: 10px;
}

.contact-info {
  margin-top: auto; /* Push contact info to bottom */
  padding-bottom: 20px;
}

.contact-info p {
  margin-bottom: 5px;
  color: #555;
}

.contact-info i {
  color: #6495ED;
  margin-right: 8px;
}

/* For responsive design */
@media (max-width: 768px) {
  .location-card {
    height: auto;
    min-height: 250px;
  }
}