<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&amp;display=swap");

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;
  
  /*===== Colors =====*/
  --first-color: #3665f4;
  --dark-color: #000000;
  --dark-color-alt: #282B3A;
  --white-color: #ffffff;

  /*===== Font and typography =====*/
  --body-font: 'Poppins', sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*===== z index =====*/
  --z-fixed: 100;
}

@media screen and (min-width: 768px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*===== BASE =====*/
*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
  transition: all 0.5s ease; /* Added transition to all properties */
}

/* General Styling */
body, html {
  margin: 0;
  padding: 0;
 
  font-family: Arial, sans-serif;
}

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

a {
  text-decoration: none;
}

img {
  max-width: 120%;
  height: auto;
}

.bd-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

/*===== HEADER =====*/
.header {
  width: 100%;
	height: var(--header-height);
	position: fixed;
	top: 0;
	left: 0;
	padding: 0 1.5rem;
	background-color: var(--dark-color);
	z-index: var(--z-fixed);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
}

.header__logo {
  width: 120px;
}

.header__toggle {
  font-size: 1.5rem;
  color: var(--white-color);
  cursor: pointer;
}

/*===== NAV =====*/
@media screen and (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: var(--dark-color);
    color: var(--white-color);
    width: 100%;
    height: 100vh;
    padding: 1.5rem 0;
    z-index: var(--z-fixed);
    -webkit-transition: .5s;
    transition: .5s;
  }
}

.nav__content {
  height: 100%;
  -ms-grid-rows: max-content 1fr max-content;
      grid-template-rows: -webkit-max-content 1fr -webkit-max-content;
      grid-template-rows: max-content 1fr max-content;
  row-gap: 2rem;
}

.nav__close {
  position: absolute;
  right: 1.5rem;
  font-size: 1.3rem;
  padding: .25rem;
  background-color: var(--dark-color-alt);
  border-radius: 50%;
  cursor: pointer;
}

.nav__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: .25rem;
  margin-bottom: .8rem;
  width: 36px;
  height: 56px;
  min-height: 40px;
  min-width: 200px;
  margin-left: -5%;
  overflow: hidden;
}

.nav__img img {
  width: 150px;
}

.nav__name {
  display: block;
  color: var(--white-color);
}

.nav__profesion {
  font-size: var(--small-font-size);
}

.nav__menu {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
      float: inline-end;
      margin-right: -350px;
}

.nav__item {
  margin: 2.5rem 0;
}

.nav__link {
  color: var(--white-color);
  position: relative;
}
/* Dropdown Menu */
.nav__dropdown-content {
  display: none;
  position: absolute;
  background-color: #02030f;
  min-width: 80px;
  box-shadow: 0px 8px 16px rgba(240, 238, 238, 0.2);
  z-index: 1;
  align-items: center;
  border-radius: 8%;
}

.nav__dropdown-content .nav__item {
  padding: 12px 16px;
}

.nav__dropdown-content .nav__link {
  color: var(--white-color);
  font-size: var(--small-font-size);
}

.nav__dropdown:hover .nav__dropdown-content {
  display: block;
}

.nav__dropdown:hover .nav__link {
  color: var(--white-color);
}

.nav__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--first-color);
  transition: width 0.3s;
}

.nav__link:hover::after,
.active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--white-color);
}

.nav__social {
  padding-top: .5rem;
}

.nav__social-icon {
  font-size: 1.2rem;
  color: var(--white-color);
  margin-right: 1rem;
}

.nav__social-icon:hover {
  color: var(--white-color);
}

/*Aparecer menu*/
.show {
  left: 0;
}

/*Active menu*/
.active {
  color: var(--white-color);
}

/*===== MEDIA QUERIES =====*/
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .header {
    height: calc(var(--header-height) + 2rem);
  }
  .header__logo, .header__toggle {
    display: none;
  }
  .nav {
    width: 100%;
  }
  .nav__content {
    -ms-grid-columns: (max-content);
        grid-template-columns: repeat(3, -webkit-max-content);
        grid-template-columns: repeat(3, max-content);
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    -webkit-column-gap: 1rem;
            column-gap: 1rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .nav__close, .nav__profesion {
    display: none;
  }
  .nav__perfil {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__img {
    width: 185px;
    height: 60px;
    margin-right: .5rem;
    margin-bottom: 0;
    margin-top: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            float: left;
    min-width: 40px;
    min-height: 40px;
  }
  .nav__img img {
    width: 175px;
  }
  .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -15px;
    
  }
  .nav__item {
    margin: 0 .25rem;
  }
  .nav__link {
    padding: .5rem .8rem;
    border-radius: .25rem;
  }
}

