@import url('https://fonts.cdnfonts.com/css/lexend-deca');


/* Fonts */
:root {
  --default-font: "Roboto", sans-serif;
  --heading-font: "Roboto", sans-serif;
  --nav-font: "Roboto", 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: #000000;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #174308;
  /* 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: #000000;
  --nav-hover-color: #174308;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #174308;
  --pink-bg: #EDE5CD;
  --pink-rgb: rgba(163, 127, 4, 0.2);
  --sky-bg: rgba(23, 67, 8, 0.2);
  --golden-color: #A37F04;
}

/* 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: #f9f9f9;
  --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);
  overflow-x: hidden !important;
}

html,
body {
  overflow-x: hidden !important;
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

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);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  /* padding: 20px 0; */
  transition: all 0.5s;
  z-index: 997;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.header .branding {
  background-color: var(--background-color);
  min-height: 40px;
  padding: 14px 0;
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {

  margin: 0 0 0 16px;
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 8px 25px;
  border-radius: 0px;
  transition: 0.3s;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;

}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background-color: var(--golden-color);
}

.pb_80 {
  padding-bottom: clamp(20px, 6vw, 80px);

}

@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);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# 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: 8px 12px;
    font-family: var(--nav-font);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;

  }

  .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;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

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

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

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

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

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-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 .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

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

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

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

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

.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: color-mix(in srgb, var(--background-color), transparent 50%);
  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 .footer-top {
  padding: 50px;
  border: 1px solid;
}

.footer .social-links a {
  display: flex;
  align-items: start;
  justify-content: start;


  font-size: 16px;
  color: var(--accent-color);

  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--golden-color);
  background-color: var(--background-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 {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.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 {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

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

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  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;
}

/*--------------------------------------------------------------
# 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;
}




/*--------------------------------------------------------------
# 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%);
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 0px 0;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;
}



.hero p {
  margin: 24px 0px;
}

.hero .btn-get-started {
  font-family: var(--heading-font);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  background: var(--golden-color);
  padding: 12px 24px;
  border-radius: 0px;
  transition: 0.3s;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

/*--------------------------------------------------------------
# samara website css starts 
--------------------------------------------------------------*/

.golden {
  color: var(--golden-color);
}

.banner_heading {
  font-size: clamp(22px, 4vw, 30px);
  line-height: 120%;
  font-style: normal;
  font-weight: 700;
  color: var(--background-color);
}

#hero .banner_heading {
  line-height: 35px;
  padding-top: 22px;
}

.default_text {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 150%;
  color: var(--default-color);
}

.mail_form input {
  width: 360px;
  height: 48px;
  border: 1px solid #FFFFFF;
  border-radius: 0;
  background: transparent;
}

.mail_form input:focus {
  border: 1px solid #FFFFFF;
  background-color: transparent;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

.mail_form input::placeholder {

  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.65);
}

.mail_form {
  margin-bottom: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 150%;
  border-radius: 4px;
  background-color: transparent;
  font-size: 16px;
  color: var(--background-color);
  margin-right: 12px;
  transition: 0.3s;
}

.padding_112 {
  padding-top: clamp(24px, 8vw, 112px);
  padding-bottom: clamp(24px, 8vw, 112px);
}



.trusted_sec .content h3 {
  font-size: clamp(24px, 4vw, 40px);
  line-height: clamp(1.2, 4.5vw, 1.5);
}

.about-sec .content h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 24px;
}


.btn-getstarted,
.btn-getstarted:focus {
  /* margin: 0 0 0 16px; */
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 8px 25px;
  border-radius: 0px;
  transition: 0.3s;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}




.btn-getstarted:hover {
  color: var(--background-color);
  background-color: var(--golden-color);

}

.services .content h3,
#our-journey .content h3,
#contct-form .content h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 16px;
}

#services,
#marketing,
#elevate-bussiness {
  background-color: var(--pink-bg);

}


.services-card {
  background-color: #fff;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
  border: 1px solid #000000;
}



.services-card .card-content {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
}

.fp_cards {
  padding: 3rem 1rem;

}

.services-card .card-content h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: clamp(24px, 4vw, 40px);
  line-height: clamp(1.2, 4.5vw, 1.5);

}

.services-card .card-content p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 2rem;
}


/* .img_cards  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.Digital-content {
  padding: 2.3rem 1.5rem;
}

/* Custom height for cards with images at the top */
/* .services-card.card-with-image .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */


.fp_cards h3,
.Digital-content h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #000000;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 78ch;
  display: grid;
  gap: 15px;

}

