/*
Theme Name: My Portfolio
Theme URI: https://example.com/my-portfolio
Author: Your Name
Author URI: https://example.com
Description: A modern, advanced, responsive portfolio theme.
Version: 2.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-portfolio
Tags: portfolio, personal, responsive, clean, modern
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
  --primary: #5b2ff6;
  --secondary: #00c6fb;
  --bg: #f7f8fa;
  --text: #222;
  --header-bg: linear-gradient(90deg, #5b2ff6 0%, #00c6fb 100%);
  --card-bg: #fff;
  --card-shadow: 0 4px 24px rgba(91,47,246,0.08);
  --border-radius: 14px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden !important;
}

nav {
  background: var(--header-bg);
  color: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(91,47,246,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
.navbar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
}
.navbar-menu {
  display: flex;
  gap: 2rem;
}
.navbar-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.navbar-menu a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width var(--transition);
  position: absolute;
  left: 0;
  bottom: -4px;
}
.navbar-menu a:hover::after {
  width: 100%;
}

/* Hamburger for mobile */
.navbar-toggle {
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
.navbar-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

/* Hero Section */
.hero {
  background: var(--header-bg);
  color: #fff;
  padding: 4rem 0 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero .profile-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 24px rgba(91,47,246,0.12);
  margin-bottom: 1rem;
  background: #fff;
}
.hero h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0 0.2rem 0;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.hero .hero-links {
  margin-top: 1.2rem;
}
.hero .hero-links a {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  margin: 0 0.5rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(91,47,246,0.08);
  transition: background var(--transition), color var(--transition);
}
.hero .hero-links a:hover {
  background: var(--secondary);
  color: #fff;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  border-radius: var(--border-radius);
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

section {
  margin-bottom: 2.5rem;
}

h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* About Section */
#about {
  text-align: center;
  padding-bottom: 1.5rem;
}
#about p {
  font-size: 1.1rem;
  color: #444;
}

/* Projects Section */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.project-card {
  background: #232733;
  padding: 1.5rem 1rem 1.2rem 1rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  border: none;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 340px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.project-card:hover {
  box-shadow: 0 8px 32px rgba(255,92,57,0.18);
  border-color: #ff5c39;
  transform: translateY(-6px) scale(1.03);
}
.project-card h3 {
  margin: 0.7rem 0 0.5rem 0;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.project-card h3 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.project-card h3 a:hover {
  color: #ff5c39;
  border-bottom: 2px solid #ff5c39;
}
.project-card p {
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 0.2rem 0;
  line-height: 1.6;
  letter-spacing: 0.1px;
  flex: 1 1 auto;
}
.project-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 2px 8px rgba(91,47,246,0.07);
  margin-bottom: 1rem;
  background: #f1f3f4;
  display: block;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.project-card:hover .project-img {
  transform: scale(1.08);
  z-index: 2;
}

/* Contact Section */
#contact {
  text-align: center;
}
.contact-info {
  font-size: 1.1rem;
  margin-top: 1rem;
}
.contact-info a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-info a:hover {
  color: var(--secondary);
}

/* Footer */
footer {
  background: linear-gradient(90deg, #7b5cff 0%, #1ecfff 100%);
  color: #fff;
  padding: 1.3rem 0 1.1rem 0;
  text-align: center;
  margin-top: 0;
  border-radius: 18px 18px 0 0;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  box-shadow: 0 -2px 16px rgba(30,207,255,0.08);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .container {
    padding: 1rem;
  }
  .navbar {
    padding: 0 1rem;
    min-height: 60px;
    gap: 0 !important;
    flex-wrap: wrap;
  }
  .navbar-logo {
    font-size: 1.3rem;
    margin-right: 0;
  }
  .navbar-menu {
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .container {
    margin-top: -2rem;
  }
  .projects {
    grid-template-columns: 1fr;
  }
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0 !important;
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
    padding: 0 0.5rem;
    box-sizing: border-box;
  }
  .navbar-logo {
    font-size: 1.1rem;
    margin-right: 0;
  }
  .navbar-menu {
    flex-direction: column;
    width: 100vw;
    gap: 1.2rem;
    padding: 1rem 0;
    position: absolute;
    top: 56px;
    left: 0;
    background: #181c23;
    display: none;
    box-sizing: border-box;
  }
  .navbar-menu.active {
    display: flex;
  }
  .navbar-toggle {
    display: flex !important;
  }
  .hero {
    padding: 3rem 0 1rem 0;
  }
  .container {
    padding: 0.5rem;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
} 

/* --- Dark Theme Hero & Nav --- */
body, .hero-dark, .main-nav, .dark-navbar {
  background: #181c23;
  color: #fff;
}
.main-nav, .dark-navbar {
  background: #181c23;
  box-shadow: none;
}
.hero {
  padding: 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181c23;
  position: relative;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.hero-left {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 260px;
}
.hero-hello {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.hero-dot {
  color: #ff5c39;
  font-size: 2.2rem;
  margin-left: 0.2rem;
}
.hero-name {
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0.2rem 0 0.5rem 0;
  color: #fff;
}
.hero-name span {
  font-weight: 700;
  color: #fff;
}
.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1.2rem;
}
.hero-btn {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255,92,57,0.08);
}
.hero-btn-primary {
  background: #ff5c39;
  color: #fff;
  border: 2px solid #ff5c39;
}
.hero-btn-primary:hover {
  background: #fff;
  color: #ff5c39;
}
.hero-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.hero-btn-outline:hover {
  background: #fff;
  color: #181c23;
}
.hero-right {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
}
.hero-img-circle {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255,92,57,0.18) 60%, transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 60px 0 rgba(255,92,57,0.18);
}
.hero-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid #232733;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  background: #fff;
}
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem 1rem 1rem 1rem;
  }
  .hero-left, .hero-right {
    min-width: 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero-left {
    align-items: center;
  }
  .hero-hello {
    font-size: 1.2rem;
  }
  .hero-name {
    font-size: 1.5rem;
  }
  .hero-title {
    font-size: 1.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
    margin-top: 1.2rem;
  }
  .hero-btn {
    width: 90vw;
    max-width: 320px;
    font-size: 1.1rem;
    padding: 0.8rem 0;
  }
  .hero-img-circle {
    width: 140px;
    height: 140px;
  }
  .hero-img {
    width: 100px;
    height: 100px;
    border-width: 4px;
  }
}
@media (max-width: 600px) {
  .hero-img-circle {
    width: 200px;
    height: 200px;
  }
  .hero-img {
    width: 140px;
    height: 140px;
    border-width: 5px;
  }
  .hero-content {
    padding: 1.2rem 0.2rem 0.5rem 0.2rem;
  }
  .hero-title, .hero-name, .hero-hello {
    font-size: 1.2rem !important;
  }
  .hero-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}
