@import url(variables.css);
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

h1, h2, h3, h4, h5, h6{
    font-family: Space Grotesk;
}

body p{
  font-family: Manrope;
}

.loader, .response-container{
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px;
  z-index: 10;
}
.loader.active, .response-container.active{
  display: flex;
}


.loader .spinner{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-right: 3px solid #fff;
  animation: spin .5s infinite ease-in-out forwards;
}

@keyframes spin{
  from{
    rotate: 0deg;
  }
  to{
    rotate: 360deg;
  }
}

 .response-content{
  max-width: 100%;
  width: 700px;
  padding: 40px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  border-radius: 10px;
  font-family: Manrope;
  align-items: center;
  justify-content: center;
}

.response-content #dialog-close{
  width: 150px;
  padding: 13px;
  border-radius: 3px;
  background-color: var(--primary-color);
  color: #fff;
  font-family: Manrope;
  cursor: pointer;
  border: none;
  margin-top: 30px;
}

.response-content #dialog-close:hover{
  box-shadow: 3px 3px 15px #0077e677;
}


.navigation{
    width: 100%;
    height: 70px;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-family: Manrope;
    z-index: 5;
    background-color: #fff;
}

.navigation .logo{
    max-width: 30%;
    width: 100px;
    height: 70px;
    max-height: 95%;
}

.navigation .logo a{
    text-decoration: none;
}
.navigation .logo a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navigation nav ul{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.navigation nav ul li{
    padding: 5px;
    position: relative;
}

.services-nav{
  width: 250px;
  max-width: 300px;
  position: absolute;
  left: 0;
  top: 100%;
  border-radius: 10px;
  background-color: #fff;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
}

.services-nav a{
  padding: 10px;
  text-decoration: none;
  color: var(--primary-color);
}

.services-nav a:hover{
  background-color: #ecf5ff;
}

.services-nav-link:hover .services-nav{
  display: flex;
}

.navigation nav ul li a{
    text-decoration: none;
    color: var(--dark-text-col);
    font-family: Manrope;
}

.navigation .top-cta{
    max-width: 50%;
    width: 200px;
    padding: 13px;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
}

.fa-bars{
    display: none;
    font-size: 25px;
}

.mobile-menu{
    width: 100%;
    height: 100vh;
    padding: 50px 30px;
    margin-top: 70px;
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
    transform: translateY(-100%);
    transition: all 1s ease-in-out;
}
.mobile-menu.active{
    transform: translateY(0);
}

.mobile-menu ul{
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu ul a{
    text-decoration: none;
    color: var(--dark-text-col);
    font-size: 20px;
}

.cta-links{
    max-width: 70%;
    width: 200px;
    padding: 14px;
    text-decoration: none;
    border-radius: 3px;
    text-align: center;
    font-family: Manrope;
    transition: all .3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-links::before{
    content: '';
    position: absolute;
    left: -100%;
    top: 100%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    transition: all .5s ease-in-out;
    background-color: var(--primary-color);
    z-index: -1;
}

.cta-links:hover{
    color: #fff;
}

.cta-links:hover::before{
    left: -30%;
    top: -100%;
}

.animate{
    transform: translateY(40px);
    opacity: 0;
    transition: all 1s ease;
}
.animate.active{
    opacity: 1;
    transform: translateY(0);
}


.testimonials{
    width: 100%;
    padding: 40px 0;
    background-color: #fdfeff;
}


.testimonial-slider {
    max-width: 95%;
    width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f2f9ff;
    border-radius: 10px;
    box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: grab;
}

.swiper{
    height: 500px;
}

.swiper-slide {
    text-align: center;
    padding: 20px;
}
.swiper-slide img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
    object-position: 50% 25%;
    margin: 10px 0;
}
.swiper-slide h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 20px 0;
}
.swiper-slide p {
    font-size: 0.9rem;
    color: var(--dark-text-col);
    font-family: Manrope;
}

.swiper-pagination{
    position: absolute;
    bottom: 30px;
    z-index: 10;
}

.swiper-pagination-bullet {
    background-color: var(--primary-color);
}


.footer {
  background-color: #0e0e0e;
  color: #e0e0e0;
  padding: 100px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-brand h2 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #00bcd4;
}

.footer-contact p,
.footer-contact a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-socials a {
  margin-right: 5px;
  margin-top: 10px;
  display: inline-block;
}

.footer-socials a:nth-child(1) i{
    color: var(--primary-color);
}

.footer-socials a:nth-child(3) i{
    color: #0098d4;
}

.footer-socials i {
  font-size: 25px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s;
}

.footer-socials i:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer-policy a {
  color: #999;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9rem;
}

.footer-policy a:hover {
  color: #00bcd4;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    max-width: 100%;
  }

  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }
}



