/* Google Font already added */

:root {
  --primary: #4f46e5;
  --secondary: #7c3aed;
  --dark: #0f172a;
  --light: #f1f5f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
}

/* PREMIUM NAVBAR */

#navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(15px);
  background: rgba(15, 23, 42, 0.6);
  transition: 0.3s;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.logo span {
  color: #4f46e5;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #4f46e5;
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* NAV CTA BUTTON */

.nav-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

/* HAMBURGER */

.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* MOBILE */

@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 80px;
    right: -100%;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.95);
    width: 250px;
    padding: 30px;
    border-radius: 10px;
    transition: 0.4s;
  }

  .nav-menu.active {
    right: 20px;
  }

  .hamburger {
    display: block;
  }
}

/* PREMIUM HERO SECTION */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background: #0f172a;
  color: #fff;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.gradient-text {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  padding: 14px 30px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
  padding: 14px 30px;
  border: 2px solid #4f46e5;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #4f46e5;
}

/* HERO VISUAL */

.hero-visual {
  position: relative;
}

.mock-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mock-card.small {
  margin-top: 20px;
  padding: 25px;
}

/* BLUR CIRCLES */

.blur-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.blur-circle.one {
  background: #4f46e5;
  top: -100px;
  left: -100px;
}

.blur-circle.two {
  background: #7c3aed;
  bottom: -150px;
  right: -150px;
}

/* MOBILE FIXED PREMIUM VERSION */

@media (max-width: 900px) {

  .hero {
    padding: 80px 20px;
    min-height: auto; /* important */
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;   /* important */
    gap: 15px;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .hero-visual {
    margin-top: 20px;
  }

  .mock-card {
    padding: 25px;
  }

  .blur-circle {
    display: none; /* hide heavy blur on mobile */
  }

}

/* SECTIONS */
.section {
  padding: 120px 8%;
  text-align: center;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--dark);
}

.section p {
  max-width: 700px;
  margin: auto;
  opacity: 0.8;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* GLASS CARD */
.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 20px;
  transition: 0.4s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* PRICING PREMIUM DESIGN */

.pricing-section {
  padding: 120px 8%;
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  text-align: center;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  opacity: 0.7;
  margin-bottom: 60px;
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  padding: 50px 35px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 25px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.pricing-card ul li {
  margin: 12px 0;
  font-size: 14px;
  opacity: 0.8;
}

.pricing-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 40px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.pricing-btn:hover {
  opacity: 0.9;
}

/* FEATURED CARD */

.featured {
  transform: scale(1.08);
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
}

.featured .price {
  color: #fff;
}

.featured .pricing-btn {
  background: #fff;
  color: #4f46e5;
}

.badge {
  position: absolute;
  top: -15px;
  right: 25px;
  background: #ffcc00;
  padding: 5px 15px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .featured {
    transform: scale(1);
  }
}
/* PORTFOLIO */
.portfolio-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* TESTIMONIAL */
.testimonial {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* FORM */
form {
  max-width: 600px;
  margin: auto;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 15px;
  margin: 12px 0;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
}

form textarea {
  height: 130px;
}

form button {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* WhatsApp Floating Button */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37,211,102,0.6);
}

/* Tooltip */
.whatsapp-float .tooltip {
    position: absolute;
    right: 75px;
    background: #111827;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    opacity: 0;
    transition: 0.3s;
    white-space: nowrap;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102, 0);
    }
}

/* Mobile Adjust */
@media(max-width:768px){
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 24px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float .tooltip {
        display: none;
    }
}

.footer {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    color: #fff;
    padding: 60px 10% 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 15px;
    background: linear-gradient(90deg,#6366f1,#a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #a855f7;
    padding-left: 5px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    background: #1e293b;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: linear-gradient(90deg,#6366f1,#a855f7);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #94a3b8;
}

/* Responsive */
@media(max-width:768px){
    .footer-container{
        flex-direction: column;
    }
}
/* SERVICES PREMIUM DESIGN */

.services-section {
  padding: 120px 8%;
  background: #ffffff;
  text-align: center;
}

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 25px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2ff;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  opacity: 0.8;
}
/* ABOUT PREMIUM DESIGN */

.about-section {
  padding: 120px 8%;
  background: linear-gradient(135deg, #f9fafb, #eef2ff);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-text p {
  margin-bottom: 20px;
  opacity: 0.8;
  font-size: 15px;
}

.highlight {
  color: #4f46e5;
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-card h3 {
  font-size: 28px;
  color: #4f46e5;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 14px;
  opacity: 0.7;
}
.about-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {

  .about-text {
    text-align: center;
  }

  .about-btn {
    width: 100%;
    max-width: 300px;
  }

}
/* WHY CHOOSE US PREMIUM DESIGN */

.why-section {
  padding: 120px 8%;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  text-align: center;
}

.why-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 40px 30px;
  border-radius: 25px;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.2);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 14px;
  opacity: 0.9;
}
/* PREMIUM PORTFOLIO */

.portfolio-section {
  padding: 120px 8%;
  background: #f8fafc;
  text-align: center;
}

.portfolio-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.portfolio-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.portfolio-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.portfolio-card:hover img {
  transform: scale(1.1);
}

/* OVERLAY */

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,#4f46e5,#7c3aed);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.portfolio-card:hover .overlay {
  opacity: 0.85;
}

/* CONTENT */

.portfolio-content {
  padding: 30px;
  text-align: left;
}

.portfolio-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.portfolio-content p {
  font-size: 14px;
  opacity: 0.8;
}
/* PREMIUM TESTIMONIAL SECTION */

.testimonial-section {
  padding: 120px 8%;
  background: linear-gradient(135deg,#eef2ff,#f5f3ff);
  text-align: center;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: 0.4s;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.1);
}

.stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 15px;
  margin-bottom: 25px;
  opacity: 0.85;
}

/* CLIENT INFO */

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg,#4f46e5,#7c3aed);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
}

.client-info h4 {
  margin: 0;
  font-size: 15px;
}

.client-info span {
  font-size: 13px;
  opacity: 0.7;
}
.contact-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.contact-left {
    flex: 1;
    color: #fff;
}

.contact-left h2 {
    font-size: 36px;
    margin-bottom: 15px;
    background: linear-gradient(90deg,#6366f1,#a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-left p {
    color: #cbd5e1;
    line-height: 1.6;
}

.contact-right {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 15px;
}

.contact-right input,
.contact-right select,
.contact-right textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #1e293b;
    color: #fff;
}

.contact-right input:focus,
.contact-right textarea:focus,
.contact-right select:focus {
    border: 1px solid #6366f1;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg,#6366f1,#a855f7);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168,85,247,0.4);
}

#formMessage {
    margin-top: 10px;
    font-weight: 500;
}

/* Responsive */
@media(max-width:768px){
    .contact-container{
        flex-direction: column;
    }
}