* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  margin: 0;
  padding-top: 90px;
  /* 65px header height + 30px padding */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

header {
  background-color: #036fe2;
  color: white;
  padding: 15px 0;
  position: fixed;
  /* 👈 Make it fixed */
  top: 0;
  /* 👈 Stick to top */
  width: 100%;
  /* 👈 Full width */
  z-index: 1000;
  /* 👈 Stay above other elements */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 65px;
}
/* Basic styles */
.menu-icon {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 20px;
  margin-right: 25%;
  margin-top: 16px;
}

.nav-right {
  margin-right: 20%;
  /* This shifts the entire nav bar left */
}

.nav-links a.active {
  color: #000000;
  /* Highlight color */
  font-weight: bold;
  border-bottom: 2px solid #fff;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  margin-top: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  /* ❌ Remove this: margin-right: 20%; */
}

nav a:hover {
  color: #000000;
}


.logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  margin-left: 30%;
}

.logo-left {
  display: flex;
  align-items: center;
  gap: 10px;

}

.logo-left img {
  width: 70px;
  height: 68px;
  border-radius: 50%;
}

.site-name {
  font-family: cursive;
  font-weight: bold;
}

.site-name .blink {
  font-size: 35px;
}

.site-name .bowl {
  font-size: 25px;
}

.welcome-section {
  text-align: center;
  font-family: Arial, sans-serif;
  max-width: 700px;
  margin: 0 auto;
  padding: 15px;
  margin-top: 2%;
  margin-bottom: 0%;
}

.welcome-section h1 {

  font-size: 28px;
  margin-bottom: 30px;
}

.welcome-section p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;

}

.why-choose-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;

}

.section-subtitle {
  color: #036fe2;
  font-family: Courier;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 4px;

  font-weight: bold;
}

.section-description {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  margin-bottom: 5%;
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.6;
}

.info-grid-centered {
  display: grid;
  grid-template-columns: repeat(2, 280px);
  grid-template-rows: repeat(2, auto);
  gap: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.card-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  animation: fadeSlideUp 0.6s ease-out forwards;
}

.card-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 0;
}

/* Background positions */
.top-left::before {
  top: -20px;
  left: -20px;
}

.top-left .info-card {
  transform: translate(20px, 20px);
}

.top-right::before {
  top: -20px;
  right: -20px;
}

.top-right .info-card {
  transform: translate(-20px, 20px);
}

.bottom-left::before {
  bottom: -20px;
  left: -20px;
}

.bottom-left .info-card {
  transform: translate(20px, -20px);
}

.bottom-right::before {
  bottom: -20px;
  right: -20px;
}

.bottom-right .info-card {
  transform: translate(-20px, -20px);
}

/* Colored shadows */
.card-wrapper.yellow::before {
  background-color: #036fe2;
}

.card-wrapper.magenta::before {
  background-color: #036fe2;
}

.card-wrapper.teal::before {
  background-color: #036fe2;
}

.card-wrapper.violet::before {
  background-color: #036fe2;
}

/* Info card */
.info-card {
  position: relative;
  overflow: visible;
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  margin-bottom: 5px;
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  z-index: 1;
  box-shadow: 0 10px 40px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: scale(1.02);
}

.icon {
  font-size: 26px;
  color: #036fe2;
  margin-bottom: 12px;
  animation: pulse 1.5s infinite;
}

.step {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 48%;
  font-size: 10px;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 2;
   
}



.step-bl {
  bottom: -10px;
  left: -10px;
}

.step-br {
  bottom: -10px;
  right: -10px;
}

.step-tl {
  top: -10px;
  left: -10px;
}

.step-tr {
  top: -10px;
  right: -10px;
}

/* STEP Colors */
.yellow-step {
  background-color: #036fe2;
}

.magenta-step {
  background-color: #036fe2;
}

.teal-step {
  background-color: #036fe2;
}

