/* 
* Herometricx Custom Styles
* Pixel-perfect CSS for Herometricx hero section
*/

/* Global Styles */

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero-section {
    /* background: linear-gradient(to bottom, #8E88FF, #E8EAF6); */
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin-top: 2% !important;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.3), transparent 60%),
                radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.15), transparent 50%);
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.icon.rotate {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}


/* Navigation */
.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height:72px;
}

.navbar-nav {
    gap: 30px;
}

.nav-link {
    color: var(--text-black);
    font-weight: 500;
    font-size: 16px;
    padding: 0;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

.navbar-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.login-link:hover {
    color: var(--accent-color);
}

.btn-get-started {
    background-color: transparent;
    border: 1px solid var(--text-black);
    border-radius: var(--button-radius);
    color: var(--text-black);
    padding: 10px 20px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-get-started:hover {
    background-color: var(--text-black);
    color: white;
}

.btn-get-started i {
    font-size: 14px;
}

/* Hero Content */
.hero-content {
    padding-top: 80px;
    align-items: center;
}

.hero-text {
    padding-right: 30px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-black);
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-dark);
    max-width: 90%;
}

.btn-demo {
    background-color: var(--button-black);
    color: white;
    border-radius: var(--button-radius);
    padding: 12px 25px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-demo:hover {
    background-color: #333;
    color: white;
}

.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 435px;
}
@media (max-width: 768px) {
    .hero-graphic {
        height: 300px; /* Adjust height for tablets/small laptops */
    }
}

@media (max-width: 480px) {
    .hero-graphic {
        height: 240px; /* Compact height for mobile phones */
    }
    .small-text {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 35% !important;
}
}


.circle-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.circle-outer {
    width: 400px;
    height: 400px;
    top: 0;
    left: 0;
}

.circle-middle {
    width: 300px;
    height: 300px;
    top: 50px;
    left: 50px;
}

.circle-inner {
    width: 200px;
    height: 200px;
    top: 100px;
    left: 100px;
    background-color: rgba(255, 255, 255, 0.1);
}

.logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-large {
    width: 80px;
    height: auto;
    margin-bottom: 5px;
}

.logo-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Social Media Icons */
.social-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-icon img {
    width: 20px;
    height: 20px;
}

/* Base style */
.icon-instagram {
    top: -16px;
    left: 46%;
    transform: translateX(-50%);
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .icon-instagram {
        top: -10px;           /* Adjust vertical placement */
        left: 50%;            /* Center more accurately */
        transform: translateX(-50%);
    }
}


/* Base style */
.icon-meta {
    top: 27%;
    left: 12%;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .icon-meta {
        top: 34%;        /* Adjust vertical position */
        left: 8%;        /* Pull it inward horizontally */
    }
}

/* Optional: smaller mobile screens */
@media (max-width: 480px) {
    .icon-meta {
        top: 37%;
        left: 6%;
    }
}


/* Base style */
.icon-facebook {
    top: 24%;
    right: 14%;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .icon-facebook {
        top: 35%;        /* Adjust vertical position */
        right: 8%;       /* Pull it closer to center if needed */
    }
}

/* Base style */
.icon-youtube {
    bottom: 25%;
    right: 14%;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .icon-youtube {
        bottom: 20%;     /* Slight upward adjustment */
        right: 10%;      /* Move closer to center */
    }
}

/* Optional: for very small screens */
@media (max-width: 480px) {
    .icon-youtube {
        bottom: 18%;
        right: 8%;
    }
}

/* Base style */
.icon-google {
    bottom: 25%;
    left: 14%;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .icon-google {
        bottom: 20%;     /* Move up slightly if needed */
        left: 10%;       /* Pull it closer to center */
    }
}

/* Optional: for very small screens */
@media (max-width: 480px) {
    .icon-google {
        bottom: 18%;
        left: 8%;
    }
}

/* Base style */
.icon-spreadsheet {
    bottom: -19px;
    left: 48%;
    transform: translateX(-50%);
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .icon-spreadsheet {
        bottom: -10px;        /* Raise it a bit */
        left: 50%;            /* Center it more cleanly */
        transform: translateX(-50%);
    }
}

/* Optional: for very small screens */
@media (max-width: 480px) {
    .icon-spreadsheet {
        bottom: -5px;         /* Raise even more for very small screens */
        left: 50%;
        transform: translateX(-50%);
    }
}

