/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #0a192f;
  color: #ccd6f6;
  cursor: none;
}

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

/* Header Styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 25, 47, 0.95);
  color: #ccd6f6;
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.logo {
  width: 40px;
  height: auto;
}

.brand-name {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #64ffda;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  color: #ccd6f6;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-links li a:hover {
  color: #0a192f;
  background: #64ffda;
  border-radius: 4px;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}

.menu-toggle .hamburger {
  width: 30px;
  height: 2px;
  background: #ccd6f6;
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #ccd6f6;
  display: block;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.menu-toggle .hamburger::before {
  top: -8px;
}

.menu-toggle .hamburger::after {
  top: 8px;
}

.menu-toggle.active .hamburger {
  background: transparent;
}

.menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: rgba(17, 34, 64, 0.95);
    backdrop-filter: blur(10px);
    width: 250px;
    height: calc(100vh - 70px);
    padding: 20px;
    gap: 15px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* Hero Section - Minimalist Design */
.section-hero {
  margin-top: 70px;
  padding: 100px 20px;
  background-color: #0a192f;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  text-align: left;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 1px;
  color: #8892b0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  color: #ccd6f6;
  margin-bottom: 15px;
  line-height: 1.1;
}

.hero-description {
  font-size: 24px;
  font-weight: 600;
  color: #64ffda;
  margin-bottom: 20px;
}

.hero-body-text {
  font-size: 18px;
  color: #8892b0;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-availability {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #ccd6f6;
}

.availability-dot {
  width: 10px;
  height: 10px;
  background: #64ffda;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.location-text {
  color: #64ffda;
  font-weight: 600;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-info-box {
  background: #112240;
  padding: 25px;
  border-radius: 8px;
  border-left: 3px solid #64ffda;
}

.info-label {
  font-size: 12px;
  letter-spacing: 1px;
  color: #64ffda;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.info-content {
  font-size: 16px;
  color: #ccd6f6;
  line-height: 1.6;
}

.info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.tag {
  display: inline-block;
  background: rgba(100, 255, 218, 0.1);
  color: #64ffda;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  border: 1px solid rgba(100, 255, 218, 0.2);
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 20px;
  }

  .hero-body-text {
    font-size: 16px;
  }
}

/* About Section */
.about-me-section {
  background-color: #0a192f;
  color: #ccd6f6;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.about-me-section h2 {
  font-size: 36px;
  color: #64ffda;
  margin-bottom: 20px;
}

.about-intro {
  font-size: 18px;
  color: #ccd6f6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.about-card {
  background-color: #112240;
  border-radius: 8px;
  padding: 20px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.about-card h3 {
  font-size: 24px;
  color: #64ffda;
  margin-bottom: 15px;
  margin-top: 15px;
}

.about-card p {
  font-size: 16px;
  color: #ccd6f6;
  line-height: 1.6;
}

/* Skills Section */
.skills-section {
  background-color: #112240;
  color: #ccd6f6;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.skills-section h2 {
  font-size: 36px;
  color: #64ffda;
  margin-bottom: 20px;
}

.skills-intro {
  font-size: 18px;
  color: #ccd6f6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.skills-category {
  background-color: #0a192f;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.skills-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.skills-category h3 {
  font-size: 24px;
  color: #64ffda;
  margin-bottom: 15px;
  text-align: center;
}

.skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skills-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #ccd6f6;
}

/* Services Section */
.services-section {
  min-height: 60vh;
  background: linear-gradient(135deg, #15386d 0%, #112240 100%);
  color: #ccd6f6;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.services-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ccd6f6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #0b2a3a;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ccd6f6;
}

.service-card p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #ccd6f6;
}

