/* ===== RESET (fix borders & spacing) ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: Inter, sans-serif;
  background: #0b1d2a;
  color: #fff;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  z-index: 9999;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px; /* fixed side gap issue */
}

.logo {
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  color: #00c2ff;
}

.navbar ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.navbar a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover {
  color: #00c2ff;
}

.cta {
  background: #00c2ff;
  padding: 8px 16px;
  border-radius: 20px;
}

/* ===== HERO ===== */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
/*  padding-top: 80px;*/

}

/* VIDEO */
.bg-video {
  position: absolute;
  top: -2px; /* 👈 tiny shift fix */
  left: 0;
  width: 100%;
  height: calc(100% + 4px); /* 👈 prevents gaps */
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.65) blur(1px);
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.75)
  );
}

/* HERO CONTENT */
.content
{
 position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  
  display: flex;              /* 🔥 add this */
  flex-direction: column;     /* 🔥 stack elements */
  align-items: center;        /* 🔥 perfect center */
}

.content h1
{
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1px;}

.content p 
{
   font-size: 18px;
   opacity: 0.9;
}

.btn 
{
background: #00c2ff;
  padding: 12px 28px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;   /* 🔥 spacing from text */
}


.overlay h2,
.overlay p {
  text-shadow: 0 4px 25px rgba(0,0,0,0.9);
}

.btn {
  background: #00c2ff;
  padding: 12px 24px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
}

.btn {
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,194,255,0.4);
}

/* ===== ANIMATIONS ===== */
.animate {
  opacity: 0;
  transform: translateY(40px);
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease;
}

.delay { transition-delay: 0.3s; }
.delay2 { transition-delay: 0.6s; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 20px;
  text-align: center;
}

.dark {
  background: #06131d;
}

.stats {
  display: flex;
  justify-content: space-around;
  padding: 40px;
  background: #06131d;
}

/* ===== GRID ===== */
.grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.card {
  padding: 20px;
  border-radius: 15px;
}

.glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

/* ===== FORM ===== */
.form input,
.form textarea {
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin: 5px;
}

button {
  background: #00c2ff;
  border: none;
  padding: 10px;
  color: white;
  cursor: pointer;
}

/* ===== WHATSAPP ===== */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 15px;
  border-radius: 50%;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background: #06131d;
}

/* ===== ABOUT SECTION ===== */

.about-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-block {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  text-align: center;
}

.about-block h3 {
  color: #00c2ff;
  margin-bottom: 10px;
}

.about-block p {
  font-size: 14px;
  line-height: 1.6;
}

.about-block ul {
  padding-left: 18px;
}

.about-block li {
  margin-bottom: 8px;
}

.about-block {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  text-align: center;

  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* 🔥 Hover Effect */
.about-block:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 194, 255, 0.25);
}
.about-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,194,255,0.2),
    transparent
  );
  transition: 0.6s;
}

.about-block:hover::before {
  left: 100%;
}
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.about-block {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.about-block:nth-child(1) { animation-delay: 0.2s; }
.about-block:nth-child(2) { animation-delay: 0.4s; }
.about-block:nth-child(3) { animation-delay: 0.6s; }
.about-block:nth-child(4) { animation-delay: 0.8s; }
.about-block:nth-child(5) { animation-delay: 1s; }

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

.about-block h3 {
  color: #00c2ff;
  transition: 0.3s;
}

.about-block:hover h3 {
  text-shadow: 0 0 15px rgba(0,194,255,0.7);
}
.section {
  position: relative;
}

.section::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00c2ff;
  margin: 30px auto 0;
  border-radius: 5px;
}
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: #00c2ff;
  width: 0%;
  z-index: 9999;
}

/* ===== LOCATION SECTION ===== */

.location-container 
{
display: grid;
  grid-template-columns: 1fr 1.2fr; /* 🔥 better balance */
  gap: 50px;
  margin-top: 40px;
  align-items: center;
  max-width: 1100px;   /* 🔥 keeps content centered */
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;     /* 🔥 prevents edge sticking */
}

#location h2 {
  text-align: center;
  margin-bottom: 10px;
}

.location-info {
 text-align: left;
  max-width: 400px;   /* 🔥 keeps text compact */
background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.location-info h3 {
  color: #00c2ff;
  margin-bottom: 15px;
}

.location-info p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.location-map iframe {
	 width: 100%;
  height: 320px;
  border: none;
  border-radius: 15px;
  display: block; /* 🔥 removes inline spacing issues */

}

/* 🔥 Hover effect on map */
.location-map iframe:hover {
  filter: none;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}


/* ===== QUOTE SECTION ===== */

.quote-container {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  backdrop-filter: blur(12px);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group input,
.form-group textarea
{
width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  outline: none;

  background: rgba(255,255,255,0.05); /* 🔥 soft glass look */
  color: #fff;

  font-family: inherit;
  font-size: 14px;

  transition: 0.3s;
}

.form-group textarea {
  min-height: 120px;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00c2ff;
  box-shadow: 0 0 0 2px rgba(0,194,255,0.2);
  background: rgba(255,255,255,0.08);
}
.form-group input:hover,
.form-group textarea:hover {
  transform: translateY(-1px);
}

/* Focus effect */
.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px #00c2ff;
}

.form-message {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
/* Button full width */
.quote-form .btn {
  width: 100%;
  margin-top: 10px;
}

.quote-container:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.quote-container {
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.quote-form .btn {
  width: 100%;
  margin-top: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.quote-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,194,255,0.4);
}


/* ===== FOOTER ===== */

.footer {
  background: #06131d;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-col h3 {
  color: #00c2ff;
  margin-bottom: 10px;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: #fff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

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

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

.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #00c2ff;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
