/* ======================================================================== 
   1. IMPORTS & FONTS
   ======================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Quicksand:wght@300..700&display=swap");

/* ========================================================================
   TABLE OF CONTENTS
   ======================================================================== */
/*
   
   1. IMPORTS & FONTS
   2. RESET & CORE
   3. ROOT VARIABLES
   4. TYPOGRAPHY - Headings & Text Styles
   5. UTILITY CLASSES
      - Anchor Links
      - Background Colors
      - Text Alignment
      - Lists
      - Features
      - Flexbox
      - Section Titles
   6. BUTTONS
      - Basic Button Styles
      - Tab Panel Design
      - Primary Button
      - Secondary Button
      - Circle Button
   7. COMMON SECTIONS
      - Navbar
      - Footer
      - Breadcrumb
   8. HOME PAGE
      - Hero Section
      - Services Section
      - Why Choose Us Section
      - Video Section
      - Working Process Section
      - Pricing Section
      - About Us Section
      - Testimonials Section
      - Blogs Section
      - Contact Section
   9. ABOUT PAGE
      - About Us Section
      - Founder Section
      - Team Section
   10. PROJECTS PAGE
      - Projects Section
   11. RESPONSIVE MEDIA QUERIES
      - Tablet (576px)
      - Medium Devices (768px)
      - Large Devices (992px)
      - Extra Large (1200px)
      - XXL Devices (1400px)

   ======================================================================== 
*/

/* ======================================================================== 
   2. RESET & CORE
   ======================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ======================================================================== 
   3. ROOT VARIABLES - Colors, Typography, Shadows
   ======================================================================== */
:root {
  --body-font: "Cabin", sans-serif;
  --heading-font: "Quicksand", serif;

  --primary-color: #2200bd;
  --secondary-color: #007bff;
  --alternative-color: #ed1c24;
  --highlight-color: #e83e8c;
  --accent-color: #ff9600;
  --white-color: #ffffff;
  --dark-color: #222222;
  --light-color: #6c757d;
  --border-color: #dee2e6;
  /* ---------------typography------------ */
  /* headings  */
  --heading-1: 2rem;
  --heading-2: 1.75rem;
  --heading-3: 1.5rem;
  --heading-4: 1.375rem;
  --heading-5: 1.25rem;
  /* box shadows  */
  --box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  font-family: var(--body-font);
  line-height: 1.7;
  color: var(--dark-color);
  background-color: var(--body-bg);
}

/* ======================================================================== 
   4. TYPOGRAPHY - Headings & Text Styles
   ======================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.3;
  font-family: var(--heading-font);
}

h1 {
  font-size: var(--heading-1);
}

h2 {
  font-size: var(--heading-2);
}

h3 {
  font-size: var(--heading-3);
}

h4 {
  font-size: var(--heading-4);
}

h5 {
  font-size: var(--heading-5);
}

h6 {
  font-size: var(--heading-6);
}

.hero-title {
  font-size: var(--heading-1);
}

.title {
  font-weight: bold;
}

.sub-title {
  font-size: var(--heading-5);
}

/* ======================================================================== 
   5. UTILITY CLASSES
   ======================================================================== */
/* ------------------utility classes starts here-------------- */
/* anchor color inherit  */
a {
  text-decoration: none;
  color: inherit;
}