.violet-step {
  background-color: #036fe2;
}


 
.services-section {
  text-align: center;
  padding: 50px 20px;
  margin-top: 0px;
}
.services-section h2 {
  margin-bottom: 20px;
}
.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: flyIn 0.5s forwards;
}

@keyframes flyIn {
  to {
    opacity: 5;
    transform: translateY(0);
  }
}



.services-section p {
  color: #444;
  margin-bottom: 40px;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  padding-bottom: 20px;
  height: 450px;
  
}

.service-card:hover {
  background: #007BFF;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.carousel {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.carousel img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel img.active {
  opacity: 1;
  z-index: 1;
}

.icon-circle {
  position: absolute;
  top: 210px;
  left: 50%;
  transform: translateX(-50%);
  background: #007BFF;
  border: 6px solid #fff;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 2;
  transition: all 0.3s ease;
   
}

.service-card:hover .icon-circle {
  background: #fff;
  color: #007BFF;
  border: 6px solid #007BFF;
}

.service-content {
  margin-top: 60px;
  padding: 0 30px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.service-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: #fff;
}

.service-card a {
  display: inline-block;
  background-color: #fff;
  color: #007BFF;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #007BFF;
  padding: 8px 16px;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.service-card a:hover {
  text-decoration: underline;
}

.view-more-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
   
}


.view-more-btn {
  background-color: #007BFF;
  color: white;
  font-weight: bold;
  padding: 12px 28px;
  border: 6px solid #007BFF;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.view-more-btn:hover {
  background-color: #fff;
  color: #007BFF;
}

.essitinal-section {
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 25px;
  max-width: 1100px;
  margin: auto;
  padding: 60px 30px;

  text-align: center;
}
.essitinal-heading {
  margin-bottom: 15px;
}
.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: flyIn 0.5s forwards;
}

@keyframes flyIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.essitinal-description {
  font-size: 16px;
  color: #555;
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.6;
   text-align: center;
}

.essitinal-grid {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

/* Add animation to the card */
.essitinal-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.6s ease-out forwards;
}

/* Icon link style */
.essitinal-icon a {
  text-decoration: none;
  color: #ffffff;
}

