*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f5f9ff;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

section,
header,
footer {
  max-width: 100%;
}

.grid > *,
.flex > * {
  min-width: 0;
}

a,
button,
h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

[class*="w-["] {
  max-width: 100%;
}

.gradient-text {
  background: linear-gradient(90deg, #0ea5e9, #22c55e, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-effect {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
}

.service-card,
.blog-card,
.hover-card,
.contact-card,
.offer-card {
  transition: 0.4s;
}

.service-card:hover,
.hover-card:hover,
.contact-card:hover,
.offer-card:hover {
  transform: translateY(-10px);
}

.blog-card:hover {
  transform: translateY(-12px);
}

.blog-card img {
  transition: 0.5s;
}

.blog-card:hover img {
  transform: scale(1.08);
}

.blog-image img {
  transition: 0.6s;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.submenu:hover .submenu-content {
  display: block;
}

.input-style,
.textarea-style {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #dbe7f5;
  background: #fff;
  outline: none;
  transition: 0.3s;
  font-size: 16px;
}

.input-style {
  height: 65px;
  padding: 0 24px;
}

.textarea-style {
  padding: 24px;
  resize: none;
}

.input-style:focus,
.textarea-style:focus {
  border-color: #001f4d;
  box-shadow: 0 0 0 4px rgba(0, 31, 77, 0.08);
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes popupAnimation {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(60px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.animate-popup {
  animation: popupAnimation 0.4s ease;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}
body {
  font-family: "Poppins", sans-serif;
  background: #f5f9ff;
}

.gradient-text {
  background: linear-gradient(90deg, #0ea5e9, #22c55e, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-card {
  transition: 0.4s;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.input-style {
  width: 100%;
  height: 65px;
  border-radius: 20px;
  border: 1px solid #dbe7f5;
  background: #fff;
  padding: 0 24px;
  outline: none;
  transition: 0.3s;
  font-size: 16px;
}

.input-style:focus {
  border-color: #001f4d;
  box-shadow: 0 0 0 4px rgba(0, 31, 77, 0.08);
}

.textarea-style {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #dbe7f5;
  background: #fff;
  padding: 24px;
  outline: none;
  transition: 0.3s;
  font-size: 16px;
  resize: none;
}

.textarea-style:focus {
  border-color: #001f4d;
  box-shadow: 0 0 0 4px rgba(0, 31, 77, 0.08);
}
