:root {
  --gold: #FFD700;
  --blue: #00BFFF;
  --dark: #0f172a;
  --light: #ffffff;
  --gray: #f5f5f5;
  --font: 'Poppins', sans-serif;
}

/* ===== RESET ===== */
* {margin:0;padding:0;box-sizing:border-box;}
body {font-family:var(--font);color:var(--dark);background:var(--light);overflow-x:hidden;}
a {text-decoration:none;color:inherit;}
img {max-width:100%;display:block;}
.container {max-width:1200px;margin:auto;padding:0 18px;}
.section-title {text-align:center;margin-bottom:30px;font-size:2rem;font-weight:700;color:var(--dark);}
.btn {
  background:linear-gradient(90deg,var(--gold),var(--blue));
  color:white;
  padding:12px 30px;
  border-radius:30px;
  font-weight:600;
  display:inline-block;
  transition:.3s;
}
.btn:hover {opacity:.9;}

/* ===== NAVBAR ===== */
.navbar {
  position:fixed;
  top:0;left:0;
  width:100%;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  z-index:1000;
  box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.nav-wrapper {
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:80px; /* increased height */
}

.logo {
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:var(--dark);
}

/* ===== NAVBAR LOGO IMAGE ===== */
.logo img {
  height:60px;          /* increased size */
  width:auto;           /* keep aspect ratio */
  margin-right:8px;
  vertical-align:middle;
  object-fit:contain;
}

@media (max-width:768px){
  .logo img {height:48px;}
}

.nav-menu {
  display:flex;
  gap:25px;
}
.nav-menu a {
  color:var(--dark);
  font-weight:500;
  transition:.3s;
}
.nav-menu a:hover {color:var(--blue);}

.hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.hamburger span {
  width:25px;
  height:3px;
  background:var(--dark);
}

/* ===== HERO ===== */
.hero {
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  overflow:hidden;
}
.hero-bg {
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-1;
}
.overlay {
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  background:rgba(0,0,0,.4);
  z-index:-1;
}
.hero-content h1 {
  font-size:2.8rem;
  font-weight:700;
  margin-bottom:15px;
}
.hero-content p {
  font-size:1.2rem;
  margin-bottom:25px;
}
.hero-content .btn {font-size:1rem;}

/* ===== ABOUT ===== */
.about-preview {
  display:flex;
  align-items:center;
  justify-content:center;
  padding:100px 0;
  background:var(--gray);
}
.about-preview .container {
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  align-items:center;
}
.about-text {
  flex:1;
  min-width:280px;
}
.about-text h2 {
  color:var(--blue);
  margin-bottom:15px;
}
.about-text p {
  margin-bottom:15px;
  line-height:1.6;
}
.about-text .link {
  color:var(--gold);
  font-weight:600;
}
.about-image {
  flex:1;
  min-width:280px;
}

/* ===== SERVICES ===== */
.services {
  padding:100px 0;
}
.service-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}
.service-card {
  background:white;
  border-radius:16px;
  box-shadow:0 5px 18px rgba(0,0,0,.08);
  overflow:hidden;
  transition:.4s;
}
.service-card:hover {transform:translateY(-8px);}
.service-card img {
  height:180px;
  object-fit:cover;
}
.service-card h3 {
  padding:15px;
  text-align:center;
  color:var(--dark);
  font-size:1.05rem;
}

/* ===== PORTFOLIO PREVIEW ===== */
.portfolio-preview {
  background:var(--gray);
  padding:100px 0;
}
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:15px;
}
.center-btn {
  text-align:center;
  margin-top:30px;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  background:linear-gradient(90deg,var(--blue),var(--gold));
  color:white;
  text-align:center;
  padding:80px 20px;
}
.contact-cta h2 {
  font-size:2rem;
  margin-bottom:10px;
}
.contact-cta p {
  margin-bottom:25px;
}

/* ===== FOOTER ===== */
.footer {
  background:#111;
  color:white;
  text-align:center;
  padding:20px 0;
}
.footer-content {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.footer .socials {
  display:flex;
  gap:15px;
}
.footer .socials img {
  width:20px;
  filter:invert(1);
  opacity:.8;
  transition:.3s;
}
.footer .socials img:hover {opacity:1;}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .nav-menu {
    display:none;
    flex-direction:column;
    position:absolute;
    top:80px;
    right:0;
    background:white;
    width:200px;
    padding:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
  }
  .nav-menu.show {display:flex;}
  .hamburger {display:flex;}
  .hero-content h1 {font-size:2rem;}
  .about-preview .container {flex-direction:column;}
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.17, 0.55, 0.55, 1);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Directional Variants */
[data-animate="fade-right"] {
  transform: translateX(-40px);
}
[data-animate="fade-left"] {
  transform: translateX(40px);
}
[data-animate="zoom-in"] {
  transform: scale(0.8);
}
[data-animate="zoom-in"].visible {
  transform: scale(1);
}

/* Delays (staggered entry) */
[data-delay="0.2s"] { transition-delay: 0.2s; }
[data-delay="0.4s"] { transition-delay: 0.4s; }
[data-delay="0.6s"] { transition-delay: 0.6s; }

/* Smooth load effect for hero text */
.hero-content h1,
.hero-content p,
.hero-content a {
  display: inline-block;
  position: relative;
  z-index: 2;
}

/* Add soft floating hover effect to the main button */
.btn:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 191, 255, 0.3);
}

/* Optional: Subtle parallax overlay */
.hero .overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,.5));
}