/* Icon base style */
.essitinal-icon {
  background-color: #036fe2;
  width: 90px;
  height: 90px;
  font-size: 38px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

/* Hover effect */
.essitinal-icon:hover {
  background-color: #047dff;
  transform: scale(1.07);
}

/* Animation keyframes */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.essitinal-icon:hover i {
  animation: bounce 0.6s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.essitinal-icon i {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.essitinal-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.essitinal-text {
  font-size: 15px;
  color: #666;

}

@media (max-width: 768px) {
  .essitinal-grid {
    flex-direction: column;
    align-items: center;
  }

  .essitinal-heading {
    font-size: 24px;
    text-align: left;
    margin-left: 10px;
  }
}

footer {
  background-color: #036fe2;
  padding: 20px;
  margin: 0;
  text-align: center;
  margin-top: 50px;
  color: white;
  font-size: 15px;
  line-height: 1.5;
}

footer a {
  color: white;
  text-decoration: none;
}
/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 120px;
  right: 30px;
  z-index: 999;
  background: linear-gradient(145deg, #007BFF, #0056b3);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 34px;
  font-weight: 900;
  line-height: 60px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(0, 123, 255, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

#scrollTopBtn:hover {
  background: #fff;
  color: #007BFF;
  border: 2px solid #007BFF;
  transform: scale(1.1);
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  animation: moveUpDown 1.2s ease-in-out infinite;
}

@keyframes moveUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}
/* Responsive for tablets and below */
@media (max-width: 992px) {
  .header-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  .logo-link {
    margin-left: 0%;
    margin-right: 40%;
    /* ✅ Pushes it to the left */
  }

  .logo-left {
    display: flex;
    align-items: center;
    /* ✅ Use center instead of 'left' */
    justify-content: flex-start;
    gap: 10px;


  }

  .logo-left img {
    width: 50px;
    height: 50px;
  }

  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 79px;
    left: 42%;
    width: 60%;
    background-color: #75a7dd;
    padding: 5px 5px 25px 2px;
    /* Increased bottom padding */
    z-index: 1001;
    border-radius: 0 0 20px 20px;
    align-items: center;
    gap: 4px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 14px;
    padding: 12px 20px;
    width: 80%;
    max-width: 150px;
    background-color: #036fe2;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
  }

  /* Hover effect */
  .nav-links a:hover {
    background-color: white;
    color: #036fe2;
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }


  .nav-links.show {
    display: flex;
  }

  .site-name .blink {
    font-size: 24px;
  }

  .site-name .bowl {
    font-size: 21px;
  }

  .services-grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 600px;
  }
.why-choose-section{
  padding: 30px 10px;
}
  .welcome-section h1 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .welcome-section p {
    font-size: 15px;
    width: 95%;
    max-width: 400px;
    margin-left: 3%;

  }
.services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    
     margin: 0 auto;
  }
  .services-section {
    text-align: center;
    padding: 25px 10px;

  }

  .services-section h2 {
    font-size: 20px;
    text-align: start;
    margin-left: 25px;
    margin-bottom: 8px;
  }

  .services-section p {
    color: #666;
    text-align: start;
    margin-left: 25px;
    margin-bottom: 30px;
  }

  .service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.3s;
    position: relative;
    padding-bottom: 20px;
    height: 330px;
    width: 300px;
    margin: 0 auto;
  }

  .carousel {
    position: relative;
    width: 100%;
    height: 165px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .carousel img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.8s ease-in-out;
  }

  .icon-circle {
    position: absolute;
    top: 140px;
    left: 50%;
    font-size: 20px;
  }

  .service-content {
    margin-top: 50px;
    padding: 0 15px;
  }

  .service-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .service-card p {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
    text-align: center;
    margin-left: 0%;
    transition: color 0.3s ease;
  }

  .service-card a {
    display: inline-block;
    background-color: #fff;
    color: #007BFF;
    font-weight: bold;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 8px;
    transition: background-color 0.3s ease;
  }

  footer {
    background-color: #036fe2;
    padding: 10px;
    margin: 0;
    text-align: center;
    margin-top: 8px;
    font-size: 13px;
    color: white;
  }
    .view-more-btn {
    font-size: 13px;
    padding: 8px 16px;
    width: 90%;
    max-width: 180px;
  }
}

/* Responsive for phones and small devices */
@media (max-width: 600px) {
  .logo-left img {
    width: 50px;
    height: 50px;
    justify-items: flex-start;
  }

  .site-name .blink {
    font-size: 24px;
  }

  .site-name .bowl {
    font-size: 21px;
  }

  .welcome-section,
  .services-section {
    padding: 20px 15px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 auto;
     
  }

  .service-card {
    width: 90%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
     
  }

  .service-card p {
    font-size: 14px;
  }

  .service-card h3 {
    font-size: 18px;
  }
  #scrollTopBtn {
    width: 45px;
    height: 45px;
    font-size: 24px;
    line-height: 45px;
    bottom: 85px;
    right: 10px;
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
  }

}

@media (max-width: 768px) {
  .info-grid-centered {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 10px; /* Optional small padding around */
    margin-top: 0;
  }

  .card-wrapper {
    width: 100%;
    max-width: 280px;
  }

  /* Zig-zag effect: alternate margin-left/right */
  .card-wrapper:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
  }

  .card-wrapper:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
  }

  .step {
    width: 50px;
    height: 50px;
  }

  .section-description {
    margin-bottom: 35px;
    font-size: 14px;
    margin-top: 15px;
  }

  .top-left .info-card,
  .top-right .info-card,
  .bottom-left .info-card,
  .bottom-right .info-card {
    transform: none;
  }

  .card-wrapper::before {
    top: 17px;
    left: 17px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    font-size: 14px;
  }
 
}
