/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  position: relative;
  overflow-x: hidden;
}

/* Resonance effect canvas */
.resonance-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50; /* Above background but below content */
  pointer-events: none;
  background: transparent; /* Ensure no background */
  mix-blend-mode: lighten; /* Makes particles blend nicely */
}

/* Hero section styles */
.hero {
  background: linear-gradient(63deg, #000, #a3003f, #080a47, #000);
  background-size: 400% 400%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  animation: change 10s ease-in-out infinite; 
}

/* Feature section styles */
.feature {

  background-size: 400% 400%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 10rem ;

  position: relative;

}

.empower {

  background-size: 400% 400%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 10rem ;

  position: relative;

}

.feature-content ul {
  list-style-type: disc;
  padding-left: 2rem;
}

.feature-content li {
  margin-bottom: 0.5rem;
}

.feature-container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  max-width: 1200px;
}

.empower-container2 {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  max-width: 1200px;
}

@media (max-width: 976px) {



    .feature {
        padding: 1rem;
        margin-top: 100px;
    }

    .feature-container, .empower-container2 {
        flex-direction: column;
        padding: 0;
    }
}

@keyframes change {
    0% {
      background-position: 0 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0 50%;
    }
  }  

.hero-content {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.hero-text {
  width: 55%;
  padding: 6rem 0;
  color: white;
  z-index: 1;
}

.new-release {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.main-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.main-heading2 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.description {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 3rem;
  opacity: 0.85;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.btn {
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.9rem 2rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #4287f5;
  color: white;
}

.btn-primary:hover {
  background-color: #3071d9;
}

.btn-secondary {
  color: white;
  position: relative;
}

.btn-secondary:hover {
  opacity: 0.8;
}

.hero-image {
  width: 45%;
  position: relative;
}

/* Add a background image or effect for the right side if needed */
.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 150%;
  height: 100%;
  background-image: url('../assets/FathomMap.png');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}


.flex {
  display: flex;
}

/* See Beyond Section Styles */
.see-beyond {
  background-color: #fff;
  padding: 6rem 0;
}

.see-beyond-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 5rem;
  align-items: center;
  padding: 0 5%;
}

.image-container {
  flex: 1;
  max-width: 50%;
  position: relative;
}

.feature-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.feature-image2 {
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  flex: 0 0 auto; /* fixed width */
}

.empower-image2 {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.features-content {
  flex: 1;
  max-width: 50%;
}

.features-label {
  color: #4287f5;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.features-heading {
  font-size: 3.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.features-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2.5rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  margin-top: 0.25rem;
}

.feature-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}

.feature-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
}

/* Navbar styles */
.navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  background-color: transparent; /* Changed to transparent */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  transition: all 0.3s ease-in-out;
  max-width: 100%;
  width: 100vw;
  margin: 0 auto;
  background-color: white;
}

/* Logo styles */
.logo img {
  height: 40px;
  transition: all 0.3s ease-in-out;
  transform: scale(1.2) translateY(4px);
}

/* Navigation links styles */
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 20px;
}

.nav-link {
  color: #03295e; /* Changed to white for the transparent navbar */
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  opacity: 0.8;
}

/* Contact button styles */
.contact-btn a {
  background-color: white;
  color: #03295e;
  padding: 10px 20px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid #03295e;
}

.contact-btn a:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.arrow {
  margin-left: 5px;
}

/* Scrolled navbar styles */
.navbar-container.scrolled {
  position: fixed;
  display: flex;
  justify-content: center;
}

