@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-bg: linear-gradient(0deg, #332039 0%, #692835 29%, #4d5f91 100%);
  --accent: #3a66a8;
  --accent-dark: #2e4a7b;
  --text-light: #fff;
  --text-dark: #000;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", Arial, sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  /* Maximum width on large screens */
  margin: 0 auto;
  /* Center the container */
  padding: 0 20px;
  /* Add padding on sides */
  box-sizing: border-box;
  /* Include padding in width calculation */
}

/* hero layout */
.hero-section {
  background: var(--primary-bg);
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0 clamp(1rem, 3vw, 2rem);
  /* vertically center content */
}

.main-hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: clamp(2rem, 8vh, 5rem) clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
}

/* curve now provided via inline SVG in HTML; pseudo-element removed */

.curve {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100px;
  pointer-events: none;
}

/* decorative graphic on right side of hero */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -123px;
  /* push slightly beyond edge so rings extend under nav */
  width: 50vw;
  /* make wide enough to pass through navbar area */
  max-width: 600px;
  height: 100%;
  background: url("../images/right-hero-element.png") no-repeat center center/contain;
  pointer-events: none;
  z-index: 20;
  /* ensure it sits above the navbar */
}

.image-frames .frame.frame1 {
  border-radius: 15px 15px 50px 0px;
}

.frame-img {
  background: linear-gradient(45deg, #653043, transparent);
  height: 250px;
}

/* ensure navbar remains above background gradient but below decoration */
.navbar {
  position: relative;
  z-index: 1;
}

.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10vh;
  padding: 20px 0;
}

.frame.frame2 img {
  object-fit: cover !important;
  object-position: top;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-links li+li {
  margin-left: 20px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #ddd;
}

.logo-area {
  width: clamp(80px, 15vw, 120px);
  height: auto;
  border-radius: 5px;
  flex-shrink: 0;
}

.logo-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content-column {
  padding: clamp(0.5rem, 2vw, 1.25rem);
}

.content-column h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  color: var(--text-light);
  margin-bottom: clamp(1rem, 3vh, 1.5rem);
  font-weight: 300;
  line-height: 1.2;
  /* thin weight for heading */
}

.content-column h1 span {
  font-weight: 700;
  display: inline;
  /* keep 'financiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨re' bold */
}

.footer-social a {
  width: 32px;
  height: 32px;
  background: #ffffff;
  align-content: center;
  border-radius: 100%;
  color: #6e2837;
  font-size: 22px;
}

.content-column p {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--text-light);
  margin-bottom: clamp(1.5rem, 4vh, 2rem);
  line-height: 1.6;
  max-width: 90%;
}

.cta-button,
.cta-button-secondary {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: 50px;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-button {
  background-color: #ffffff;
  color: #682835;
  border: none;
}

.cta-button:hover {
  background-color: var(--accent-dark);
}

.cta-button-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  margin-left: clamp(0.5rem, 2vw, 1.25rem);
}

.cta-button-secondary:hover,
.cta-button-secondary:focus {
  background-color: var(--text-light);
  color: var(--accent);
}

.cta-button-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 2vw, 1rem);
}

.image-column {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  position: relative;
}

.image-column img {
  width: 100%;
  height: auto;
}

/* themed box frames */
.image-frames {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  height: clamp(350px, 50vw, 550px);
  /* determined by absolute children */
}

.image-frames .frame {
  position: absolute;
  border: 0;
  border-radius: 15px 15px 15px 0;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  background: var(--text-light);
}

.image-frames .frame img {
  display: block;
  width: 100%;
  height: -webkit-fill-available;
  object-fit: contain;
}

.image-frames .frame1 {
  width: clamp(180px, 25vw, 230px);
  top: 0;
  left: clamp(50px, 15vw, 0);
  z-index: 99;
  height: auto;
  max-height: clamp(250px, 35vw, auto);
}

.image-frames .frame2 {
  width: clamp(250px, 40vw, 350px);
  top: 0;
  z-index: 30;
  /* sit above right-side decoration */
  right: 1px;
  height: clamp(400px, 50vw, 550px);
}

.frame-content {
  color: var(--text-light);
  text-align: center;
  padding: 0 20px;
}

.frame-content h2 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  text-align: left;
  margin-bottom: 10px;
}