/* Portfolio Showcase Section */
.portfolio-showcase-section {
  background: linear-gradient(135deg, #15386d 0%, #112240 100%);
  color: #ccd6f6;
  padding: 100px 20px;
  position: relative;
}

.portfolio-showcase-section h2 {
  font-size: 42px;
  color: #64ffda;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.showcase-intro {
  font-size: 18px;
  color: #ccd6f6;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.8;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-card {
  background: #112240;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.card-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.showcase-card:hover .card-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 255, 218, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.showcase-card:hover .card-overlay {
  opacity: 1;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 22px;
  color: #0a192f;
  margin-bottom: 10px;
  font-weight: 700;
}

.card-content p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tags span {
  background: #0a192f;
  color: #64ffda;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #64ffda;
}

/* FIX PORTFOLIO TEXT COLOURS */
.portfolio-showcase-section .card-content h3 {
  color: #64ffda !important;
}

.portfolio-showcase-section .card-content p {
  color: #ccd6f6 !important;
}

.portfolio-showcase-section .view-site-btn {
  color: #64ffda !important;
  border-color: #64ffda !important;
}

.portfolio-showcase-section .view-site-btn:hover {
  background: #64ffda !important;
  color: #0a192f !important;
}

.portfolio-showcase-section .showcase-card {
  background: #0a192f !important;
}


/* Pricing Section */
.pricing-section {
  background-color: #0a192f;
  color: #ccd6f6;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.pricing-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #64ffda;
}

.pricing-intro {
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #112240;
  color: #ccd6f6;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border: 3px solid #64ffda;
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #64ffda;
  color: #0a192f;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(45deg);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #64ffda;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: #64ffda;
  margin-bottom: 10px;
}

.package-desc {
  font-size: 14px;
  color: #8892b0;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
  flex-grow: 1;
}

.features-list li {
  padding: 8px 0;
  font-size: 14px;
  color: #ccd6f6;
  border-bottom: 1px solid #233554;
}

.features-list li:last-child {
  border-bottom: none;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 12px;
  background: #64ffda;
  color: #0a192f;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.pricing-cta:hover {
  background: #52dca9;
}

/* Contact Section */
.contact-section {
  background-color: #112240;
  color: #ccd6f6;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.contact-section h2 {
  font-size: 36px;
  color: #64ffda;
  margin-bottom: 20px;
}

.contact-intro {
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.contact-form-container {
  background: #0a192f;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #64ffda;
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #233554;
  border-radius: 6px;
  background: #112240;
  color: #ccd6f6;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #64ffda;
}

.submit-button {
  width: 100%;
  padding: 12px;
  background: #64ffda;
  color: #0a192f;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background: #52dca9;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-methods h3 {
  color: #64ffda;
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-method h4 {
  color: #64ffda;
  margin-bottom: 5px;
  font-size: 16px;
}

.contact-method a {
  color: #ccd6f6;
  text-decoration: none;
  font-size: 16px;
}

.contact-method a:hover {
  color: #64ffda;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  font-size: 16px;
  margin-top: 10px;
}

.whatsapp-button:hover {
  background: #1da851;
}

.response-time {
  background: #0a192f;
  padding: 20px;
  border-radius: 8px;
}

.response-time h4 {
  color: #64ffda;
  margin-bottom: 10px;
  font-size: 16px;
}

.response-time p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccd6f6;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Footer Section */
.footer-section {
  background-color: #0a192f;
  color: #ccd6f6;
  padding: 60px 20px 20px;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #64ffda;
}

.footer-column p,
.footer-column ul {
  font-size: 14px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccd6f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #64ffda;
}

.social-icons {
  display: flex;
  gap: 15px;
  list-style: none;
}

.social-icons li a {
  color: #ccd6f6;
  transition: color 0.3s ease;
  font-size: 20px;
}

.social-icons li a:hover {
  color: #64ffda;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #8892b0;
  border-top: 1px solid #233554;
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Wave Container */
.wave-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-container svg {
  display: block;
  width: 100%;
  height: 100px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 2px solid #64ffda;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, background-color 0.3s ease;
  z-index: 9999;
}

.cursor-hover {
  transform: scale(2);
  background-color: #64ffda;
  mix-blend-mode: difference;
}

html {
  scroll-behavior: smooth;
}

a,
button,
.cta-button,
input,
textarea {
  cursor: none;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .services-section,
  .portfolio-showcase-section {
    padding: 60px 20px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 18px;
  }
}

/* MODAL BACKDROP */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.9);
}

/* Hide on VERY small screens (optional) */
@media (max-width: 360px) {
  .floating-whatsapp {
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
  }
}

/* Credibility Section */
.credibility-section {
  background-color: #0a192f;
  padding: 80px 20px;
  text-align: center;
}

.credibility-section h2 {
  font-size: 34px;
  font-weight: 700;
  color: #64ffda;
  margin-bottom: 15px;
}

.credibility-section p {
  font-size: 18px;
  color: #ccd6f6;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Disable custom cursor on mobile */
@media (max-width: 768px) {
  body {
    cursor: auto !important;
  }

  .custom-cursor {
    display: none !important;
  }
}