.navbar-container.scrolled .navbar {
  transform: translateY(40px);
  background-color: white;
  padding: 10px 5%;
  max-width: 1200px;
  margin: 0 auto;
  width: 80vw;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container.scrolled .logo img {
  height: 35px;
  transform: scale(1.2) translateY(0px);
}

.navbar-container.scrolled .nav-link {
  color: #03295e;
}

.navbar-container.scrolled .contact-btn a {
  color: #03295e;
}

.navbar-container.scrolled .contact-btn a:hover {
  background-color: #021f45;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .see-beyond-container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .image-container, .features-content {
    max-width: 100%;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-text {
    width: 100%;
    padding: 4rem 0 2rem 0;
  }

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

.feature-content {
  flex-direction:column;
  vertical-align: top;
}

.empower-content2 {
  flex-direction:column;
  vertical-align: top;
}

/* Empower section styles */
.empower-section {
  background-size: 400% 400%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 10rem ;

  position: relative;
}





.empower-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.empower-header {
  margin-bottom: 3rem;
}

.empower-subtitle {
  color: #4287f5;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.empower-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #222;
  line-height: 1.1;
}

.empower-content {
  display: flex;
  gap: 4rem;
  margin-bottom: 5rem;
}

.empower-column {
  flex: 1;
}

.empower-column p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

.empower-cta {
  margin-top: 2rem;
}

.empower-image-container {
  width: 100%;
  position: relative;
  margin-top: 3rem;
}

.empower-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 70vh;
  padding-bottom: 45%;
  overflow: hidden;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.empower-image {
  position: absolute;
  top: 100px;
  width: 100vw;
  padding-left: 5rem;
  padding-right: 5rem;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  height: 100%;
  object-fit: cover;
  display: block;
}





.image-fade-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

/* Responsive styles for empower section */
@media (max-width: 992px) {
  .empower-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .empower-heading {
    font-size: 2.5rem;
  }
  
  .empower-image-wrapper {
    padding-bottom: 60%;
  }
}

/* Community section styles */
.community-section {
  margin-top: 6rem;
  background-color: #000204;
  padding: 6rem 0;
  text-align: center;
}

.community-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Overlapping circles with images */
.circles-container {
  position: relative;
  height: 180px;
  width: 300px;
  margin-bottom: 3rem;
}

.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  border: 4px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.circle-1 {
  left: 0;
  z-index: 1;
}

.circle-2 {
  left: 90px;
  z-index: 3;
}

.circle-3 {
  right: 0;
  z-index: 2;
}

/* Heading and description */
.community-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.community-description {
  margin-bottom: 2.5rem;
}

.community-description p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 0.5rem;
}

/* Call to action button */
.community-cta {
  margin-top: 1rem;
}

.btn-get-started {
  background-color: #4287f5;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(66, 135, 245, 0.25);
}

.btn-get-started:hover {
  background-color: #3071d9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(66, 135, 245, 0.35);
}

.user-icon {
  margin-right: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .community-heading {
    font-size: 2.5rem;
  }

  .community-description p {
    font-size: 1.1rem;
  }
}

/* How It Works section styles */
.how-it-works-section {
  background-color: #e6f4ff;
  padding: 6rem 0;
  position: relative;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  color: #4287f5;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.how-it-works-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.how-it-works-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  max-width: 600px;
  margin-bottom: 4rem;
}

.steps-container {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.step-card {
  background-color: white;
  border-radius: 12px;
  padding: 2.5rem;
  flex: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 1s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  background: #000204;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-card:hover .step-title,
.step-card:hover .step-description {
  color: #fff;
}

.step-number {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4287f5;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Responsive adjustments for how it works section */
@media (max-width: 992px) {
  .steps-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .how-it-works-heading {
    font-size: 2.5rem;
  }
}

/* Explore Visualizations section styles */
.explore-section {
  background-color: #fff;
  padding: 6rem 0;
  width: 100vw;
  overflow: hidden;
}

.explore-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.explore-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.explore-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  max-width: 600px;
  margin-bottom: 4rem;
}

.visualization-gallery {
  display: flex;
  width: 100vw;
  overflow-x: scroll;
  gap: 2rem;
}

.visualization-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  overflow: hidden;
  min-width: 300px;
  max-width: 300px;
  padding-bottom: 60px;
}

/* .visualization-card:hover {
  transform: translateY(-10px);
} */

.visualization-image {
  height: 400px;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.visualization-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visualization-card:hover .visualization-image img {
  transform: scale(1.05);
}

.visualization-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-top: 1.5rem;
  transition: color 0.3s ease;
}

.visualization-card:hover .visualization-title {
  color: #4287f5;
}

/* Responsive adjustments for explore section */
@media (max-width: 768px) {
  .visualization-gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .explore-heading {
    font-size: 2.5rem;
  }
}

/* Industry Applications section styles */
.industry-section {
  background-color: #f8f9fa;
  padding: 6rem 0;
}

.industry-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.industry-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.industry-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.industry-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  width: 180px;
}

.industry-card:hover {
  transform: translateY(-10px);
}

.industry-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover .industry-image img {
  transform: scale(1.05);
}

.industry-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  transition: color 0.3s ease;
}

