:root {
            --primary-color: #012954; 
            --secondary-color: #2c3e50;
            --accent-color: #f8f9fa;
            --text-color: #333;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
            background-color: #f9f9f9;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Merriweather', serif;
            font-weight: 700;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            z-index: 1;
        }
        
        .top-bar {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner-1.jpg');
            background-size: cover;
            background-position: center;
            padding: 200px 0;
            color: white;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            margin: 15px auto;
        }
        
        .service-card {
            border: none;
            border-radius: 10px;
            transition: transform 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        
        /*.service-card:hover {*/
        /*    transform: translateY(-10px);*/
        /*}*/
        
        /*.service-icon {*/
        /*    font-size: 2.5rem;*/
        /*    color: var(--primary-color);*/
        /*    margin-bottom: 20px;*/
        /*}*/
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
            background-color: #1c4463;
        }
        
        .service-card:hover .service-icon,
        .service-card:hover h4,
        .service-card:hover p {
            color: white;
        }
        
        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: var(--secondary-color);
            transition: all 0.4s ease;
            display: inline-block;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.2) rotate(10deg);
        }
        
        .service-card h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            transition: all 0.4s ease;
        }
        
        .service-card p {
            line-height: 1.7;
            transition: all 0.4s ease;
        }
        
        .service-card .read-more {
            display: inline-block;
            margin-top: 20px;
            font-weight: 600;
            color: var(--secondary-color);
            transition: all 0.3s ease;
        }
        
        .service-card:hover .read-more {
            color: white;
        }
        /**/
        
        .testimonial-card {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin: 15px;
        }
        
        .testimonial-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .counter-section {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
        }
        
        .counter {
            font-size: 3rem;
            font-weight: 700;
        }
        
        .blog-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .blog-card img {
            height: 200px;
            object-fit: cover;
        }
        
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: #2e8b57;
            border-color: #2e8b57;
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
        }
        
        .contact-info {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 0;
        }
        
        /* Search Section Styles */
        .search-section {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            margin: 40px auto;
            max-width: 800px;
        }
        
        .search-title {
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .search-input {
            flex: 1;
            min-width: 250px;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .search-btn:hover {
            background-color: #2e8b57;
        }
        
        /* Owl Carousel Customization */
        .owl-carousel .item {
            padding: 15px;
        }
        
        .owl-nav {
            text-align: center;
            margin-top: 30px;
        }
        
        .owl-nav button {
/*            background: var(--primary-color) !important;*/
            color: white !important;
            width: 40px;
            height: 40px;
            border-radius: 50% !important;
            margin: 0 10px;
            font-size: 20px !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-section {
            padding: 80px 0;
            background-color: var(--accent-color);
        }
        
        .carousel-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .carousel-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .carousel-content {
            padding: 20px;
        }
        
        @media (max-width: 768px) {
            .search-form {
                flex-direction: column;
            }
            
            .search-input, .search-btn {
                width: 100%;
            }
            
            .hero-section {
                padding: 100px 0;
            }
        }


.carousel-caption {
    background: rgba(0, 0, 0, 0.35);
    bottom: 0;
}
.owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
}

.owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: -webkit-auto;
    -webkit-tap-highlight-color: transparent;
}
.owl-carousel, .owl-carousel .owl-item {
    /* -webkit-tap-highlight-color: transparent; */
    position: relative;
}
.owl-carousel .owl-nav button.owl-prev {
    left: 0;
    right: auto;
    float: left;
    transform: rotate(90deg);
}
.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: 0;
    float: right;
    transform: rotate(-90deg);
}
.owl-next span, .owl-prev span {
    font-size: 0;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    position: absolute;
    right: 0;
    background: #003366 center center no-repeat
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 17px;
    padding: 15px !important;
    font-size: 0px;
/*    transform: rotate(-90deg);*/
    border-radius: 50%;
    box-shadow: 0 0 5px 3px rgb(0 0 0 / 15%);
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  /*margin-bottom: 20px;*/
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  /*padding-top: 5px;*/
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #0a3664;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #0a3664;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-bottom: 3rem
}

@media (max-width: 992px) {
  .breadcrumbs {
/*    margin-top: 68px;*/
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# For Screen
--------------------------------------------------------------*/
label.error {
    color: red;
    display: block;
    font-size: .875em;
}
.form-control.error {
    border-color: red!important;
}

@media (min-width: 992px) {
    .logo-container {
        background-color: #FFFFFF;
        margin: 0px 0px -50px 0px;
        padding: 10px 5px 10px 5px;
        border-radius: 0px 0px 10px 10px;
        box-shadow: 0px 10px 30px 0px rgba(31.500000000000014, 31.500000000000014, 31.500000000000014, 0.15);
    }
    .breadcrumbs {
        background: transparent;
    }
}

.dropdown-item:focus, .dropdown-item:hover, .dropdown-item.active, .dropdown-item:active {
    color: #ffffff;
    background: #012954;
}

#main blockquote {
    padding-left: 20px!important;
    padding-right: 8px!important;
    border-left-width: 5px!important;
    font-style: italic;
    font-family: Georgia, Times, "Times New Roman", serif;
    /*padding: 1px 0;*/
    border-style: solid;
    border-color: #ccc;
    border-width: 0;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 40px;
    margin-inline-end: 40px;
}