body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  overflow-y: scroll;
}

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

h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

button {
  border: none;
  outline: none;
}

:root {
  --nav-height:70px;
}

.nav-inner {
  height: var(--nav-height);
}

img {
  max-width: 100%;
  display: block;
}

.blob {
  position: fixed;
  width: 400px;
  height: 400px;
  background: #ED9C22;
  opacity: 0.15;
  filter: blur(100px);
  z-index: -1;
}

.blob1 {
  top: 100px;
  left: -100px;
}

.blob2 {
  bottom: 0;
  right: -100px;
}

#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: #ED9C22;
  width: 0%;
  z-index: 2000;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}


.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}


.nav-inner {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  align-items: center;
}


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

.logo-icon {
  width: 80px;
  height: 80px;
  /* background: linear-gradient(135deg, #ED9C22, #ffb84d); */
  border-radius: 8px;
  /* box-shadow: 0 5px 15px rgba(237,156,34,0.4); */
}

.logo-text {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #111;
}


.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  margin: 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}


.nav-links a i {
  width: 16px;
  margin-right: 5px;
}


.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ED9C22;
  left: 0;
  bottom: -5px;
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #ED9C22;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.nav-links a.active {
  color: #ED9C22;
}

.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  pointer-events: none;
  cursor: default;
}


.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.hero-full {
  position: relative;
  height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding-bottom: 80px;   
  overflow: hidden;
  background-attachment: fixed;
  margin-top: var(--nav-height);
}



.hero-bg {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(1.1) contrast(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.4)
  );
}



.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 60px 20px;
}

.hero-content {
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}


.hero-content h1 {
  margin-bottom: 10px;
  font-size: 46px;
  line-height: 1.1;
}

.hero-content p {
  margin-bottom: 20px;
  font-size: 18px;
  opacity: 1;              
  color: #fff;          
}


.fade-in {
  opacity: 1;
  transform: none;
}

.visible {
  opacity: 1;
  transform: none;
}

/* Only animate if JS adds this */
.fade-in.animate {
  opacity: 0;
  transform: translateY(40px);
}

.fade-in.animate.visible {
  opacity: 1;
  transform: none;
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* STAGGER CHILDREN */
.fade-in .feature-card,
.fade-in .card,
.fade-in h2,
.fade-in p {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}

.fade-in.visible .feature-card,
.fade-in.visible h2,
.fade-in.visible p {
  opacity: 1;
  transform: none;
}

/* STAGGER DELAY */
.fade-in.visible .feature-card:nth-child(1){transition-delay:0.1s;}
.fade-in.visible .feature-card:nth-child(2){transition-delay:0.2s;}
.fade-in.visible .feature-card:nth-child(3){transition-delay:0.3s;}
.fade-in.visible .feature-card:nth-child(4){transition-delay:0.4s;}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons {
  margin-top: 20px;
}

.btn {
  background: #ED9C22;
  color: white;
  margin: 5px;
  display: inline-block;
  position: relative;
  padding: 14px 30px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  color: white;
  background: linear-gradient(135deg, #ED9C22, #ffb84d);
  box-shadow: 0 10px 20px rgba(237,156,34,0.4);
}

.btn.secondary {
  background: white;
  color: #ED9C22;
}

.btn.ghost {
  border: 1px solid white;
  color: white;
}

.btn.big {
  font-size: 18px;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:active {
  transform: scale(0.96);
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

.btn.glow::after, .glow::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.2);
  top: -100%;
  left: -100%;
  transform: rotate(25deg);
  transition: 0.5s;
}

.btn.glow:hover::after {
  animation: shine 0.6s forwards;
}

.glow:hover::after {
  top: 100%;
  left: 100%;
  animation: shine 0.6s forwards;
}


.stats {
  text-align: center;
  padding: 80px 0 40px;
}


.section {
  padding: 80px 0;
  position: relative;
  background: white;
}

.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, #eee, transparent);
}

/* ag */
.grid-3 {
  display: grid;
}

.stat h2 {
  font-size: 30px;
  color: #ED9C22;
}

/* ag */
.counter {
  font-size: 40px;
}

.floating-section {
  margin-top: 40px;
}


.floating-grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.float-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  flex: 1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.float-card:hover {
  transform: translateY(-10px);
}

.trust-strip {
  padding: 10px 0 30px;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
}

.trust-strip-inner span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #777;
}

.trust-strip-inner i {
  width: 16px;
  height: 16px;
  color: #ED9C22;
}


.split-image {
  padding: 80px 0;
  overflow: hidden;
}

.diagonal {
  position: relative;
  background: #f9f9f9;
  padding: 100px 0;
  z-index: 1;
}

.diagonal::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: white;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: -1;
}


.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}


.split-text {
  max-width: 500px;
  width: 100%;
}