/* Nav menu color fix */
.navbar-menu a {
  color: #fff;
}
.navbar-logo {
  color: #fff;
} 

.about-section {
  background: #181c23;
  color: #fff;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
  gap: 3rem;
}
/* Fix about-services alignment and icon spacing */
/* Align about-service dots and icons perfectly on the vertical line */
.about-services {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  margin-top: 1.5rem;
  margin-right: 2rem;
}
.about-service {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  padding-left: 32px;
}
.about-dot {
  width: 10px;
  height: 10px;
  background: #ff5c39;
  border-radius: 50%;
  margin-right: 10px;
  margin-left: -32px;
  display: inline-block;
  box-shadow: none;
  flex-shrink: 0;
}
.about-icon {
  font-size: 1.3rem;
  color: #ff5c39;
  margin-right: 10px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.about-label {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0;
}
.about-vertical-line {
  position: absolute;
  left: 5px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #ff5c39 0%, #ff5c39 80%, transparent 100%);
  z-index: 1;
}
.about-main {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 260px;
}
.about-main h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
}
.about-main p,
#about p {
  color: #f3f3f3 !important;
  font-size: 1.18rem !important;
  line-height: 1.8 !important;
  text-shadow: 0 2px 12px #181c23, 0 0 2px #fff;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.about-stats {
  display: flex;
  gap: 3.5rem;
  margin-top: 1.5rem;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-stat-number {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.about-accent {
  color: #ff5c39;
  font-size: 2.2rem;
  font-weight: 700;
}
.about-stat-label {
  font-size: 1rem;
  color: #e0e0e0;
  font-weight: 400;
}
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem 1rem 1rem 1rem;
  }
  .about-services {
    flex-direction: row;
    align-items: flex-start;
    margin: 0 0 2rem 0;
    min-width: 0;
    width: 100%;
    justify-content: center;
    gap: 0;
  }
  .about-service {
    flex-direction: column;
    align-items: center;
    margin: 0 1.5rem 0 1.5rem;
    gap: 0;
    padding-left: 0;
  }
  .about-dot, .about-icon, .about-label {
    margin: 0 0 0.5rem 0;
  }
  .about-dot {
    margin-left: 0;
  }
  .about-vertical-line {
    display: none;
  }
  .about-main {
    align-items: center;
    text-align: center;
  }
  .about-stats {
    gap: 2rem;
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
    padding: 2.2rem 0.5rem 1rem 0.5rem;
  }
  .about-services {
    flex-direction: row;
    align-items: flex-start;
    margin: 0 0 2rem 0;
    min-width: 0;
    width: 100%;
    justify-content: center;
    gap: 0;
  }
  .about-service {
    flex-direction: column;
    align-items: center;
    margin: 0 1.5rem 0 1.5rem;
    gap: 0;
    padding-left: 0;
  }
  .about-dot, .about-icon, .about-label {
    margin: 0 0 0.5rem 0;
  }
  .about-dot {
    margin-left: 0;
  }
  .about-vertical-line {
    display: none;
  }
  .about-main {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .about-main h2 {
    font-size: 1.3rem;
  }
  .about-main p {
    font-size: 1rem;
  }
  .about-stats {
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .about-stat-number {
    font-size: 1.2rem;
  }
  .about-accent {
    font-size: 1.2rem;
  }
  .about-stat-label {
    font-size: 1rem;
  }
}

/* Font Awesome CDN for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css'); 

.about-section, .projects-section, .contact-section {
  background: #181c23;
  color: #fff;
  width: 100%;
  padding: 0;
  margin: 0;
}
.about-container, .projects-container, .contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
}
/* Remove white box and shadow from all sections */
.container {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 auto !important;
  max-width: 1100px;
}
section {
  margin-bottom: 0;
  padding-bottom: 0;
}
/* Add spacing between sections */
.about-section + .projects-section,
.projects-section + .contact-section {
  margin-top: 2.5rem;
}
/* Projects section full width and dark */
.projects-section {
  background: #181c23;
  color: #fff;
  width: 100%;
}
.projects-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
}
#projects {
  background: none;
  color: inherit;
  margin: 0;
  padding: 0;
}
/* Contact section full width and dark */
.contact-section {
  background: #181c23;
  color: #fff;
  width: 100%;
}
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
}
#contact {
  background: none;
  color: inherit;
  margin: 0;
  padding: 0;
} 

.projects-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #fff;
  letter-spacing: 1px;
}
.projects-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem;
  justify-content: center;
  align-items: stretch;
}
/* Scroll animation for project cards */
.project-animated {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.project-animated.visible {
  opacity: 1;
  transform: none;
} 

.contact-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.2rem;
  letter-spacing: 1px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}
.contact-item {
  font-size: 1.13rem;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}
.contact-item i {
  color: #ff5c39;
  font-size: 1.3em;
  min-width: 1.5em;
  text-align: center;
}
.contact-item span {
  color: #fff;
  font-weight: 600;
  margin-right: 0.3em;
}
.contact-item a {
  color: #7b5cff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: #ff5c39;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .contact-list {
    align-items: flex-start;
    padding-left: 1rem;
  }
  .contact-heading {
    font-size: 1.3rem;
  }
  .contact-item {
    font-size: 1rem;
  }
} 

