/**
* Template Name: BizPage
* Template URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #666666; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #333333; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #18d26e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #18d26e; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #666666; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #18d26e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 8px;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 85px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 40px 0 10px 0;
}

.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  line-height: 0;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

.featured-services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About Section - RS Sungrow Ventures
--------------------------------------------------------------*/

.about{
  padding:100px 0;
  background:#FFF8F0;
}

/* Heading */

.about .section-title{
  text-align:center;
  max-width:800px;
  margin:0 auto 70px;
}

.about .badge-title{
  display:inline-block;
  background:#FFE9CF;
  color:#F7941D;
  padding:8px 20px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:18px;
  text-transform:uppercase;
}

.about .section-title h2{
  font-size:46px;
  font-weight:800;
  color:#0B3B67;
  margin-bottom:18px;
  line-height:1.2;
}

.about .section-title p{
  font-size:17px;
  color:#6E7684;
  line-height:1.8;
  max-width:720px;
  margin:auto;
}

/* Left Content */

.about h3{
  font-size:36px;
  font-weight:700;
  color:#0B3B67;
  margin-bottom:20px;
}

.about p{
  color:#666;
  font-size:16px;
  line-height:1.9;
}

/* List */

.about-list{
  list-style:none;
  padding:0;
  margin:30px 0;
}

.about-list li{
  display:flex;
  align-items:flex-start;
  margin-bottom:18px;
  font-size:16px;
  color:#444;
}

.about-list li i{
  color:#F7941D;
  font-size:20px;
  margin-right:12px;
  margin-top:2px;
}

/* Button */

.about-btn{
  display:inline-block;
  margin-top:10px;
  padding:14px 34px;
  background:#F7941D;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border-radius:40px;
  transition:.35s;
  box-shadow:0 10px 25px rgba(247,148,29,.25);
}

.about-btn:hover{
  background:#0B3B67;
  color:#fff;
  transform:translateY(-3px);
}

/* Cards */

.about-card{
  background:#fff;
  border-radius:18px;
  padding:35px 25px;
  text-align:center;
  height:100%;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
  transition:.35s;
  border:1px solid #F2F2F2;
}

.about-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.about-card i{
  width:78px;
  height:78px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0 auto 20px;
  background:#FFF3E6;
  border-radius:50%;
  color:#F7941D;
  font-size:32px;
}

.about-card h4{
  font-size:24px;
  color:#0B3B67;
  font-weight:700;
  margin-bottom:12px;
}

.about-card p{
  color:#666;
  font-size:15px;
  line-height:1.7;
  margin:0;
}

/* Space between cards */

.about .row.g-4{
  row-gap:25px;
}

/* Responsive */

@media (max-width:991px){

.about{
padding:80px 0;
}

.about .section-title{
margin-bottom:50px;
}

.about .section-title h2{
font-size:34px;
}

.about h3{
font-size:28px;
text-align:center;
margin-top:20px;
}

.about p{
text-align:center;
}

.about-list li{
justify-content:center;
text-align:left;
}

.about-btn{
display:block;
width:230px;
margin:30px auto 40px;
text-align:center;
}

.about-card{
margin-bottom:15px;
}

}

@media (max-width:576px){

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

.about .badge-title{
font-size:12px;
}

.about-card{
padding:28px 20px;
}

.about-card h4{
font-size:20px;
}

.about-card i{
width:65px;
height:65px;
font-size:28px;
}

}
 /* Stats Section */


.stats-section {
  background: #083b66;
  padding: 70px 0;
}

.stat-box {
  text-align: center;
}

.stat-box h2 {
  color: #ff9800;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-box p {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 991px) {

  .stat-box {
    margin-bottom: 30px;
  }

  .stat-box h2 {
    font-size: 42px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*==============================
Gallery Section
==============================*/

.gallery{

  padding:100px 0;
  
  background:#ffffff;
  
  }
  
  .gallery-badge{
  
  display:inline-block;
  
  padding:8px 18px;
  
  background:#FFF1E2;
  
  color:#F7941D;
  
  border-radius:30px;
  
  font-size:13px;
  
  font-weight:700;
  
  letter-spacing:1px;
  
  margin-bottom:18px;
  
  }
  
  .gallery h2{
  
  font-size:46px;
  
  font-weight:800;
  
  color:#0B3B67;
  
  margin-bottom:15px;
  
  }
  
  .gallery p{
  
  max-width:700px;
  
  margin:auto;
  
  color:#6c757d;
  
  font-size:17px;
  
  line-height:1.8;
  
  margin-bottom:60px;
  
  }
  
  .gallery-card{
  
  position:relative;
  
  overflow:hidden;
  
  border-radius:18px;
  
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  
  cursor:pointer;
  
  }
  
  .gallery-card img{
  
  width:100%;
  
  height:280px;
  
  object-fit:cover;
  
  transition:.5s;
  
  }
  
  .gallery-overlay{
  
  position:absolute;
  
  left:0;
  
  right:0;
  
  bottom:0;
  
  padding:25px;
  
  background:linear-gradient(to top,
  rgba(11,59,103,.95),
  rgba(11,59,103,.2),
  transparent);
  
  color:#fff;
  
  transform:translateY(40px);
  
  opacity:0;
  
  transition:.4s;
  
  }
  
  .gallery-card:hover img{
  
  transform:scale(1.08);
  
  }
  
  .gallery-card:hover .gallery-overlay{
  
  opacity:1;
  
  transform:translateY(0);
  
  }
  
  .gallery-overlay h4{
  
  font-size:22px;
  
  font-weight:700;
  
  margin-bottom:6px;
  
  }
  
  .gallery-overlay p{
  
  margin:0;
  
  font-size:15px;
  
  color:#ddd;
  
  }
  
  .gallery-overlay span{
  
  display:inline-block;
  
  margin-top:8px;
  
  padding:6px 15px;
  
  background:#F7941D;
  
  border-radius:30px;
  
  font-size:13px;
  
  font-weight:600;
  
  color:#fff;
  
  }
  
  .gallery-overlay a{
  
  position:absolute;
  
  right:20px;
  
  top:20px;
  
  width:45px;
  
  height:45px;
  
  border-radius:50%;
  
  background:#fff;
  
  display:flex;
  
  align-items:center;
  
  justify-content:center;
  
  text-decoration:none;
  
  color:#0B3B67;
  
  font-size:22px;
  
  transition:.3s;
  
  }
  
  .gallery-overlay a:hover{
  
  background:#F7941D;
  
  color:#fff;
  
  transform:rotate(90deg);
  
  }
  
  @media(max-width:991px){
  
  .gallery h2{
  
  font-size:34px;
  
  }
  
  .gallery-card img{
  
  height:240px;
  
  }
  
  }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
/* Testimonial Section */
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Square Card */
.testimonial-card {
  width: 100%;
  aspect-ratio: 1 / 1; /* Perfect Square */
  background: #fff;
  border: 1px solid #e8d9b5;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(139,69,19,0.2);
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
}

.testimonial-card h4 {
  color: #5c3b14;
  font-size: 18px;
  margin: 5px 0;
}/* TESTIMONIAL SECTION */
.testimonial {
    background: #f8fbff;
    padding: 60px 0;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-header h2 {
    color: #0b3d6d;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonial-header p {
    color: #6b7280;
    font-size: 16px;
}

/* CONTAINER - SINGLE HORIZONTAL LINE */
.testimonial-container,
.testimonial-carousel {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-container::-webkit-scrollbar,
.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

/* CARD */
.testimonial-card {
    flex: 0 0 340px; /* Fixed small rectangle width */
    min-height: 220px;
    background: #ffffff;
    border: 1px solid #e5eef6;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(11, 61, 109, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(11, 61, 109, 0.15);
    border-color: #2E8B57;
}

/* STARS */
.stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 15px;
}

/* REVIEW TEXT */
.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 25px;
}

/* CLIENT INFO */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2E8B57;
}

.client-details h4 {
    color: #0b3d6d;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.client-details span {
    color: #6b7280;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 280px;
        min-height: 200px;
        padding: 20px;
    }

    .testimonial-header h2 {
        font-size: 30px;
    }

    .review-text {
        font-size: 14px;
    }
}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  --default-color: #ffffff;
}

