/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensure that padding and margin don't affect width/height */
}


html {
  height: 100%; /* Occupy the full viewport height */
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  background-color: #fff; /* Your background color */
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  height: 100%; /* Occupy the full viewport height */
  overflow-x: hidden; /* Prevent horizontal scrolling */
  background-color: #fff; /* Your background color */
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  padding-bottom: 0px;
  margin-top: -40px;
  margin-bottom: 100px;
  background-color: transparent;
  color: #05141e;
  font-family: 'Poppins', sans-serif;
  font-size: 5em; /* Adjust size as needed */
  font-weight: 600; /* Choose 400 (normal), 600 (semi-bold), 700 (bold), etc. */
  height: 10vh;
  word-spacing: 0px;
}

/* Main Container */
.main-container {
  flex: 1; /* Pushes footer to the bottom */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* Ensure proper positioning for arrow movement */
}

/* Left and Right containers */
.left-container,
.right-container {
  display:block;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.3s, opacity 0.3s ease;
  height:fit-content;
  width:fit-content;
  justify-content:center;
  border-radius: 8px;
  background-color: transparent;
  color: #05141e;
  padding: 0;
  width: 32%;
  height: 100%;
}

.left-container{
  text-align: center;
  align-items: center;
  
}
.data-left-image{
  height: 20px;
  width: 20px;
  size: 20px;
}
.right-container {
  flex-direction: column;
  margin: 0;
  text-align: start;
  padding-left: 120px;
}
.right-container h2 {
  margin: 0;
  padding-left: 0;
  text-align: left;
}

.right-container ul {
  margin: 0;
  padding-left: 0;
  list-style-position: inside; 
}
.center-container {
  width: 32%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.circle {
  width: 400px;
  height: 400px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 85px solid #05141e;
  box-sizing: border-box;
  display: flex;
  
}

.arrow {
  font-size: 4em;
  color: #1574f6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) ; /* Default rotation */
  pointer-events: none;
  z-index: 1;
  transition: transform 0s; /* Smooth rotation */
}




.arrow i {
  transform: rotate(45deg);
}

.hover-image {
  width: 65px;
  height: 70px;
  position: absolute;
  border-radius: 50%;
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
  cursor: pointer;
  left: 50%;
  top: 50%;
}

.hover-image:hover {
  transform: scale(1.6);
  width: 75px;
  height: 80px;
}
/* Responsive Design */
@media (max-width: 1200px) { /* Tablet view */
  .left-container,
  .right-container {
    display: none !important; /* Ensures they are not rendered */
  }
  .center-container {
    width: 100%;
  }
}

@media (max-width: 70px) { /* Mobile view */
  .center-container {
    width: 100%;
  }

  .circle {
    width: 250px;
    height: 250px;
    border: 50px solid white;
    align-items: center;
    
  }

  .left-container,
  .right-container {
    display: none !important; /* Ensures complete removal */
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
  }
}

@media (max-width: 480px) {
  
  header{
    font-size: 30px !important;
    height: 10vh;
  }
}
