* { margin: 0; padding: 0; box-sizing: border-box; font-family: Helvetica, Arial, sans-serif; }

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #333;
  user-select: none;
}

body {
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.fade-out {
  opacity: 0;
}

body.fade-in {
  opacity: 1;
}

/* In case JS dies or is disabled, show page anyway */
body.no-transition {
  opacity: 1 !important;
  transition: none !important;
}

/* Buttons */
button {
  cursor: pointer;
  transition: 0.25s;
  transform: scale(1);
}
button:hover {
  transform: scale(1.05);
}

a {
  text-decoration: none;
}
a:link{
  color:rgb(0, 0, 0);
}
a:visited{
  color:rgb(0, 0, 0);
}
a:hover{
  color:#0A84FF;
}

.btn-primary {
  align-self: flex-start;
  background: linear-gradient(90deg, #0A84FF, #3AB0FF);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;             /* space between icon and text */
}
.btn-primary i {
  font-size: 18px;
  line-height: 1;
  color: inherit; /* takes text color */
  vertical-align: middle;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10,132,255,0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid #ffffff;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 10px;
  color: #ffffff;
}
.btn-outline:hover {
    background: #ffffff;
    color:#000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10,132,255,0.3);
}


.btn-outline-black {
  background: transparent;
  border: 2px solid #000000;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 10px;
  color: #000000;
}
.btn-outline-black:hover {
    background: #000000;
    color:#ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10,132,255,0.3);
}

/* SECTIONS */
.section {
  padding: 140px 30px; text-align: center;
}
.section h1 {
  font-size: 48px;
  margin-bottom: 15px;
}
.section h2 {
  font-size: 36px;
  margin-bottom: 30px;
}
.section h3 {
  font-size: 26px;
}
.section .subtext{
  font-size: 20px;
  color: #00000072;
}
.alt-bg {
  background: #f7faff;
}

/* GALLERY */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}

/* Image cards */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover img {
  transform: scale(1.07);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Lightbox fullscreen view */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

/* Close button */
.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 38px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox .close:hover {
  color: #0A84FF;
}


/* CTA Gradient Box */
.cta-box {
  padding: 140px 20px;
  background: linear-gradient(120deg, #0A84FF 0%, #4fc3ff 50%, #e0f2ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-inner {
  background: rgba(255, 255, 255, 0.2);
  max-width: 900px;
  padding: 60px;
  border-radius: 24px;
  color: white;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.cta-inner h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-inner p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #eef7ff;
}

/* CTA Buttons wider */
.large-btn {
  padding: 14px 32px;
  font-size: 18px;
  border-radius: 12px;
  font-weight: 600;
}

/* White outline button for contrast */
.cta-inner .btn-outline {
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
}

.cta-inner .btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

/* GRID */
.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: auto; margin-top: 30px;
}
.grid.narrow { grid-template-columns: repeat(4, 1fr); }

.card {
  padding: 40px; background: #fff; border: 1px solid #e8e8e8;
  border-radius: 16px; font-size: 18px; font-weight: 600;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0A84FF;
}

.card p {
  font-size: 15px;
  color: #555;
  line-height: 1.4;
}

/* Circle icon badge */
.icon-circle {
  font-size: 32px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef6ff;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 2px solid #d9e9ff;
  transition: 0.25s;
}

/* Hover elevation */
.experience-card:hover, 
.reason-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.reason-card:hover .icon-circle {
  transform: scale(1.15) rotate(4deg);
}

.experience-card:hover .icon-circle {
  transform: scale(1.15) rotate(4deg);
}

/* Soft glow behind icons */
.icon-circle {
  position: relative;
  background: #ffffff;
  border: 2px solid #e2ecff;
  box-shadow: 
    0 4px 12px rgba(0,0,0,0.06),
    inset 0 0 20px rgba(255,255,255,0.6);
}

/* glow aura effect */
.icon-circle::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(10,132,255,0.25) 0%,
    rgba(10,132,255,0) 70%
  );
  filter: blur(10px);
  z-index: -1;
}

/* FOOTER */
.footer {
  padding: 60px 30px;
  background: #fff;
  border-top: 1px solid #ddd;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
.footer-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #666;
}

@media (min-width: 769px) {
  .mobile-show{
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-hide{
    display: none;
  }
}