/* --- Testimonials Section --- */
.testimonials-section {
  background: #181c23;
  color: #fff;
  width: 100%;
  padding: 0;
  margin: 0;
}
.testimonials-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
  text-align: center;
}
.testimonials-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.2rem;
  letter-spacing: 1px;
}
/* Testimonials Slider Fix */
.testimonials-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  height: 340px;
}
.testimonial-card {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s, transform 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-card.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
}
.testimonial-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.1rem;
  border: 3px solid #7b5cff;
  box-shadow: 0 2px 8px rgba(91,47,246,0.10);
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-content p {
  color: #e0e0e0;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 1.1rem;
  line-height: 1.6;
}
.testimonial-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  display: block;
}
.testimonial-role {
  color: #7b5cff;
  font-size: 0.98rem;
  font-weight: 500;
  display: block;
  margin-top: 0.2rem;
}
/* Slider dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.testimonials-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #353a4a;
  border: 2px solid #7b5cff;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
.testimonials-dot.active {
  background: #7b5cff;
  border-color: #fff;
}
@media (max-width: 700px) {
  .testimonials-slider {
    min-height: 320px;
    height: 360px;
  }
  .testimonial-card,
  .testimonial-card.active {
    position: static;
    left: unset;
    right: unset;
    margin: 0 auto;
    width: 95vw;
    max-width: 95vw;
    opacity: 0;
    z-index: 1;
    display: none;
  }
  .testimonial-card.active {
    opacity: 1;
    z-index: 2;
    display: flex;
  }
} 

/* Update max-width for all main containers */
.about-container, .projects-container, .contact-container, .testimonials-container, .container {
  max-width: 1300px;
} 

/* Sticky header for .main-nav */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100vw !important;
  max-width: 100vw !important;
  min-width: 0 !important;
  background: var(--header-bg);
  box-shadow: 0 6px 32px 0 rgba(91,47,246,0.13);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: background 0.4s;
  border-bottom: none !important;
} 

/* Make header and footer match site dark background */
.main-nav, .dark-navbar, nav, footer {
  background: #181c23 !important;
  box-shadow: none;
} 

/* Make hero text, about text, and profile image larger for better readability */
.hero-hello {
  font-size: 2.5rem;
}
.hero-name {
  font-size: 3.2rem;
}
.hero-title {
  font-size: 2.7rem;
}
.hero-img-circle {
  width: 380px;
  height: 380px;
}
.hero-img {
  width: 320px;
  height: 320px;
  border-width: 10px;
}
.about-main h2 {
  font-size: 2.7rem;
}
.about-main p {
  font-size: 1.35rem;
  line-height: 1.8;
  max-width: 700px;
}
.about-stat-number {
  font-size: 2.5rem;
}
.about-stat-label {
  font-size: 1.2rem;
}
@media (max-width: 900px) {
  .hero-img-circle {
    width: 260px;
    height: 260px;
  }
  .hero-img {
    width: 180px;
    height: 180px;
    border-width: 7px;
  }
  .hero-hello {
    font-size: 1.5rem;
  }
  .hero-name {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .about-main h2 {
    font-size: 1.7rem;
  }
  .about-main p {
    font-size: 1.1rem;
  }
  .about-stat-number {
    font-size: 1.3rem;
  }
  .about-stat-label {
    font-size: 1rem;
  }
} 

/* Animated glowing effect behind hero image */
.hero-img-circle {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255,92,57,0.18) 60%, transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 60px 0 rgba(255,92,57,0.18);
  animation: hero-glow 2.2s ease-in-out infinite alternate;
}
@keyframes hero-glow {
  0% {
    box-shadow: 0 0 60px 0 rgba(255,92,57,0.18), 0 0 0 0 rgba(255,92,57,0.10);
    background: radial-gradient(circle, rgba(255,92,57,0.18) 60%, transparent 100%);
  }
  60% {
    box-shadow: 0 0 90px 20px rgba(255,92,57,0.32), 0 0 0 20px rgba(255,92,57,0.10);
    background: radial-gradient(circle, rgba(255,92,57,0.28) 70%, transparent 100%);
  }
  100% {
    box-shadow: 0 0 60px 0 rgba(255,92,57,0.18), 0 0 0 0 rgba(255,92,57,0.10);
    background: radial-gradient(circle, rgba(255,92,57,0.18) 60%, transparent 100%);
  }
} 

