/* ========== GLOBAL STYLES – DARK + YELLOW ========== */
:root {
  --bg-dark: #0b0c10;
  --bg-card: rgba(20, 22, 28, 0.8);
  --glass-border: rgba(255, 215, 0, 0.15);
  --primary-yellow: #ffb81c;
  --primary-yellow-dark: #e6a700;
  --gradient-yellow: linear-gradient(135deg, #ffb81c, #ffd700);
  --text-light: #f0f4fa;
  --text-dim: #c0c6d0;
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 20px 40px rgba(255, 184, 28, 0.2);
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== GLASS EFFECT ===== */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  padding: 20px;
}

.glass:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}


.contact-info {
  
  padding: 30px;
}
.about-image img {
  width: 500px;
  padding: 10px;
  border-radius: 25px;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-yellow);
  margin-bottom: 10px;
  font-weight: 600;
}

/* ===== STICKY NAVIGATION ===== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(11, 12, 16, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 184, 28, 0.15);
  z-index: 999;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.9rem;
  font-weight: 800;
  font-family: var(--font-secondary);
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span {
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}

.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
  font-size: 1rem;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary-yellow);
  text-shadow: 0 0 6px rgba(255, 184, 28, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 26px;
  height: 3px;
  background: white;
  margin: 3px 0;
  border-radius: 3px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-yellow);
  color: #0b0c10;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(255, 184, 28, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 12px 26px rgba(255, 184, 28, 0.5);
  transform: scale(1.05);
  color: #000;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-outline {
  border: 2px solid var(--primary-yellow);
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-yellow);
  color: #0b0c10;
  border-color: var(--primary-yellow);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20b859;
}

/* ===== SCROLL TO TOP ===== */
#scrollTopBtn {
  position: fixed;
  bottom: 110px;
  right: 30px;
  background: var(--primary-yellow);
  color: #0b0c10;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: 0.2s;
  box-shadow: 0 4px 14px rgba(255, 184, 28, 0.5);
}

#scrollTopBtn.show {
  display: flex;
}

/* ===== HERO ===== */
.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-card {
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.hero-card i {
  font-size: 3rem;
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--primary-yellow);
  background-size: cover;
  background-position: start;
}

/* ===== STATS (ABOUT PAGE) ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.stat-item {
  background: rgba(255, 184, 28, 0.05);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-yellow);
}

/* ===== SKILL PROGRESS BARS ===== */
.skill {
  margin-bottom: 20px;
}

.skill span {
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-yellow);
  width: 0%;
  border-radius: 20px;
  transition: width 1.5s ease;
}

/* ===== SERVICES CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  padding: 35px 20px;
  text-align: center;
}

.service-icon i {
  font-size: 2.6rem;
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-link {
  color: var(--primary-yellow);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
}

/* ===== WHY CHOOSE ME ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.why-item {
  padding: 30px 20px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 184, 28, 0.05);
}

.why-item i {
  font-size: 2.2rem;
  color: var(--primary-yellow);
  margin-bottom: 15px;
}

/* ===== PORTFOLIO FILTER ===== */
.filter-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 184, 28, 0.3);
  color: var(--text-dim);
  padding: 10px 26px;
  border-radius: 40px;
  font-weight: 500;
  transition: 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-yellow);
  color: #0b0c10;
  border-color: transparent;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.portfolio-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 12, 16, 0.95), rgba(255, 184, 28, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

/* ===== YOUTUBE EMBED ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  padding: 35px 25px;
  margin: 10px;
}

.testimonial-card i {
  color: var(--primary-yellow);
  font-size: 1.8rem;
  opacity: 0.6;
  margin-bottom: 15px;
}

.swiper-pagination-bullet {
  background: var(--primary-yellow);
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.blog-card {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 184, 28, 0.03);
}

.blog-card h4 {
  margin: 15px 0 10px;
}

.blog-link {
  color: var(--primary-yellow);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  padding: 40px 25px;
  text-align: center;
  background: var(--bg-card);
  border-radius: 28px;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-yellow);
  margin: 20px 0;
}

.price-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dim);
}

.pricing-card ul {
  list-style: none;
  margin: 25px 0;
  text-align: left;
  padding: 0 15px;
}

.pricing-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card li i {
  color: var(--primary-yellow);
  margin-right: 10px;
}

/* ===== CONTACT & MAP ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 184, 28, 0.2);
  border-radius: 40px;
  padding: 16px 24px;
  color: white;
  font-family: inherit;
  margin-bottom: 20px;
}

.map-placeholder iframe {
  width: 100%;
  height: 260px;
  border-radius: 20px;
  margin-top: 20px;
  border: 1px solid var(--glass-border);
}

/* ===== FOOTER ===== */
.footer {
  background: #050608;
  padding: 70px 0 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  line-height: 2.4;
}

.footer-col a:hover {
  color: var(--primary-yellow);
}

.newsletter {
  display: flex;
}

.newsletter input {
  flex: 1;
  padding: 14px;
  border-radius: 40px 0 0 40px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter button {
  background: var(--primary-yellow);
  border: none;
  padding: 0 20px;
  border-radius: 0 40px 40px 0;
  color: #0b0c10;
  font-weight: bold;
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 184, 28, 0.1);
  color: var(--text-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .about-image img {
    width: 100%;
    padding: 10px;
    border-radius: 25px;
  }

  .stats-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid,
  .blog-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .logo {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-secondary);
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span {
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 5px;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 184, 28, 0.2);
  border-radius: 40px;
  padding: 16px 15px;
  color: white;
  font-family: inherit;
  margin-bottom: 20px;
}
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
}
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(11, 12, 16, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    padding: 30px 0;
    transition: 0.3s;
    border-top: 1px solid rgba(255, 184, 28, 0.2);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  
  }

  .hero-title {
    font-size: 2rem;
  }

  .why-grid,
  .video-grid,
  .blog-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    
  }
  

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .price-grid{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
}