
:root {
    --main-blue: #3db4f2;
    --main-blue-dark: #2793cc;
    --main-blue-light: #e8f6fe;
    --main-text: #222;
	--main-black: #222;
    --main-white: #fff;
}
body {
    background-color: var(--main-blue-light);
}
.navbar {
    background: var(--main-blue-light)!important;
}
.navbar .navbar-brand img {
    height: 80px;
    margin-right: 15px;
}
.navbar .navbar-brand,
.navbar .navbar-brand:visited {
    color: var(--main-blue-dark)!important;
    font-weight: bold;
    font-size: 2rem;
}

.blue-input {
  color: var(--main-blue-dark)!important;
}
.section {
    padding: 60px 0;
}
.section.bg-white, .bg-white {
    background: var(--main-white)!important;
}
.section.bg-light, .bg-light {
    background: var(--main-blue-light)!important;
}
h1, h2, h5, .navbar-brand {
    color: var(--main-blue-dark)!important;
}
.lead, .card-text, .form-label, .text-muted, .text-center {
    color: var(--main-black)!important;
}
.lead1 {
	color: var(--main-blue-dark)!important;
	}
.lead2 {
	color: var(--main-white)!important;
	}
.card {
    border: none;
    box-shadow: 0 2px 8px rgba(61, 180, 242, 0.06);
}
.card .display-3,
.card .bi {
    color: var(--main-blue)!important;
}
.btn-primary, .btn-success, .btn-primary:focus {
    background: var(--main-blue-dark)!important;
    border-color: var(--main-blue-dark)!important;
}
.btn-primary:hover {
    background: var(--main-blue)!important;
    border-color: var(--main-blue)!important;
}
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}
.whatsapp-float .btn {
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    background: #25D366!important;
    border: none;
}
.gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0.75rem;
}
footer {
    background: var(--main-blue-dark)!important;
    color: var(--main-white)!important;
}

.hero-section {
  height: 90vh;
  background: linear-gradient(-45deg, #1e90ff, #00bfff, #00ced1, #1e90ff);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 20px;
}
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-section h6 {
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
.hero-section p {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 1rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}

.hero-section {
  height: 90vh;
  background: linear-gradient(-45deg, #1e90ff, #00bfff, #00ced1, #1e90ff);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: white;
}



@keyframes typing {
  from { width: 0; }
  to { width: 52ch; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: white; }
}

.hero-section .btn {
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
}


.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 1rem;
  animation: typing 4s steps(40, end), blink-caret 0.75s step-end infinite;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid white;
  animation-fill-mode: forwards;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.1rem;
    white-space: normal;
    overflow: visible;
    border-right: none;
    animation: none;
    text-align: center;
    padding: 0 10px;
  }
}