/* Modern testimonial carousel styles */
.testimonials-carousel {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem;
  position: relative;
  margin-bottom: 2.5rem;
}
.testimonial-card {
  background: #232733;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  min-width: 340px;
  max-width: 370px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.4;
  filter: blur(1.5px);
  border: 2.5px solid transparent;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.testimonial-card.testimonial-active {
  opacity: 1;
  filter: none;
  z-index: 2;
  border: 2.5px solid #ff5c39;
  background: #232733;
  box-shadow: 0 8px 32px 0 rgba(255,92,57,0.18);
}
.testimonial-card.testimonial-left,
.testimonial-card.testimonial-right {
  z-index: 1;
  pointer-events: none;
}
.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.1rem;
  border: 3px solid #ff5c39;
  box-shadow: 0 2px 8px rgba(91,47,246,0.10);
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-content p {
  color: #e0e0e0;
  font-size: 1.13rem;
  font-style: italic;
  margin-bottom: 1.1rem;
  line-height: 1.7;
  text-align: center;
}
.testimonial-content hr {
  border: none;
  border-top: 1.5px solid #ff5c39;
  width: 80%;
  margin: 1.1rem auto 1.1rem auto;
  opacity: 0.4;
}
.testimonial-name {
  font-weight: 800;
  color: #ff5c39;
  font-size: 1.25rem;
  display: block;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
}
.testimonial-role {
  color: #7b5cff;
  font-size: 1.05rem;
  font-weight: 500;
  display: block;
  margin-top: 0.1rem;
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.testimonials-dots .testimonials-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #353a4a;
  border: 2px solid #ff5c39;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
.testimonials-dots .testimonials-dot.active {
  background: #ff5c39;
  border-color: #fff;
}
@media (max-width: 900px) {
  .testimonials-carousel {
    gap: 0.5rem;
  }
  .testimonial-card {
    min-width: 90vw;
    max-width: 95vw;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
} 

/* --- Improved Contact Form 7 Card Style --- */
.contact-form7-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.contact-form7-wrapper .wpcf7-form {
  max-width: 440px;
  width: 100%;
  background: #232733;
  padding: 2.5rem 2.2rem 2rem 2.2rem;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(255,92,57,0.10), 0 2px 8px rgba(91,47,246,0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto;
}
.contact-form7-wrapper .wpcf7-form p {
  margin: 0 0 0.5rem 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
}
.contact-form7-wrapper .wpcf7-form label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
  letter-spacing: 0.2px;
  text-align: left;
  font-size: 1.08rem;
}
.contact-form7-wrapper .wpcf7-form input[type="text"],
.contact-form7-wrapper .wpcf7-form input[type="email"],
.contact-form7-wrapper .wpcf7-form input[type="tel"],
.contact-form7-wrapper .wpcf7-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 2px solid #353a4a;
  background: #181c23;
  color: #fff;
  font-size: 1.13rem;
  font-family: inherit;
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: none;
  outline: none;
}
.contact-form7-wrapper .wpcf7-form input[type="text"]:focus,
.contact-form7-wrapper .wpcf7-form input[type="email"]:focus,
.contact-form7-wrapper .wpcf7-form input[type="tel"]:focus,
.contact-form7-wrapper .wpcf7-form textarea:focus {
  border-color: #ff5c39;
  box-shadow: 0 0 0 2px rgba(255,92,57,0.13);
}
.contact-form7-wrapper .wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form7-wrapper .wpcf7-form input[type="submit"] {
  background: #ff5c39;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.95rem 2.5rem;
  font-size: 1.18rem;
  font-weight: 700;
  cursor: pointer;
  margin: 1.2rem auto 0 auto;
  box-shadow: 0 4px 16px rgba(255,92,57,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: block;
}
.contact-form7-wrapper .wpcf7-form input[type="submit"]:hover {
  background: #fff;
  color: #ff5c39;
  box-shadow: 0 8px 32px rgba(255,92,57,0.18);
}
.contact-form7-wrapper .wpcf7-form .wpcf7-response-output {
  margin-top: 1.2rem;
  color: #ff5c39;
  background: #232733;
  border-radius: 10px;
  border: 1.5px solid #ff5c39;
  padding: 0.7rem 1rem;
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-form7-wrapper .wpcf7-spinner {
  margin-left: 0.7rem;
  vertical-align: middle;
}
@media (max-width: 700px) {
  .contact-form7-wrapper .wpcf7-form {
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
    max-width: 98vw;
    border-radius: 14px;
  }
} 

/* --- Contact Section Improved Centering & Layout --- */
.contact-section {
  min-height: 70vh;
  padding-left: 3vw;
  padding-right: 3vw;
  width: 100%;
  box-sizing: border-box;
}
.contact-container.contact-flex {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  background: none;
  padding: 0;
}
.contact-info-col {
  flex: 1 1 340px;
  max-width: 400px;
  min-width: 260px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-left: 1.5rem;
}
.contact-info-col .contact-heading {
  text-align: left;
  margin-bottom: 2.2rem;
  width: 100%;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
  align-items: flex-end;
  width: 100%;
}
.contact-item {
  font-size: 1.13rem;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  background: #232733;
  padding: 1.1rem 1.3rem;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(91,47,246,0.07);
  margin-bottom: 0.2rem;
  min-width: 270px;
}
.contact-form7-wrapper {
  flex: 1 1 380px;
  min-width: 320px;
  max-width: 480px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 1.5rem;
}
.contact-form7-wrapper .wpcf7-form {
  width: 100%;
  background: #23273a;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(91,47,246,0.10), 0 2px 8px rgba(255,92,57,0.10);
  border: 1.5px solid #353a4a;
  padding: 2.5rem 4.4rem 2rem 2.2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form7-wrapper .wpcf7-form input[type="text"],
.contact-form7-wrapper .wpcf7-form input[type="email"],
.contact-form7-wrapper .wpcf7-form input[type="tel"],
.contact-form7-wrapper .wpcf7-form textarea {
  background: #181c23;
  border: 2px solid #353a4a;
  color: #fff;
  font-size: 1.13rem;
  font-family: inherit;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: none;
  outline: none;
}
.contact-form7-wrapper .wpcf7-form input[type="text"]:focus,
.contact-form7-wrapper .wpcf7-form input[type="email"]:focus,
.contact-form7-wrapper .wpcf7-form input[type="tel"]:focus,
.contact-form7-wrapper .wpcf7-form textarea:focus {
  border-color: #ff5c39;
  box-shadow: 0 0 0 2px rgba(255,92,57,0.13);
}
@media (max-width: 1100px) {
  .contact-container.contact-flex {
    gap: 2.5rem;
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .contact-section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    min-height: unset;
  }
  .contact-container.contact-flex {
    flex-direction: column;
    gap: 2.2rem;
    align-items: stretch;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    max-width: 100vw;
  }
  .contact-info-col, .contact-form7-wrapper {
    max-width: 100%;
    min-width: 0;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .contact-info-col .contact-heading, .contact-custom-heading {
    text-align: center;
  }
  .contact-list {
    align-items: center;
    width: 100%;
  }
  .contact-form7-wrapper .wpcf7-form {
    width: 100%;
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
    max-width: 98vw;
    border-radius: 14px;
  }
  .contact-form7-wrapper .wpcf7-form input,
  .contact-form7-wrapper .wpcf7-form textarea {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.8rem 0.7rem;
  }
  .contact-form7-wrapper .wpcf7-form input[type="submit"] {
    width: 100%;
    max-width: 320px;
    margin: 1.2rem auto 0 auto;
    font-size: 1.1rem;
    padding: 0.8rem 0;
  }
} 

/* --- Custom Contact Heading Styling (White) --- */
.contact-custom-heading {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2.2rem;
  text-align: center;
  letter-spacing: 1px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
}
.contact-custom-heading .accent {
  color: #ff5c39;
  font-weight: 900;
}
.contact-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: #fff;
  width: 100%;
  display: block;
}
@media (max-width: 900px) {
  .contact-custom-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
} 

/* --- Marquee Animation for Sudhanshu in Contact Heading --- */
.contact-custom-heading .accent {
  color: #ff5c39;
  font-weight: 900;
  display: inline-block;
  position: relative;
  animation: marquee-x 3.5s linear infinite alternate;
  white-space: nowrap;
}
@keyframes marquee-x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(60px);
  }
}
@media (max-width: 600px) {
  .contact-custom-heading .accent {
    animation: marquee-x-mobile 2.5s linear infinite alternate;
  }
}
@keyframes marquee-x-mobile {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(30px);
  }
} 

/* --- Themes & Plugins Section --- */
.themes-plugins-section {
  background: #181c23;
  color: #fff;
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.themes-plugins-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
  text-align: center;
}
.themes-plugins-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff5c39;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.themes-plugins-desc {
  font-size: 1.18rem;
  color: #e0e0e0;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
}
@media (max-width: 900px) {
  .themes-plugins-container {
    padding: 2.2rem 0.7rem 1.2rem 0.7rem;
  }
  .themes-plugins-heading {
    font-size: 1.4rem;
  }
  .themes-plugins-desc {
    font-size: 1rem;
  }
} 

/* --- Dynamic Header --- */
nav.main-nav {
  background: linear-gradient(90deg, #5b2ff6 0%, #ff5c39 100%);
  min-height: 90px;
  box-shadow: 0 6px 32px 0 rgba(91,47,246,0.13);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: background 0.4s;
  border-bottom: none !important;
}
.navbar {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  min-height: 90px;
  gap: 34.5rem;
}
.navbar-logo {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(91,47,246,0.18);
  text-decoration: none;
  transition: color 0.2s;
  margin-right: 3.5rem;
}
.navbar-logo:hover {
  color: #ff5c39;
}
.navbar-menu {
  display: flex;
  gap: 3.2rem;
}
.navbar-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.18rem;
  position: relative;
  padding: 0.2rem 0.5rem;
  transition: color 0.2s;
}
.navbar-menu a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff5c39 0%, #5b2ff6 100%);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(.4,0,.2,1);
  position: absolute;
  left: 0;
  bottom: -6px;
}
.navbar-menu a:hover {
  color: #ff5c39;
}
.navbar-menu a:hover::after {
  width: 100%;
}

/* --- Dynamic Footer --- */
footer {
  background: linear-gradient(90deg, #5b2ff6 0%, #00c6fb 100%);
  color: #fff;
  padding: 2.2rem 0 2rem 0;
  text-align: center;
  margin-top: 0;
  border-radius: 18px 18px 0 0;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 -4px 32px 0 rgba(30,207,255,0.13), 0 0 32px 0 #5b2ff6;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 80vw;
  height: 100%;
  background: radial-gradient(circle, rgba(255,92,57,0.13) 0%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}
footer .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .navbar {
    padding: 0 1rem;
    min-height: 60px;
  }
  .navbar-logo {
    font-size: 1.3rem;
  }
  .navbar-menu {
    gap: 1.2rem;
  }
  footer {
    padding: 1.2rem 0 1rem 0;
    font-size: 1rem;
  }
} 

/* --- Header Spacing & Orange Accent Gradient Fix --- */
nav.main-nav {
  background: linear-gradient(90deg, #ff5c39 0%, #ff5c39 100%);
  min-height: 90px;
  box-shadow: 0 6px 32px 0 rgba(91,47,246,0.13);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: background 0.4s;
  border-bottom: none !important;
}
.navbar {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  min-height: 90px;
  gap: 34.5rem;
}
.navbar-logo {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(91,47,246,0.18);
  text-decoration: none;
  transition: color 0.2s;
  margin-right: 3.5rem;
}
.navbar-logo:hover {
  color: #ff5c39;
}
.navbar-menu {
  display: flex;
  gap: 3.2rem;
}
.navbar-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.18rem;
  position: relative;
  padding: 0.2rem 0.5rem;
  transition: color 0.2s;
}
.navbar-menu a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff5c39 0%, #5b2ff6 100%);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(.4,0,.2,1);
  position: absolute;
  left: 0;
  bottom: -6px;
}
.navbar-menu a:hover {
  color: #ff5c39;
}
.navbar-menu a:hover::after {
  width: 100%;
}

/* Remove any unwanted blue border/line below header */
nav.main-nav, .main-nav, .dark-navbar {
  border-bottom: none !important;
  box-shadow: 0 6px 32px 0 rgba(91,47,246,0.13);
} 

/* --- Prevent Footer from Sticking to Last Section --- */
.contact-section,
.themes-plugins-section {
  margin-bottom: 3.5rem;
}
footer {
  padding-top: 2.5rem;
}
@media (max-width: 900px) {
  .contact-section,
  .themes-plugins-section {
    margin-bottom: 2rem;
  }
  footer {
    padding-top: 1.2rem;
  }
} 

/* --- Extra Space Below Contact Section to Prevent Footer Sticking --- */
.contact-section {
  min-height: 600px;
}
.contact-container.contact-flex {
  margin-bottom: 5rem;
}
@media (max-width: 900px) {
  .contact-container.contact-flex {
    margin-bottom: 2.5rem;
  }
  .contact-section {
    min-height: 400px;
  }
} 

/* --- Fix mobile menu always open bug --- */
.navbar-menu {
  display: none;
}
.navbar-menu.active {
  display: flex !important;
}
@media (min-width: 601px) {
  .navbar-menu {
    display: flex;
    position: static;
    flex-direction: row;
    width: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    gap: 3.2rem;
  }
  .navbar-menu.active {
    display: flex !important;
  }
}
@media (max-width: 600px) {
  .navbar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 9999;
    background: #232733;
    border: none;
    margin-left: auto;
    margin-right: 0.5rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    border-radius: 8px;
  }
  .navbar-toggle i {
    font-size: 2.1rem;
    color: #fff;
    line-height: 1;
    margin: 0 auto;
    display: block;
  }
} 