/* colors   */
.bg-light {
  background-color: rgb(from var(--primary-color) r g b / 5%);
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.bg-white {
  background-color: var(--white-color);
}

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

ul {
  list-style: none;
  padding-left: 0.5rem;
  margin: 0;
}

.features li {
  position: relative;
  padding-left: 1rem;
  margin: 0.5rem 0;
  font-weight: 600;
  color: var(--light-color);
  font-size: 1rem;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* flex  */
.flex {
  display: flex;
}

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

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

/* section title  */
.section-title span {
  margin-left: 1rem;
}

.text-center.section-title span {
  margin-left: 0;
}

.testimonials .section-title,
.testimonials .section-title .sub-title {
  color: var(--white-color);
}

.testimonials .section-title span::before,
.testimonials .section-title span::after {
  background: var(--white-color);
}

.testimonials .section-title span {
  background-color: var(--accent-color);
}

/* ======================================================================== 
   6. BUTTONS
   ======================================================================== */
/* button styles  */
.btn {
  position: relative;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  outline: none;
  border: none;
  overflow: hidden;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
  line-height: 1;
}

/* --------- Tab Panel Design --------- */

.tab-panel {
  padding: 0.25rem;
  border-radius: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto 3rem;
  background: var(--primary-color);
  width: fit-content;
}

.projects .tab-panel {
  border-radius: 0.75rem;
}

.tab-panel li .btn {
  border: none;
  padding: 0.85rem 2.5rem;
  border-radius: 2.5rem;
  color: var(--white-color);
  margin: 0;
  text-decoration: none;
}

.tab-panel .btn:hover {
  background: var(--white-color);
  color: var(--dark-color);
}

.tab-panel .btn.active {
  background: var(--white-color);
  color: var(--dark-color);
}

/* --------primary-btn----------- */
.btn-primary {
  padding: 1.1rem 5rem 1.1rem 2rem;
  border-radius: 3rem;
  background: linear-gradient(to right,
      var(--primary-color),
      var(--secondary-color));
  color: var(--white-color);
  font-size: 1.1rem;
}

.btn-primary i {
  position: absolute;
  right: 0;
  top: 0;
  height: 2rem;
  width: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  background-color: var(--white-color);
  height: 100%;
}

.btn-primary:hover {
  background: linear-gradient(to left,
      var(--primary-color),
      var(--secondary-color));
}

/* ---------secondary button -------------- */
.btn-secondary {
  color: var(--white-color);
  background: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  z-index: 1;
}

.btn-secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 0;
  background: rgb(from var(--highlight-color) r g b / 95%);
  z-index: -1;
  transition: width 0.5s ease-in-out;
}

.btn-secondary:hover::after {
  width: 100%;
}

/* ---------circle btn ------------ */
.video .btn-circle {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  background: var(--white-color);
  animation: ripple 2s infinite;
}

/* Ripple animation effect for circle button */
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }

  70% {
    box-shadow: 0 0 0 30px rgba(238, 237, 237, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(239, 235, 235, 0);
  }
}

/* ----------SECTION TITLE -------------- */
.section-title .sub-title {
  color: var(--primary-color);
}

.section-title span {
  position: relative;
  display: inline-block;
  height: 5px;
  width: 10px;
  /* margin-left: 1rem; */
  background: var(--primary-color);
}

.section-title span::after,
.section-title span::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 10px;
  background: var(--accent-color);
}

.section-title span::after {
  top: 1px;
  left: -1rem;
}

.section-title span::before {
  top: 1px;
  left: 1rem;
}

/* -------------BREADCRUMB STYLES---------------- */
.breadcrumb {
  height: 25vh;
  color: var(--white-color);
  padding-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: end;
  background-image: linear-gradient(to bottom, rgb(from var(--secondary-color) r g b / 25%), rgb(from var(--secondary-color) r g b / 55%));
}

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

.breadcrumb-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.breadcrumb ul {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0;
}

.breadcrumb a:hover {
  color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}

.breadcrumb .slug {
  display: none;
}

.breadcrumb ul li:not(:last-child)::after {
  content: ">";
  font-family: monospace;
  padding-left: 1rem;
}

/* ======================================================================== 
   7. COMMON SECTIONS - Navbar, Footer, Breadcrumb
   ======================================================================== */
/* --------- NAVBAR STYLES --------- */
.navbar.scrolling {
  background: var(--primary-color);
  padding: 0.75rem 0;
}

.navbar {
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  color: var(--white-color);
}

.navbar .fiver-link {
  display: flex;
  align-items: flex-end;
}

.navbar .fiver-link img {
  height: 30px;
  width: 30px;
}

.navbar a {
  text-decoration: none;
}

.logo img,
.logo-mobile img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
}

.navbar ul {
  list-style: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  margin: 0;
  background: var(--primary-color);
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  gap: 1rem;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 600;
}

.navbar ul.active {
  top: 0;
  left: 0;
  color: var(--white-color);
  display: flex;
  align-items: flex-start;
}

.navbar ul li a {
  position: relative;
  display: inline-block;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
  padding: 0.5rem 0;
}

.navbar ul li .router-link-exact-active {
  color: var(--white-color);
}