.industry-card:hover .industry-title {
  color: #4287f5;
}

.view-all-container {
  margin-top: 2rem;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #222;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border: 2px solid #eee;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  border-color: #4287f5;
  color: #4287f5;
  background-color: rgba(66, 135, 245, 0.05);
}

.view-all-btn svg {
  transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
  transform: translateX(5px);
}

/* Responsive adjustments for industry section */
@media (max-width: 992px) {
  .industry-gallery {
    gap: 1.5rem;
  }
  
  .industry-card {
    width: 160px;
  }
  
  .industry-image {
    width: 120px;
    height: 120px;
  }
  
  .industry-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .industry-gallery {
    gap: 1rem;
  }
  
  .industry-card {
    width: 140px;
  }
  
  .industry-image {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .industry-gallery {
    justify-content: space-around;
  }
}

/* Deep section styles */
.deep-section {
  background-color: #fff;
  padding: 8rem 0;
  overflow: hidden;
  position: relative;
}

.deep-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  display: hidden;
}

.glow-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at center, rgba(66, 135, 245, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  animation: pulse 8s infinite ease-in-out;
  z-index: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}

@keyframes circleShadow {
  0% {
    text-shadow: 0px 20px 20px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.1);
  }
  12.5% {
    text-shadow: 14px 14px 20px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.1);
  }
  25% {
    text-shadow: 20px 0px 20px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.1);
  }
  37.5% {
    text-shadow: 14px -14px 20px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.1);
  }
  50% {
    text-shadow: 0px -20px 20px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.1);
  }
  62.5% {
    text-shadow: -14px -14px 20px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.1);
  }
  75% {
    text-shadow: -20px 0px 20px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.1);
  }
  87.5% {
    text-shadow: -14px 14px 20px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.1);
  }
  100% {
    text-shadow: 0px 20px 20px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.1);
  }
}

@keyframes textGlow {
  0% {
    color: #000;
  }
  50% {
    color: #333;
  }
  100% {
    color: #000;
  }
}

.deep-heading {
  font-size: 12rem;
  font-weight: 900;
  color: #000;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  animation: 
    circleShadow 8s infinite linear,
    textGlow 4s infinite ease-in-out;
  -webkit-text-stroke: 2px black;
  -webkit-text-stroke-width: light;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease, text-shadow 0.5s ease;
  cursor: default;
}

.deep-heading:hover {
  transform: scale(1.05);
  animation-play-state: paused;
  text-shadow: 
    0 0 20px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(66, 135, 245, 0.3),
    0 0 60px rgba(66, 135, 245, 0.2);
}

/* Responsive adjustments for deep section */
@media (max-width: 1200px) {
  .deep-heading {
    font-size: 10rem;
  }
}

@media (max-width: 992px) {
  .deep-heading {
    font-size: 8rem;
  }
}

@media (max-width: 768px) {
  .deep-heading {
    font-size: 6rem;
  }
}

@media (max-width: 576px) {
  .deep-heading {
    font-size: 4rem;
  }
}

/* Additional media query for extra small screens */
@media (max-width: 400px) {
  .deep-heading {
    font-size: 3rem;
  }
}


/* Google Sign In Button Styles */

.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 8%;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 4px 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
  border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state, 
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%;
}

/* Footer styles */
.footer {
  background-color: #000;
  color: #fff;
  padding: 5rem 0 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
    font-weight: 600;
}


.footer-logo img {
  height: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer-links-column h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links-column ul {
  list-style: none;
}

.footer-links-column li {
  margin-bottom: 0.8rem;
}

.footer-links-column a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-column a:hover {
  color: #4287f5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.copyright {
  color: #aaa;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #4287f5;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