/* Hide hamburger icon on desktop */
.navbar-toggle {
  display: none !important;
}
@media (max-width: 600px) {
  .navbar-toggle {
    display: flex !important;
  }
  nav.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
    z-index: 10000;
    background: #232733;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    border-radius: 0;
  }
  .navbar {
    max-width: 100vw;
    width: 100vw;
    min-width: 0;
    padding: 0 0.5rem;
    gap: 0;
    height: 56px;
    min-height: 56px;
    align-items: center;
  }
  body {
    padding-top: 56px !important;
    overflow-x: hidden;
  }
}
@media (min-width: 601px) {
  nav.main-nav {
    position: sticky;
    width: 100%;
    min-width: unset;
    max-width: unset;
    background: linear-gradient(90deg, #ff5c39 0%, #ff5c39 100%);
    box-shadow: 0 6px 32px 0 rgba(91,47,246,0.13);
    border-radius: 0 0 18px 18px;
  }
  .navbar {
    max-width: 1300px;
    width: 100%;
    min-width: unset;
    padding: 0 3rem;
    gap: 34.5rem;
    height: 90px;
    min-height: 90px;
    align-items: center;
  }
  body {
    padding-top: 0 !important;
    overflow-x: unset;
  }
} 

/* --- Mobile menu padding and underline fix --- */
@media (max-width: 600px) {
  .navbar-menu {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    box-sizing: border-box;
  }
  .navbar-menu a {
    display: inline-block;
    width: auto;
    padding-left: 0.2em;
    padding-right: 0.2em;
  }
  .navbar-menu a::after {
    left: 10% !important;
    right: 10% !important;
    width: 80% !important;
    min-width: 40px;
    max-width: 120px;
    margin: 0 auto;
  }
} 

/* --- Mobile menu underline perfect fix --- */
@media (max-width: 600px) {
  .navbar-menu a {
    display: inline-block;
    position: relative;
    padding: 0.2em 0;
    width: auto;
    text-align: left;
  }
  .navbar-menu a::after {
    content: '';
    display: block;
    margin: 0 auto;
    height: 3px;
    background: linear-gradient(90deg, #ff5c39 0%, #5b2ff6 100%);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
    width: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
  }
  .navbar-menu a:hover::after,
  .navbar-menu a:focus::after,
  .navbar-menu a.active::after {
    width: 80%;
    min-width: 32px;
    max-width: 100px;
  }
} 

/* --- Force mobile menu underline only on hover/active, hide by default --- */
@media (max-width: 600px) {
  .navbar-menu a {
    border-bottom: none !important;
    box-shadow: none !important;
  }
  .navbar-menu a::after {
    width: 0 !important;
    opacity: 0 !important;
  }
  .navbar-menu a:hover::after,
  .navbar-menu a:focus::after,
  .navbar-menu a.active::after {
    width: 80% !important;
    min-width: 32px;
    max-width: 100px;
    opacity: 1 !important;
  }
} 

/* --- Hero section mobile spacing and overlap fix --- */
@media (max-width: 600px) {
  .hero {
    margin-top: 64px;
    padding-top: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .hero-content {
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }
  .hero-img-circle {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 90vw;
    width: 180px;
    height: 180px;
  }
  .hero-img {
    width: 120px;
    height: 120px;
    max-width: 100%;
    max-height: 100%;
  }
} 

/* --- Hero buttons and about-services mobile fix --- */
@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
    margin-top: 1.2rem;
  }
  .hero-btn {
    width: 100%;
    max-width: 320px;
    font-size: 1.1rem;
    padding: 0.8rem 0;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 8px;
  }
  .about-services {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
    width: 100%;
  }
  .about-service {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 0;
  }
} 

/* --- About stats mobile fix --- */
@media (max-width: 600px) {
  .about-stats {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2.2rem !important;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .about-stat {
    align-items: center !important;
    text-align: center !important;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .about-stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
  }
  .about-accent {
    font-size: 1.5rem;
    margin-left: 0.1em;
  }
  .about-stat-label {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 400;
  }
} 

/* --- Testimonial slider mobile fix --- */
@media (max-width: 600px) {
  .testimonials-container {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
  .testimonials-slider {
    min-height: 340px;
    height: auto;
    width: 100vw;
    overflow-x: hidden;
    justify-content: center;
    align-items: center;
  }
  .testimonial-card,
  .testimonial-card.active {
    position: static !important;
    left: unset !important;
    right: unset !important;
    margin: 0 auto !important;
    width: auto !important;
    max-width: 100vw !important;
    border-radius: 18px !important;
  }
  .testimonial-card:first-child {
    margin-top: 0 !important;
  }
  .testimonials-carousel {
    gap: 0 !important;
  }
  .testimonials-dots {
    margin-top: 1.5rem;
    gap: 1.2rem;
  }
  .testimonials-dot {
    width: 16px !important;
    height: 16px !important;
    border-width: 2.5px !important;
  }
} 

/* --- Slick Slider mobile force fix --- */
@media (max-width: 600px) {
  .slick-testimonials {
    display: block !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  .slick-testimonials .testimonial-card {
    width: 100% !important;
    max-width: 95vw !important;
    margin: 0 auto !important;
    display: block !important;
    position: relative !important;
    opacity: 1 !important;
    left: 0 !important;
    right: 0 !important;
    filter: none !important;
    box-shadow: 0 2px 16px rgba(255,92,57,0.10);
  }
  .slick-slide {
    display: flex !important;
    justify-content: center;
    align-items: stretch;
    height: auto !important;
  }
  .testimonials-dots, #testimonials-dots {
    display: none !important;
  }
} 

/* --- Slick Slider dots and arrows mobile style --- */
@media (max-width: 600px) {
  .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
  }
  .slick-dots li button:before {
    font-size: 18px;
    color: #ff5c39;
    opacity: 0.7;
  }
  .slick-dots li.slick-active button:before {
    color: #5b2ff6;
    opacity: 1;
  }
  .slick-arrow {
    background: #232733;
    color: #ff5c39;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
    box-shadow: 0 2px 8px rgba(91,47,246,0.10);
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .slick-prev {
    left: 8px;
  }
  .slick-next {
    right: 8px;
  }
} 

/* --- Slick Slider dots as dots and card side gap mobile fix --- */
@media (max-width: 600px) {
  .slick-dots li button:before {
    content: '•';
    font-size: 22px;
    color: #ff5c39;
    opacity: 0.7;
    line-height: 1;
  }
  .slick-dots li.slick-active button:before {
    color: #5b2ff6;
    opacity: 1;
  }
  .slick-testimonials .testimonial-card {
    margin-left: 10px !important;
    margin-right: 10px !important;
    width: calc(100vw - 32px) !important;
    max-width: 95vw !important;
  }
} 

/* --- Testimonial card border, Slick dots as dots, and white arrows mobile fix --- */
@media (max-width: 600px) {
  .slick-testimonials .testimonial-card {
    border: 2.5px solid #ff5c39 !important;
  }
  .slick-dots li button {
    font-size: 0 !important;
  }
  .slick-dots li button:before {
    content: '•' !important;
    font-size: 22px !important;
    color: #ff5c39 !important;
    opacity: 0.7 !important;
    line-height: 1 !important;
    font-family: inherit !important;
  }
  .slick-dots li.slick-active button:before {
    color: #5b2ff6 !important;
    opacity: 1 !important;
  }
  .slick-arrow {
    color: #fff !important;
    background: #232733 !important;
    border: none !important;
  }
} 

/* --- Contact section: form first, info after on mobile --- */
@media (max-width: 600px) {
  .contact-container.contact-flex {
    flex-direction: column-reverse !important;
  }
} 

/* --- Contact form mobile side padding fix --- */
@media (max-width: 600px) {
  .contact-form7-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  .contact-form7-wrapper .wpcf7-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* --- Contact form input fields mobile padding fix --- */
@media (max-width: 600px) {
  .contact-form7-wrapper .wpcf7-form input[type="text"],
  .contact-form7-wrapper .wpcf7-form input[type="email"],
  .contact-form7-wrapper .wpcf7-form input[type="tel"],
  .contact-form7-wrapper .wpcf7-form textarea {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }
}

/* --- Contact info mobile layout fix --- */
@media (max-width: 600px) {
  .contact-list {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
    box-sizing: border-box;
    gap: 1.2rem;
  }
  .contact-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1.1rem 1rem;
    margin: 0 auto;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
  }
  .contact-item i {
    font-size: 1.5em;
    margin-bottom: 0.2em;
    min-width: unset;
    text-align: left;
  }
  .contact-item span,
  .contact-item a {
    word-break: break-all;
    font-size: 1.08rem;
  }
}

/* --- Contact info boxes mobile side margin fix --- */
@media (max-width: 600px) {
  .contact-item {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    width: auto !important;
    max-width: calc(100vw - 2rem) !important;
  }
}

/* --- Contact info: icon and heading side by side, value below (mobile) --- */
@media (max-width: 600px) {
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.3rem;
  }
  .contact-item-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
  }
  .contact-item i {
    font-size: 1.5em;
    margin-bottom: 0;
    min-width: 1.5em;
    text-align: left;
  }
  .contact-item-value {
    font-size: 1.08rem;
    word-break: break-all;
    font-weight: 500;
    color: #7b5cff;
    margin-left: 0;
  }
}

/* --- Mobile horizontal scroll fix: header, body, sections --- */
@media (max-width: 600px) {
  nav.main-nav, .navbar, .navbar-menu {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  body {
    overflow-x: hidden !important;
  }
  .hero, .about-section, .projects-section, .testimonials-section, .contact-section {
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
}

/* --- Testimonial slider desktop layout restore --- */
@media (min-width: 601px) {
  .slick-testimonials {
    display: flex !important;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
  }
  .slick-testimonials .testimonial-card {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0.4;
    filter: blur(1.5px);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 370px;
    max-width: 370px;
    min-width: 340px;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border: 2.5px solid transparent;
    background: #232733;
  }
  .slick-testimonials .testimonial-card.testimonial-active {
    opacity: 1;
    filter: none;
    z-index: 2;
    border: 2.5px solid #ff5c39;
    background: #232733;
    box-shadow: 0 8px 32px 0 rgba(255,92,57,0.18);
  }
}

/* --- Testimonial slider desktop overlay and arrow fix --- */
@media (min-width: 601px) {
  .slick-testimonials {
    position: relative !important;
    min-height: 420px;
    z-index: 1;
  }
  .testimonial-card {
    z-index: 2;
  }
  .testimonials-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #232733;
    color: #ff5c39;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(91,47,246,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #testimonials-prev { left: 0; }
  #testimonials-next { right: 0; }
}

@media (min-width: 601px) {
  .slick-dots { display: none !important; }
}

/* --- Slick Slider visibility fix --- */
.slick-testimonials, .slick-slider, .slick-list, .slick-track {
  height: auto !important;
  min-height: 1px !important;
  overflow: visible !important;
}
.slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: stretch;
  height: auto !important;
}
.testimonial-card {
  display: block !important;
  opacity: 1 !important;
  position: static !important;
}

@media (max-width: 600px) {
  .testimonial-card {
    margin-bottom: 2.2rem !important;
    margin-top: 2.2rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box;
    width: auto !important;
    max-width: 100vw !important;
    border-radius: 18px !important;
  }
  .testimonial-card:first-child {
    margin-top: 0 !important;
  }
}

@media (max-width: 600px) {
  .testimonials-carousel .testimonial-card,
  .testimonials-carousel .testimonial-card.active,
  .slick-testimonials .testimonial-card,
  .testimonial-card,
  .testimonial-card.active {
    margin: 2rem 0 !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    width: auto !important;
    max-width: 100vw !important;
    border-radius: 18px !important;
    box-sizing: border-box;
    display: block !important;
    position: static !important;
  }
  .testimonials-carousel {
    gap: 0 !important;
  }
  .testimonials-carousel .testimonial-card:first-child,
  .slick-testimonials .testimonial-card:first-child,
  .testimonial-card:first-child {
    margin-top: 0 !important;
  }
  .testimonials-carousel .testimonial-card:last-child,
  .slick-testimonials .testimonial-card:last-child,
  .testimonial-card:last-child {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 600px) {
  .slick-testimonials,
  .testimonials-carousel {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box;
    display: block !important;
  }
  .slick-testimonials > div,
  .testimonials-carousel > div {
    margin-bottom: 1.5rem !important;
  }
  .slick-testimonials > div:last-child,
  .testimonials-carousel > div:last-child {
    margin-bottom: 0 !important;
  }
  .slick-testimonials .testimonial-card,
  .testimonials-carousel .testimonial-card,
  .testimonial-card,
  .testimonial-card.active {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.2rem 1rem !important;
    border-radius: 18px !important;
    box-sizing: border-box;
    display: block !important;
    position: static !important;
    margin: 0 !important;
  }
}

.experience-section {
  background: #181c23;
  color: #fff;
  width: 100%;
  padding: 0;
  margin: 0;
}
.experience-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
}
.experience-heading {
  color: #ff5c39;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  letter-spacing: 1px;
}
.exp-card {
  background: #232733;
  border-radius: 18px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 1.5rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.exp-icon {
  background: #ff5c39;
  color: #fff;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255,92,57,0.10);
}
.exp-title {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.exp-role {
  font-weight: 600;
  color: #e0e0e0;
}

.exp-card.project-animated {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.exp-card.project-animated.visible {
  opacity: 1;
  transform: none;
}
.exp-card.from-left {
  transform: translateX(-60px);
}
.exp-card.from-right {
  transform: translateX(60px);
}
.exp-card.project-animated.visible.from-left,
.exp-card.project-animated.visible.from-right {
  transform: none;
  opacity: 1;
}

.exp-card:hover {
  box-shadow: 0 0 0 4px #ff5c39, 0 8px 32px 0 rgba(255,92,57,0.18);
  border: 1.5px solid #ff5c39;
  transition: box-shadow 0.3s, border 0.3s;
  filter: brightness(1.08) drop-shadow(0 0 8px #ff5c39aa);
}

.testimonial-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 2.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 auto 2.5rem auto;
  text-align: center;
  background: radial-gradient(circle at 30% 40%, #ff5c39 0%, #5b2ff6 80%, transparent 100%);
  border-radius: 22px;
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  max-width: 800px;
  box-shadow: 0 4px 32px 0 rgba(91,47,246,0.13);
  position: relative;
  z-index: 2;
}
.testimonial-quote .quote-mark {
  font-size: 3.5rem;
  color: #ff5c39;
  font-weight: 900;
  line-height: 1;
  margin: 0 0.5rem;
  opacity: 0.85;
}
.testimonial-quote .quote-main {
  font-style: italic;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
}
.testimonial-quote .quote-accent {
  color: #ff5c39;
  font-weight: 800;
  font-style: normal;
  text-shadow:
    0 2px 12px #fff,
    0 0 6px #fff,
    0 0 2px #fff,
    1px 1px 0 #fff;
}
@media (max-width: 700px) {
  .testimonial-quote {
    font-size: 1.1rem;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 98vw;
  }
  .testimonial-quote .quote-mark {
    font-size: 2.2rem;
  }
}

.testimonial-quote .quote-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.quote-main {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
  font-style: italic;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0.2em 0;
  font-size: 1.15em;
}
.quote-main.from-top.visible {
  opacity: 1;
  transform: translateY(0);
  animation: slideDownFadeIn 0.9s cubic-bezier(.4,0,.2,1) both;
}
.quote-main.from-bottom.visible {
  opacity: 1;
  transform: translateY(0);
  animation: slideUpFadeIn 0.9s cubic-bezier(.4,0,.2,1) both;
}
@keyframes slideDownFadeIn {
  from { opacity: 0; transform: translateY(-40px);}
  to   { opacity: 1; transform: translateY(0);}
}
@keyframes slideUpFadeIn {
  from { opacity: 0; transform: translateY(40px);}
  to   { opacity: 1; transform: translateY(0);}
}

.bg-abstract-left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 320px;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
}
@media (max-width: 900px) {
  .bg-abstract-left {
    width: 160px;
    opacity: 0.18;
  }
}
@media (max-width: 600px) {
  .bg-abstract-left {
    width: 90px;
    opacity: 0.13;
  }
}

.themes-plugins-section .bg-abstract-left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 320px;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
}
@media (max-width: 900px) {
  .themes-plugins-section .bg-abstract-left {
    width: 160px;
    opacity: 0.18;
  }
}
@media (max-width: 600px) {
  .themes-plugins-section .bg-abstract-left {
    width: 90px;
    opacity: 0.13;
  }
}

.themes-plugins-section .bg-abstract-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 320px;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
}
@media (max-width: 900px) {
  .themes-plugins-section .bg-abstract-right {
    width: 160px;
    opacity: 0.18;
  }
}
@media (max-width: 600px) {
  .themes-plugins-section .bg-abstract-right {
    width: 90px;
    opacity: 0.13;
  }
}

#particles-js {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 700px) {
  #particles-js {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }
  .hero {
    overflow: hidden !important;
  }
}

@media (max-width: 600px) {
  .testimonial-quote {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    width: auto !important;
    max-width: calc(100vw - 2rem) !important;
    box-sizing: border-box !important;
    padding-left: 0.7rem !important;
    padding-right: 0.7rem !important;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: #25d366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: box-shadow 0.3s;
}
.whatsapp-float:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.whatsapp-float img {
  display: block;
}

/* Header/Navbar mobile fix */
@media (max-width: 600px) {
  .navbar,
  nav.main-nav {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
  }
  body {
    overflow-x: hidden !important;
  }
  .navbar-menu {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    background: #181c23;
    z-index: 9999;
    box-sizing: border-box;
    border-radius: 0 0 18px 18px;
  }
  .navbar-toggle {
    z-index: 10000;
  }
}

/* WhatsApp icon fix */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10001;
  background: #25d366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float img {
  display: block;
  max-width: 40px;
  max-height: 40px;
}
@media (max-width: 600px) {
  .whatsapp-float {
    right: 10px;
    bottom: 10px;
    padding: 6px;
  }
  .whatsapp-float img {
    max-width: 32px;
    max-height: 32px;
  }
}

/* Contact form label and field gap */
.contact-form7-wrapper .wpcf7-form label {
  display: block;
  margin-bottom: 0.35em;
}

.contact-form7-wrapper .wpcf7-form input,
.contact-form7-wrapper .wpcf7-form textarea {
  margin-bottom: 1.1em;
}

/* Contact form label and field gap - more specific */
.contact-form7-wrapper .wpcf7-form p {
  margin-bottom: 1.2em !important;
}

.contact-form7-wrapper .wpcf7-form label {
  display: block;
  margin-bottom: 0.35em !important;
}

/* Gap between label text and input field in contact form */
.wpcf7-form label > br + .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.5em;
}
.wpcf7-form label > br + .wpcf7-form-control-wrap input,
.wpcf7-form label > br + .wpcf7-form-control-wrap textarea,
.wpcf7-form label > br + .wpcf7-form-control-wrap select {
  margin-top: 0 !important;
}

/* Hamburger icon tap/hold/active/focus effect remove */
.navbar-toggle:focus,
.navbar-toggle:active {
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
  border: none !important;
}
.navbar-toggle {
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 600px) {
  .navbar-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem !important;
    padding: 1rem 0.5rem 1.5rem 1.5rem;
  }
  .navbar-menu a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
    margin: 0;
    width: 100%;
    display: block;
  }
  .navbar-menu a::after {
    left: 0 !important;
    right: 0 !important;
    width: 60% !important;
    min-width: 32px;
    max-width: 80px;
    margin: 0 auto;
    bottom: -4px;
  }
}

@media (max-width: 600px) {
  .navbar-menu a {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1.2rem;
  }
  .navbar-menu a::after {
    content: '';
    display: block;
    margin: 0 auto;
    height: 3px;
    background: linear-gradient(90deg, #ff5c39 0%, #5b2ff6 100%);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
    width: 60%;
    min-width: 32px;
    max-width: 80px;
    position: relative;
    left: 0;
    right: 0;
    bottom: -4px;
  }
}
