
/* Fonts */
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Inter", sans-serif;
  --nav-font: "Inter", 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 */
 
  --heading-color: #1F3D3B; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ed502e; /* 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: #1F3D3B;  /* The default color of the main navmenu links */
  --nav-hover-color: #1F3D3B; /* 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:#000; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color:#000; /* 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: #f7f9fd;
  --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 {
  color: #1F3D3B;
  background-color: var(--background-color);
/*  padding: 15px 0;*/
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 73px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color:black;
  background: #86C0D4;
  font-size: 20px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 7px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: whitesmoke;
  background: color-mix(in srgb, #1F3D3B, transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
.navmenu a.btn-outline-secondary {
  display: inline-block !important;
  margin-left: 20px;
}
@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: 17px 8px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i, .navmenu a:focus i {

  margin-left: 5px;
  transition: 0.3s;
  background: #1F3D3B;
  color: white;
}


  .navmenu li:last-child a {
    padding-right: 0;
  }


    .navmenu li:hover>a, .navmenu .active, .navmenu .active:focus {
        color: var(--nav-hover-color);
        /* font-size: 14px; */
        font-weight: bold;
    }


    .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: opacity 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; /* Adjusts the padding around the text */
      font-size: 14px; /* Sets the font size of the text */
      text-transform: none; /* Ensures the text is not transformed */
      color: var(--nav-dropdown-color); /* Sets the color of the text */
      position: relative; /* Positions the pseudo-element relative to the link */
      text-decoration: none; /* Removes underline from the links */
      display: block; /* Ensures the link is block-level to handle pseudo-element properly */
  }
  
  .navmenu .dropdown ul a::after {
      content: ""; /* Creates an empty pseudo-element */
      position: absolute; /* Positions the pseudo-element absolutely */
      bottom: 0; /* Positions it at the bottom of the link */
      left: 48.5%; /* Starts the border 12.5% from the left edge */
      width: 75%; /* Sets the width of the border to 75% of the link's width */
      border-bottom: 1px solid ; /* Sets the border color */
      transform: translateX(-50%); /* Centers the border horizontally */
      transition: border-color 0.3s; /* Optional: Adds a transition effect for color changes */
  }
  
  /* Hide border for the last item */
  .navmenu .dropdown ul li:last-child a::after {
      display: none; /* Hides the pseudo-element for the last item */
  }
  



  .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;
  bottom: 0;
    width: 100%;
}
.footer .text-md-end a i {
  margin-right: 10px;
}
@media screen and (max-width: 992px) {
  .footer .text-md-end a, .footer .text-md-end a i{
    margin-right: 0 !important;
  }
}

.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: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color:#1F3D3B;
  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, #1F3D3B, 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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 87px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 63px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.custom-heading {
  font-size: 64px; /* Sets the font size to 64px */
}
.hero {
  position: relative;
  background-color: #000; /* Optional: fallback background color */
  height: 100vh;
  display: flex; /* Use Flexbox for centering */
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the section */
  z-index: 1; /* Place the background image behind the overlay */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Black overlay with 70% opacity */
  z-index: 2; /* Place the overlay above the background image */
}

.container {
  position: relative;
  z-index: 3; /* Ensure content appears above the overlay */
  padding-top: 20px; /* Optional: Adjust padding if needed */
  padding-bottom: 20px; /* Optional: Adjust padding if needed */
}

.row {
  align-items: center; /* Center align content vertically */
  text-align: center; /* Center text horizontally */
}

.custom-heading {
  font-size: 64px; /* Font size for the heading */
  font-weight: bold; /* Makes the heading bold */
  color: white; /* Sets the text color */
}
@media screen and (max-width: 992px) {
  .custom-heading, .large-heading {
    font-size: 30px;
  }
}
.btn-getstartedhero {
  margin-top: -30px; /* Adjust the spacing above the button */
}


/*--------------------------------------------------------------
# Find Cards Section
--------------------------------------------------------------*/
   /* Custom Dropdown Styles */
   .custom-dropdown {
    position: relative;
    width: 100%;
}

.select-wrapper {
    background-color: #21403a;
    color: #F3F1ED;
    padding: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 0px 5px 5px 0px;
}



.options {
  display: none;
  position: absolute;
  top: 116%;
  left: 0;
  right: 0;
  background-color: #21403a;
  color: #F3F1ED;
  z-index: 10; /* Ensure it is above other elements */
  border-radius: 7px;
}

.options .option {
  padding: 10px 10px 10px 20px; /* Adjust padding */
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 7px;
  position: relative; /* Position pseudo-element correctly */
}