.team .member {
  text-align: center;
  position: relative;
  height: 100%;
}

.team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

.team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

.team .member h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: 0.3s;
  color: var(--default-color);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Latest Projects
--------------------------------------------------------------*/

.project-badge{
  display:inline-block;
  padding:8px 18px;
  background:#FFF1DE;
  color:#F7941D;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:15px;
  }
  
  .project-card{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  height:340px;
  box-shadow:0 12px 35px rgba(0,0,0,.12);
  transition:.4s;
  background:#fff;
  }
  
  .project-card:hover{
  transform:translateY(-8px);
  }
  
  .project-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
  }
  
  .project-card:hover img{
  transform:scale(1.08);
  }
  
  .project-card::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:70%;
  background:linear-gradient(to top,
  rgba(8,30,52,.92),
  rgba(8,30,52,.25),
  transparent);
  z-index:1;
  }
  
  .capacity{
  position:absolute;
  top:18px;
  right:18px;
  background:#F7941D;
  color:#fff;
  padding:6px 14px;
  font-size:12px;
  font-weight:700;
  border-radius:30px;
  z-index:3;
  }
  
  .project-overlay{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  z-index:2;
  color:#fff;
  }
  
  .project-overlay h4{
  font-size:22px;
  font-weight:700;
  margin-bottom:10px;
  }
  
  .project-overlay p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:15px;
  color:#E8E8E8;
  }
  
  .location{
  font-size:14px;
  font-weight:500;
  display:flex;
  align-items:center;
  }
  
  .location i{
  color:#F7941D;
  margin-right:6px;
  font-size:16px;
  }
  
  @media(max-width:991px){
  
  .project-card{
  height:300px;
  }
  
  .project-overlay h4{
  font-size:20px;
  }
  
  }
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Modern FAQ
--------------------------------------------------------------*/

.faq-modern{
  background:#FFF8F0;
  padding:90px 0;
  }
  
  .faq-badge{
  display:inline-block;
  padding:8px 18px;
  background:#FFECD7;
  color:#F7941D;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:20px;
  text-transform:uppercase;
  }
  
  .faq-modern h2{
  font-size:46px;
  font-weight:800;
  color:#0B3B67;
  margin-bottom:20px;
  line-height:1.2;
  }
  
  .faq-modern p{
  font-size:17px;
  color:#6E7684;
  line-height:1.8;
  margin-bottom:30px;
  }
  
  .faq-btn{
  display:inline-block;
  padding:14px 30px;
  background:#F7941D;
  color:#fff;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
  }
  
  .faq-btn:hover{
  background:#0B3B67;
  color:#fff;
  transform:translateY(-3px);
  }
  
  .faq-container{
  display:flex;
  flex-direction:column;
  gap:18px;
  }
  
  .faq-item{
  background:#fff;
  border-radius:14px;
  padding:0;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  overflow:hidden;
  transition:.3s;
  }
  
  .faq-item:hover{
  transform:translateY(-3px);
  }
  
  .faq-item h3{
  padding:22px 60px 22px 25px;
  font-size:18px;
  font-weight:700;
  color:#0B3B67;
  margin:0;
  cursor:pointer;
  position:relative;
  }
  
  .faq-toggle{
  position:absolute;
  right:25px;
  top:24px;
  font-size:18px;
  color:#F7941D;
  cursor:pointer;
  transition:.3s;
  }
  
  .faq-content{
  padding:0 25px;
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease,padding .4s ease;
  }
  
  .faq-item.faq-active .faq-content{
  max-height:220px;
  padding:0 25px 25px;
  }
  
  .faq-item.faq-active .faq-toggle{
  transform:rotate(180deg);
  }
  
  .faq-content p{
  margin:0;
  font-size:15px;
  color:#666;
  line-height:1.8;
  }
  
  @media(max-width:991px){
  
  .faq-modern{
  text-align:center;
  }
  
  .faq-modern h2{
  font-size:34px;
  }
  
  .faq-item h3{
  font-size:16px;
  padding-right:50px;
  text-align:left;
  }
  
  .faq-content{
  text-align:left;
  }
  
  }
/*--------------------------------------------------------------
  Contact Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Contact Quote Section
--------------------------------------------------------------*/