/* Mobile menu toggle */
.hamburger {
  height: 2rem;
  width: 2rem;
  font-size: 1.5rem;
  /* background: var(--accent-color); */
  color: var(--white-color);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------- FOOTER STYLES --------- */
.footer {
  position: relative;
  color: var(--light-color);
  padding-top: 3rem;
}

.footer::after {
  content: "";
  background: url("./../uploads/background/bg-5.jpg") right no-repeat;
  position: absolute;
  top: -400px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

/* Logo Styles */

.footer .logo img {
  height: 80px;
  width: 95%;
}

.footer .sub-title {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  color: var(--dark-color);
}

.footer .sub-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 1px;
  background-color: var(--dark-color);
}

.footer .contact-info {
  font-size: 1rem;
}

.footer .contact-info ul {
  gap: 0.5rem;
}

.footer .contact-info span {
  color: var(--highlight-color);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer ul a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer ul a::before {
  content: ">";
  font-family: monospace;
  transition: all 0.3s ease;
}

.footer .gallery-img img {
  max-width: 120px;
  height: 70px;
  width: 100%;
}

.footer .gallery-img img:hover {
  cursor: pointer;
  opacity: 0.7;
}

/* Footer copyright bar*/
.footer .footer-bottom {
  padding: 0.5rem;
  font-weight: 600;
}

.footer .footer-bottom .flex {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.footer-bottom .social-icon {
  display: flex;
  gap: 0.5rem;
}

.footer-bottom .social-icon a {
  height: 2rem;
  width: 2rem;
  font-size: 1.25rem;
  border-radius: 0.25rem;
  border: 1px solid var(--border-color);
  color: var(--dark-color);
  display: grid;
  place-content: center;
}

/* ---------VIDEO POPUP STYLES --------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.video-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  height: 70vh;
  width: 80%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.video-close {
  position: absolute;
  top: 0;
  right: 0.5rem;
  background: var(--secondary-color);
  border: none;
  color: var(--white-color);
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  cursor: pointer;
  z-index: 1000;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------IMAGE POPUP STYLES --------- */
.modal {
  position: relative;
}

.modal .modal-content {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
}

.modal .btn {
  position: fixed;
  background: var(--secondary-color);
  color: var(--white-color);
  border-radius: .25rem;
  border: none;
}

.modal .btn-prev,
.modal .btn-next {
  top: 50%;
  transform: translateY(-50%);
}

.modal .btn-prev {
  left: 1rem;
}

.modal .btn-next {
  right: 1rem;
}

.modal .close-btn {
  position: fixed;
  top: 1rem;
  right: 1rem;
}

.modal .modal-details {
  height: 70vh;
  width: 80vw;
}

.modal .modal-details .image {
  height: 100%;
  width: 100%;
}

.modal .modal-details img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================================================================== 
   8. HOME PAGE SECTIONS
   ======================================================================== */
/* -------HERO SECTION --------- */
.hero {
  min-height: 100vh;
  padding: 150px 0;
  color: var(--white-color);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./../uploads/background/bg-3.png") bottom / cover no-repeat;
  z-index: -1;
}

.hero .image {
  width: 100%;
  height: 100%;
}

.hero .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*------------ SERVICES SECTION ----------- */
.services::before {
  content: "";
  position: absolute;
  background: url("./../uploads/background/bg-4.png") left top no-repeat;
  top: 0;
  bottom: -250px;
  left: 0;
  right: 0;
  z-index: -2;
}

/* services card  */
.service-card {
  padding: 3rem 2rem;
  border-radius: 1rem;
  background: var(--white-color);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card .sub-title {
  font-size: 1.5rem;
}

.service-card i {
  color: var(--highlight-color);
  transition: all 0.5s ease-in-out;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(34, 0, 189, 0.25);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-icon i {
  font-size: 2.2rem;
  color: var(--white-color);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 35px rgba(34, 0, 189, 0.35);
  background: var(--white-color);
}

.service-card:hover .service-icon i {
  color: var(--primary-color);
  transform: scale(1.1);
}

.service-card:hover,
.service-card:hover i {
  color: var(--white-color);
  z-index: 2;
}

.service-card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--primary-color);
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.service-card:hover::before {
  opacity: 1;
  top: 0;
}

.service-card::after {
  content: "";
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--highlight-color);
  position: absolute;
  bottom: -110%;
  right: -110%;
  z-index: -1;
  transition: all 0.7s ease-in-out;
}

.service-card:hover::after {
  bottom: -40%;
  right: -35%;
}

/* animated icons  */
.services .icon-1,
.services .icon-2,
.services .icon-3 {
  position: absolute;
  z-index: -1;
}

.services .icon-1 {
  left: 4rem;
  top: 0;
  animation: spin 5s linear infinite;
}

.services .icon-2 {
  left: 1rem;
  bottom: -3rem;
  animation: float-up-down 5s linear infinite;
}

.services .icon-3 {
  right: 0;
  top: 5rem;
  animation: float-left-right 5s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes float-up-down {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}

@keyframes float-left-right {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-30px);
  }

  100% {
    transform: translateX(0);
  }
}

/* ---------WHY CHOOSE US SECTION -------------- */
.why-choose {
  padding: 9rem 0 3rem 0;
}

.why-choose::after {
  content: "";
  position: absolute;
  left: 0;
  background: url("./../uploads/background/bg-5.png") right top no-repeat;
  top: -50px;
  bottom: -150px;
  right: 0;
  z-index: -2;
}

.why-choose .highlight {
  color: var(--highlight-color);
  margin: 1.5rem 0;
}

.why-choose ul {
  margin: 1.5rem 0;
}

/* --------WHY CHOOSE (BENIFIT CARD) ---------- */
.benefit-card {
  background: var(--white-color);
  box-shadow: var(--box-shadow);
  position: relative;
  padding: 1.5rem 1.5rem 0;
  border-radius: 1rem;
}

.benefit-card .icon {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 4rem;
  padding-top: 1.5rem;
  border-radius: 50px 50px 0 0;
  background: var(--alternative-color);
  text-align: center;
  color: var(--white-color);
}

.benefit-card:nth-child(2) .icon {
  background: var(--secondary-color);
}

.benefit-card:nth-child(3) .icon {
  background: var(--accent-color);
}

.benefit-card:not(:last-child) {
  margin-bottom: 2rem;
}

.benefit-card .card-content {
  position: relative;
  padding: 0 0 2rem 5.5rem;
}

.benefit-card p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--light-color);
}

