@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1C5A8E;
    --secondary-color: #079bd8;
    --text-color-white: #ffffff;
    --background-color: #ffffff;
    --youtube-red: #FF0000;

}


.app {
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

html,
body {
    background-color: var(--background-color);
    height: 100%;
    scroll-behavior: smooth;
    font-family: "Lato", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

/* Detalles */

.animated-div {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.animated-div.animate {
    opacity: 1;
    transform: scaleY(1);
}

.faded-div {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.faded-div.animate {
    opacity: 1;
}
.fade-in-div {
    opacity: 0;
    transition: opacity 0.3s ease-out 0.2s, transform 0.6s ease-out 0.2s;
    transform: translateY(100px);
}

.fade-in-div.animate {
    opacity: 1;
    transform: translateY(0);
}

.remark{
    font-weight: bolder;
    text-transform: uppercase;
}
.secondary{
    color: var(--secondary-color);
}


/* ---------- Navbar ---------- */

.custom-btn-login {
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.custom-btn-login:hover {
    background-color: var(--primary-color);
    color: var(--text-color-white);
    text-decoration: none;
}

.custom-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding: 10px 20px;
    transition: transform 0.3s ease;
    z-index: 10;
}

.custom-navbar.hidden {
    transform: translateY(-100%);
}

.custom-logo img {
    width: 150px;
}

.custom-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    transition: max-height 0.5s ease-out;
}

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

.custom-nav-links li a.active {
    font-weight: bold;
    color: var(--text-color-white);
    border-bottom: 2px solid var(--secondary-color);
}

.custom-nav-links a {
    color: var(--text-color-white);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.custom-nav-links a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.custom-burger {
    display: none;
    font-size: 30px;
    color: var(--text-color-white);
    cursor: pointer;
}

/* ---------- WA Button ---------- */

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    animation: heartbeat 1.5s infinite;
}

/* Animación de palpitación */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}


/* ---------- Footer ----------*/

.custom-footer {
    background-color: var(--primary-color);
    padding: 40px 20px;
    color: var(--text-color-white);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.footer-logo-section {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    max-width: 150px;
}

.footer-icon {
    color: var(--text-color-white);
    text-decoration: none;
}
.footer-icon:hover {
    color: #b3b3b3;
    text-decoration: none;
}

.footer-logo-section p {
    margin-top: 10px;
}

.footer-logo-section p a {
    text-decoration: none;
    cursor: pointer;
    color: var(--text-color-white);
}

.footer-links {
    display: flex;
    flex: 2;
    justify-content: space-between;
    margin-left: 50%;
    min-width: 400px;
    color: var(--text-color-white);
}

.footer-column h4 {
    margin-bottom: 10px;
    font-weight: bold;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a,
.footer-logo-section p a {
    text-decoration: none;
    color: var(--text-color-white);
    font-size: 18px;
    transition: color 0.3s ease;
    
}

.footer-column ul li a:hover,
.footer-logo-section p a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-color-white);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-right: 80px;
}

.footer-social a img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-social a img:hover {
    opacity: 1;
}

/* ---------- Home ----------*/

.carousel-container {
    width: 100%;
    overflow: hidden;
    height: 120px;
    position: relative;
}

.carousel {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: calc(180px * 24);
    animation: slide 18s linear infinite;
}

.carousel img {
    width: auto;
    height: 60px;
    margin-right: 60px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-2160px);
    }
}

.hero-section {
    position: relative;
    background-image: url("/img/hero-img.jpg");
    background-size: cover;
    background-position: center;
    height: calc(100vh); /* Ajuste de la altura restando el menú */
    display: flex;
    justify-content: center;
    align-items: start;
    color: var(--text-color-white);
    text-align: left;
    padding-top: 200px;
    padding-bottom: 60px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #03354a95;
    z-index: 1;
}

.hero-section .hero-content {
    padding: 20px;
    position: relative;
    z-index: 2;
    justify-content: left;
}