.contact-section{

  padding:100px 0;
  
  background:linear-gradient(135deg,#FFF8EF,#FFFDF9);
  
  }
  
  .contact-badge{
  
  display:inline-block;
  
  padding:8px 18px;
  
  background:#FFECD7;
  
  color:#F7941D;
  
  border-radius:30px;
  
  font-size:13px;
  
  font-weight:700;
  
  letter-spacing:1px;
  
  margin-bottom:18px;
  
  }
  
  .contact-section h2{
  
  font-size:50px;
  
  font-weight:800;
  
  color:#0B3B67;
  
  line-height:1.2;
  
  margin-bottom:20px;
  
  }
  
  .contact-section h2 span{
  
  display:block;
  
  color:#F7941D;
  
  }
  
  .contact-section p{
  
  font-size:17px;
  
  color:#666;
  
  line-height:1.9;
  
  margin-bottom:35px;
  
  }
  
  .contact-feature{
  
  display:flex;
  
  align-items:center;
  
  margin-bottom:18px;
  
  font-size:17px;
  
  font-weight:500;
  
  }
  
  .contact-feature i{
  
  color:#1FA84B;
  
  font-size:22px;
  
  margin-right:12px;
  
  }
  
  .quote-box{
  
  background:#fff;
  
  padding:45px;
  
  border-radius:25px;
  
  box-shadow:0 20px 60px rgba(0,0,0,.08);
  
  }
  
  .quote-box h3{
  
  font-size:34px;
  
  font-weight:700;
  
  color:#0B3B67;
  
  margin-bottom:35px;
  
  }
  
  .quote-box label{
  
  font-weight:600;
  
  margin-bottom:8px;
  
  display:block;
  
  color:#0B3B67;
  
  }
  
  .quote-box .form-control,
  
  .quote-box .form-select{
  
  height:55px;
  
  border-radius:14px;
  
  border:1px solid #d9e0e7;
  
  box-shadow:none;
  
  padding-left:18px;
  
  }
  
  .quote-box .form-control:focus,
  
  .quote-box .form-select:focus{
  
  border-color:#F7941D;
  
  box-shadow:0 0 0 .2rem rgba(247,148,29,.15);
  
  }
  
  .quote-btn{
  
  width:100%;
  
  height:58px;
  
  border:none;
  
  border-radius:15px;
  
  background:linear-gradient(90deg,#F7941D,#FFAE42);
  
  color:#fff;
  
  font-size:19px;
  
  font-weight:700;
  
  transition:.35s;
  
  }
  
  .quote-btn:hover{
  
  transform:translateY(-3px);
  
  box-shadow:0 15px 30px rgba(247,148,29,.30);
  
  }
  
  .quote-btn i{
  
  margin-right:10px;
  
  }
  
  @media(max-width:991px){
  
  .contact-section{
  
  padding:80px 0;
  
  }
  
  .contact-section h2{
  
  font-size:38px;
  
  text-align:center;
  
  }
  
  .contact-section p{
  
  text-align:center;
  
  }
  
  .contact-feature{
  
  justify-content:center;
  
  }
  
  .quote-box{
  
  margin-top:20px;
  
  padding:30px;
  
  }
  
  .quote-box h3{
  
  font-size:28px;
  
  text-align:center;
  
  }
  
  }
/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .read-more a {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
  Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* .starter-section {
  /* Add your styles here 
} */

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}
/*================ Vendors Section ================*/

.vendors-section{

  padding:90px 0 70px;
  
  background:#fff;
  
  overflow:hidden;
  
  }
  
  .vendor-badge{
  
  display:inline-block;
  
  padding:8px 18px;
  
  background:#FFF0DE;
  
  color:#F7941D;
  
  border-radius:30px;
  
  font-size:13px;
  
  font-weight:700;
  
  letter-spacing:1px;
  
  margin-bottom:18px;
  
  }
  
  .vendors-section h2{
  
  font-size:46px;
  
  font-weight:800;
  
  color:#0B3B67;
  
  margin-bottom:15px;
  
  }
  
  .vendors-section p{
  
  font-size:17px;
  
  max-width:700px;
  
  margin:auto;
  
  color:#6B7280;
  
  line-height:1.8;
  
  }
  
  .vendor-slider{
  
  margin-top:60px;
  
  overflow:visible;
  
  position:relative;
  
  }
  
  .vendor-slider::before,
  
  .vendor-slider::after{
  
  content:"";
  
  position:absolute;
  
  top:0;
  
  width:120px;
  
  height:100%;
  
  z-index:5;
  
  }
  
  .vendor-slider::before{
  
  left:0;
  
  background:linear-gradient(to right,#fff,transparent);
  
  }
  
  .vendor-slider::after{
  
  right:0;
  
  background:linear-gradient(to left,#fff,transparent);
  
  }
  
  .vendor-track{
  
  display:flex;
  
  align-items:center;
  
  width:max-content;
  
  animation:vendorScroll 28s linear infinite;
  
  }
  
  .vendor-track:hover{
  
  animation-play-state:paused;
  
  }
  
  .vendor-logo{
  
  width:230px;
  
  height:120px;
  
  display:flex;
  
  justify-content:center;
  
  align-items:center;
  
  margin:0 18px;
  
  background:#fff;
  
  border-radius:18px;
  
  border:1px solid #ececec;
  
  transition:.35s;
  
  box-shadow:0 8px 25px rgba(0,0,0,.05);
  
  }
  
  .vendor-logo:hover{
  
  transform:translateY(-8px);
  
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  
  }
  
  .vendor-logo img{
  
  max-width:160px;
  
  max-height:70px;
  
  opacity:.75;
  
  transition:.35s;
  
  }
  
  .vendor-logo:hover img{
  
  filter:none;
  
  opacity:1;
  
  transform:scale(1.05);
  
  }
  
  @keyframes vendorScroll{
  
  0%{
  
  transform:translateX(0);
  
  }
  
  100%{
  
  transform:translateX(-50%);
  
  }
  
  }
  
  @media(max-width:991px){
  
  .vendors-section h2{
  
  font-size:34px;
  
  }
  
  .vendor-logo{
  
  width:180px;
  
  height:95px;
  
  }
  
  .vendor-logo img{
  
  max-width:120px;
  
  }

  }
/*====================================================
CONTACT HERO
=====================================================*/

.contact-hero{
  background:linear-gradient(135deg,#0B3D6D,#114E85);
  padding:140px 0 90px;
  text-align:center;
  color:#fff;
  position:relative;
  overflow:hidden;
}

.contact-hero::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(255,255,255,.05);
  border-radius:50%;
  top:-180px;
  right:-180px;
}

.contact-hero h1{
  font-size:58px;
  font-weight:800;
  margin-bottom:20px;
}

.contact-hero p{
  max-width:700px;
  margin:auto;
  font-size:18px;
  line-height:30px;
  opacity:.95;
}

.breadcrumb-contact{
  margin-top:30px;
}

.breadcrumb-contact a{
  color:#FFD166;
  text-decoration:none;
  font-weight:600;
}

.breadcrumb-contact span{
  color:#fff;
  margin:0 8px;
}


/*====================================================
CONTACT INFO
=====================================================*/

.contact-info-section{
  padding:90px 0;
  background:#F8FAFD;
}

.contact-card{
  background:#fff;
  border-radius:18px;
  padding:35px;
  text-align:center;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
  transition:.35s;
  height:100%;
}

.contact-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.contact-icon{
  width:75px;
  height:75px;
  margin:auto;
  border-radius:50%;
  background:linear-gradient(135deg,#FDB813,#FF9800);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:30px;
  margin-bottom:25px;
}

.contact-card h4{
  color:#0B3D6D;
  font-weight:700;
  margin-bottom:15px;
}

.contact-card p{
  color:#666;
  line-height:28px;
  margin-bottom:18px;
}

.contact-card a{
  color:#FF9800;
  font-weight:700;
  text-decoration:none;
}

.contact-card a:hover{
  color:#0B3D6D;
}


/*====================================================
FORM + MAP
=====================================================*/

.contact-main-section{
  padding:100px 0;
  background:#fff;
}


/*====================================================
FORM
=====================================================*/

.contact-form-box{
  background:#fff;
  padding:45px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-small-title{
  display:inline-block;
  background:#FFF3E0;
  color:#FF9800;
  padding:8px 18px;
  border-radius:50px;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:20px;
}

.contact-form-box h2{
  color:#0B3D6D;
  font-size:38px;
  font-weight:800;
  margin-bottom:30px;
}

.contact-form-box label{
  color:#0B3D6D;
  font-weight:600;
  margin-bottom:8px;
}

.contact-form-box label span{
  color:red;
}

.contact-form-box .form-control{
  height:56px;
  border-radius:12px;
  border:1px solid #d9e2ef;
  box-shadow:none;
}

.contact-form-box textarea.form-control{
  height:170px;
  resize:none;
  padding-top:15px;
}

.contact-form-box .form-control:focus{
  border-color:#FF9800;
  box-shadow:0 0 0 .18rem rgba(255,152,0,.18);
}


/*====================================================
BUTTON
=====================================================*/

.contact-btn{
  width:100%;
  border:none;
  background:linear-gradient(135deg,#FDB813,#FF9800);
  color:#fff;
  padding:17px;
  border-radius:12px;
  font-size:18px;
  font-weight:700;
  transition:.3s;
}

.contact-btn:hover{
  background:linear-gradient(135deg,#0B3D6D,#155A9C);
}


/*====================================================
MAP
=====================================================*/

.contact-map-box{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  height:100%;
}

.map-title{
  background:#0B3D6D;
  color:#fff;
  padding:22px;
  font-size:22px;
  font-weight:700;
}

.map-title i{
  color:#FDB813;
  margin-right:10px;
}

.contact-map-box iframe{
  width:100%;
  height:420px;
  border:none;
}


/*====================================================
LOCATION
=====================================================*/

.location-info{
  padding:30px;
}

.location-info h5{
  color:#0B3D6D;
  font-weight:700;
  margin-bottom:15px;
}

.location-info p{
  color:#666;
  line-height:28px;
}

.location-contact{
  margin-top:25px;
}

.location-contact div{
  margin-bottom:15px;
  color:#444;
  font-weight:500;
}

.location-contact i{
  color:#FF9800;
  margin-right:12px;
}


/*====================================================
RESPONSIVE
=====================================================*/

@media(max-width:991px){

.contact-hero{
  padding:120px 0 70px;
}

.contact-hero h1{
  font-size:42px;
}

.contact-form-box{
  margin-bottom:35px;
}

.contact-map-box iframe{
  height:350px;
}

}

@media(max-width:576px){

.contact-hero h1{
  font-size:34px;
}

.contact-form-box{
  padding:30px;
}

.contact-card{
  padding:28px;
}

.contact-form-box h2{
  font-size:30px;
}

}
/*====================================================
FORM FIELDS
====================================================*/

.contact-form-box form{
  margin-top:30px;
}

.contact-form-box .form-control{
  background:#ffffff;
  border:2px solid #e7eef7;
  border-radius:12px;
  padding:15px 18px;
  font-size:15px;
  color:#1b1b1b;
  transition:all .35s ease;
  box-shadow:none;
}

.contact-form-box .form-control::placeholder{
  color:#9aa8b6;
}

.contact-form-box .form-control:hover{
  border-color:#d5e3f4;
}

.contact-form-box .form-control:focus{
  border-color:#ff9800;
  box-shadow:0 0 0 4px rgba(255,152,0,.15);
  background:#fff;
}

.contact-form-box textarea.form-control{
  min-height:180px;
  resize:vertical;
}


/*====================================================
SEND BUTTON
====================================================*/

.contact-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  height:58px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,#ff9800,#ff7a00);
  color:#fff;
  font-size:17px;
  font-weight:700;
  cursor:pointer;
  transition:.35s;
  box-shadow:0 12px 25px rgba(255,152,0,.35);
}

.contact-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 35px rgba(255,152,0,.45);
  background:linear-gradient(135deg,#0B3D6D,#14538a);
}

.contact-btn i{
  font-size:18px;
}


/*====================================================
MAP SECTION
====================================================*/

.contact-map-box{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 15px 45px rgba(0,0,0,.08);
  height:100%;
}

.map-title{
  display:flex;
  align-items:center;
  gap:12px;
  background:linear-gradient(135deg,#0B3D6D,#14538a);
  color:#fff;
  padding:22px 28px;
  font-size:22px;
  font-weight:700;
}

.map-title i{
  color:#ffb100;
  font-size:22px;
}

.contact-map-box iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
}


/*====================================================
LOCATION INFORMATION
====================================================*/

.location-info{
  padding:30px;
}

.location-info h5{
  color:#0B3D6D;
  font-size:24px;
  font-weight:700;
  margin-bottom:15px;
}

.location-info p{
  color:#666;
  line-height:28px;
  margin-bottom:25px;
}

.location-contact{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.location-contact div{
  display:flex;
  align-items:center;
  gap:14px;
  color:#444;
  font-weight:500;
  font-size:15px;
}

.location-contact i{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#fff3e4;
  color:#ff9800;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  flex-shrink:0;
}
/*====================================================
PREMIUM ANIMATIONS
====================================================*/

.contact-card,
.contact-form-box,
.contact-map-box{
    transition:all .4s ease;
}

.contact-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(11,61,109,.12);
}

.contact-form-box:hover{
    box-shadow:0 25px 60px rgba(11,61,109,.10);
}

.contact-map-box:hover{
    box-shadow:0 25px 60px rgba(11,61,109,.10);
}


/*====================================================
BACKGROUND DECORATION
====================================================*/

.contact-main-section{
    position:relative;
    overflow:hidden;
}

.contact-main-section::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(255,152,0,.06);
    top:-140px;
    left:-140px;
}

.contact-main-section::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(11,61,109,.05);
    bottom:-130px;
    right:-130px;
}


/*====================================================
FORM LABELS
====================================================*/

.contact-form-box label{
    font-size:15px;
    font-weight:600;
    color:#0B3D6D;
    margin-bottom:8px;
    display:block;
}

.contact-form-box label span{
    color:#ff4b4b;
}


/*====================================================
INPUT ICON EFFECT
====================================================*/

.contact-form-box .form-control{
    position:relative;
}

.contact-form-box .form-control:focus{
    transform:translateY(-2px);
}


/*====================================================
CONTACT CARD TITLE
====================================================*/

.contact-card h4{
    transition:.3s;
}

.contact-card:hover h4{
    color:#ff9800;
}


/*====================================================
LINK HOVER
====================================================*/

.contact-card a{
    display:inline-flex;
    align-items:center;
    gap:5px;
    transition:.3s;
}

.contact-card a i{
    transition:.3s;
}

.contact-card:hover a{
    color:#0B3D6D;
}

.contact-card:hover a i{
    transform:translateX(5px);
}


/*====================================================
MAP HOVER
====================================================*/

.contact-map-box iframe{
    transition:.4s;
}

.contact-map-box:hover iframe{
    filter:brightness(1.03);
}


/*====================================================
ICON ANIMATION
====================================================*/

.contact-icon{
    transition:.35s;
}

.contact-card:hover .contact-icon{
    transform:rotate(10deg) scale(1.08);
}


/*====================================================
LOCATION ICONS
====================================================*/

.location-contact i{
    transition:.3s;
}

.location-contact div:hover i{
    background:#ff9800;
    color:#fff;
}


/*====================================================
SMOOTH BUTTON EFFECT
====================================================*/

.contact-btn{
    position:relative;
    overflow:hidden;
}

.contact-btn::before{
    content:"";
    position:absolute;
    width:0;
    height:100%;
    left:0;
    top:0;
    background:rgba(255,255,255,.18);
    transition:.45s;
}

.contact-btn:hover::before{
    width:100%;
}


/*====================================================
RESPONSIVE (TABLET)
====================================================*/

@media(max-width:991px){

.contact-hero{
    text-align:center;
    padding:120px 0 80px;
}

.contact-card{
    margin-bottom:25px;
}

.contact-map-box{
    margin-top:30px;
}

.location-info{
    padding:25px;
}

}


/*====================================================
RESPONSIVE (MOBILE)
====================================================*/

@media(max-width:768px){

.contact-hero h1{
    font-size:38px;
}

.contact-hero p{
    font-size:16px;
}

.contact-form-box{
    padding:30px;
}

.contact-map-box iframe{
    height:320px;
}

.map-title{
    font-size:20px;
}

.location-info h5{
    font-size:22px;
}

.location-contact div{
    font-size:14px;
}

.contact-card{
    padding:28px;
}

.contact-icon{
    width:65px;
    height:65px;
    font-size:24px;
}

}
/*====================================================
LOADING ANIMATION
====================================================*/

.contact-btn.loading{
  pointer-events:none;
  opacity:.8;
}

.contact-btn.loading::after{
  content:"";
  width:18px;
  height:18px;
  border:3px solid rgba(255,255,255,.3);
  border-top-color:#fff;
  border-radius:50%;
  animation:contactSpin .8s linear infinite;
  margin-left:10px;
}

@keyframes contactSpin{
  from{
      transform:rotate(0deg);
  }
  to{
      transform:rotate(360deg);
  }
}


/*====================================================
SUCCESS / ERROR MESSAGE
====================================================*/

.contact-success{
  background:#E8F8EE;
  color:#1D7A46;
  border-left:5px solid #1D7A46;
  padding:15px 20px;
  border-radius:10px;
  margin-top:20px;
  display:none;
}

.contact-error{
  background:#FDECEC;
  color:#C62828;
  border-left:5px solid #C62828;
  padding:15px 20px;
  border-radius:10px;
  margin-top:20px;
  display:none;
}


/*====================================================
FADE IN ANIMATION
====================================================*/

@keyframes fadeUp{

  from{
      opacity:0;
      transform:translateY(40px);
  }

  to{
      opacity:1;
      transform:translateY(0);
  }

}

.contact-card,
.contact-form-box,
.contact-map-box{
  animation:fadeUp .8s ease both;
}


/*====================================================
SMOOTH IMAGE EFFECT
====================================================*/

.contact-map-box iframe{
  transition:.5s ease;
}

.contact-map-box:hover iframe{
  transform:scale(1.01);
}


/*====================================================
CUSTOM SCROLLBAR
====================================================*/

::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#EEF3F8;
}

::-webkit-scrollbar-thumb{
  background:#0B3D6D;
  border-radius:50px;
}

::-webkit-scrollbar-thumb:hover{
  background:#FF9800;
}


/*====================================================
TEXT SELECTION
====================================================*/

::selection{
  background:#FF9800;
  color:#fff;
}


/*====================================================
FOCUS ACCESSIBILITY
====================================================*/

button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus{
  outline:none;
}


/*====================================================
UTILITY CLASSES
====================================================*/

.text-orange{
  color:#FF9800 !important;
}

.text-blue{
  color:#0B3D6D !important;
}

.bg-orange{
  background:#FF9800 !important;
}

.bg-blue{
  background:#0B3D6D !important;
}
/*====================================================
SECTION SPACING
====================================================*/

.contact-hero,
.contact-info-section,
.contact-main-section{
  position:relative;
  z-index:1;
}
/*====================================================
CARD BORDER EFFECT
====================================================*/

.contact-card::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:4px;
  background:linear-gradient(90deg,#FF9800,#FFC107);
  transition:.4s;
}

.contact-card{
  position:relative;
  overflow:hidden;
}

.contact-card:hover::after{
  width:100%;
}

/*====================================================
FINAL MOBILE OPTIMIZATION
====================================================*/

@media(max-width:576px){

.contact-hero{
  padding:90px 0 60px;
}

.contact-hero h1{
  font-size:30px;
  line-height:1.3;
}

.contact-hero p{
  font-size:15px;
  line-height:26px;
}

.contact-card{
  padding:22px;
}

.contact-form-box{
  padding:25px;
}

.contact-form-box h2{
  font-size:28px;
}

.contact-btn{
  font-size:16px;
  height:54px;
}

.map-title{
  font-size:18px;
  padding:18px;
}

.contact-map-box iframe{
  height:280px;
}

.location-info{
  padding:20px;
}

.location-info h5{
  font-size:20px;
}

.location-contact div{
  font-size:13px;
}

}
/*=========================================
LATEST PROJECTS
==========================================*/

#projects{
  background:#f8fbff;
  padding:100px 0;
  position:relative;
  overflow:hidden;
}

#projects::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(255,193,7,.08);
  border-radius:50%;
  top:-250px;
  right:-200px;
  filter:blur(80px);
}

#projects::after{
  content:"";
  position:absolute;
  width:450px;
  height:450px;
  background:rgba(13,110,253,.05);
  border-radius:50%;
  bottom:-220px;
  left:-150px;
  filter:blur(90px);
}

.project-badge{

  display:inline-block;
  background:#FFF3CD;
  color:#F59E0B;
  padding:10px 22px;
  border-radius:50px;
  font-size:13px;
  font-weight:700;
  letter-spacing:2px;
  margin-bottom:18px;
  text-transform:uppercase;

}

#projects h2{

  font-size:42px;
  font-weight:800;
  color:#083b66;
  margin-bottom:18px;

}

#projects p{

  color:#6c757d;
  max-width:760px;
  margin:auto;
  line-height:1.8;

}