.options .option:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 12.5%; /* Center the border */
  bottom: 5px; /* Add gap from bottom of the option */
  width: 75%; /* Border width */
  border-bottom: 1px solid #B0B0B0; /* Border color */
}

.options .option:hover {
  background-color: #2b594b;
}

.select-wrapper.active .options {
  display: block;
  text-align: left;
}


.bi-chevron-down {
  background-color:#F2F1F0;
  width: 20px;
  height: 20px;
  border-radius: 5px!important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #1F3D3B;
 margin-left: 10px;
}

@media (max-width: 768px) {
  .form-control-search {
      display: none; /* Hide the input field on screens 768px or smaller */
  }
}

/*--------------------------------------------------------------
# Find Cards Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

section.about .card {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 20px;
  background-color: #fff;
  margin-bottom: 20px;
}

section.about .card img {
  width: 45px;
  margin-bottom: 15px;
}

section.about .card-title {
  line-height: 32px;
    font-size: 20px;
    font-weight: bold;
    color: #1F3D3B;
    margin-bottom: 10px
}

section.about .card-text {
  font-size: 14px;
  color: #1F3D3B;
  min-height: 65px;
}

section.about .container {
  max-width: 1200px;
}

section.about .row {
  justify-content: space-between;
}

section.about .col-sm-4 {
  display: flex;
  justify-content: center;
}

h6 {
  font-size: 16px;

  color: #1F3D3B;
  font-weight: 600;
}

h2 {
  /* font-size: 48px; */
  font-weight: 600;
  color: #1F3D3B;
 
}

p {
  font-size: 16px;
  color: #1F3D3B;
  line-height: 1.6;
  margin-bottom: 40px;
}
#about {
  background-color: #F2F1F0;
}


/*--------------------------------------------------------------
# Smart Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  overflow: hidden; /* Ensure content doesn't overflow the section */
}

.call-to-action img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.call-to-action:before {
  content: "";
  background: rgba(0, 0, 0, 0.7); /* Adjust the rgba values for more darkness */
  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);
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.large-heading {
  font-size: 48px;
}

#contact {
  padding: 50px 0;
  background-color:white; /* Adjust as needed */
}

.container-contact {
  width: 100%;
  max-width: 1200px; /* Adjust max-width as needed */
  margin: 0 auto; /* Centers the container horizontally */
  display: flex;
  justify-content: space-between;
  gap: 20px; /* Space between columns */
  padding: 0 15px; /* Adds padding on the left and right */
}

.contact-form {
  flex: 1;
  padding: 20px;
  background-color: #fff; /* Background color for each column */
  border-radius: 10px; /* Adjusted rounded corners */
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1); /* Shadow on sides and bottom only */
}


.contact-info h2, .contact-form h3 {
  margin-bottom: 20px;
   text-transform: capitalize;
}
.contact-form h3 {
  font-size: 20px;
}