.feature-list li {
  position: relative;
  padding-left: 34px;

}

/* cube bullet */
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-image: url("../img/box.png");
}


.feature-list {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 30px;
}

.marketing .content h2,
#our-journey .content h2,
#faq-sec .content h2 {

  font-size: clamp(28px, 5vw, 48px);
  line-height: 120%;
  margin-bottom: 24px;
}

#our-journey {
  background-color: var(--sky-bg);
}


/* time line css */

.timeline {
  position: relative;

}

/* center horizontal line */
.timeline::before {
  content: "";
  position: absolute;
  top: 47%;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: url(../img/timeline.png);
  z-index: 1;
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
}

.timeline-item {
  position: relative;
  text-align: start;
}



.timeline-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 25px;
}

.timeline-card h5 {
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 8px;
}

/* .timeline-card p {
  margin: 0;
  color: #333;
} */

/* alternate cards above/below */
/* .timeline-item.up {
  margin-bottom: 120px;
} */

.timeline-item.down {
  margin-top: 90px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 0;

  border: 1px solid #000000;
  padding: 2rem;
  text-align: start;
}

.testimonial-stars {
  color: #FF7919;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: start;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.author-info h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 0;

}

.author-info p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 0;
}

.swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000 !important;
}

#testimonials .content h2,
#contct-form .content h1 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 120%;
  margin-bottom: 24px;
}

.contact-form .form-control {
  border: 1px solid #000000;
  border-radius: 0;
  padding: 12px;
}

.contact-form .form-control::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.6);

}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--golden-color);

}

.contact-form .form-check-input[type=checkbox] {
  border: 1px solid #000000;
  border-radius: 0;
  width: 17px;
  height: 17px;
  margin-right: 12px;
}


.contact-form .form-check-input:checked {
  background-color: #174308;
  border-color: #174308;
}

#faq-sec {
  background-color: var(--sky-bg);
}

.faq-card {
  background-color: #e5e8e2;
  border-radius: 0;
  border: 1px solid #c0c4b6;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-title {
  font-weight: bold;
  font-size: 1.1rem;
}

.faq-text {
  color: #555;
  font-size: 0.95rem;
}

.accordion-flush>.accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: #fff;
  border: 1px solid #000;
}

.faq-title {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: var(--default-color) !important;
}

.contact-btn {
  background-color: #3b502e;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.accordion {
  --bs-border-color: none !important;
}

.contact-btn:hover {
  background-color: #2e4024;
  color: white;
}

.accordion-button::after {
  display: none;
}

.accordion-button .faq-icon-close {
  transition: transform 0.3s ease;
}

.accordion-button.collapsed .faq-icon-close {
  transform: rotate(45deg);
}


/* calander css */

.card-custom {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #BDC6C6;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 24px;
}

.card-custom .h3 {
  font-weight: 600;
  font-size: 18.364px;
  line-height: 23px;
  text-align: center;
  color: #192020;
  font-family: 'Lexend Deca', sans-serif;
}

#selectedDateDisplay {
  font-family: 'Lexend Deca', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12.2427px;
  line-height: 15px;
  text-align: center;
  color: #192020;
}

.calendar-day {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  /* rounded-xl */
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  font-weight: 500;
}

.calendar-day:hover {
  background-color: #f3f4f6;
}

.calendar-day.selected {
  background: #044343;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  font-family: 'Lexend Deca';
  font-style: normal;
  font-weight: 400;
  font-size: 13.1171px;
  line-height: 14px;
  letter-spacing: -0.209874px;
  color: #FFFFFF;
}

.calendar-day.weekend {
  background: rgba(4, 67, 67, 0.09);
  font-family: 'Lexend Deca';
  font-style: normal;
  font-weight: 400;
  font-size: 13.1171px;
  line-height: 14px;
  letter-spacing: -0.209874px;
  color: #263238;
  border-radius: 50px;
}

.card-custom .btn:hover,
.card-custom .btn:hover {
  color: #ffffff;
  background-color: #174308;
  border-color: #174308;
  border-color: #174308;
}

.time-slot {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-weight: 500;
  color: #4b5563;
  transition: background-color 0.2s, border-color 0.2s;
}

.time-slot:hover {
  background-color: #e5e7eb;
}

.time-slot.active {
  border-color: #2e4a42;
  background: #044343;
  border: 0.765166px solid #044343;
  border-radius: 7.65166px;
  font-family: 'Lexend Deca';
  font-style: normal;
  font-weight: 400;
  font-size: 13.773px;
  line-height: 18px;
  text-align: center;
  color: #FFFFFF;
}

