body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #f8f8f8;
    overflow-x: hidden;
}
h1 {
    color: #333;
    text-align: center;
    margin-top: 50px;
}
.heading-font {
    font-family: 'Montserrat', sans-serif;
}
.logo-glow {
    color: #FFD700;
    text-shadow: 0 0 8px #FFD70044;
    letter-spacing: 1px;
}
/* Navbar Styles */
.nav-glass {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  border-bottom: 1px solid #222831;
}
.nav-link {
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link:hover {
  color: #FFD700;
}
.nav-link::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #4ade80, #22d3ee, #4ade80);
    transition: width 0.4s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.hamburger-line {
  width: 24px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
#menu-toggle.open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
#menu-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
}
#menu-toggle.open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-slide-down {
    animation: slideDown 0.5s cubic-bezier(.4,0,.2,1);
}
.nav-link-mobile {
  color: #fff;
  font-size: 1.2rem;
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link-mobile.active, .nav-link-mobile:hover {
    color: #FFD700;
    background: rgba(34, 211, 238, 0.08);
}
.hero-gradient {
    background: linear-gradient(135deg, rgba(20,20,20,0.9) 0%, rgba(10,10,10,0.95) 60%, rgba(5,5,5,1) 100%);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(74, 222, 128, 0.1);
}
.animate-fade-in {
    animation: fadeIn 1.2s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-delay-1 {
    animation-delay: 0.3s;
}
.animate-delay-2 {
    animation-delay: 0.6s;
}
.animate-delay-3 {
    animation-delay: 0.9s;
}
.about-img-frame {
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(34, 211, 238, 0.18), 0 2px 8px 0 rgba(74, 222, 128, 0.10);
    border: 5px solid;
    border-image: linear-gradient(135deg, #4ade80 10%, #22d3ee 90%);
    border-image-slice: 1;
    background: linear-gradient(135deg, #232526 0%, #0a0a0a 100%);
    padding: 0;
}
form#contactForm {
    background: #232b34;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    max-width: 600px;
    margin: 2rem auto;
}
form#contactForm label {
    display: block;
    color: #fff;
    margin-bottom: 0.3rem;
    font-weight: 500;
}
form#contactForm input,
form#contactForm textarea,
form#contactForm select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 2px solid transparent;
    border-radius: 7px;
    background: #313a45;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}
form#contactForm input:focus,
form#contactForm textarea:focus,
form#contactForm select:focus {
    outline: none;
    border-color: #16a34a;
}
form#contactForm input.error,
form#contactForm textarea.error,
form#contactForm select.error {
    border-color: #dc2626;
}
form#contactForm button {
    background: #16a34a;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}
form#contactForm button:hover:not(:disabled) {
    background: #12813a;
    transform: translateY(-1px);
}
form#contactForm button:disabled {
    background: #6b7280;
    cursor: not-allowed;
    transform: none;
}
#formMessage {
    color: #fff;
    font-size: 1rem;
    min-height: 1.5em;
    text-align: center;
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}
#formMessage.success {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid #16a34a;
}
#formMessage.error {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid #dc2626;
}
#formMessage.loading {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid #3b82f6;
}

/* Email status indicator */
.email-status {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}
.email-status.show {
    opacity: 1;
    transform: translateX(0);
}
.email-status.success {
    background: #16a34a;
}
.email-status.error {
    background: #dc2626;
}
.email-status.warning {
    background: #f59e0b;
}

/* Form validation styles */
.form-field {
    position: relative;
}
.form-field .error-message {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: #dc2626;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.form-field.error .error-message {
    opacity: 1;
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 768px) {
    form#contactForm {
        margin: 1rem;
        padding: 1.5rem;
    }
    .email-status {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100%);
    }
    .email-status.show {
        transform: translateY(0);
    }
} 