.hero-section .hero-content p {
    font-size: 2.2vw;
}
.hero-section .hero-content h1 {
    font-size: 3.2vw;
}

.second-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.second-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.second-section p {
    font-size: 1.2rem;
    width: 60%;
    margin: 0 auto;
}

.second-section-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 300px;
}

.ss-text {
    display: flex;
    flex-direction: column;
    justify-content: left;
    flex: 1;
    padding-right: 20px;
}

.ss-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}
.ss-image img {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.fade-in-div.animate .ss-image img {
    opacity: 1;
    transform: translateX(0);
}

.scroll-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--text-color-white);
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s, transform 0.3s;
    animation: bounce 1s infinite;
    font-size: 1rem;
}
.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 20px 10px;
    color: var(--text-color-white);
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 1.3rem;
    background-color: #00000085;
    border-radius: 14px;
}

.scroll-button:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
    text-decoration: none;
    color: #ddd;
}
.contact-button:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
    text-decoration: none;
    color: #ddd;
    animation: none;
    border: none;

}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0); /* Posición original */
    }
    40% {
        transform: translateY(-10px); /* Salto hacia arriba */
    }
    60% {
        transform: translateY(-5px); /* Rebote hacia abajo */
    }
}

/* Estilos de la sección datos de uso*/
.usage-stats-section {
    padding: 60px 20px;
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--text-color-white);
    width: 70%;
    margin: 0 auto;
    border-radius: 30px;
}

.usage-stats-section h2 {
    font-size: 2rem;
    color: var(--text-color-white);
    margin-bottom: 40px;
}

.stats-cards-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

/* Estilos de cada tarjeta */
.stats-card {
    background-color: var(--text-color-white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 40px 20px;
    max-width: 300px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.stats-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 10px;
}

/* Estilos de los iconos */
.stats-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}


/* ----------------------- Contacto  -----------------------*/

.contact-container {
    display: flex;
    border: 1px solid #dfdfdf;
    height: calc(100vh);
    padding: 10vw 10vw;
}

.contact-form {
    flex: 1;
    padding: 40px;
    background-color: var(--text-color-white);
}

.contact-form h2 {
    margin-bottom: 20px;
}

.input-container {
    position: relative;
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #595959;
    outline: none;
    background: none;
    color: #333;
    transition: border-color 0.3s ease;
}

label {
    position: absolute;
    top: 50%;
    left: 10px;
    color: #595959;
    font-size: 16px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    border-bottom: 2px solid var(--secondary-color);
}

input:focus + label,
textarea:focus + label,
input:valid + label,
textarea:valid + label {
    top: 0;
    font-size: 12px;
    color: var(--secondary-color);
}

/* Animation for the border line */
input:focus::after,
textarea:focus::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

input:focus::after,
textarea:focus::after {
    transform: scaleX(1);
}

textarea {
    resize: none;
}

.form-button {
    background-color: var(--secondary-color);
    color: var(--text-color-white);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-button:hover {
    background-color: var(--primary-color);
}

.contact-image {
    position: relative;
    flex: 1;
    background-image: url("/img/deal.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color-white);
    text-align: center;
}

.contact-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000be;
    z-index: 1;
}

.contact-text {
    z-index: 2;
}

.contact-text-p {
    margin: 0;
    font-size: 1.7rem;
    padding: 20px;
    border-radius: 5px;
}

.contact-subtext {
    margin-top: 20px;
    font-size: 1.2rem;
}

.contact-banners {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.contact-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

.contact-banner i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-banner span {
    font-size: 1rem;
}

.contact-banner a {
    text-decoration: none;
    cursor: pointer;
    color: var(--text-color-white);
}

.social-icons {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.social-link {
    color: var(--text-color-white);
    font-size: 16px;
    text-decoration: none;
}

.social-link:hover {
    color: var(--primary-color);
}

.services-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
    width: 70%;
    margin: 0 auto;
}


.service-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.7);
    color: #000000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-height: 400px;
    background-size: cover;
    width: 30%;
    color: var(--text-color-white);
    padding-top: 380px;

}