@media screen and (min-width: 1024px) {
  .bd-grid {
    margin-right: auto;
  }
}

#subscribe-btn {
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
}

.subscription-popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.subscription-container {
  background-color: #111;
  padding: 40px;
  border-radius: 1px;
  width: 60%;
  position: relative;
  color: #fff;
}

.subscription-content h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.subscription-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.subscription-form label {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.input-group {
  display: flex;
  align-items: center;
}

.input-group input[type="email"] {
  padding: 10px;
  border-radius: 10px 10px 10px 10px;
  border: 0px solid #ccc;
  flex: 1;
  outline: none;
  font-size: 1rem;
  margin-right: 10px; /* Gap between input and button */
}

.input-group .subscribe-btn {
  padding: 10px 20px;
  border-radius: 5px; /* Fully rounded corners */
  border: none;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1rem;
}

.input-group .subscribe-btn:hover {
  background-color: #ddd;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.close-btn i {
  pointer-events: none;
}

@media (max-width: 768px) {
  .subscription-container {
      width: 90%;
      padding: 20px;
  }

  .subscription-content h2 {
      font-size: 1.2rem;
  }

  .subscription-content p {
      font-size: 0.9rem;
  }

  .input-group input[type="email"] {
      font-size: 0.9rem;
  }

  .input-group .subscribe-btn {
      font-size: 0.9rem;
      padding: 10px 15px;
  }

  .close-btn {
      font-size: 1rem;
  }
}

/*-------mission Section----*/
.mission {
  margin: 0;
  padding: 0;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-image: url('./Home/assets/img/image1.png'); /* Background image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Keeps background fixed */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/Home/assets/img/image1.webp'); /* Overlay image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.5;
  z-index: 1;
}

.mission-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  height: 100vh;
  position: relative;
  z-index: 2;
}

.mission-text {
  max-width: 80%;
  padding: 10%;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
  border-radius: 10px;
}