/* Stunning Navbar Animation */
@keyframes navbarFadeIn {
  from { opacity: 0; transform: translateY(-40px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.animate-navbar-fade-in {
  animation: navbarFadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
.stunning-navbar {
  box-shadow: 0 8px 32px 0 rgba(34, 211, 238, 0.18), 0 2px 8px 0 rgba(74, 222, 128, 0.10);
  border-bottom: 2px solid #22d3ee;
  background: linear-gradient(90deg, rgba(10,10,20,0.85) 60%, rgba(34,211,238,0.08) 100%);
}
.logo-glow-animated {
  color: #4ade80;
  text-shadow: 0 0 16px #4ade80cc, 0 0 32px #22d3ee88;
  animation: logoGlowPulseGreen 2.5s infinite alternate;
  letter-spacing: 2px;
}
@keyframes logoGlowPulseGreen {
  from { text-shadow: 0 0 8px #4ade8044, 0 0 16px #22d3ee44; }
  to { text-shadow: 0 0 32px #4ade80cc, 0 0 48px #22d3eecc; }
}
.nav-link-animated {
  position: relative;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.2s;
  text-decoration: none;
  overflow: hidden;
}
.nav-link-animated::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #16a34a, #4ade80, #22d3ee);
  transition: width 0.5s cubic-bezier(.4,0,.2,1), background 0.3s;
  box-shadow: none;
}
.nav-link-animated:hover::after, .nav-link-animated.active::after {
  width: 100%;
  background: linear-gradient(90deg, #4ade80, #22d3ee, #4ade80);
  box-shadow: 0 0 32px #4ade80cc, 0 0 48px #22d3eecc, 0 0 24px #16a34a99;
}
.nav-link-animated:hover {
  color: #16a34a;
  text-shadow: none;
  filter: none;
}
/* Hamburger Morph Animation */
.hamburger-animated .hamburger-line {
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
#menu-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg) scaleX(1.2);
  background: linear-gradient(90deg, #22d3ee, #4ade80);
  box-shadow: 0 0 8px #22d3ee88;
}
#menu-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
#menu-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg) scaleX(1.2);
  background: linear-gradient(90deg, #4ade80, #22d3ee);
  box-shadow: 0 0 8px #4ade8088;
} 

/* Best Navbar Styles */
.best-navbar {
  background: rgba(10, 20, 20, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px 0 rgba(34, 211, 238, 0.18), 0 2px 8px 0 rgba(74, 222, 128, 0.10);
  border-bottom: 2px solid #22d3ee;
  border-radius: 0 0 1.5rem 1.5rem;
}
@keyframes navbarFadeInBest {
  from { opacity: 0; transform: translateY(-40px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.animate-navbar-fade-in {
  animation: navbarFadeInBest 1.2s cubic-bezier(.4,0,.2,1);
}
.best-logo-glow {
  color: #4ade80;
  text-shadow: 0 0 24px #4ade80cc, 0 0 48px #22d3ee99, 0 0 8px #16a34a;
  letter-spacing: 2px;
  animation: logoGlowPulseBest 2.5s infinite alternate;
  transition: color 0.3s, text-shadow 0.3s;
}
@keyframes logoGlowPulseBest {
  from { text-shadow: 0 0 12px #4ade80cc, 0 0 24px #22d3ee99; }
  to { text-shadow: 0 0 36px #4ade80cc, 0 0 64px #22d3eecc; }
}
.nav-link-best {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
  text-decoration: none;
  overflow: visible;
}
.nav-link-best::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, #16a34a, #4ade80, #22d3ee);
  transition: width 0.5s cubic-bezier(.4,0,.2,1), background 0.3s;
  box-shadow: none;
  opacity: 0.9;
}
.nav-link-best:hover, .nav-link-best.active {
  color: #4ade80;
}
.nav-link-best:hover::after, .nav-link-best.active::after {
  width: 100%;
  background: linear-gradient(90deg, #4ade80, #22d3ee, #4ade80);
  box-shadow: 0 0 32px #4ade80cc, 0 0 48px #22d3eecc, 0 0 24px #16a34a99;
  opacity: 1;
}
/* Hamburger Menu Best */
.hamburger-best {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 50;
}
.hamburger-line-best {
  width: 28px;
  height: 4px;
  background: linear-gradient(90deg, #4ade80, #22d3ee);
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 8px #4ade80cc;
}
#menu-toggle.open .hamburger-line-best:nth-child(1) {
  transform: translateY(9px) rotate(45deg) scaleX(1.1);
  background: linear-gradient(90deg, #22d3ee, #4ade80);
  box-shadow: 0 0 16px #22d3eecc;
}
#menu-toggle.open .hamburger-line-best:nth-child(2) {
  opacity: 0;
}
#menu-toggle.open .hamburger-line-best:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg) scaleX(1.1);
  background: linear-gradient(90deg, #4ade80, #22d3ee);
  box-shadow: 0 0 16px #4ade80cc;
}
@keyframes slideDownBest {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-slide-down-best {
  animation: slideDownBest 0.5s cubic-bezier(.4,0,.2,1);
}
@media (max-width: 768px) {
  .best-navbar nav {
    flex-direction: row;
    align-items: center;
  }
  .best-logo-glow {
    font-size: 1.5rem;
  }
  .nav-link-best {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
} 

.about-img-wrapper {
  position: relative;
  display: inline-block;
}
.about-img-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(34,211,238,0.18) 0%, rgba(74,222,128,0.22) 100%);
  border-radius: 2rem;
  pointer-events: none;
}
.about-img-badge {
  position: absolute;
  bottom: 18px;
  left: 24px;
  background: linear-gradient(90deg, #16a34a, #4ade80, #22d3ee);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 0 16px #4ade80cc, 0 0 32px #22d3ee99;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #22d3ee88;
  z-index: 2;
  animation: badgeGlow 2s infinite alternate;
}
@keyframes badgeGlow {
  from { box-shadow: 0 0 8px #4ade80cc, 0 0 16px #22d3ee99; }
  to { box-shadow: 0 0 32px #4ade80cc, 0 0 48px #22d3eecc; }
} 