.services-section a {
    text-decoration: none;
    color: var(--text-color-white);
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    text-align: center;
}

.service-card.service {
    background: 
    linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0) 100%), 
        url("/img/service.jpg");
    background-size: cover;
    background-position: center;
  
}
.service-card.apps {
    background: 
    linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0) 100%), 
        url("/img/products.webp"); 
    background-size: cover;
    background-position: center;
}

.service-card:hover {
    transform: scale(1.05);
}

/* ---------- Servicios --------- */

.header-hero {
    height: 300px;
    margin-bottom: 100px;
    background-image: url("/img/services.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    color: var(--text-color-white);
    text-align: center;
}
.header-hero h1 {
    font-size: 3em;
}

/* Cards */

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}
.services-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
    margin: 20px 0;
    transition: transform 0.3s ease;
}
.services-card:hover{
    transform: translateY(-10px);
}
.services-card-background {
    height: 300px; /* Increased height */
    background-size: cover;
    background-position: center;
}


.services-card-content {
    padding: 20px;
    text-align: center;
}
.services-card-content h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}


.services-circle-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 10px;
    font-size: 24px;
}
.services-circle-badge p {
    font-family: serif;
    font-style: italic;
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
    color: #333;
}

.services-card-content p {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px; /* Added margin-bottom */
}


/* PRODUCTOS */

.tutorials{
    margin: 40px 0;
    text-align: center;
}

.tutorial-videos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 60px; 
    padding: 3% 0;
}