.frame-content span {
  display: block;
  color: var(--text-dark);
}

/* style first value (Confiance) maroon */
.frame-content span:first-child {
  color: maroon;
}

.rectangle-box {
  position: absolute;
  left: 0;
  bottom: clamp(60px, 15vh, 50px);
  transform: translateX(58px);
  width: clamp(280px, 40vw, 357px);
  height: clamp(70px, 10vh, 80px);
  background-color: var(--text-light);
  border-radius: 0 20px 20px 0px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  gap: 10px;
  padding: 0.5rem;
}

.left-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background-color: #682b39b5;
  border-radius: 0;
}

.circle-profile {
  width: 60px;
  height: 60px;
  background-color: var(--accent);
  border-radius: 50%;
}

.review {
  width: 60%;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  line-height: 1.4;
}

.stars {
  color: #f5c518;
  font-size: 16px;
  margin-left: 5px;
}

/* hamburger menu toggle (hidden checkbox) */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-100%);
  z-index: 2;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background: var(--text-light);
  transition: transform 0.3s ease;
}

.nav-toggle-label span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle-label span::before {
  content: "";
  top: -8px;
}

.nav-toggle-label span::after {
  content: "";
  top: 8px;
}

/* toggle animation when checked */
.nav-toggle:checked+.nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked+.nav-toggle-label span::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle:checked+.nav-toggle-label span::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* responsive adjustments */
@media (max-width: 1200px) {
  .hero-section::before {
    right: -200px;
    max-width: 500px;
  }

  .main-hero-grid {
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .navbar {
    flex-wrap: wrap;
    padding: 15px 20px;
    gap: 5vh;
  }

  .logo-area {
    flex: 1 1 auto;
  }

  .nav-toggle-label {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 10px 0;
  }

  .nav-toggle:checked~.nav-links {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  .nav-links li+li {
    margin-left: 0;
  }

  .nav-links a {
    padding: 8px 0;
  }

  .hero-section::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .main-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 3rem;
  }

  .content-column {
    order: 1;
  }

  .image-column {
    order: 2;
    min-height: 400px;
  }

  .content-column p {
    max-width: 100%;
  }

  .cta-button-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 0 1rem 2rem;
  }

  .main-hero-grid {
    padding: 1.5rem 1rem;
  }

  .image-column {
    min-height: 350px;
  }

  .image-frames {
    height: 400px;
  }

  .image-frames .frame1 {
    left: 20px;
    width: 45%;
    max-width: 200px;
  }

  .image-frames .frame2 {
    right: 0;
    width: 60%;
    max-width: 250px;
    height: 400px;
  }

  .rectangle-box {
    transform: translateX(10%);
    bottom: 40px;
  }
}

@media (max-width: 640px) {
  .cta-button-group {
    flex-direction: column;
    width: 96%;
    align-items: stretch;
  }

  .cta-button,
  .cta-button-secondary {
    width: -webkit-fill-available;
    text-align: center;
    margin: 0;
  }

  .image-column {
    min-height: 300px;
  }

  .image-frames {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 0 0.5rem 1.5rem;
  }

  .logo-area img {
    width: 70px;
  }

  .image-frames .frame2 {
    right: 56px;
  }

  .image-frames .frame.frame1 {
    width: 100px;
  }

  .main-hero-grid {
    padding: 1rem 0.5rem;
    gap: 2rem;
  }

  .image-column {
    min-height: 280px;
  }

  .frame-content h2 {
    font-size: 12px;
  }

  .image-frames {
    height: 300px;
  }

  .image-frames .frame1 {
    left: 55px;
    width: 40%;
    max-width: 150px;
  }

  .frame-img {
    height: 100px;
  }

  .image-frames .frame2 {
    width: 55%;
    max-width: 150px;
    height: 268px;
  }

  .rectangle-box {
    transform: translateX(5%);
    bottom: 30px;
    width: 90%;
    max-width: 280px;
    height: auto;
    min-height: 70px;
    padding: 0.75rem 0.5rem;
  }

  .review {
    width: 65%;
  }

  .circle-profile {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 360px) {
  .navbar {
    padding: 10px 15px;
  }

  .image-frames .frame1 {
    left: 5px;
  }

  .frame-content {
    padding: 0 10px;
  }

  .rectangle-box {
    font-size: 0.7rem;
  }

  .circle-profile {
    width: 45px;
    height: 45px;
  }

  .stars {
    font-size: 14px;
  }
}

/* Optional: Breakpoints for different screen sizes */
@media screen and (min-width: 640px) {
  .container {
    padding: 0 30px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    padding: 0 50px;
  }
}

/* Services Section */
.service.top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin: 50px 0;
}