/*whatsapp icon*/

.whatsapp-contact{
  position: fixed;
  z-index: 2;
  right: 5%;
  bottom: 5%;
  width: 70px;
  height: 70px;
  text-decoration: none;
  animation: float 1s infinite ease alternate;

}

@keyframes float{
  from{
    transform: translateY(-3px);
  }
  to{
    transform: translateY(3px);
  }
}

.whatsapp-contact img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(5px 5px 5px rgba(0, 255, 85, 0.479));
}

/*BLOGS*/

.blog-post-hero {
  padding: 60px 20px 30px;
  background: #f5f7fb;
  text-align: center;
}

.blog-category {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #007BFF;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Manrope;
}

.blog-title {
  font-size: 2.5rem;
  color: #222;
  margin: 0;
}

.blog-meta {
  color: #777;
  font-size: 0.95rem;
  margin-top: 8px;
  font-family: Manrope;
}

.blog-featured-image {
  margin-top: 30px;
}

.blog-featured-image img {
  max-width: 100%;
  width: 1000px;
  height: 600px;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-post-content {
  padding: 40px 20px;
  background: #fff;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #333;
}

.blog-post-content h2{
  margin: 20px 0;
}

.blog-post-content .container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content img {
  max-width: 100%;
  margin: 20px 0;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}


/*CLIENT EDU*/

.make-it-work {
  padding: 60px 20px;
  background-color: #fefefe;
  text-align: center;
  margin-top: 60px;
}

.section-header h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 10px;
}

.section-header p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.tips-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.tip-card {
  background: #f8faff;
  border: 1px solid #e2efff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0074D9;
}

.tip-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #222;
}

.tip-card p {
  font-size: 0.95rem;
  color: #444;
}

.section-footer {
  margin-top: 40px;
  font-size: 1rem;
  color: #222;
  background: #e6f4ff;
  padding: 20px;
  border-radius: 8px;
  display: inline-block;
}



.page-not-found{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  padding: 10px;
}

.page-not-found img{
  max-width: 100%;
  width: 400px;
  height: 350px;
  object-fit: contain;
  opacity: 0.8;
}

.page-not-found .error-big{
  font-size: 80px;
  color: var(--primary-color);
  font-family: space Grotesk;
}

.page-not-found .lost-ctas{
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.page-not-found button, .page-not-found a{
  border: none;
  border-radius: 3px;
  cursor: pointer;
  background-color: var(--primary-color);
  color: #fff;
  font-family: Manrope;
  padding: 14px 24px;
  width: 150px;
}

.page-not-found button{
  padding: 16px 24px;
}

.page-not-found a{
  text-decoration: none;
  text-align: center;
}

.page-not-found button:hover, .page-not-found a:hover{
  background-color: #007BFF;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-sections{
  width: 100%;
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 20px;
}

.legal-sections ul{
  list-style: none;
  padding: 20px;
  font-family: Manrope;
}

.legal-sections ul li{
  padding: 5px 20px;
  position: relative;
}

.legal-sections ul li::before{
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  position: absolute;
  left: 1px;
  top: 7.5px;
}

.home-section{
    flex-direction: column;
    padding: 50px 10px;
}

.home-section, .home-section .actions{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px
}

.home-section .actions a{
    max-width: 100%;
    width: 250px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 5px;
    box-shadow: 3px 3px 15px rgba(0,0,0,0.4);
    background: #fff;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all .3s ease;
}

.home-section .actions a:hover{
    scale: 1.01;
}

.home-section a i{
    font-size: 40px;
    color: var(--primary-color);
}


/*blogs*/


.blog-share-section{
  max-width: 480px;
  margin: 2rem auto;
  padding: 1.5rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  text-align: center;
}

.blog-share-section h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.blog-share-section .share-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.blog-share-section .share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eee;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.08);
  text-decoration:none;
  color: #000;
}

.blog-share-section .share-icon svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.blog-share-section .share-icon i {
  font-size: 22px;
  pointer-events: none;
}

.blog-share-section .share-icon:hover {
  transform: scale(1.1);
}

.share-icon.facebook:hover {
  background: #d0dfff;
  filter: brightness(110%);
}

.share-icon.linkedin:hover {
  background: #bfe9ff;
  filter: brightness(110%);
}

.share-icon.whatsapp:hover {
  background: #c9ffdd;
  filter: brightness(110%);
}

.share-icon.twitter:hover {
  background: #b1b1b1;
  filter: brightness(110%);
}

@media screen and (max-width: 700px){
    .blog-featured-image img{
        object-fit: contain;
        height: 350px;
    }
}