.tutorials a{
    background-color: #000000 ;
    color: var(--background-color);
    text-decoration: none;
    padding: 20px 10px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tutorials a:hover{
    background-color: var(--youtube-red) ;
}
.products-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.product-card {
    width: 90%;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateX(-100%);
    opacity: 0;
    animation: slideIn 1s forwards;
    min-height: 200px;
    margin: 0 auto;
}

.product-card:nth-child(2) {
    animation-delay: 0.5s;
}

.product-card:nth-child(3) {
    animation-delay: 1s;
}
.product-img-container{
    width: 40%;
    height: auto;
    justify-content: center;
}

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

.product-info {
    width: 70%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.product-info h2 {
    margin: 0;
    font-size: 2.2rem;
    color: var(--text-color-white);
}

.product-info p {
    margin: 20px 0 0;
    color: #dbdbdb;
    font-size: 1.1rem;
}

.btn-more {
    margin-top: 15px;
    padding: 10px 15px;
    background-color: var(--primary-color);
    border: 4px solid var(--secondary-color);
    color: var(--text-color-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    align-self: flex-end;
}

.btn-more:hover {
    background-color: var(--text-color-white);
    color: var(--secondary-color);
    text-decoration: none;
}

/* Animación */
@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* APLICACIONES */

.app-container {
    max-width: 1200px;
    margin: 130px auto;
    padding: 0 20px;
    
}

.app-header {
    background: rgb(7,155,216);
    background: linear-gradient(0deg, rgba(7,155,216,1) 0%, rgba(28,90,142,1) 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
}
.app-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

#demo, #plus h2{
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

#demo, #plus p{
    font-size: 1.7rem;
    margin-bottom: 1rem;
}


.video-app-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-app-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


.download-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.download-card {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.download-card-image {
    width: 100%;

}

.download-card-content {
    padding: 20px;
}
.download-card-content p{
    font-size: 1.2rem;
    font-family: "Montserrat", sans-serif;
}

.download-btn {
    display: inline-block;
    background-color: black;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #2c2c2c;
    text-decoration: none;
    color: var(--text-color-white);

}

/* Policies */

.policies{
    margin: 130px 100px;
    text-align: justify;
}

.policies h1{
    text-align: center;
}
.policies h2{
    font-size: 1.3rem;
    margin-top: 20px;

}

.policies ul{
    padding-left: 70px;
}

.policies p{
    padding-left: 50px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    display: none;
    z-index: 1000;
}
.cookie-banner button {
    margin: 0 5px;
}

/* ACERCA DE NOSOTROS */

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.about{
    text-align: center;
}
.about, .mission {
    padding: 40px 0;
    background: #f4f4f4;
}

.about h2, .mission h2 {
    margin-bottom: 20px;
    font-size: 5rem;
}
.about p, .mission p {
    font-size: 1.8rem;
}

.mission .about-content {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.mission .about-card {
    background: #fff;
    padding: 20px 50px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: calc(50% - 20px);
    box-sizing: border-box;
    justify-content: center;
}

.mission .about-card h3 {
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.about-card li{
    font-size: 1.5rem;
}

.about-container img {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
}








/* Media */

@media (max-width: 855px) {
    .custom-nav-links {
        display: block;
        overflow: hidden;
        flex-direction: column;
        position: absolute;
        top: 110px;
        right: 0;
        background-color: var(--primary-color);
        width: 100%;
        z-index: 999;
        text-align: center;
    }

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

    .custom-burger {
        display: block;
    }

    .custom-nav-links.show {
        max-height: 300px;
    }

    .contact-buttom{
        margin-top: 60px;
    }
    .hero-section .hero-content p {
        font-size: 5vw;
    }

    .hero-section .hero-content h1 {
        font-size: 6vw;
    }

    /* Footer */

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        min-width: unset;
        margin-left: 0;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-social {
        margin-top: 10px;
        margin-right: 0;
    }

    .contact-container {
        flex-direction: column;
        height: auto;
        margin-top: 110px;
    }

    .contact-image {
        height: auto;
        padding-bottom: 20px;
    }

    .social-icons {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 20px;
    }

    .second-section-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
        margin-top: 75vh;
        gap: 20;
    }

    .ss-text h2 {
        font-size: 1.8rem;
    }

    .ss-text p {
        font-size: 1rem;
    }
    .ss-image{
     margin-top: 20px;   
    }

    .usage-stats-section {
        margin-top: 75vh;
    }

    .services-section {
        flex-direction: column;
    }

    .services-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .services-card-background{
        transition: none;
        transform: none;
    }

    .service-card {
        margin-bottom: 20px;
        min-height: 300px;
        width: 100%;
    }

    .header-hero h1 {
        font-size: 2em;
    }

    .product-card {
        flex-direction: column;
        text-align: center;
    }

    .product-card img {
        width: 100%;
        height: auto;
    }
    .product-img-container{
        width: 100%;
        height: auto;
        justify-content: center;
    }

    .product-info {
        width: 100%;
        padding: 15px;
    }
    .btn-more {
        align-self: center;
    }
    .tutorial-list li{
        flex-basis: 100%;
    }
    .download-container {
        flex-direction: column;
    }
    .policies{
        margin: 130px 50px;
        text-align: justify;
    }
    .mission .about-content {
        flex-direction: column;
        align-items: center;
    }

    .mission .about-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .mission .about-card:last-child {
        margin-bottom: 0;
    }
    .about h2, .mission h2 {
        font-size: 2.5rem;
    }
    .about p, .mission p {
        font-size: 1.5rem;
    }
    .mission .about-card h3 {
        font-size: 2rem;
    }
    
    .about-card li{
        font-size: 1.5rem;
    }

    .about-container img {
        max-width: 100%;
    }

}

@media (max-width: 480px) {
    .hero-section .hero-content p {
        font-size: 5vw;
    }

    .hero-section .hero-content h1 {
        font-size: 6vw;
    }
}

@media screen and (max-width: 1024px) and (max-height: 600px) {
    .ss-image img {
        max-width: 80%;
    }
  
    .contact-container {
        flex-direction: column;
        height: auto;
        margin-top: 110px;
    }

    .contact-image {
        height: auto;
        padding-bottom: 20px;
    }

    .social-icons {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 20px;
    }
   
}