.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-info i {
  margin-right: 10px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-group label {
  display: block;
  margin-bottom: 5px;
}

.contact-form .form-control {
  width: 100%;
  padding: 10px;

  border-radius: 4px;
}

.contact-form .btn {
  display: inline-block;
  padding: 5px 25px;
  color: #fff;
  background-color: #007bff; /* Adjust color */
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form .btn:hover {
  background-color: #0056b3; /* Darker shade on hover */
}


.contact-form .form-group-row {
  display: flex;
  justify-content: space-between;
  gap: 20px; /* Adjust the gap between the fields */
}

.contact-form .form-group-row .form-group {
  flex: 1;
}

.contact-info i {
  font-size: 30px; 
  color: #436436;  
}

.contact-info li i {
  font-size: 20px; 
  color: #436436;  
}

.form-control {
  background-color: #F2F1F0; 
  border-color: #F2F1F0; 
}

.form-control:focus {
  background-color: #F2F1F0; 
  border-color: #F2F1F0; 

  box-shadow: 0 0 0 0.2rem rgba(86, 192, 212, 0.25); 
}


.contact-info li i.fa-phone-alt {
  font-size: 20px; 
  color: #436436; 
  margin-right: 10px; 
  transform: rotate(100deg); 
}
.btn-primary {
  background-color: #86C0D4!important; 
  border-color: #86C0D4!important; 
  color: #060606!important;
}

.btn-primary:hover {
  background-color: #6fa2b4; 
  border-color: #6fa2b4; 
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(86, 192, 212, 0.5); /* Optional: adds a focus shadow */
}

/*--------------------------------------------------------------
# Branded merchandise
--------------------------------------------------------------*/

.heading{
  /* font-size: 48px; */
  line-height: 60px;

}

.slider-arrow {
  width: 54px; /* Adjust size if necessary */
  height: auto;
}
.carousel-control-next  {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
   opacity: 1!important;
  transition: opacity .15s ease;
  right: -120px;
  
}

.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
   opacity: 1!important;
  transition: opacity .15s ease;
  left: -120px;

}

/*--------------------------------------------------------------
#ideo cards
--------------------------------------------------------------*/

h5.card-title {
      font-weight: 600;
    text-transform: capitalize;

}

.card-text {
  font-size: 16px;
  margin-top: -5px;
}
.carousel-inner {
  overflow: hidden; /* Hide any overflow */
}

.carousel-img {
  width: 225px; /* Make image take full width of column */
  height: 525px; /* Set a fixed height for uniformity */
  object-fit: cover; /* Ensure images cover the entire area while maintaining aspect ratio */
}
.card-month {
  font-size: 16px;
  margin-top: -15px;
}
.icon-text {
  text-align: left;
}

h2.card-price {
  margin-top: -30px;
}
card-month {
  font-size: 16px;
  margin-top: -10px;
}
.icon-text {
  text-align: left;
  margin-top: -10px;
}

.card.border-0.p-4 {
  border-radius: 25px;
}
.shadow {
  box-shadow: 0 0.1rem 0.2rem 2px rgba(0, 0, 0, 0.15) !important;
}

/*--------------------------------------------------------------
#ideo cards
--------------------------------------------------------------*/
@media (max-width: 768px) {
.vision h6 {
  
  margin-top: 50px;
}


}


/*--------------------------------------------------------------
#access cards
--------------------------------------------------------------*/


/*--------------------------------------------------------------
#afind v cards
--------------------------------------------------------------*/
.vision p {
    font-size: 16px;
}

.card-profile {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  max-width: 600px;
  margin: 10px auto;
}
.card-profile img {
  width: 100px;
  height: 100px;
  
  object-fit: cover;
  margin-right: 15px;
}
.card-profile .info {
  flex: 1;
  text-align: left;
}
.card-profile .info h5 {
  margin: 0;
  font-weight: bold;
}
.card-profile .info p {
  margin: 0;
  color: #666;
}
.card-profile .info .location {
  display: flex;
  align-items: center;
  color:#1F3D3B;
}
.card-profile .info .location i {
  margin-right: 5px;
}
.input-group-text, 
.form-control-search, 
.selected-option, 
.btn-primary {
  padding: 5px 10px; /* Reduced padding for smaller height */
  font-size: 18px; /* Slightly smaller font size */
  height: auto; /* Allow height to adjust based on content */
}
.form-control-search {
  background-color: #21403a;
  color: #F3F1ED;
  border: none;
  flex: 1;
}
.selected-option {
  background-color: #21403a;
  color: #F3F1ED;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* Make sure the element is positioned relatively */
}

.selected-option::before {
  content: '';
  position: absolute;
  left: 0; /* Align to the left */
  top: 23%; /* Start at 25% from the top */
  height: 70%; /* Cover 50% of the height */
  width: 1px; /* Width of the border */
  background-color: #F3F1ED; /* Color of the border */
}

.select-wrapper {
  position: relative;
}
.options {
  display: none;
  position: absolute;
  top: 108%;
  left: 0;
  width: 100%;
  background-color: #21403a;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.option {
  padding: 10px;
  cursor: pointer;
}
.option:hover {
  background-color: #ddd;
}


/* own ideo card css starts */
.own-ideo-card {
  background-color: #F2F1F0;
}
.own-ideo-card-heading {
  text-align: left;
}
.own-ideocard {
  background-color: #fff;
  border-radius: 15px;
  text-align: left;
}
.own-ideocard span {
  background-color: #436436;
  padding: 3px 8px;
  border-radius: 50%;
  color: #fff;
}
.own-ideocard h6 {
  font-size: 20px;
  text-transform: initial;
  margin: 25px 0;
}
.own-ideocard p {
  color: #1F3D3B;
  font-size: 16px;
  text-transform: initial;
  min-height: 50px;
}
/* own ideo card css ends */
section h2, section h6, section h1, .btn-getstartedhero, .section p {
  text-transform: capitalize;
}

.contact-info p {
    text-transform: initial;
}
.contact-info ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #1F3D3B;
}


.own-ideo-card-heading h2 {
  font-size: 48px !important;
}