/*==============================
PROJECT CARD
==============================*/

.project-card{

  position:relative;
  overflow:hidden;
  border-radius:22px;
  background:#fff;
  transition:.45s;
  box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.project-card:hover{

  transform:translateY(-12px);

  box-shadow:0 35px 70px rgba(0,0,0,.18);

}

.project-img{

  position:relative;

  overflow:hidden;

}

.project-img img{

  width:100%;

  height:320px;

  object-fit:cover;

  transition:1s;

}

.project-card:hover img{

  transform:scale(1.12);

}

/* Floating Shine */

.project-card::before{

content:"";

position:absolute;

top:-100%;

left:-50%;

width:60%;

height:250%;

background:rgba(255,255,255,.18);

transform:rotate(25deg);

transition:1s;

z-index:5;

}

.project-card:hover::before{

left:130%;

}
/*=========================================
PROJECT OVERLAY
==========================================*/

.project-overlay{

  position:absolute;

  left:0;

  bottom:0;

  width:100%;

  padding:30px 25px;

  color:#fff;

  background:linear-gradient(
      to top,
      rgba(6,34,64,.96),
      rgba(6,34,64,.75),
      rgba(6,34,64,.05)
  );

  transform:translateY(100%);

  transition:.45s ease;

  z-index:10;

}

.project-card:hover .project-overlay{

  transform:translateY(0);

}

.project-overlay h4{

  font-size:24px;

  font-weight:700;

  margin-bottom:12px;

  color:#fff;

}

.project-overlay p{

  color:#f1f1f1;

  font-size:15px;

  line-height:1.8;

  margin-bottom:18px;

}

.location{

  display:inline-flex;

  align-items:center;

  gap:8px;

  font-size:14px;

  color:#FFD65A;

  margin-bottom:20px;

}

.location i{

  color:#FFD65A;

  font-size:17px;

}


/*=========================================
CAPACITY BADGE
==========================================*/

.capacity{

  position:absolute;

  top:18px;

  right:18px;

  background:linear-gradient(135deg,#FFC107,#FF9800);

  color:#fff;

  font-size:14px;

  font-weight:700;

  padding:8px 18px;

  border-radius:40px;

  box-shadow:0 10px 25px rgba(255,193,7,.35);

  z-index:20;

}


/*=========================================
VIEW PROJECT BUTTON
==========================================*/

.project-btn{

  display:inline-block;

  margin-top:8px;

  background:#FFC107;

  color:#062240;

  padding:12px 24px;

  border-radius:40px;

  text-decoration:none;

  font-weight:700;

  transition:.35s;

}

.project-btn:hover{

  background:#fff;

  color:#0B5ED7;

  transform:translateY(-3px);

}


/*=========================================
VIEW ALL BUTTON
==========================================*/

#projects .btn-warning{

  background:linear-gradient(135deg,#FFC107,#FF9800);

  border:none;

  color:#062240;

  font-weight:700;

  transition:.4s;

  box-shadow:0 18px 40px rgba(255,193,7,.35);

}

#projects .btn-warning:hover{

  transform:translateY(-5px);

  box-shadow:0 30px 60px rgba(255,193,7,.45);

}


/*=========================================
FLOATING ANIMATION
==========================================*/

.project-card{

  animation:floatCard 6s ease-in-out infinite;

}

.project-card:nth-child(even){

  animation-delay:2s;

}

@keyframes floatCard{

  0%{
      transform:translateY(0);
  }

  50%{
      transform:translateY(-6px);
  }

  100%{
      transform:translateY(0);
  }

}


/*=========================================
RESPONSIVE
==========================================*/

@media(max-width:992px){

.project-img img{

height:280px;

}

#projects{

padding:80px 0;

}

#projects h2{

font-size:34px;

}

}