.split-text h2 {
  max-width: 500px;
}

.split-text p {
  max-width: 480px;
  color: #555;
}


.split-img-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.split-img-wrap img {
  width: 100%;
  max-width: 520px;  /* controls overflow safely */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.phone-group {
  display: flex;
  align-items: center;
  gap: 30px;
}

.phone {
  width: 220px;
  height: 450px;
  border-radius: 30px;
  background: #111;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  position: relative;
}

.phone-second {
  transform: scale(0.97);
  transform: translateY(40px) scale(0.97);
  opacity: 0.95;
}

.phone img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
}

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

.phone-group:hover .phone-second {
  transform: translateY(20px) scale(0.95);
}

.phone:first-child {
  transform: rotate(-2deg);
}

.phone-second {
  transform: translateY(40px) rotate(2deg) scale(0.95);
}



.splash {
  height: 600px;
  background: url('../img/i_splash.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.splash .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.splash h2 {
  position: relative;
  z-index: 2;
}

.title {
  text-align: center;
  margin-bottom: 40px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}


.feature-card {
  display: block;
  text-decoration: none;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.3s;
  padding: 20px;
  text-align: center;
  position: relative;
  transform: translateZ(0);
}


.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(237,156,34,0.2), transparent);
  opacity: 0;
  transition: 0.3s;
}

.feature-card:hover::after {
  opacity: 1;
}


.feature-card.big {
  display: block;
  background: white;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  text-decoration: none;
}

.feature-card.big {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card.big:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.feature-card.big:hover img {
  transform: scale(1.04);
}

.feature-inner {
  display: flex;
  align-items: center;
}


.feature-card.big:nth-child(even) .feature-inner {
  flex-direction: row-reverse;
}

.feature-image {
  position: relative;
}

.feature-image img {
  /* width: 100%; */
  /* height: 500px; */
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}


.feature-image.big {
  display: flex;
  /* min-height: 300px; */
  min-height: auto;
  flex: 1.4;
  justify-content: center;
  align-items: center;
  padding: 20px;
  cursor: default;
}

.feature-image.big img {
  width: 250px;
  max-width: 100%;
  height: auto;
  max-height: 400px;  /* control size */
  width: auto;
  border-radius: 25px;
  box-shadow: 0 25px 40px rgba(0,0,0,0.2);
  transform: translateY(0);
  cursor: zoom-in;
  border: 4px solid maroon;
  z-index: 2;
  transition: transform 0.4s ease;
}



.feature-content {
  flex: 0.8;
  padding: 20px;
  text-align: center;
}

.feature-content {
  max-width: 500px;
}


.feature-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}


.feature-content p {
  line-height: 1.6;
  text-align: left;
  font-size: 15px;
  color: #666;
}


.cta {
  background: #111;
  color: white;
  text-align: center;
  padding: 70px 0;
}

.gradient-bg {
  background: linear-gradient(135deg, #ED9C22, #ffb84d);
  color: white;
}

.contact-section {
  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

.contact-section form {
  max-width: 500px;
  margin: auto;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
}


/* .contact-splash {
  background: url('i_gok.jpg') center/cover no-repeat;
  padding: 120px 20px 80px;
  text-align: center;
  color: #fff;
}
.contact-splash h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.contact-splash p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
} */

/* Contact Info Cards */
.contact-info {
  padding: 0px 20px 40px 20px; 
  background-color: #f9f9f9;
}

.contact-info .grid-3 {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-info .info-card {
  flex: 1 1 0;
  background: #fff;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 220px;
}


.contact-info .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.contact-info .info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #222;
}

.contact-info .info-card p, 
.contact-info .info-card a {
  font-size: 1rem;
  color: #555;
  text-decoration: none;
}

.contact-info .info-card a:hover {
  color: var(--theme-color);
}

.contact-banner {
  padding: 60px 0;
  text-align: center;
}

.contact-banner .banner-img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #ED9C22, #ffb84d);
  box-shadow: 0 10px 30px rgba(237,156,34,0.4);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

.back-to-top i {
  width: 20px;
  height: 20px;
  color: white;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 40px rgba(237,156,34,0.6);
}


footer {
  background: #111;
  color: white;
  padding: 20px;
}

.foot-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 6px 0;
}

.foot-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.foot-links a {
  color: #999;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.foot-links a:hover {
  color: #ED9C22;
  border-color: #ED9C22;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #777;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 95%;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  max-height: 95vh;
  width: auto;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}


@keyframes shine {
  to {
    top: 100%;
    left: 100%;
  }
}

.parallax-img {
  transition: transform 0.1s linear;
  will-change: transform;
}


/*********** other pages ***************/

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}


.card {
  padding: 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card.big {
  padding: 35px;
  font-size: 16px;
}

.card i {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  color: #ED9C22;
}


.form input, .form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
}