.mission-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-text h1 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mission-text p {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  word-spacing: 0.1px;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
  .mission {
    height: 80vh; /* Adjust height for smaller screens */
    background-size: cover;
  }

  .mission-container {
    justify-content: flex-start; /* Align content closer to the top */
    height: 80%;
  }

  .mission-text {
    max-width: 90%; /* Slightly smaller max-width for better fit */
    padding: 5%;
  }

  .mission-text h1 {
    font-size: 20px; /* Reduce font size for smaller screens */
  }

  .mission-text p {
    font-size: 16px; /* Reduce paragraph font size */
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .mission {
    height: 80vh; /* Adjust height for smaller screens */
    background-size: cover;
  }

  .mission-container {
    justify-content: flex-start; /* Align content closer to the top */
    height: 80%;
  }

  .mission-text {
    max-width: 90%; /* Slightly smaller max-width for better fit */
    padding: 5%;
  }

  .mission-text h1 {
    font-size: 20px; /* Reduce font size for smaller screens */
  }

  .mission-text p {
    font-size: 16px; /* Reduce paragraph font size */
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .mission {
    height: 75vh; /* Further reduce height */
  }

  .mission-container {
    padding: 5%; /* Reduce padding */
   height: 60%;
  }

  .mission-text {
    max-width: 95%; /* Full-width text for very small screens */
    padding: 4%;
    background-color: rgba(0, 0, 0, 0.7); /* Darker background for readability */
  }

  .mission-text h1 {
    font-size: 18px; /* Smaller font for headings */
    margin-bottom: 15px;
  }

  .mission-text p {
    font-size: 14px; /* Smaller paragraph font size */
    line-height: 1.4;
  }
}

/*----Our Services----*/
.s {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: black;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90vh;
  position: relative;
  margin-top: 10%;
}

.heading {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #ffffff;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
  margin-top: -10vh;
  
}

.heading h1 { 
  font-size: 36px;
  font-weight: bold;
}

.heading p {
  font-size: 20px;
  margin-top: -2%;
  word-spacing: 0.1px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container1 {
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 500px;
  background: #f5f5f5;
  overflow: hidden;
  margin-top: -6.5%;
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.item1 {
  width: 200px;
  height: 300px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 20px;
  box-shadow: 0 30px 50px #505050;
  background-position: 50% 50%;
  background-size: cover;
  transition: 0.5s;
}

.item1:nth-child(1),
.item1:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.item1:nth-child(3) {
  left: 80%;
}


.item1 .content1 {
  position: absolute;
  top: 50%;
  left: 100px;
  width: 300px;
  text-align: left;
  color: #eee;
  transform: translate(0, -50%);
  display: none;
}

.item1:nth-child(2) .content1 {
  display: block;
}

.content1 .name {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  animation: animate 1s ease-in-out 1 forwards;
}

.content1 .des {
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content1 button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  opacity: 0;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }
  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}

.button {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 10px;
}

.button button {
  width: 40px;
  height: 35px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  transition: 0.3s;
}

.button button:hover {
  background: #ababab;
  color: #fff;
}

/* Media Queries for Responsive Design */

@media (max-width: 1200px) {
  .container1 {
    width: 800px;
    height: 500px;

  }
  .item1 {
    width: 160px;
    height: 240px;
  }
  .content1 .name {
    font-size: 32px;
  }
  .heading{
    margin-top: -9vh;
  }
 
}

@media (max-width: 768px) {
  .container1 { 
    width: 600px;
    height: 400px;
    margin-top: 2%;
  }
  .item1 {
    width: 120px;
    height: 180px;
  }
  .content1 .name {
    font-size: 24px;
    margin-left: -30%;
  }
  .content1 .des {
    margin-bottom: 15px;
    margin-left: -30%;
    margin-right: 40%;
  }
  .content1 button {
    padding: 8px 16px;
  }
  .item1:nth-child(3){
    left: 70%;
  }
  .heading{
    font-size: 10px;
    margin-top: -1vh;
  }
  .heading p{
    font-size: 15px;
    margin-left: -10%;
  }
}

@media (max-width: 480px) {
  .container1 {
    width: 100%;
    height: 400px;
    border-radius: 0;
    margin-top: -15%;
  }
  .item1 {
    width: 100px;
    height: 150px;
  }
  .content1 {
    left: 50px;
    width: 200px;
  }
  .content1 .name {
    font-size: 18px;
  }
  .content1 .des {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .content1 button {
    padding: 6px 12px;
  }
  .heading h1{
    font-size: 20px;
    text-align: center;
    margin-top: -2vh;
  }
  .heading p{
    font-size: 15px;
    margin-left: 1%;
    margin-top: -1vh;
  }
}

/*---------------why chooice etherwing----------------*/
.WCE {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  height: 100%;
  background-color: #fff;
  margin-top: 0%;
}

.fullscreen-section1 {
  position: relative;
  width: 100%;
  height: 90vh;
  background-image: url('/Home/assets/img/WEC.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay0 {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 30%; /* Default width */
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  margin-top: 0;
}

.content-box0 {
  color: #fff;
  text-align: center;
  width: 100%;
}

h2 {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.content-box0 p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: justify;
  padding: 13.5px;
  word-spacing: -2.5px;
}

.read-more {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.read-more:hover {
  background-color: #fff;
  color: #000;
}

.read-more span {
  display: inline-block;
  margin-left: 10px;
  transition: margin-left 0.3s;
}

.read-more:hover span {
  margin-left: 15px;
}

/* Media Queries */
@media (max-width: 1250px) {
  .overlay0 {
      width: 35%;
      padding: 25px;
      left: 25%;
  }

  h1 {
      font-size: 1.4rem;
  }

  p {
      font-size: 0.95rem;
  }
}
@media (max-width: 1200px) {
  .overlay0 {
      width: 60%;
      padding: 25px;
      left: 40%;
  }

  h1 {
      font-size: 1.4rem;
  }

  p {
      font-size: 0.95rem;
  }
}

/* For screens up to 768px wide */
@media (max-width: 768px) {
  .overlay0 {
      width: 60%;
      padding: 20px;
      left: 40%;
  }

  h1 {
      font-size: 1.3rem;
  }

  h2 {
      font-size: 1rem;
  }

  p {
      font-size: 0.9rem;
  }

  .read-more {
      padding: 8px 16px;
  }
}

/* For screens up to 480px wide */
@media (max-width: 480px) {
  .fullscreen-section1{
    margin-top: -14.5%;
  }
  .overlay0 {
      width: 95%;
      padding: 15px;
     left: 50%;
  }

  h1 {
      font-size: 1.2rem;
  }

  h2 {
      font-size: 0.95rem;
  }

  p {
      font-size: 0.85rem;
  }

  .read-more {
      padding: 6px 12px;
  }
}

/* For screens up to 320px wide */
@media (max-width: 320px) {
  .overlay0 {
      width: 95%;
      padding: 10px;
  }

  h1 {
      font-size: 1.1rem;
  }

  h2 {
      font-size: 0.9rem;
  }

  p {
      font-size: 0.8rem;
  }

  .read-more {
      padding: 5px 10px;
  }
}

/*------------------Etherwing numbers-------------*/
.etherwing-stats {
  margin: 0;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  height: 100vh; /* Ensure full viewport height */
  display: flex;
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
  background-color: #000000;
  margin-top: -6%;
}

.container-etherwing {
  display: flex;
  flex-direction: row; /* Side by side layout */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
}

.image-holder {
  flex: 1; /* Take up half the space */
  display: flex;
  justify-content: center; /* Center the image horizontally */
  align-items: center; /* Center the image vertically */
}

.etherwing-image {
  max-width: 100%; /* Reduce image width */
  max-height: 100%; /* Reduce image height */
  object-fit: cover; /* Ensure the image covers the space without distortion */
  margin-top: -1%;
}

.stats-content {
  flex: 1; /* Take up half the space */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  padding: 40px; /* Adjust padding as needed */
  margin-top: -5%;
}

.section-title {
  text-align: center; /* Center the title */
  font-size: 36px;
  margin-bottom: 100px; /* Space below the title */
  color: white;
}

.progress-animations {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns */
  grid-gap: 50px; /* Space between the columns */
  row-gap: 45px; /* Space between the rows */
  width: 100%; /* Full width of the content container */
}

.progress-item {
  position: relative; 
}

.progress-value {
  position: absolute;
  top: -5px;
  left: 0;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 20px;
  background: #000000;
  padding-right: 10px;
  color: white;
}

.progress-bar {
  width: 100%;
  height: 1.5px;
  overflow: hidden;
  display: flex;
  background-color: #4b4949;
  margin-top: 25px;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}

.html-fill {
  background-color: #ffffff;
  animation-name: fillHtml;
}

.css-fill {
  background-color: #ffffff;
  animation-name: fillCss;
}

.js-fill {
  background-color: #ffffff;
  animation-name: fillJs;
}

.demo-fill {
  background-color: #ffffff;
  animation-name: fillDemo;
}

.label-employees {
  margin-top: 10px;
  color: rgb(146, 145, 145);
  font-size: 12px;
}

@keyframes fillHtml {
  from {
      width: 0;
  }
  to {
      width: 15%; /* Set the final width for the HTML segment */
  }
}

@keyframes fillCss {
  from {
      width: 0;
  }
  to {
      width: 10%; /* Set the final width for the CSS segment */
  }
}

@keyframes fillJs {
  from {
      width: 0;
  }
  to {
      width: 30%; /* Set the final width for the JS segment */
  }
}

@keyframes fillDemo {
  from {
      width: 0;
  }
  to {
      width: 25%; /* Set the final width for the Demo segment */
  }
}

/* Wrapper to trigger animation */
.animated-stats {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 28px; /* Slightly smaller font size for the title on medium screens */
    margin-bottom: 30px;
  }

  .progress-value {
    font-size: 18px;
  }

  .label-employees {
    font-size: 11px;
  }

  .stats-content {
    padding: 20px; /* Reduce padding on medium screens */
  }
}

@media (max-width: 768px) {
  .etherwing-stats{
    margin-top: -80%;
    height:270vh;
  
  }
  .container-etherwing {
    flex-direction: column; /* Stack the image and content vertically */
    height: 100vh; /* Adjust height for better stacking */
    
  }

  .image-holder, .stats-content {
    width: 100%; /* Full width for each section */
    padding: 10px;
  }

  .image-holder {
    height: auto;
  }

  .stats-content {
    margin-top: 0;
  }

  .section-title {
    font-size: 24px; /* Smaller font size for the title on small screens */
    margin-bottom: 20px;
    margin-top: 30px;
  }

  .progress-animations {
    grid-template-columns: 1fr; /* Single column on smaller screens */
    row-gap: 30px; /* Adjust gap for single-column layout */
  }

  .progress-item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .etherwing-stats{
    margin-top: -77%;
    height:170vh;
  }

  .etherwing-image{
    margin-top: 0.5%;
  }
  .container-etherwing {
    margin-top: 20%; /* Adjust margin on extra small screens */
  }

  .image-holder {
    height: auto;
    margin-top: -5%;
  }

  .section-title {
    font-size: 20px; /* Even smaller font size for the title */
    margin-top: -10%;
  }

  .progress-value {
    font-size: 16px; /* Smaller labels on extra small screens */
  }

  .label-employees {
    font-size: 10px; /* Smaller employee label */
  }

  .stats-content {
    padding: 10px; /* Further reduce padding on smaller screens */
    margin-top: 10%;
  }

  .progress-animations {
    row-gap: 20px; /* Tighter spacing between progress bars */
    margin-bottom: -35%;
  }
}

/*Our Partners*/
.a1 {
  margin: 0;
  padding: 0%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff; /* Background color for the entire page */
  color: #ffffff;
  margin-top: 0%;
}

.partners-section {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  background-color: #ffffff; /* Black background */
  color: #000000; /* White text */
  position: relative;
  overflow: hidden;
  height: 100vh;
  border-radius: 0%;
}   

.partners-intro {
  flex: 1;
  max-width: 40%;
  padding-right: 40px;
}

.partners-intro h3 {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.partners-intro h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.partners-intro p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.partners-logos {
  flex: 1;
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex; /* Align sliding containers side by side */
}

.sliding-container {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 60%;
  height: 110%;
}

.sliding-container.top-to-bottom {
  animation: slide-top-bottom 10s linear infinite;
}

.sliding-container.bottom-to-top {
  animation: slide-bottom-top 10s linear infinite;
  left: 50%; /* Position second container to the right */
}

@keyframes slide-top-bottom {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

@keyframes slide-bottom-top {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.partner-logo img {
  max-width: 150px;
  margin-bottom: 5px;
  border-radius: 10%;
}

.partner-logo p {
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
}

  /* Media Query */
  @media (max-width: 1200px) { /* Adjust the max-width value as needed */
      .partners-section {
          height: 150vh;
      }
      .partner-logo img {
        max-width: 130px;
        margin-bottom: 5px;
        border-radius: 10%;
      }
  }
  @media (max-width: 768px) { /* Adjust the max-width value as needed */
      .sliding-container.bottom-to-top {
          display: none; /* Hide the bottom-to-top sliding container */
      }

      .sliding-container.top-to-bottom {
          width: 70%; /* Ensure the top-to-bottom container takes full width */
          left: 20%; /* Align the top-to-bottom container to the left */
      }
      .partners-intro{
      max-width: 60%;
      margin-left: -10%;
      }
      .partners-section {
          height: 120vh;
      }
      .partner-logo img {
        max-width: 130px;
        margin-bottom: 5px;
        border-radius: 10%;
      }
  }
  @media (max-width: 350px) { /* Adjust the max-width value as needed */
    .sliding-container.bottom-to-top {
        display: none; /* Hide the bottom-to-top sliding container */
    }

    .sliding-container.top-to-bottom {
        width: 70%; /* Ensure the top-to-bottom container takes full width */
        left: 20%; /* Align the top-to-bottom container to the left */
    }
    .partners-intro{
    max-width: 60%;
    margin-left: -10%;
    }
    .partners-section {
        height: 100vh;
    }
    .partner-logo img {
      max-width: 130px;
      margin-bottom: 5px;
      border-radius: 10%;
    }
}

@media (max-width: 470px) { /* Adjust the max-width value as needed */
  .sliding-container.bottom-to-top {
      display: none; /* Hide the bottom-to-top sliding container */
  }

  .sliding-container.top-to-bottom {
      width: 70%; /* Ensure the top-to-bottom container takes full width */
      left: 20%; /* Align the top-to-bottom container to the left */
  }
  .partners-intro{
  max-width: 60%;
  margin-left: -10%;
  }
  .partners-section {
      height: 110vh;
  }
  .partner-logo img {
    max-width: 130px;
    margin-bottom: 5px;
    border-radius: 10%;
  }
}


/* Join Our Team *//* Introductory Section */
.intro {
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 40px; /* Space between the intro and the content below */
}

.intro-container {
  max-width: 800px;
  margin-top: 10%;
}

.intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.intro p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.view-options {
  display: inline-block;
  padding: 10px 20px;
  color: #c55757;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #c55757;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.view-options:hover {
  background-color: #c67272;
  color: #000;
}

/* Join Our Team */
.about {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 40px; /* Add margin to separate rows */
  padding-top: 5%;
  flex-direction: row; /* Image on left side */
  margin-top: -3%;
}

.text-section {
  position: relative;
  flex: 1;
  padding: 40px;
  max-width: 600px;
}

.number {
  position: absolute;
  top: -30px;
  left: -10px;
  font-size: 130px;
  color: rgba(255, 255, 255, 0.148);
  font-weight: bold;
  z-index: 1;
}

.location {
  position: relative;
  color: #c55757;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
  z-index: 2;
  margin-left: 20%;
}

.location::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20%;
  width: 80px;
  height: 2px;
  background-color: #c55757;
}

.text-section h1 {
  font-size: 48px;
  padding-top: 5%;
  line-height: 1.2;
}

.text-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-section p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 20px;
  text-align: justify;
}

.apply-now {
  display: inline-block;
  padding: 10px 20px;
  color: #c55757;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #c55757;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.apply-now:hover {
  background-color: #c67272;
  color: #000;
}

.image-section {
  flex: 1;
  max-width: 600px;
}

.image-section img {
  width: 60%;
  height: 65vh;
  border-radius: 5px;
  margin-left: 3%;
}

/* Scroll Animations */
@keyframes scrollInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scrollInFromRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scrollInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollInFromBottom {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

.text-section,
.image-section,
.intro,
.view-options {
  opacity: 0; /* Hide by default */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-in-left {
  animation: scrollInFromLeft 1s forwards;
}

.scroll-in-right {
  animation: scrollInFromRight 1s forwards;
}

.scroll-in-top {
  animation: scrollInFromTop 1s forwards;
}

.scroll-in-bottom {
  animation: scrollInFromBottom 1s forwards;
}

.scroll-out {
  animation: scrollOut 1s forwards;
}

/* Responsive Layout for Mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Stack image and text on small screens */
  }

  .image-section img {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
}

/*------Footer---*/
.Contact_footer {
  background: #eef8ff;
  padding-top: 0%;
  margin: 0;
  font-family: 'Roboto', sans-serif; /* Font family applied here */

}

footer {
  width: 100%;
  position: relative;
  background: black;
  color: #fff;
  font-size: 13px;
  line-height: 15px;
}

.logo1 {
  width: 250px;
  height: 90px;
  position: relative;
  left: 80%;
  transform: translateX(-75%);
  margin-top: 17%;
}

.powered-text {
  margin-top: -1%;
  position: relative;
  left: -21%;
  transform: translateX(-155%);
  font-size: 11px;
  color: #a8a4a4;
}

.row {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-sizing: border-box;
  position: relative;
}

.col {
  flex-basis: 32%;
  padding: 6px;
  box-sizing: border-box;
  margin: 0;
  
}
.coll h3{
  margin-bottom: 15%;
}
.coll {
  position: relative;
  right: 8%;
  transform: translateX(15%);
  text-align: left;
  padding-top: 3%;
  line-height: -5%;
}

.third-col .p {
  position: relative;
  right: 20%;
  transform: translateX(40%);
  padding-top: 1.5%;
  line-height: -50%;
}
.third-col{
  margin-top: 2.5vh;
}

.email-id {
  margin: 20px 0;
}

.coll ul li {
  list-style: none;
  margin-bottom: 6px;
  line-height: 18px;
  padding-left: 23%;
}

.coll ul li a {
  text-decoration: none;
  color: #fff;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ddd;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .col {
      flex-basis: 30%;
  }

  .logo1 {
      width: 250px;
      height: 200px;
  }
}

@media (max-width: 992px) {
  .col {
      flex-basis: 45%;
  }

  .logo1 {
      width: 220px;
      height: 180px;
  }
}

@media (max-width: 768px) {
  .col {
      flex-basis: 48%;
      margin-bottom: 20px;
  }

  .logo1 {
      width: 200px;
      height: 150px;
      left: 50%;
      transform: translateX(-100%);
  }

  .third-col {
      right: 50%;
      transform: translateX(50%);
  }

  .powered-text {
      text-align: center;
      transform: translateX(0);
      font-size: 10px;
  }
}

@media (max-width: 576px) {
  .col {
      flex-basis: 100%;
      text-align: center;
  }

  .logo1 {
      width: 150px;
      height: 100px;
      left: 5%;
      transform: translateX(-100%);
  }

  .third-col {
      right: 50%;
      transform: translateX(50%);
  }

  .social-icons {
      margin-top: 20px;
      text-align: center;
  }

  .social-icons a {
      margin-right: 10px;
      font-size: 16px;
  }

  .powered-text {
      text-align: center;
      margin-top: 10px;
      font-size: 9px;
  }
}

@media (max-width: 480px) {
  .col {
      flex-basis: 100%;
      text-align: center;
      padding-inline-start: 10px;
  }

  .logo1 {
      width: 240px;
      height: 100px;
      left: 20%;
      transform: translateX(-35%);
      padding-bottom: 5%;
      margin-top: 3vh;
      
  }

  .coll {
      right: 0%;
      transform: translateX(140%);
      text-align: center;
      margin-top: -15%;
      margin-left: 5%;
  }

  .third-col {
      right: 50%;
      transform: translateX(0%);
      margin-top: -5%;  
  }

  .social-icons {
      margin-top: 20px;
      text-align: center;
  }

  .social-icons a {
      margin-right: 8px;
      font-size: 14px;
  }

  .powered-text {
      text-align: center;
      margin-top: 10px;
      font-size: 11px;
      transform: translateX(20%);
  }
  
}

@media (max-width: 345px) {
  .col {
      flex-basis: 100%;
      text-align: center;
      padding-inline-start: 10px;
  }

  .logo1 {
      width: 240px;
      height: 100px;
      left: 20%;
      transform: translateX(-35%);
      padding-bottom: 5%;
      margin-top: 3vh;
      
  }

  .coll {
      right: 0%;
      transform: translateX(80%);
      text-align: center;
      margin-top: -15%;
      margin-left: 5%;
  }

  .third-col {
      right: 50%;
      transform: translateX(0%);
      margin-top: -5%;  
  }

  .social-icons {
      margin-top: 20px;
      text-align: center;
  }

  .social-icons a {
      margin-right: 8px;
      font-size: 14px;
  }

  .powered-text {
      text-align: center;
      margin-top: 10px;
      font-size: 11px;
      transform: translateX(20%);
  }
}

/* Subscribe */
.subscribe-modal {
	display: none; /* Hidden by default */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	z-index: 999;
  }
  
  .subscribe-modal-content {
	background: #fff;
	padding: 30px 40px;
	border-radius: 15px;
	width: 350px;
	max-width: 90%;
	text-align: center;
	position: relative;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  
  h2 {
	font-size: 22px;
	margin-bottom: 15px;
	color: #333;
  }
  
  p {
	font-size: 16px;
	margin-bottom: 20px;
	color: #666;
  }
  
  .email-label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	color: #333;
  }
  
  .email-input {
	width: 100%;
	padding: 12px;
	margin-bottom: 20px;
	border: 2px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
	outline: none;
	transition: border-color 0.3s ease;
  }
  
  .email-input:focus {
	border-color: #FF6B95;
  }
  
  .subscribe-button {
	width: 100%;
	padding: 12px;
	background-color: #FF6B95;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
  }
  
  .subscribe-button:hover {
	background-color: #FF4070;
  }
  
  .modal-close-button {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 18px;
	color: #FF6B95;
	cursor: pointer;
	transition: color 0.3s ease;
  }
  
  .modal-close-button:hover {
	color: #FF4070;
  }
</pre></body></html>