@media(max-width:768px){

.project-img img{

height:240px;

}

.project-overlay{

padding:22px;

}

.project-overlay h4{

font-size:20px;

}

.project-overlay p{

font-size:14px;

}

.capacity{

font-size:12px;

padding:6px 14px;

}

#projects h2{

font-size:30px;

}

}

@media(max-width:576px){

.project-img img{

height:220px;

}

.project-overlay{

padding:18px;

}

.project-btn{

width:100%;

text-align:center;

}

}
/*=========================================
PREMIUM HOVER EFFECTS
=========================================*/

.project-card{

  cursor:pointer;

  backface-visibility:hidden;

  transform-style:preserve-3d;

}

.project-card:hover{

  border-radius:24px;

}

/* Glow Effect */

.project-card:hover{

  box-shadow:
  0 25px 60px rgba(0,102,204,.20),
  0 10px 25px rgba(255,193,7,.25);

}

/*=========================================
IMAGE DARKEN ON HOVER
=========================================*/

.project-img::after{

  content:"";

  position:absolute;

  inset:0;

  background:rgba(0,0,0,.15);

  transition:.45s;

}

.project-card:hover .project-img::after{

  background:rgba(0,0,0,.45);

}

/*=========================================
ICON ANIMATION
=========================================*/

.project-btn i{

  margin-left:8px;

  transition:.35s;

}

.project-btn:hover i{

  transform:translateX(6px);

}

/*=========================================
CAPACITY BADGE ANIMATION
=========================================*/

.capacity{

  animation:pulseBadge 2.5s infinite;

}

@keyframes pulseBadge{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

/*=========================================
IMAGE BORDER
=========================================*/

.project-img{

  border-radius:22px;

  overflow:hidden;

}

/*=========================================
SECTION TITLE ANIMATION
=========================================*/

.project-badge{

  animation:fadeBadge 2s infinite alternate;

}

@keyframes fadeBadge{

from{

letter-spacing:2px;

}

to{

letter-spacing:5px;

}

}

/*=========================================
GLIGHTBOX ICON
=========================================*/

.project-overlay .project-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

}

/*=========================================
CARD BORDER EFFECT
=========================================*/

.project-card::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:4px;

background:linear-gradient(90deg,#FFC107,#0B5ED7);

transform:scaleX(0);

transition:.4s;

transform-origin:left;

}

.project-card:hover::after{

transform:scaleX(1);

}

/*=========================================
LOADING ANIMATION
=========================================*/

.project-card{

animation-duration:0.8s;

}

/*=========================================
SMOOTH TRANSITIONS
=========================================*/

.project-card,
.project-img img,
.project-overlay,
.capacity,
.project-btn{

transition:all .4s ease;

}
/*==================================================
FRANCHISE PAGE
==================================================*/