.herometricx-section {
  background-color: #f9fafc;
}

.section-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-description {
  /* max-width: 600px; */
  font-size: 1rem;
  color: #555;
}

.feature .icon {
  min-width: 40px;
}
.channels-section {
  background-color: #fff;
}

.section-title {
  font-weight: 700;
}

.section-description {
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.channel-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  transition: transform 0.3s ease;
  height:90%;
}

.channel-card:hover {
  transform: translateY(-5px);
}

.channel-icon i {
  color: #6c63ff;
}
.expertise-list .list-group-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  color: #111;
  padding: 1rem;
  transition: 0.3s;
}
.expertise-list .list-group-item .number {
  color: #0066ff;
  margin-right: 0.5rem;
  font-weight: bold;
}
.expertise-list .list-group-item .icon i {
  font-size: 1.2rem;
  color: #666;
}
.expertise-list .list-group-item.active {
  background-color: #f5f7ff;
  border-left: 4px solid #0066ff;
  color: #000;
}
.about-platform-section {
  background-color: #f8f9fc;
  color: #212529;
  padding: 3rem 1rem;
}

.about-platform-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111;
}
.lapdown{
  margin-bottom: 12rem;
}
.about-platform-title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.about-platform-description {
  max-width: 700px;
  color: #555;
  font-size: 1rem;
}

.about-service-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  height: 100%;
}

.about-service-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-service-icon {
  font-size: 1.8rem;
  color: #5f3dc4;
}

.about-service-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-service-description {
  font-size: 0.9rem;
  color: #666;
}

.about-learn-more-btn {
  border: 1px solid white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #aba6ff;
  text-decoration: none !important;
}

.about-learn-more-btn:hover {
  background-color: #5f3dc4;
  color: #fff;
}