.btn-continue {
  border-color: #BDC6C6;
  background: #BDC6C6;
  border: 0.765166px solid #BDC6C6;
  border-radius: 7.65166px;
  font-family: 'Lexend Deca';
  font-style: normal;
  font-weight: 400;
  font-size: 13.773px;
  line-height: 18px;
  text-align: center;
  color: #FFFFFF;
}

.week_text .col {
  font-family: 'Lexend Deca';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #3C413F;

}


.btn-continue:hover {
  background-color: #10b981;
  /* hover:bg-emerald-600 */
}

.btn-continue:disabled {
  background-color: #6b7280;
  /* bg-gray-500 */
  border-color: #6b7280;
  opacity: 0.5;
  cursor: not-allowed;
}

#footer .mail_form input {

  border: 1px solid #000000;
}

#footer .mail_form input::placeholder {
  color: rgba(0, 0, 0, 0.65);
}

.footer .footer-about .btn-get-started {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
  border: 1px solid #000000;
  font-size: 14px;
  padding: 6px 24px;
  font-family: 'Lexend Deca';
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #263238;
}



/* 
.text-container {

  clip-path: inset(0 0 0 0);
  text-align: center;
  word-spacing: 0.5rem;
  letter-spacing: 0.05rem;
  line-height: 0.8;
} */

#text-to-animate {
  display: inline-block;
}

.char {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: inline-block;
}

.fade-out {
  animation: fade-and-remove 5s ease-in-out forwards;
  animation-delay: 1s;
}

@keyframes fade-and-remove {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }

  100% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
}

/* ends calander css */

/* responsive fix for mobile (vertical timeline) */
@media (max-width: 991px) {
  .timeline::before {
    top: 0;
    left: 50%;
    height: 100%;
    width: 3px;
  }

  .timeline-dot {
    top: auto;
  }



  .timeline-item.up,
  .timeline-item.down {
    margin: 60px 0;
  }
}

@media (min-width: 1366px) and (max-width: 1399px) {
  .services-card.card-large-text .card-image {
    height: 272px !important;
    object-fit: cover;
  }
}


@media (min-width: 992px) {

  .text-container {
    height: 180px;
    margin-bottom: 0px;
  }

  .services-card.card-large-text {
    flex-direction: column;
    margin-bottom: 5px;
  }

  .services-card.card-large-text .card-image {
    height: 400px;
    object-fit: cover;
  }

  /* .services-card.card-large-text .card-content {
    flex: 1 1 50%;
  } */
}



.animated-text-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  user-select: none;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.char.show {
  opacity: 1;
  transform: translateY(0);
}

.char.hide {
  opacity: 0;
}

@media (max-width: 768px) {
  .animated-text-container {
    font-size: 2rem;
  }
}


.bounce-in-up-animation {
  animation-name: bounceInUp;
  animation-duration: 2s; 
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); /* This creates a smooth, fluid feel */
  animation-fill-mode: both; /* Ensures the element stays in its final state */
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(100px); /* Start hidden and from 100px below its final position */
  }
  60% {
    opacity: 1;
    transform: translateY(-30px); /* Bounce up past its final position */
  }
  80% {
    transform: translateY(10px); /* Bounce down slightly */
  }
  100% {
    transform: translateY(0); /* Settle at its final position */
  }
}

/*--------------------------------------------------------------
# # samara website css ends 
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  .mail_form input {
    width: 100%;

  }

  .img_cards img {
    width: 100%;
  }

  #hero .social-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
  }


}

@media only screen and (width: 1280px) {
  .services-card.card-large-text .card-image {
    height: 270px;
    object-fit: cover;
  }
}

@media (max-width: 640px) {
  #hero .banner_heading {
    line-height: 20px;
  }

  


  html,
  body {
    overflow-x: hidden;
  }

  .services-card .card-content {
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
  }



  #hero .social-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer .footer-top {
    padding: 20px;
    border: 1px solid;
  }

  .footer {

    padding: 40px 20px;

  }

  .timeline-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 10px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item.up,
  .timeline-item.down {
    margin: 0;
  }

  .img_cards img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .hero {
    padding: 120px 10px;
    min-height: 50vh;
  }

  .header .logo img {
    margin-left: 8px;
    margin-right: auto;
  }

  .header .topbar {
    display: none !important;
  }

  .mail_form input {
    width: 100%;

  }

}
.error
{
    color : red;
}