/* Common Section Badge */

.section-badge{
  display:inline-block;
  padding:10px 24px;
  background:#FFF5E8;
  color:#FDB813;
  border-radius:40px;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  }
  
  
  /*===========================
  WHY FRANCHISE CARD
  ===========================*/
  
  .franchise-card{
  background:#fff;
  border-radius:22px;
  padding:40px 30px;
  text-align:center;
  height:100%;
  border:1px solid #edf2f7;
  box-shadow:0 12px 35px rgba(0,0,0,.06);
  transition:.35s;
  }
  
  .franchise-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 45px rgba(0,0,0,.12);
  }
  
  .franchise-icon{
  width:90px;
  height:90px;
  margin:auto;
  margin-bottom:25px;
  border-radius:22px;
  background:linear-gradient(135deg,#FDB813,#ffcf4d);
  display:flex;
  align-items:center;
  justify-content:center;
  }
  
  .franchise-icon i{
  font-size:42px;
  color:#fff;
  }
  
  .franchise-card h4{
  font-size:24px;
  font-weight:700;
  color:#083b6d;
  margin-bottom:15px;
  }
  
  .franchise-card p{
  color:#6b7280;
  line-height:30px;
  margin:0;
  }
  
  
  
  /*===========================
  PLAN CARD
  ===========================*/
  
  .franchise-plan{
  background:#fff;
  border-radius:25px;
  overflow:hidden;
  border:1px solid #edf2f7;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  position:relative;
  transition:.35s;
  height:100%;
  }
  
  .franchise-plan:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 55px rgba(0,0,0,.15);
  }
  
  .plan-header{
  padding:22px;
  text-align:center;
  color:#fff;
  font-size:22px;
  font-weight:700;
  }
  
  .plan-header.blue{
  background:#083b6d;
  }
  
  .plan-header.orange{
  background:#FDB813;
  color:#083b6d;
  }
  
  .plan-body{
  padding:35px;
  }
  
  .plan-list{
  padding-left:18px;
  margin-top:15px;
  }
  
  .plan-list li{
  margin-bottom:12px;
  color:#555;
  line-height:28px;
  }
  
  .popular{
  transform:scale(1.03);
  }
  
  .popular-badge{
  position:absolute;
  top:18px;
  right:-40px;
  background:#ff4d4d;
  color:#fff;
  padding:8px 45px;
  font-size:13px;
  font-weight:600;
  transform:rotate(45deg);
  }
  
  
  
  /*===========================
  FORM
  ===========================*/
  
  .form-control,
  .form-select{
  
  border-radius:14px;
  padding:15px 18px;
  border:1px solid #d9e2ef;
  box-shadow:none;
  transition:.3s;
  
  }
  
  .form-control:focus,
  .form-select:focus{
  
  border-color:#FDB813;
  box-shadow:0 0 0 .18rem rgba(253,184,19,.25);
  
  }
  
  textarea.form-control{
  
  resize:none;
  
  }
  
  .form-label{
  
  color:#083b6d;
  font-weight:600;
  margin-bottom:8px;
  
  }
  
  
  
  /*===========================
  BUTTON
  ===========================*/
  
  .btn-warning{
  
  background:#FDB813;
  border:none;
  color:#083b6d;
  font-weight:700;
  
  }
  
  .btn-warning:hover{
  
  background:#f6ab00;
  color:#083b6d;
  
  }
  
  
  
  /*===========================
  RESPONSIVE
  ===========================*/
  
  @media(max-width:991px){
  
  .popular{
  
  transform:none;
  
  }
  
  .plan-body{
  
  padding:25px;
  
  }
  
  }
  
  @media(max-width:768px){
  
  .franchise-card,
  .franchise-plan{
  
  margin-bottom:20px;
  
  }
  
  .section-badge{
  
  font-size:12px;
  
  }
  
  }
  /*==================================================
 PREMIUM HOVER EFFECTS
==================================================*/

.franchise-card,
.franchise-plan{
    position: relative;
    overflow: hidden;
}

.franchise-card::before,
.franchise-plan::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:70%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transition:.8s;
}

.franchise-card:hover::before,
.franchise-plan:hover::before{
    left:140%;
}

.franchise-card:hover{
    border-color:#FDB813;
}

.franchise-plan:hover{
    border-color:#FDB813;
}

/*==================================================
 ICON ANIMATION
==================================================*/

.franchise-icon{
    transition:.45s;
}

.franchise-card:hover .franchise-icon{
    transform:rotate(-8deg) scale(1.08);
}

.franchise-icon i{
    transition:.4s;
}

.franchise-card:hover .franchise-icon i{
    transform:scale(1.15);
}

/*==================================================
 PLAN HEADER
==================================================*/

.plan-header{
    letter-spacing:.5px;
    text-transform:uppercase;
}

.plan-header h3{
    margin:0;
    font-size:24px;
    font-weight:700;
}

.plan-body h2{
    font-size:48px;
    color:#083b6d;
    font-weight:800;
    margin-bottom:8px;
}

.plan-body small{
    color:#888;
    font-size:15px;
}

/*==================================================
 FEATURE LIST
==================================================*/

.plan-list{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.plan-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
    color:#5b6573;
}

.plan-list li i{
    color:#FDB813;
    font-size:18px;
    margin-top:3px;
}

/*==================================================
 BUTTON EFFECT
==================================================*/

.btn-warning,
.btn-outline-warning{
    transition:.35s;
}

.btn-warning:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(253,184,19,.35);
}

.btn-outline-warning{
    border:2px solid #FDB813;
    color:#FDB813;
    font-weight:600;
}

.btn-outline-warning:hover{
    background:#FDB813;
    color:#083b6d;
}

/*==================================================
 FORM CARD
==================================================*/

.franchise-form{
    background:#fff;
    border-radius:28px;
    padding:45px;
    border:1px solid #edf2f7;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.franchise-form h3{
    color:#083b6d;
    font-weight:700;
    margin-bottom:25px;
}

.franchise-form .btn{
    width:100%;
    padding:15px;
    border-radius:50px;
    font-size:17px;
}
/*==================================================
    FRANCHISE PAGE - FINAL CSS
==================================================*/

/* Smooth Animation */

.franchise-card,
.franchise-plan,
.franchise-form{
    transition:all .35s ease-in-out;
}

/* Card Hover */

.franchise-card:hover,
.franchise-plan:hover{
    transform:translateY(-10px);
}

/* Card Border */

.franchise-card,
.franchise-plan{
    border:1px solid #edf2f7;
}

/* Feature Card Title */

.franchise-card h4{
    color:#083b6d;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.franchise-card p{
    color:#6b7280;
    line-height:28px;
}

/* Form */

.franchise-form{
    background:#fff;
    border-radius:25px;
}

.franchise-form .form-control,
.franchise-form .form-select{

    height:56px;
    border-radius:12px;
    border:1px solid #dbe5ef;
    padding:12px 18px;
    box-shadow:none;

}

.franchise-form textarea{

    height:150px !important;
    resize:none;

}

.franchise-form .form-control:focus,
.franchise-form .form-select:focus{

    border-color:#FDB813;
    box-shadow:0 0 0 .2rem rgba(253,184,19,.15);

}

/* Buttons */

.btn-warning{

    transition:.35s;

}

.btn-warning:hover{

    transform:translateY(-3px);

}

.btn-outline-warning{

    border:2px solid #FDB813;
    color:#FDB813;
    transition:.35s;

}

.btn-outline-warning:hover{

    background:#FDB813;
    color:#083b6d;

}

/* Popular Card */

.popular{

    transform:scale(1.03);

}

.popular:hover{

    transform:scale(1.05);

}

/* Pricing Ribbon */

.popular-badge{

    z-index:10;
    box-shadow:0 5px 20px rgba(0,0,0,.2);

}

/* Image */

.franchise-image{

    overflow:hidden;
    border-radius:25px;

}

.franchise-image img{

    width:100%;
    transition:.5s;

}

.franchise-image:hover img{

    transform:scale(1.05);

}

/* Shadows */