section.services-section {
  padding: 50px 0 100px;
}

.service.top h2 {
  font-size: clamp(28px, 5vw, 55px);
  font-weight: 400;
  line-height: 1.2;
}

.service.top h2 span {
  color: #62172b;
  font-weight: 800;
}

.service.top p {
  color: #6a6a6a;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.service-card-one {
  padding: 60px 20px;
  background: #fff;
  box-shadow: 0 20px 10px 3px #0000001f;
  border-radius: 10px;
  transform: skewY(-5deg);
  text-align: left;
  position: relative;
  z-index: 1;
}

.service-card-one::before {
  content: "";
  background: url(../images/service-ellipse.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 44%;
  height: 44%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.service-card-one h3 {
  color: #3b3b3b;
  font-size: 25px;
  margin-bottom: 20px;
}

.service-card-one p {
  color: #6a6a6a;
  margin-bottom: 40px;
}

.service-card-two {
  padding: 35px 20px 60px;
  background: linear-gradient(#342139, #602736, #3a66a8);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px 5px #0000001f;
  color: #fff;
}

.service-card-three {
  padding: 60px 20px;
  background: #fff;
  box-shadow: 0 20px 10px 3px #0000001f;
  border-radius: 10px;
  transform: skewY(5deg);
  text-align: right;
  position: relative;
  z-index: 1;
}

.service-card-three::before {
  content: "";
  background: url(../images/service-ellipse.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 44%;
  height: 44%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.service-card-three h3 {
  color: #3b3b3b;
  font-size: 25px;
  margin-bottom: 20px;
}

.service-card-three p {
  color: #6a6a6a;
  margin-bottom: 40px;
}

.service-card-two h3 {
  margin: 30px 0 30px;
  font-size: 26px;
}

.service-card-two p {
  margin-bottom: 35px;
}

.services-bottom {
  text-align: center;
  margin: 20px 0;
}

.services-bottom a {
  background: #62172b;
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

/* Counter Section */
.counters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 50px;
}

.counter {
  background: #fff;
  box-shadow: 0 0 10px 4px #0000001c;
  padding: 20px 30px;
  border-radius: 20px 0px 20px 0px;
  text-align: center;
}

.counter h3 {
  font-size: 40px;
  margin: 0;
  color: #62172b;
}

.counter p {
  margin: 0;
  color: #6a6a6a;
  font-weight: 600;
}

.countergradient {
  background: linear-gradient(180deg, #472337, #642735, #3a66a8);
}

.countergradient h3,
.countergradient p {
  color: #fff;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #031a3c, #6a2835, #3a66a8);
  padding: 100px 0 150px;
  margin: 200px 0 0px;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-content h6 {
  font-size: 20px;
  color: #fff;
  margin: 0;
  font-weight: 400;
  margin-bottom: 5px;
}

.about-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
  margin-bottom: 30px;
}

.about-features {
  display: flex;
  align-items: baseline;
  gap: 20px;
  color: #fff;
}

.about-features p {
  margin: 20px 0;
}

.about-features i {
  font-size: 20px;
}

.about-features-content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.about-image-inner img {
  width: 100%;
  box-shadow: 10px -10px 5px 4px #49494959;
  position: absolute;
  border-radius: 20px;
  top: -210px;
  left: 70px;
}

.about-image-inner {
  position: relative;
}

.about-image-stats {
  background: #fff;
  position: absolute;
  display: flex;
  gap: 15px;
  padding: 15px 30px 15px 20px;
  border-radius: 0px 50px 50px 0px;
  align-items: center;
  border-left: 30px solid #946972;
  top: 50%;
  left: 0;
  transform: translate(-6%, -182%);
}

.about-image-stats h3 {
  margin: 0;
  font-size: 35px;
  color: #62172b;
}

.about-image-rating p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.about-image-rating p i {
  color: #fcbe48;
  margin-left: 3px;
}

.about-image {
  position: relative;
}

/* Utility */
.hidden {
  display: none !important;
}

/* FAQ Section */

section.faq-section {
  padding: 100px 0;
}

.faqs-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  position: relative;
  gap: 47px;
}

/* stacked layout on mobile */
@media (max-width: 768px) {
  .faqs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-image {
    margin: 0 auto;
    width: 80%;
  }
}

.faq-image {
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.faqs-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/faq-ellipse.png);
  width: 90%;
  height: 100%;
  z-index: -1;
  background-size: auto;
  background-repeat: no-repeat;
  transform: translate(-33%, 0%);
}



.faq-header h2 {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 30px;
}

.faq-header h2 span {
  font-weight: 800;
  background: linear-gradient(to right, #790c22, #74a6d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-image img {
  border-radius: 0;
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

/* newly added FAQ item styles */
.faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 16px;
}

.faq-question {
  background: #ededed;
  border: none;
  border-radius: 5px;
  padding: 20px 16px;
  font-weight: 500;
  cursor: pointer;
  margin: 10px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #edf2f7;
}

.faq-toggle {
  font-size: 1.25rem;
  line-height: 1;
}

.faq-answer {
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 6px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .faq-answer {
    border-left: none;
    border-top: 3px solid #6366f1;
    border-radius: 6px 6px 0 0;
  }
}

/* end of FAQ item rules */
color: #6a6a6a;
}

.faq-cta {
  background: #fff;
  border-radius: 50px;
  box-shadow: 0px 3px 10px 0 #00000040;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 40px 10px 10px;
  gap: 20px;
  margin-top: 20px;
  width: fit-content;
}

.faq-contact h6 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}

.faq-contact a {
  text-decoration: none;
  color: #62172b;
  font-weight: 700;
  font-size: 18px;
}

/* Logo Section */
.clients-logos {
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
}

.client-logo {
  text-align: center;
}

/* Services Details */
.services-details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 100px 0;
}

.services-details-image {
  text-align: right;
  position: relative;
  z-index: 1;
}

.services-details-text h6 {
  font-size: 22px;
  color: #000;
  margin: 0;
  font-weight: 600;
  margin-bottom: 5px;
}

.services-details-text h2 {
  font-size: clamp(26px, 4.5vw, 50px);
  margin: 0;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}

.services-details-text h2 span {
  font-weight: 800;
  background: linear-gradient(to right, #790c22, #74a6d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-details-text p {
  color: #6a6a6a;
  margin: 0;
  margin-bottom: 10px;
  font-size: 15px;
}

.services-details-text h3 {
  font-size: 25px;
  line-height: 1;
  margin: 20px 0;
  text-transform: uppercase;
  font-weight: 600;
}

.award {
  display: flex;
  gap: 15px;
  align-items: baseline;
}

.award p {
  margin: 0;
  color: #000;
  font-weight: 600;
  font-size: 20px;
}

.award i {
  font-size: 22px;
  color: #62172b;
}

.awards {
  margin-top: 30px;
}

.service-details-cta a {
  background: linear-gradient(270deg, #0088ff, #893c6a, #7a0d22);
  padding: 15px 20px;
  display: inline-block;
  margin-top: 20px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.services-details::before {
  content: "";
  background: url(../images/service-details-ellipse.png);
  width: 60%;
  height: 70%;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 50%;
  bottom: 50%;
  z-index: -1;
  transform: translate(99%, 70%);
}

.services-details {
  position: relative;
  z-index: 1;
}

/* Marquee section */
.marquee-flex {
  display: flex;
  gap: 50px;
  font-size: 30px;
  font-weight: 600;
  align-items: center;
  color: #fff;
  line-height: 1;
}

.marquee-section {
  background: linear-gradient(90deg, #7e1935 30%, #033763 63%, #2079c7);
  padding: 30px 40px;
  margin: 50px 0;
}

/* Testimonials Section */
.testimonial-header {
  padding-top: 50px;
  text-align: center;
}

.testimonial-header h2 {
  font-size: clamp(26px, 4.5vw, 50px);
  margin: 0;
  color: #3c3c3c;
  font-weight: 400;
}

.testimonial-header h2 span {
  font-weight: 800;
  background: linear-gradient(to right, #790c22, #74a6d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-header p {
  margin: 10px 0 50px 0;
  color: #6a6a6a;
}

.tesimonials-bg {
  text-align: center;
}

.testimonial-one {
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  box-shadow: 0 0 10px 4px #00000026;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  transform: translate(0, -50%);
}

.testimonials-main {
  position: relative;
  z-index: 1;
}

.profile-desc h4 {
  margin: 0;
  color: #3c3c3c;
  font-size: 18px;
}

.profile-desc h6 {
  margin: 0;
  color: #62172b;
  font-size: 14px;
}

.testimonial-two {
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  box-shadow: 0 0 10px 4px #00000026;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  transform: translate(-50%, 20%);
}

.testimonial-three {
  background: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: 0 0 10px 4px #00000026;
  padding: 10px 20px;
  display: flex;
  align-items: start;
  gap: 10px;
  border-radius: 10px;
  transform: translate(0, -50%);
}

.profile-desc p {
  margin: 0;
  margin-top: 10px;
  color: #6a6a6a;
  font-size: 13px;
}

section.testimonials-section {
  margin: 100px 0;
}

/* Newsletter Section */

section.newsletter-section {
  margin: 100px 0;
}

.newletter {
  padding: 100px 0;
  background: linear-gradient(270deg, #0088ff, #893c6a, #7a0d22);
  text-align: center;
  border-radius: 20px;
}

.newletter h2 {
  font-size: clamp(26px, 5vw, 55px);
  color: #fff;
  margin: 0;
}

.newletter p {
  margin: 10px 0 40px;
  color: #fff;
}

.newletter form input {
  padding: 15px 20px;
  font-size: 16px;
  font-family: "Poppins";
  border-radius: 10px 0px 0px 10px;
  background: #fff;
  border: none;
  color: #000;
}

.newletter form {
  display: flex;
  justify-content: center;
}

.newletter form button {
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  font-family: "Poppins";
  background: linear-gradient(90deg, #992e50, #6b2835);
  border-radius: 0px 10px 10px 0px;
}

/* Footer */
footer.footer-section {
  background: linear-gradient(315deg, #6a2835, #3a66a8);
  position: relative;
  padding: 50px 0 0px;
  /* border-radius: 40px 40px 0 0; */
}

.footer {
  text-align: center;
  color: #fff;
}

.menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.menu ul li {
  list-style: none;
}

.menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.menu {
  padding: 20px 0;
}

.footer-social {
  padding: 0px 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.copyright {
  border-top: 1px solid #fff;
  padding: 20px 0;
}

.copyright p {
  margin: 0;
}

/* Admin Login */
.card-shadow {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.input-focus:focus {
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.btn-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.shake {
  animation: shake 0.5s;
}

:root {
  /* color variables which can be overridden by a theme */
  --sidebar-bg: #121212;
  --sidebar-text: #ffffff;
  --sidebar-hover-bg: #1e1e1e;
  --sidebar-footer-bg: #181818;
  --sidebar-active-bg: #2a2a2a;
  --sidebar-primary: #E9AD3F;
}

.sidebar {
  transition: all 0.3s ease;
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
}

.sidebar a {
  color: inherit;
}

.sidebar a.sidebar-link:hover {
  background: var(--sidebar-hover-bg);
}

.sidebar a.active-menu-item {
  background: var(--sidebar-active-bg);
}

.user-avatar {
  background: var(--sidebar-primary);
}


.sidebar.collapsed {
  width: 70px;
}

.sidebar.collapsed .sidebar-text {
  display: none;
}

.sidebar.collapsed .logo-text {
  display: none;
}

.sidebar.collapsed .user-info {
  display: none;
}

.main-content {
  transition: all 0.3s ease;
}

.dashboard-card {
  transition: transform 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-5px);
}

.active-menu-item {
  background-color: #e9ad3f;
  color: black;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

table th:first-child {
  border-top-left-radius: 0.75rem;
}

table th:last-child {
  border-top-right-radius: 0.75rem;
}

.sideb-nav::-webkit-scrollbar {
  background-color: #202020;
  width: 10px;
}

.sideb-nav::-webkit-scrollbar-thumb {
  background-color: #e9ad3f;
  border-radius: 10px;
}

.container.faqs-grid{
  padding: 0 !important;
}