.elementor-304 .elementor-element.elementor-element-5533c83{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-6772afd */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Header Base */
.resume-header {
  background: linear-gradient(to right, #2e135b, #4c1e80);
  padding: 16px 5%;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Container */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: auto;
}

/* Brand Name Styling */
.brand-name {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.brand-name span {
  color: #00EF8B;
}

/* Navigation */
.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #ffffffcc;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: #00EF8B;
}

/* CTA Button */
.btn-header-cta {
  background: linear-gradient(to right, #00ef8b, #00c776);
  color: #000;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.btn-header-cta:hover {
  background: linear-gradient(to right, #00c776, #00ef8b);
  color: #fff;
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* Gradient Button (used in mobile) */
.gradient-btn {
  background: linear-gradient(to right, #00ef8b, #00c776);
  color: #000 !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.gradient-btn:hover {
  background: linear-gradient(to right, #00c776, #00ef8b);
  color: #fff !important;
}

/* Responsive Mobile Navigation */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 30px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    border-radius: 0 0 16px 16px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav ul li {
    position: relative;
    padding: 12px 0;
  }

  /* Gradient Text for Mobile Menu */
  .main-nav a {
    background: linear-gradient(to right, #2e135b, #4c1e80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
  }

  .main-nav a:hover {
    background: linear-gradient(to right, #00c776, #00ef8b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Elegant Gradient Separator */
  .main-nav ul li:not(:last-child)::after {
    content: "";
    display: block;
    height: 1px;
    margin: 10px auto 0;
    width: 60%;
    background: linear-gradient(to right, rgba(46, 19, 91, 0), rgba(46, 19, 91, 0.6), rgba(46, 19, 91, 0));
    border-radius: 1px;
  }

  .main-nav .mobile-only {
    display: block;
  }

  .brand-name {
    font-size: 20px;
  }
}/* End custom CSS */