/* --------------------------
   Mobile Responsive Styles
----------------------------- */
@media (max-width: 767.98px) {
  .about-platform-title {
    font-size: 1.5rem;
  }

  .about-platform-subtitle {
    font-size: 1rem;
  }

  .about-platform-description {
    font-size: 0.95rem;
  }

  .about-service-card {
    text-align: center !important;
  }
  .hero-section {
    background: radial-gradient(circle at 40% 30%, #d2b3f6, #c4c0ff, #b2e9ff, #a9f1f5);
    min-height: 0vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}
  .about-service-icon {
    font-size: 2rem;
  }

  .about-learn-more-btn {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}

#expertise-display ul {
  padding-left: 1.2rem;
}
.herometricx-section {
  background: #fff;
}

.diagram-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.central-logo {
  width: 65%;
  height: 65%;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
}

.feature-box {
  background: #fff;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 15px;
  width: 250px;
  position: absolute;
}

.icon {
  /* background: #f0f3ff; */
  padding: 10px;
  border-radius: 50%;
  color: #6c63ff;
  font-size: 20px;
}

.top-left {
    position: absolute;
    top: -7px;
    left: -196px;
}
.bottom-left {
    position: absolute;
    bottom: -34px;
    left: -201px;
}

/* Mobile view adjustment */
@media (max-width: 767px) {
    .bottom-left {
        bottom: -50px; /* adjust as needed */
        left: -20px;   /* adjust as needed */
    }
}
stats-section {
  background-color: #f9fbff;
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
}

.stat-icon {
  position: absolute;
  bottom: 10px;
  right: 15px;
  width: 70px;
  height: 70px;
  opacity: 0.1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Placeholder icon styles */
.icon-1 {
  background-image: url('/images/Vector\ 1.png');
}
.icon-2 {
  background-image: url('/images/Vector\ 2.png');
}
.icon-3 {
  background-image: url('/images/Vector\ 3.png');
}
.icon-4 {
  background-image: url('/images/Vector\ 4.png');
}
.impact-visualization {
  background-color: #f9fbff;
}

.chart-card {
  min-height: 320px;
}
.impact-visualization {
  background-color: #f9fbff;
}

.image-card {
  min-height: 320px;
}
.who-we-are h2 {
  color: #000;
  font-size: 2rem;
}

.info-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
}

.btn-outline-primary {
  border-width: 1px;
  font-weight: 500;
  font-size: 0.95rem;
}
.cta-section {
  background: linear-gradient(135deg, #6b5dd3, #5ed4f1);
  color: #fff;
  padding: 80px 20px;
  min-height: 300px;
}

.cta-title {
  font-size: 1.9rem;
}

.cta-subtitle {
  font-size: 1.1rem;
}

.cta-button {
  border-radius: 12px;
  transition: all 0.3s ease;
  color: #6b5dd3;
  background-color: #fff;
}

.cta-button:hover {
  background-color: #f0f0ff;
  color: #5a4ccf;
}

.cta-note {
  font-size: 0.9rem;
}
.trusted-brands {
  background-color: #f9fafb;
}

.brand-card {
  background-color: white;
  border-radius: 12px;
  padding: 20px 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.brand-logo {
  width: 40px;
  height: auto;
  object-fit: contain;
}

.brand-card i {
  color: #6c757d;
  font-size: 2rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 576px) {
  .cta-title {
    font-size: 1.5rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .who-we-are h2 {
    font-size: 1.5rem;
  }

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

  .info-card i {
    display: block;
    margin: 0 auto 0.75rem auto;
  }
}
/* Responsive spacing */
@media (max-width: 767px) {
  .stat-card {
    padding: 25px 15px;
  }
}
.section-best {
  background-color: #f9fafa;
}

.section-title {
  font-weight: 600;
  color: #121212;
}
.feature-box-custom {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 360px;
  margin-left: -17%;
}
.herometricx-section {
  background-color: #fff;
  position: relative;
}

.orbit-container {
  width: 100%;
  max-width: 700px;
  height: 500px;
  position: relative;
}

.logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.orbit-card {
  position: absolute;
  width: 336px;
}

.top-start {
    top: 0px;
    left: -207px;
}

.top-end {
  top: 11px;
  right: -155px;
}

.bottom-start {
  bottom: 67px;
  left: -215px;
}

.bottom-end {
  bottom: 72px;
  right: -160px;
}

.feature-card {
  border-radius: 12px;
  padding: 1rem;
}

.orbit-arrows::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  transform: translate(-50%, -50%);
  background-image: url('https://i.imgur.com/ThOyLZ1.png'); /* Sample circular arrows graphic */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .orbit-container {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .orbit-card {
    position: static;
    width: 100%;
    margin-bottom: 1rem;
  }

  .orbit-arrows::before {
    display: none;
  }

  .logo-center {
    position: static;
    transform: none;
    margin: 2rem 0;
  }
}

.icon-box {
  width: 40px;
  height: 40px;

}

.section-subtitle {
  /* max-width: 700px; */
  margin: 0 auto;
  color: #666;
}
.wrapper {
  width: 90%;
  max-width: 1536px;
  margin-inline: auto;
  position: relative;
  height: 100px;
  /* margin-top: 5rem; */
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

@keyframes scrollLeft {
  to {
    left: -200px;
  }
}
.wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.item img {
  width: 100%;
  height: auto;
  display: block;
}

.item {
  width: 100px;
  height: 400px;
  /* background-color: red; */
  border-radius: 6px;
  position: absolute;
  left: max(calc(100px * 8), 100%);
  animation-name: scrollLeft;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.trusted-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  /* margin-bottom: 1.5rem; */
}

.item1 {
  animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.item2 {
  animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.item3 {
  animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.item4 {
  animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.item5 {
  animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.item6 {
  animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.item7 {
  animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.item8 {
  animation-delay: calc(30s / 8 * (8 - 8) * -1);
}
.chart-img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.05);
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  /* background: #e8f0fe; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #3366ff;
  flex-shrink: 0;
}

.icon-box.purple {
  background: #f0e8ff;
  color: #8c4dff;
}

.icon-box.blue {
  background: #e8f7ff;
  color: #00aaff;
}

@media (max-width: 767.98px) {
  .section-subtitle {
    font-size: 15px;
    padding: 0 10px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .icon-box {
    margin-bottom: 10px;
  }
}

.hero-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #8E88FF, #E8EAF6);
  font-family: "Segoe UI", sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
}
@media (min-width: 1200px) {
    .h2, h2 {
        font-size: 3rem !important;
    }
  }
.small-text {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 9%;
}

.main-heading {
  font-size: 2.2rem;
  font-weight: bold;
  margin-top: 10px;
}

.description {
  font-size: 1rem;
  margin: 20px auto;
  /* max-width: 600px; */
  opacity: 0.95;
}

.demo-btn {
  background-color: #aba6ff;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
}

.video-preview {
  position: relative;
  max-width: 800px;
  margin: auto;
}



.phone-frame {
  max-width: 200px;
  margin: 20px auto 0;
  border: 2px solid #ccc;
  border-radius: 30px;
  overflow: hidden;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .main-heading {
    font-size: 1.6rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .phone-frame {
    max-width: 150px;
  }
}
.center-right-1 {
    position: absolute;
    top: 88%;
    right: -180px;
    transform: translateY(-50%);
}

/* Mobile view adjustment */
@media (max-width: 767px) {
    .center-right-1 {
        top: 100%;           /* adjust if needed */
        right: -50px;        /* bring it closer to screen */
        transform: translateY(-50%);
    }
}
.center-right {
    position: absolute;
    top: 23%;
    right: -175px;
    transform: translateY(-50%);
}

/* Mobile view adjustment */
@media (max-width: 767px) {
    .center-right {
        top: 30%;            /* Adjust as needed for vertical positioning */
        right: -50px;        /* Bring it closer to the screen */
        transform: translateY(-50%);
    }
}


.arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><path d="M20,0 C30,10 10,30 20,40" stroke="%236c63ff" stroke-width="2" fill="none" marker-end="url(#arrowhead)"/></svg>') no-repeat center;
}

.arrow-top {
  top: -70px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
}
.arrow-bottom {
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
.arrow-right {
  top: 50%;
  right: -60px;
  transform: translateY(-50%) rotate(90deg);
}
.arrow-left {
  top: 50%;
  left: -60px;
  transform: translateY(-50%) rotate(-90deg);
}

/* Responsive */
@media (max-width: 767px) {
  .diagram-wrapper {
    max-width: 100%;
  }

  .feature-box {
    position: static;
    margin: 15px auto;
  }

  .arrow {
    display: none;
  }

  .central-logo {
    margin: 30px auto;
  }
}

@media (max-width: 768px) {
  .expertise-list .list-group-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .channel-card {
    padding: 16px 12px;
  }
  .channel-icon i {
    font-size: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .section-description {
    font-size: 0.95rem;
  }
  .feature {
    flex-direction: column;
    align-items: flex-start;
  }
  .feature .icon {
    margin-bottom: 0.5rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .navbar-nav {
        gap: 15px;
        margin: 20px 0;
    }
    
    .navbar-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 15px;
    }
    
    .hero-content {
        padding-top: 40px;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-text p {
        max-width: 100%;
    }
    
    .circle-container {
        width: 300px;
        height: 300px;
    }
    
    .circle-outer {
        width: 300px;
        height: 300px;
    }
    
    .circle-middle {
        width: 225px;
        height: 225px;
        top: 37.5px;
        left: 37.5px;
    }
    
    .circle-inner {
        width: 150px;
        height: 150px;
        top: 75px;
        left: 75px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
    }
    
    .social-icon img {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 10px 0;
                margin-top: 17%;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .circle-container {
        width: 250px;
        height: 250px;
    }
    
    .circle-outer {
        width: 250px;
        height: 250px;
    }
    
    .circle-middle {
        width: 187.5px;
        height: 187.5px;
        top: 31.25px;
        left: 31.25px;
    }
    
    .circle-inner {
        width: 125px;
        height: 125px;
        top: 62.5px;
        left: 62.5px;
    }
    
    .logo-large {
        width: 60px;
    }
    
    .logo-text {
        font-size: 10px;
    }
}

@media (max-width: 575.98px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .btn-demo {
        padding: 10px 20px;
    }
    
    .circle-container {
        width: 200px;
        height: 200px;
    }
    
    .circle-outer {
        width: 200px;
        height: 200px;
    }
    
    .circle-middle {
        width: 150px;
        height: 150px;
        top: 25px;
        left: 25px;
    }
    
    .circle-inner {
        width: 100px;
        height: 100px;
        top: 50px;
        left: 50px;
    }
    
    .social-icon {
        width: 25px;
        height: 25px;
    }
    
    .social-icon img {
        width: 12px;
        height: 12px;
    }
}
