/* =====================================================
   GLOBAL RESET & BASE
===================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #f2f2f2, #e8e8e8);
  color: #000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

a:hover { opacity: 0.8; }

button {
  cursor: pointer;
  border: none;
  transition: 0.3s ease;
}

button:hover { transform: translateY(-2px); }
button:active { transform: scale(0.98); }

/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {
  --primary-color: #000;
  --secondary-color: #fff;
  --accent-color: #e69004;
  --light-grey: #f0f0f0;
  --transition-fast: 0.3s ease;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

h1, h2 { font-weight: 700; }
h3 { font-weight: 600; }

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 20px; }

/* =====================================================
   HEADER
===================================================== */

/* ================= PREMIUM HEADER ================= */

.premium-header {
  background: linear-gradient(135deg, #d98300, #ffae00);
  padding: 15px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-area img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.company-name h2 {
  font-size: 26px;
  color: #fff;
  margin: 0;
}

.company-name span {
  font-size: 13px;
  color: #fff;
  opacity: 0.9;
}


/* =====================================================
   NAVIGATION
===================================================== */

nav {
  padding: 10px 0;
  background-color: #0f0f0f;
  display: flex;
  justify-content: center;
}

nav a {
  margin: 0 15px;
  font-size: 18px;
  color: white;
}

nav a:hover,
nav a.active {
  color: var(--accent-color);
  font-weight: bold;
}

/* =====================================================
   HERO
===================================================== */

.hero {
  background-color: var(--light-grey);
  padding: 50px 20px;
  text-align: center;
}

.hero h1,
.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
/* ================= ANIMATED SERVICE CARDS ================= */

.animated-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover lift effect */
.animated-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(230,144,4,0.25);
}

/* Glow border effect */
.animated-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #e69004, #ffae00);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: 0.4s ease;
}

.animated-card:hover::before {
  opacity: 1;
}

/* Smooth text transition */
.animated-card h3 {
  transition: 0.3s ease;
}

.animated-card:hover h3 {
  color: #e69004;
}

/* Scroll reveal */
.animated-card {
  opacity: 0;
  transform: translateY(40px);
}

.animated-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s ease;
}


/* =====================================================
   SERVICES
===================================================== */

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 20px;
}

.service {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  width: 320px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.service:hover { transform: translateY(-8px); }

/* =====================================================
   OWNER SECTION
===================================================== */

.owner-section {
  padding: 40px 20px;
  background-color: var(--light-grey);
  text-align: center;
}

.owner-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.owner-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  width: 250px;
  transition: var(--transition-fast);
}

.owner-card:hover { transform: translateY(-5px); }

.owner-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* =====================================================
   PROJECTS GRID
===================================================== */

.projects-section {
  padding: 60px 20px;
  text-align: center;
}

.projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  width: 320px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  text-align: left;
}

.project-card:hover { transform: translateY(-8px); }

.project-card img {
  border-radius: 12px;
  margin-bottom: 15px;
}

/* =====================================================
   TIMELINE SECTION
===================================================== */

.timeline-section {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #ddd;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 30px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #fff;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item.ongoing::after { background: #ff9800; }
.timeline-item.completed::after { background: #4caf50; }

.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   FOOTER
===================================================== */

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--accent-color);
  padding: 20px;
  color: white;
}



footer img {
  width: 50px;
  height: 50px;
}

/* =====================================================
   BACK BUTTON
===================================================== */

.back-button {
  margin: 20px 0;
  text-align: center;
}

.back-button a {
  padding: 10px 20px;
  border: 2px solid black;
  border-radius: 8px;
}

.back-button a:hover {
  background-color: #ff8c00;
  color: white;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

  .timeline::before { left: 20px; }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    text-align: left !important;
  }

  .timeline-item:nth-child(even) { left: 0; }

  .timeline-item::after {
    left: 20px;
    transform: none;
  }

  body { font-size: 95%; }
}
/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 80px 20px;
  background: #ffffff;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

.about-text {
  text-align: center;
  margin-bottom: 60px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

/* Stats */

.about-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 16px;
  width: 250px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(230,144,4,0.25);
}

.stat-card h3 {
  font-size: 42px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 16px;
  font-weight: 500;
}
/* ================= ABOUT HERO SECTION ================= */

.about-hero {
  padding: 80px 20px;
  background: #ffffff;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-content {
  flex: 1;
  min-width: 320px;
}

.about-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.about-content h3 {
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--accent-color);
}

.about-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.about-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.about-content li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.about-image {
  flex: 1;
  min-width: 320px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* MOBILE */

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-content h1 {
    font-size: 32px;
  }
}
/* ================= PREMIUM HERO ================= */

.premium-hero {
  position: relative;
  height: 90vh;
  background: url("../assets/images/project_flyover.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
}

/* ================= ABOUT ================= */

.about-premium {
  padding: 100px 20px;
  background: #ffffff;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content h3 {
  margin-top: 30px;
  color: var(--accent-color);
}

.about-content ul {
  padding-left: 20px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ================= STATS ================= */

.stats-premium {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 100px 20px;
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
  color: white;
  text-align: center;
  flex-wrap: wrap;
}

.stat-box h2 {
  font-size: 60px;
  color: #e69004;
}

.stat-box p {
  font-size: 18px;
}

/* ================= SCROLL ANIMATION ================= */

.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 36px; }
  .about-wrapper { flex-direction: column; }
  .stats-premium { gap: 40px; }
}
/* ================= VIDEO HERO ================= */

.video-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.hero-center {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-center h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.hero-btn {
  background: #e69004;
  padding: 14px 35px;
  border-radius: 40px;
  font-size: 18px;
  color: #000;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #ffae00;
  transform: scale(1.05);
}

/* Responsive */

@media (max-width: 768px) {
  .hero-center h1 {
    font-size: 36px;
  }
}
.premium-header {
  display: none;
}
/* ================= INNER PAGE HEADER FIX ================= */

.inner-header {
  background: linear-gradient(135deg, #d98300, #f0a500);
  padding: 60px 20px;
  text-align: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.inner-header-content img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.inner-header-content h1 {
  font-size: 42px;
  font-weight: 700;
}


/* ================= NAVIGATION ================= */

.main-nav {
  background: #000;
  display: flex;
  justify-content: center;
  padding: 15px 0;
}

.main-nav a {
  color: #fff;
  margin: 0 20px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s ease;
}

.main-nav a:hover {
  color: #f0a500;
}

.main-nav a.active {
  color: #f0a500;
  font-weight: 600;
  border-bottom: 2px solid #f0a500;
}
/* ================= DRAMATIC FLOATING LOGO ================= */

.inner-header-content {
  position: relative;
}

/* Logo Base */
.inner-header-content img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;

  animation: dramaticFloat 4s ease-in-out infinite;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}

/* Hover Power Effect */
.inner-header-content img:hover {
  transform: scale(1.08);
}

/* Floating Motion */
@keyframes dramaticFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}

/* Rotating Energy Ring */
.inner-header-content::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3);
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  animation: rotateRing 8s linear infinite;
}

/* Glow Pulse */
.inner-header-content::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 0, 0.4) 0%, transparent 70%);
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: glowPulse 3s ease-in-out infinite;
}

/* Ring Rotation */
@keyframes rotateRing {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

/* Glow Animation */
@keyframes glowPulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}
/* ================= SERVICE CARD ANIMATION ================= */

.service {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* When visible */
.service.show {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Hover Effect */
.service:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(230, 144, 4, 0.25);
}