/* animated icons  */
.why-choose .icon-1,
.why-choose .icon-2 {
  position: absolute;
  animation: spin 10s linear infinite;
  z-index: -1;
}

.why-choose .icon-1 {
  right: 3rem;
  bottom: 5rem;
}

.why-choose .icon-2 {
  right: 1rem;
  top: 5rem;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ============= VIDEO SECTION ============== */
.video {
  padding: 3.75rem 0;
}

.video .btn i {
  opacity: 0.8;
}

.video::before {
  content: "";
  position: absolute;
  height: 70%;
  width: 50%;
  top: 5.5rem;
  bottom: 0;
  right: 0;
  left: 0;
  background: url("./../uploads/background/bg-7.png") left no-repeat;
  z-index: -1;
}

.video-play {
  max-width: 90%;
  width: 100%;
  height: 50vh;
  margin: 0 auto;
  background:
    url("./../uploads/background/bg-6.png") center no-repeat,
    linear-gradient(to right, var(--highlight-color), var(--primary-color));
  border-radius: 1rem;
}

/* =========== WORKING PROCESS SECTION ============ */
.working-process {
  padding: 3.75rem 0;
  overflow: hidden;
}

.process {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.process .bg,
.process .number::before {
  position: absolute;
}

.process .bg {
  z-index: -1;
  animation: rotateAnim 15s linear infinite;
  background-origin: top left;
}

.process:nth-child(2),
.process:nth-child(4) {
  flex-direction: column-reverse;
}

.process .number {
  position: relative;
  height: 2.5rem;
  width: 2.5rem;
  text-align: center;
  line-height: 2.5rem;
  border-radius: 50%;
  background: rgb(from var(--light-color) r g b / 10%);
  font-size: 1.25rem;
  margin-top: 70px;
}

.process .number::before {
  content: "";
  left: 50%;
  top: -65px;
  height: 65px;
  width: 1px;
  background: var(--primary-color);
}

.process:nth-child(2) .number,
.process:nth-child(4) .number {
  margin-bottom: 70px;
}

.process:nth-child(2) .number::before,
.process:nth-child(4) .number::before {
  top: 40px;
}

@keyframes rotateAnim {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ============ PRICING SECTION =============  */
.pricing {
  padding: 3.75rem 0;
}

.pricing::after {
  content: "";
  position: absolute;
  left: 0;
  top: -100px;
  bottom: -200px;
  right: 0;
  background: url("./../uploads/background/bg-8.png") left / cover no-repeat;
  z-index: -1;
}

/* ============ PRICING CARD =============  */
.pricing-card {
  position: relative;
  text-align: center;
  padding: 3rem 1rem;
  background: var(--white-color);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: color 0.4s ease-in-out;
}

.pricing-card .icon {
  height: 120px;
  width: auto;
}

.pricing-card .icon img {
  height: 100%;
  width: auto;
  display: block;
  margin: 0 auto;
}

.price {
  transition: 0.4s ease-in-out;
  color: var(--primary-color);
}

.pricing-card ul {
  margin: 1.25rem 0;
}

.pricing-card ul li {
  margin: 0.5rem 0;
}

.pricing-card>* {
  position: relative;
  z-index: 1;
}

.pricing-card .btn {
  padding: 1rem 2.5rem;
  font-weight: bold;
  box-shadow: var(--box-shadow);
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.pricing-card:hover .btn {
  background: var(--white-color);
  color: var(--accent-color);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

/* Hover overlay */
.pricing-card:hover::before {
  left: 0;
  opacity: 1;
}

.pricing-card:hover,
.pricing-card:hover .price {
  color: var(--white-color);
}

/* ===========ABOUT US SECTION ============= */
.about {
  padding: 3.75rem 0;
}

.about .image {
  width: 100%;
  height: auto;
}

.about .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ------ACCORDION------- */
.accordion {
  overflow: hidden;
}

.accordion-title {
  padding: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  gap: 1rem;
}

.accordion-title i {
  height: 2rem;
  width: 2rem;
  display: grid;
  place-content: center;
  font-weight: bold;
  color: var(--white-color);
  border-radius: 50%;
  background: linear-gradient(to bottom,
      var(--primary-color),
      var(--highlight-color));
}

.accordion-body {
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-body.active {
  padding: 0.25rem 1rem;
  height: auto;
}

/* ==========TESTIMONIAL SECTION ============= */
.testimonials {
  padding: 3.75rem 0;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("./../uploads/background/bg-9.png") center no-repeat;
  z-index: -1;
}

/* -------TESTIMONIAL CARD----------  */
.testimonial-card {
  position: relative;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: var(--white-color);
  border: var(--border-color) 1px solid;
  height: 100%;
}

.testimonial-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.testimonial-card .badge {
  padding: 0.15rem 0.75rem;
  background: #59c65d;
  color: var(--white-color);
  border-radius: 1rem;
}

.testimonial-card .stars i {
  color: var(--accent-color);
}

.testimonial-card .sub-title {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.testimonial-card img {
  height: 3.5rem;
  width: 3.5rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

.bg-graphic {
  position: absolute;
  right: 1rem;
  bottom: 0;
  opacity: 0.1;
}

.testimonial-card .quote {
  font-size: 1.15rem;
}

/* ==========BLOGS SECTION ============= */
.blogs {
  padding: 3.75rem 0;
}

/* ------------BLOG CARD------------- */
.blog-card {
  border-radius: 1rem;
  background: var(--white-color);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.blog-card a {
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.blog-card a:hover {
  color: var(--secondary-color);
}

.blog-card p {
  margin: 0.5rem 0 1rem 0;
}

.blog-card .image {
  height: 260px;
  width: 100%;
}

.blog-card .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

.blog-card .blog-content {
  text-align: center;
  padding: 1rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
}

.blog-card .card-footer img {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
}

/* ======================================================================== 
   9. ABOUT PAGE SECTIONS
   ======================================================================== */
/* --------- FOUNDER SECTION --------- */
.founder {
  padding: 3.75rem 0;
}

.founder::before {
  content: "";
  position: absolute;
  left: 0;
  top: -200px;
  bottom: -100px;
  right: 0;
  background: url("./../uploads/background/bg-8.png") left / cover no-repeat;
  z-index: -1;
}

.founder .image {
  position: relative;
  width: 90%;
  height: 100%;
  margin: 0 auto;
}

.founder .image::before,
.founder .image::after {
  content: "";
  position: absolute;
  height: 180px;
  width: 180px;
  z-index: -1;
}

.founder .image::after {
  right: -1rem;
  bottom: -1rem;
  background: linear-gradient(to bottom,
      var(--primary-color),
      var(--highlight-color));
}

.founder .image::before {
  top: -1rem;
  left: -1rem;
  background: linear-gradient(to top,
      var(--primary-color),
      var(--highlight-color));
}

.founder .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder p {
  margin-top: 0;
  padding-top: 0.25rem;
}

.founder .socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
}

.socials li {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.25rem;
  border: 1px solid var(--border-color);
  display: grid;
  place-content: center;
}

/* --------- TEAM SECTION --------- */
.team-members {
  padding: 3.75rem 0;
}

/* ----------TEAM MEMBER CARD------------- */
.member-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.member-card .image {
  height: 350px;
  width: 100%;
  overflow: hidden;
}

.member-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.member-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  border-radius: 0.5rem;
  background: var(--white-color);
  padding: 0.5rem 1rem;
}

.member-info p {
  margin: 0;
  padding-top: 0.25rem;
}

/* ======================================================================== 
   10. PROJECTS PAGE SECTION
   ======================================================================== */
.projects {
  padding: 1rem 0 3.75rem;
}

/* ---------Project card ------------- */
.project-card {
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  border-radius: 0.5rem;
  cursor: pointer;
}

.project-card p {
  margin-top: 0.5rem;
}

.project-card .image {
  position: relative;
  overflow: hidden;
  height: 220px;
  width: 100%;
  border-radius: 0.5rem 0.5rem 0 0;
}

.project-card .image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
  transition: all 0.5s ease-in-out;
}

.project-card .image:hover img {
  transform: scale(1.1);
}

.project-card .btn-secondary {
  border-radius: 0.5rem;
  margin-top: 1rem;
}

/* --------- CONTACT SECTION --------- */
.contact {
  padding: 3.75rem 0;
}

.contact::after {
  content: "";
  position: absolute;
  background: url("./../uploads/background/bg-5.png") right top no-repeat;
  bottom: 0;
  top: 0;
  right: 0;
  z-index: -2;
}

/* -----------CONTACT INFO---------- */
.info {
  padding: 1rem;
}

.info ul {
  list-style: none;
  padding: 0;
  gap: 1rem;
}

.info ul li {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
  background-color: var(--white-color);
}

.info ul li i {
  border-radius: 0.5rem;
  font-size: 1.5rem;
  padding: 0.5rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info ul li p {
  margin: 0;
  padding-top: 0.25rem;
}

/* ------------CONTACT FORM------------ */
form {
  padding: 1rem;
}

form input,
form select,
form textarea {
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: none;
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  border-radius: 0.5rem;
}

form input:focus,
form textarea:focus {
  outline: none;
}

form input::placeholder,
form textarea::placeholder,
form select::placeholder {
  font-size: 0.9rem;
}

form .btn-secondary {
  border-radius: 0.5rem;
}

/* ======================================================================== 
   11. RESPONSIVE MEDIA QUERIES
   ======================================================================== */
/* --------- Small Devices: 576px and up --------- */
@media (min-width: 576px) {
  :root {
    --heading-1: 2rem;
    --heading-2: 1.75rem;
    --heading-3: 1.5rem;
    --heading-4: 1.375rem;
  }
}

/* --------- Medium Devices: 768px and up --------- */
@media (min-width: 768px) {
  :root {
    --heading-1: 2.25rem;
    --heading-2: 2rem;
    --heading-3: 1.75rem;
    --heading-4: 1.5rem;
  }

  /* ============TAB PANEL =============  */
  .projects .tab-panel {
    border-radius: 3rem;
  }

  /* =========BREADCRUMB=========== */
  .breadcrumb {
    height: 25vh;
  }

  .breadcrumb ul {
    font-size: 1.25rem;
  }

  .breadcrumb .slug {
    display: inline;
  }

  /* ============== HERO SECTION ============ */
  .hero {
    padding: 210px 0 150px 0;
  }

  .hero::before {
    bottom: -120px;
  }

  .hero p {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .hero .image {
    position: absolute;
    top: 2rem;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* --------WHY CHOOSE (BENIFIT CARD) ---------- */
  .benefit-card:nth-child(2) {
    margin-left: 5rem;
  }

  /* ============= VIDEO SECTION ============== */
  .video-play {
    max-width: 800px;
    height: 60vh;
  }

  /* =========== WORKING PROCESS SECTION ============ */
  .working-process .icon img {
    max-width: 240px;
  }

  /* ==========FOUNDER SECTION (ABOUT US PAGE) ============= */
  .founder .image {
    margin: 0;
  }

  .founder .image::before,
  .founder .image::after {
    height: 300px;
    width: 300px;
  }

  /* =========== FOOTER STYLES ============ */
  .footer .footer-bottom .flex {
    flex-direction: row;
    text-align: left;
  }

  .footer .logo img {
    width: auto;
  }

  /* =========== VIDEO POPUP STYLES ============ */
  .modal-content {
    height: 80vh;
    width: 60vw;
  }

  /* =========== IMAGE VIEWER POPUP STYLES ============ */
  .modal .modal-details {
    height: 60vh;
    width: 40vw;
  }
}

/* --------- Large Devices: 992px and up --------- */
@media (min-width: 992px) {
  :root {
    --heading-1: 3rem;
    --heading-2: 2.25rem;
    --heading-3: 2rem;
    --heading-4: 1.75rem;
  }

  .navbar {
    padding-top: 3rem;
  }

  .logo img {
    height: 70px;
  }

  .logo-mobile {
    display: none;
  }

  .navbar ul {
    position: inherit;
    width: 100%;
    height: auto;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    background-color: transparent;
    padding: 0.75rem 0;
  }

  /* Desktop menu hover effects */
  .navbar ul li a::after,
  .navbar ul li .router-link-exact-active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white-color);
    transition: width 0.3s ease;
  }

  .navbar ul li .router-link-exact-active::after {
    width: 100%;
  }

  .navbar ul li a:hover::after {
    width: 100%;
  }

  /* expand navlinks on desktop  */
  .hamburger {
    display: none;
  }

  /*------------ SERVICES SECTION ----------- */
  .services {
    margin: 9rem 0 3rem 0;
  }

  .services .icon-1 {
    left: 0;
    top: 12rem;
    animation: spin 5s linear infinite;
  }

  .services .icon-2 {
    left: -2rem;
    bottom: 0;
    animation: float-up-down 5s linear infinite;
  }

  .services .icon-3 {
    right: -4rem;
    top: 5rem;
    animation: float-left-right 5s linear infinite;
  }

  /* .medium-span-2 {
    grid-column-end: span 1;
  } */
  /* --------WHY CHOOSE (BENIFIT CARD) ---------- */
  .benefit-card {
    padding: 2.5rem 2.5rem 0;
  }

  .benefit-card {
    max-width: 380px;
    width: 100%;
  }

  /* =========== WORKING PROCESS SECTION ============ */
  .working-process .icon img {
    max-width: 200px;
  }

  /* =========== TESTIMONIAL SECTION ============ */
  .testimonials::before {
    top: -50px;
    left: -100px;
  }

  /* -------TESTIMONIAL CARD----------  */
  .testimonial-card {
    padding: 3rem 3rem 2rem 3rem;
  }

  .testimonial-card p,
  .testimonial-card span {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  :root {
    --heading-2: 2.5rem;
    --heading-3: 2.25rem;
  }

  /* ----------SERVICES SECTION --------------- */
  .cards:nth-child(4) {
    margin-top: -11rem;
  }

  .cards:nth-child(3) {
    margin-top: 5rem;
  }

  .cards:nth-child(5) {
    margin-top: -5rem;
  }

  /* --------WHY CHOOSE (BENIFIT CARD) ---------- */
  .benefit-card {
    max-width: 470px;
    width: 100%;
  }

  /* ============= VIDEO SECTION ============== */
  .video-play {
    max-width: 950px;
    height: 80vh;
  }

  /* =========== WORKING PROCESS SECTION ============ */
  .working-process .icon img {
    max-width: 260px;
  }
}

/* --------- XXL Devices: 1400px and up --------- */
@media (min-width: 1400px) {
  :root {
    --heading-1: 3rem;
    --heading-2: 2.75rem;
    --heading-3: 2.5rem;
    --heading-4: 2.25rem;
  }
}