.franchise-card,
.franchise-plan,
.franchise-form{

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

/* Section Spacing */

section{

    position:relative;

}

/* Form Labels */

.form-label{

    font-weight:600;
    color:#083b6d;

}

/* Input Placeholder */

.form-control::placeholder,
textarea::placeholder{

    color:#9aa4af;

}

/*==================================================
            RESPONSIVE
==================================================*/

@media (max-width:1200px){

.plan-body{

padding:30px;

}

}

@media (max-width:991px){

.popular{

transform:none;

}

.page-title h1{

font-size:48px !important;

}

.page-title p{

font-size:18px !important;

line-height:30px !important;

}

.franchise-card{

margin-bottom:20px;

}

.franchise-plan{

margin-bottom:30px;

}

}

@media (max-width:767px){

.page-title{

height:420px !important;

padding:40px 0;

}

.page-title h1{

font-size:34px !important;

}

.page-title p{

font-size:16px !important;

line-height:28px !important;

}

.plan-header{

font-size:20px;

}

.plan-body{

padding:25px;

}

.franchise-form{

padding:25px;

}

}

@media (max-width:576px){

.page-title{

height:380px !important;

}

.section-badge{

font-size:12px;

padding:8px 18px;

}

.page-title h1{

font-size:30px !important;

}

.page-title p{

font-size:15px !important;

}

.btn{

width:100%;
margin-bottom:15px;

}

}
/*==============================================================
                VENDOR REGISTRATION PAGE
==============================================================*/

/* Smooth Scroll */

html{
  scroll-behavior:smooth;
}

/* Page Background */

body{
  background:#f8fbff;
  font-family:'Poppins',sans-serif;
  color:#333;
}

/*==============================================================
                      HERO SECTION
==============================================================*/

.page-title{
  position:relative;
}

.page-title h1{
  font-weight:800;
  letter-spacing:.5px;
}

.page-title p{
  opacity:.95;
}

.page-title a{
  transition:.3s;
}

.page-title a:hover{
  color:#FDB813 !important;
}


/*==============================================================
                  SECTION SPACING
==============================================================*/

section{
  position:relative;
}

section.py-5{
  padding:90px 0;
}


/*==============================================================
                  FEATURE CARDS
==============================================================*/

.vendor-feature-card{

  background:#fff;
  border-radius:18px;
  border:1px solid #edf2f7;
  padding:40px 30px;
  text-align:center;
  height:100%;

  transition:.35s ease;

  box-shadow:
  0 12px 35px rgba(0,0,0,.06);

}

.vendor-feature-card:hover{

  transform:translateY(-10px);

  box-shadow:
  0 22px 55px rgba(0,0,0,.12);

}

.vendor-feature-card h4{

  color:#083b6d;

  font-size:23px;

  font-weight:700;

  margin:18px 0;

}

.vendor-feature-card p{

  color:#6b7280;

  line-height:28px;

  margin:0;

}


/*==============================================================
                      ICON
==============================================================*/

.vendor-icon{

  width:80px;

  height:80px;

  border-radius:50%;

  margin:auto;

  display:flex;

  justify-content:center;

  align-items:center;

  background:#FFF5E6;

  box-shadow:
  0 10px 25px rgba(253,184,19,.18);

  transition:.35s;

}

.vendor-feature-card:hover .vendor-icon{

  transform:rotate(8deg) scale(1.08);

  background:#FDB813;

}

.vendor-icon i{

  font-size:34px;

  color:#FDB813;

  transition:.35s;

}

.vendor-feature-card:hover .vendor-icon i{

  color:#fff;

}


/*==============================================================
                  SECTION TITLE
==============================================================*/

.section-heading{

  margin-bottom:60px;

}

.section-heading h2{

  color:#083b6d;

  font-size:46px;

  font-weight:800;

}

.section-heading p{

  color:#6b7280;

  max-width:760px;

  margin:auto;

  line-height:32px;

}

.section-heading span{

  display:inline-block;

  padding:8px 22px;

  background:#FFF5E6;

  color:#FDB813;

  border-radius:30px;

  font-size:13px;

  font-weight:700;

  letter-spacing:1px;

  text-transform:uppercase;

}


/*==============================================================
                      FORM
==============================================================*/

.vendor-form{

  background:#fff;

  border-radius:24px;

  padding:60px;

  border:1px solid #edf2f7;

  box-shadow:

  0 20px 60px rgba(0,0,0,.08);

}


/*==============================================================
                  FORM TITLE
==============================================================*/

.vendor-form-title{

  text-align:center;

  margin-bottom:45px;

}

.vendor-form-title h2{

  color:#083b6d;

  font-size:42px;

  font-weight:800;

}

.vendor-form-title p{

  color:#6b7280;

}
/*==============================================================
                VENDOR FORM INPUTS
==============================================================*/

.vendor-form label,
.form-label{

    font-size:15px;
    font-weight:600;
    color:#083b6d;
    margin-bottom:10px;
    display:block;

}

.vendor-form .text-danger{

    color:#e63946 !important;

}

/*==============================================================
                INPUTS & SELECT
==============================================================*/

.vendor-form .form-control,
.vendor-form .form-select{

    height:58px;

    border:1px solid #dbe5ef;

    border-radius:12px;

    background:#ffffff;

    color:#444;

    font-size:15px;

    padding:12px 18px;

    transition:all .3s ease;

    box-shadow:none;

}

.vendor-form .form-control::placeholder{

    color:#9aa5b1;

    font-size:14px;

}

/*==============================================================
                    TEXTAREA
==============================================================*/

.vendor-form textarea.form-control{

    height:150px;

    resize:none;

    padding-top:15px;

}

/*==============================================================
                    FOCUS EFFECT
==============================================================*/

.vendor-form .form-control:focus,
.vendor-form .form-select:focus{

    border-color:#FDB813;

    box-shadow:0 0 0 .20rem rgba(253,184,19,.18);

    outline:none;

}

/*==============================================================
                    FILE INPUT
==============================================================*/

.vendor-form input[type=file]{

    padding:14px;

    background:#fafbfd;

    border:1px dashed #c9d6e2;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

}

.vendor-form input[type=file]:hover{

    border-color:#FDB813;

    background:#fffdf6;

}

/*==============================================================
                SECTION SUB HEADINGS
==============================================================*/

.vendor-form h5{

    color:#083b6d;

    font-size:21px;

    font-weight:700;

    margin-bottom:25px;

    padding-bottom:12px;

    border-bottom:1px solid #edf2f7;

}

.vendor-form h5 i{

    color:#FDB813;

    margin-right:8px;

}

/*==============================================================
                FORM ROW SPACING
==============================================================*/

.vendor-form .row{

    --bs-gutter-x:1.5rem;

    --bs-gutter-y:1.5rem;

}

/*==============================================================
                CHECKBOX
==============================================================*/

.vendor-form .form-check{

    padding-left:30px;

}

.vendor-form .form-check-input{

    width:20px;

    height:20px;

    margin-top:3px;

    border:2px solid #c8d2dd;

    cursor:pointer;

}

.vendor-form .form-check-input:checked{

    background:#FDB813;

    border-color:#FDB813;

}

.vendor-form .form-check-label{

    color:#6b7280;

    line-height:28px;

    font-size:15px;

}

/*==============================================================
                SMALL TEXT
==============================================================*/

.vendor-form small{

    color:#94a3b8;

    font-size:13px;

}

/*==============================================================
                FORM ANIMATION
==============================================================*/

.vendor-form{

    transition:.35s;

}

.vendor-form:hover{

    transform:translateY(-4px);

    box-shadow:0 28px 70px rgba(0,0,0,.10);

}
/*==============================================================
                SUBMIT BUTTON
==============================================================*/

.vendor-form button[type="submit"]{

  background:linear-gradient(135deg,#FDB813,#ff9800);

  border:none;

  color:#fff;

  font-size:18px;

  font-weight:700;

  padding:16px 25px;

  border-radius:12px;

  transition:.35s ease;

  box-shadow:0 15px 35px rgba(253,184,19,.35);

}

.vendor-form button[type="submit"]:hover{

  transform:translateY(-4px);

  background:linear-gradient(135deg,#ff9800,#FDB813);

  box-shadow:0 20px 45px rgba(253,184,19,.45);

}

.vendor-form button i{

  margin-right:8px;

}


/*==============================================================
              LINKS
==============================================================*/

.vendor-form a{

  color:#083b6d;

  text-decoration:none;

  transition:.3s;

}

.vendor-form a:hover{

  color:#FDB813;

}


/*==============================================================
              CARD ANIMATION
==============================================================*/

.vendor-feature-card{

  overflow:hidden;

  position:relative;

}

.vendor-feature-card::before{

  content:"";

  position:absolute;

  top:0;

  left:-100%;

  width:100%;

  height:4px;

  background:#FDB813;

  transition:.4s;

}

.vendor-feature-card:hover::before{

  left:0;

}


/*==============================================================
              INPUT ICON SUPPORT
==============================================================*/

.input-group-text{

  background:#FFF5E6;

  border:1px solid #dbe5ef;

  color:#FDB813;

  border-radius:12px 0 0 12px;

}


/*==============================================================
              FORM SPACING
==============================================================*/

.vendor-form .mb-4{

  margin-bottom:1.7rem !important;

}

.vendor-form .mt-5{

  margin-top:3rem !important;

}


/*==============================================================
              BORDER RADIUS
==============================================================*/

.vendor-form,
.vendor-feature-card,
.form-control,
.form-select,
textarea{

  border-radius:14px;

}


/*==============================================================
              IMAGE (If used)
==============================================================*/

.vendor-image img{

  width:100%;

  border-radius:22px;

  box-shadow:0 20px 60px rgba(0,0,0,.12);

}


/*==============================================================
              RESPONSIVE
==============================================================*/

@media(max-width:991px){

.vendor-form{

padding:40px 25px;

}

.section-heading h2{

font-size:36px;

}

.page-title h1{

font-size:44px !important;

}

}

@media(max-width:768px){

section.py-5{

padding:70px 0;

}

.vendor-feature-card{

padding:30px 20px;

}

.vendor-form{

padding:25px 20px;

}

.vendor-form-title h2{

font-size:30px;

}

.section-heading h2{

font-size:30px;

}

.page-title{

height:420px !important;

}

.page-title h1{

font-size:34px !important;

}

.page-title p{

font-size:16px !important;

line-height:28px !important;

}

.vendor-form button{

font-size:16px;

padding:14px;

}

}

@media(max-width:576px){

.vendor-icon{

width:65px;

height:65px;

}

.vendor-icon i{

font-size:28px;

}

.vendor-feature-card h4{

font-size:20px;

}

.section-heading h2{

font-size:28px;

}

.page-title h1{

font-size:30px !important;

}

}


/*==============================================================
              SMOOTH TRANSITIONS
==============================================================*/

*{

transition:
background-color .25s ease,
color .25s ease,
border-color .25s ease,
box-shadow .25s ease;

}
/*=========================================================
            MOBILE RESPONSIVE CSS
=========================================================*/

/* Tablet */

@media (max-width:991px){

  .page-title{
  height:420px !important;
  padding:0 20px;
  }
  
  .page-title h1{
  font-size:42px !important;
  line-height:1.25;
  }
  
  .page-title p{
  font-size:17px !important;
  line-height:30px !important;
  padding:0 15px;
  }
  
  .page-title span{
  font-size:12px !important;
  padding:10px 22px !important;
  }
  
  .vendor-form{
  padding:35px 25px !important;
  }
  
  .section-heading h2{
  font-size:34px !important;
  }
  
  .section-heading p{
  font-size:16px;
  line-height:28px;
  }
  
  .vendor-feature-card{
  margin-bottom:20px;
  }
  
  .vendor-feature-card h4{
  font-size:22px;
  }
  
  }
  
  
  /* Mobile */
  
  @media (max-width:768px){
  
  section.py-5{
  padding:60px 0 !important;
  }
  
  .container{
  padding-left:18px;
  padding-right:18px;
  }
  
  .page-title{
  height:360px !important;
  }
  
  .page-title h1{
  font-size:32px !important;
  margin-top:20px !important;
  margin-bottom:15px !important;
  }
  
  .page-title p{
  font-size:15px !important;
  line-height:26px !important;
  max-width:100% !important;
  }
  
  .page-title div:last-child{
  flex-wrap:wrap;
  font-size:14px !important;
  }
  
  .section-heading h2{
  font-size:30px !important;
  }
  
  .section-heading p{
  font-size:15px;
  line-height:28px;
  }
  
  .vendor-form{
  padding:25px 18px !important;
  border-radius:18px;
  }
  
  .vendor-form-title h2{
  font-size:28px;
  }
  
  .vendor-form h5{
  font-size:18px;
  }
  
  .vendor-form label{
  font-size:14px;
  }
  
  .vendor-form .form-control,
  .vendor-form .form-select{
  height:52px;
  font-size:15px;
  padding:12px 15px;
  }
  
  .vendor-form textarea{
  height:130px !important;
  }
  
  .vendor-form button{
  width:100%;
  padding:15px;
  font-size:16px;
  }
  
  .vendor-feature-card{
  padding:28px 20px;
  }
  
  .vendor-feature-card h4{
  font-size:20px;
  }
  
  .vendor-feature-card p{
  font-size:14px;
  line-height:24px;
  }
  
  .vendor-icon{
  width:65px;
  height:65px;
  }
  
  .vendor-icon i{
  font-size:28px;
  }
  
  }
  
  
  /* Small Mobile */
  
  @media (max-width:576px){
  
  .page-title{
  height:320px !important;
  }
  
  .page-title h1{
  font-size:28px !important;
  }
  
  .page-title p{
  font-size:14px !important;
  line-height:24px !important;
  }
  
  .page-title span{
  padding:8px 18px !important;
  font-size:11px !important;
  }
  
  .section-heading h2{
  font-size:26px !important;
  }
  
  .vendor-form{
  padding:20px 15px !important;
  }
  
  .vendor-form-title h2{
  font-size:24px;
  }
  
  .vendor-form .row{
  --bs-gutter-x:1rem;
  --bs-gutter-y:1rem;
  }
  
  .vendor-form button{
  font-size:15px;
  padding:14px;
  }
  
  .vendor-feature-card{
  padding:25px 18px;
  }
  
  .vendor-feature-card h4{
  font-size:18px;
  }
  
  .vendor-feature-card p{
  font-size:13px;
  line-height:22px;
  }
  
  .vendor-icon{
  width:60px;
  height:60px;
  }
  
  .vendor-icon i{
  font-size:24px;
  }
  
  .form-label{
  font-size:13px;
  }
  
  .form-control,
  .form-select{
  font-size:14px;
  }
  
  }
  
  
  /* Extra Small Devices */
  
  @media (max-width:400px){
  
  .page-title h1{
  font-size:24px !important;
  }
  
  .page-title p{
  font-size:13px !important;
  line-height:22px !important;
  }
  
  .vendor-form-title h2{
  font-size:22px;
  }
  
  .section-heading h2{
  font-size:22px !important;
  }
  
  .vendor-form button{
  font-size:14px;
  }
  
  .vendor-feature-card{
  padding:22px 15px;
  }
  
  }
  @media (max-width:768px){

    .col-lg-3 .contact-card,
    .col-lg-3 > div{

        padding:22px !important;

    }

    .col-lg-3 h4{

        font-size:20px !important;
        text-align:center;

    }

    .col-lg-3 p{

        font-size:15px !important;
        line-height:26px !important;

    }

    .col-lg-3 a{

        word-break:break-word;
        overflow-wrap:break-word;

    }

}
footer a{
  transition:0.3s ease;
}

footer a:hover{
  color:#ffffff !important;
  text-decoration:underline;
}
@media (max-width:768px){

  .col-lg-3 > div{
      padding:22px !important;
  }

  .col-lg-3 h4{
      font-size:20px !important;
  }

  .col-lg-3 a,
  .col-lg-3 span{
      word-break:break-word;
      overflow-wrap:anywhere;
  }

}
