:root {
  --main-color: #df520c;
  --first: #fb923c;
  --last: #ea580c;
  --dark: #7c2d12;
  --shadow: 0 20px 25px -5px rgba(209, 73, 12, 0.16);
}
body {
  font-family: "Inter", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.main-text {
  color: var(--main-color);
}
.text-2 {
  color: var(--dark);
}
.main-bg {
  background: linear-gradient(135deg, var(--first), var(--last));
}

.gradient-text-1 {
  background: linear-gradient(135deg, var(--dark), var(--first), var(--dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-2 {
  background: linear-gradient(135deg, var(--last), var(--dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shadow {
  box-shadow: var(--shadow);
}
.sec-title {
  font-size: 48px;
  font-weight: 900 !important;
}
.static-color {
  color: var(--dark);
}
/* ================  start navbar style ================================== */
.navbar .nav-link.active {
  color: var(--main-color) !important;
  border-bottom: 2px solid var(--main-color);
  font-weight: 600;
}
.navbar-brand:focus {
  color: var(--main-color);
}
.navbar-brand:hover {
  color: var(--main-color);
}
.logo-spn {
  width: 40px;
  height: 40px;
}
.navbar-brand span {
  width: 40px !important;
  height: 40px !important;
}
.nav-link {
  transition: 0.3s;
}
.nav-link.active {
  color: var(--main-color) !important;
}
.nav-link:hover {
  color: var(--main-color) !important;
}
.dropdown-menu {
  width: 91vw;
  transform: translate(-220px, 1px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.cont1-info h4 {
  font-size: 1rem !important;
}
.cont1-info p {
  font-size: 0.875rem !important;
}
.cont1 {
  transition: 0.2s;
}
.cont1-icn {
  width: 40px;
  height: 40px;
  background-color: #f9e6dc;
  transition: 0.1s;
}
.marketing-need h4 {
  font-size: 1rem !important;
}
.marketing-need p {
  font-size: 0.875rem !important;
}
.custom-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.custom-dropdown-toggle i {
  transition: transform 0.3s ease;
}
.custom-dropdown-toggle[aria-expanded="true"] .icon-down {
  display: inline-block;
  transform: rotate(180deg);
}
.custom-dropdown-toggle[aria-expanded="true"] .icon-up {
  display: none;
}
.custom-dropdown-toggle::after {
  display: none;
}
.cont1:hover .cont1-icn {
  transform: scale(1.1);
}
.cont1:hover .cont1-info h4 {
  color: var(--main-color);
}
.cont1:hover {
  background-color: #fcf6f3;
}
.marketing-need {
  background-color: #fbede7;
}
.marketing-need p {
  color: #4a5565;
}
.marketing-need a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.marketing-need:hover a {
  color: #c2410c;
}
.nav-button-hover:hover {
  color: var(--main-color) !important;
}
.btn-2:hover {
  box-shadow: 0 20px 25px -5px rgba(209, 73, 12, 0.16);
}
/* ================  end navbar style ================================== */

/* ================  start hero section  style ( first section ) ================================== */
.hero-section {
  background-color: #fffaf6;
  padding-top: 100px !important;
}
.hero-badge {
  color: var(--main-color);
  background-color: #fbe9df;
}
.hero-title {
  color: #7a2b14;
  font-weight: 900;
}
.hero-title span {
  color: #ff7a27;
}
.hero-text {
  color: #334155;
}
.hero-main-btn {
  color: #fff;
  transition: 0.3s;
}
.hero-main-btn:hover {
  color: #fff;
}
.hero-image-box {
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.hero-image-box::before {
  content: "";
  position: absolute;
  top: 25px;
  right: 40px;
  bottom: 25px;
  left: 25px;
  background-color: #f1d3c2;
  border-radius: 24px;
  transform: rotate(3deg);
  z-index: -1;
}
.hero-img {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}
.hero-float-icon {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  font-size: 1.5rem;
}
.hero-code {
  top: -25px;
  right: -25px;
}
.hero-phone {
  left: -25px;
  bottom: -25px;
}
.hero-main-btn:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.btn-light {
  background-color: transparent;
  border: 2px solid #d1d5dc;
  transition: 0.3s;
}
.btn-light:hover {
  background-color: transparent;
  color: var(--main-color);
  border: 2px solid var(--main-color);
}

/* ================  end hero section  style ( first section ) ================================== */
/* ================  start Comprehensive  style ( second section ) ================================== */
.services-badge {
  color: var(--main-color);
  background-color: #fbe9df;
  font-size: 12px;
}
.services-desc {
  font-size: 20px;
  max-width: 700px;
}
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--first), var(--last));
  transition: 0.3s;
  font-size: 1.5rem !important;
}
.service-card {
  transition: 0.3s;
}
.card-h3 {
  color: #7c2d12;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}
.service-card:hover .service-icon {
  transform: scale(1.1);
}
.arrow-right {
  transition: 0.3s;
}
.service-card:hover .arrow-right {
  transform: translateX(8px);
}
.service-link {
  color: var(--main-color);
}
.card-p {
  font-size: 1rem !important;
}
.service-link:hover {
  color: var(--last);
}
/* ================  end Comprehensive  style ( second section ) ============================ */

/* ================  start Cutting-Edge   style ( third  section ) ============================ */
.tech-badge {
  color: var(--main-color);
  background-color: #fbe9df;
  font-size: 0.75rem;
}
.badge {
  background-color: #dbeafe;
}
.badge-gray {
  background-color: #f3f4f6;
}
.badge-green {
  background-color: #dbfce7;
}
.badge-orange {
  background-color: #ffedd4;
}
.badge-sky {
  background-color: #cefafe;
}
.badge-purple {
  background-color: #f3e8ff;
}
.tech-desc {
  max-width: 560px;
}
.tech-tabs .nav-link {
  color: #334155;
}
.tech-tabs .nav-link.active {
  color: var(--main-color);
  background-color: transparent;
  border-bottom: 2px solid var(--main-color);
}
.tech-icon {
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
}
.tech-card {
  transition: 0.3s;
}
.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}
.headercenter-p {
  font-size: 1.125rem;
}
.tech-blue {
  background-color: #eaf3ff;
}
.tech-green {
  background-color: #e8fbee;
}
.tech-orange {
  background-color: #fff3df;
}
.tech-cyan {
  background-color: #e5fbff;
}
.tech-purple {
  background-color: #f4e9ff;
}
.bg-purple {
  background-color: #9333ea;
}
.text-purple {
  color: #9333ea;
}
/* ================  end Cutting-Edge   style ( third  section ) ============================= */
/* ================  start our clients  style ( fourth  section ) ============================= */
.clients-section {
  background-color: #fffaf6;
}
.clients-badge,
.verified-badge,
.quote-box {
  color: var(--main-color);
  background-color: #fbe9df;
}
.clients-title {
  color: #7c2d12;
}
.clients-title span,
.clients-name {
  color: var(--main-color);
}
.quote-box {
  width: 56px;
  height: 56px;
}
.client-check {
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
}
.carousel-indicators button {
  transition: 0.3s;
}
.clients-dots button {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background-color: #cbd5e1 !important;
  border: 0 !important;
  opacity: 1 !important;
  transition:
    width 0.3s ease,
    border-radius 0.3s ease,
    background-color 0.3s ease !important;
}
.clients-dots button.active {
  background-color: var(--main-color) !important;
}
.clients-dots button:hover {
  width: 22px !important;
  border-radius: 20px !important;
  background-color: var(--main-color) !important;
}
/* ================  end our clients  style ( fourth  section ) ============================= */

/* ================  start FAQ  style ( fiveth  section ) ============================= */
.faq-section {
  background: #fffdfc;
}
.faq-accordion .accordion-item {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.faq-accordion .accordion-button {
  min-height: 52px;
  padding: 20px;
  font-size: 18px !important;
  font-weight: 700;
  color: var(--dark);
  background: transparent;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--main-color);
  background: #fff8f5;
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffe8df;
  background-size: 20px;
  background-position: center;
  color: var(--main-color) !important;
}
.process-body {
  color: #344054;
}
.process-check {
  color: #f15a24;
  font-weight: 700;
}
.accordion-item:hover {
  background-color: #f9fafb;
}
/* ================  end FAQ  style ( fiveth  section ) ============================= */

/* ================  start contact  style ( last  section ) ============================= */
.consultation-section {
  background: #fffdfc;
}
.contact-card {
  max-width: 1160px;
  border-radius: 12px;
}
.text-orange {
  color: #ea4b0b;
}
.orange-btn {
  color: #fff;
  background: linear-gradient(90deg, var(--last), var(--first));
  border: 0;
  transition: 0.3s;
}
.orange-btn:hover {
  color: #fff;
  transform: translatey(-5px);
}
.orange-btn i {
  transition: 0.3s;
}
.orange-btn:hover i {
  transform: translateX(5px);
}
.side-panel {
  background: linear-gradient(160deg, #cf3d05, #b93402);
}
.icon-box {
  width: 85px !important;
  height: 50px !important;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
}
.budget-btn {
  font-size: 12px;
  border-color: #d7dce3;
}
.btn-check:checked + .budget-btn {
  color: #ea4b0b;
  border-color: #ea4b0b;
  background: #fff7f2;
}
.form-control:focus,
.form-select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 10px 0.25rem rgba(223, 82, 12, 0.6);
  border-color: var(--main-color);
}
/* ===================================== */
.footer-width {
  max-width: 1100px;
}
.brand-icon,
.social-btn {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}
.brand-icon {
  background: #ea4b0b;
}
.social-btn {
  color: #5b6472;
  background-color: #f1f3f6;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: 0.3s;
}
.social-btn:hover {
  background-color: var(--main-color);
  color: #fff;
}
/* ================  end contact  style ( last  section ) ============================= */
