:root {
  --primary-golden: #dfa408;
  --primary-green: #0c6a5a;
  --nav-green: #1e604d;
  --heading-font: 'Outfit', sans-serif;
  --body-font: 'Inter', sans-serif;
  --text-color: #444444;
}

/* Global Typography Standardization */
body {
  font-family: var(--body-font) !important;
  color: var(--text-color) !important;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font) !important;
  color: var(--primary-green) !important;
  font-weight: 700;
}

p,
span,
li,
a {
  font-family: var(--body-font);
}

.section-title h2 {
  font-family: var(--heading-font) !important;
  color: var(--primary-green) !important;
  font-weight: 800;
}

.sub-title {
  font-family: var(--heading-font) !important;
  color: var(--primary-golden) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.topbar {
  height: 50px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  overflow: hidden;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

.topbar .social-links a {
  color: #fff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 15px;
}

.topbar .social-links a:hover {
  color: #fff;
  opacity: 0.8;
}

.bg-orange {
  background-color: var(--primary-golden);
}

.bg-green {
  background-color: var(--primary-green);
}

.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 25px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
}

body {
  padding-top: 150px;
  /* Offset for topbar(50px) + header(~100px) */
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--primary-golden);
}

.header .logo img {
  max-height: 50px;
  margin-right: 10px;
}

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navmenu a,
.navmenu a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 500;
  color: #1a8a5f;
  /* Vivid green as seen in screenshot */
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover>a {
  color: var(--primary-golden);
}

.apply-btn {
  background: var(--primary-golden);
  color: #fff !important;
  padding: 8px 25px !important;
  margin-left: 30px;
  border-radius: 50px;
  font-weight: 600;
}

.apply-btn:hover {
  background: #e67e22 !important;
  color: #fff !important;
}

/* Custom styles for the sections */
.section-title h2::after {
  background: var(--primary-golden);
}

.principal-message {
  padding: 80px 0;
}

.principal-img-container {
  position: relative;
  padding: 20px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.principal-img-container img {
  border-radius: 10px;
  width: 100%;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary-golden);
  color: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(223, 164, 8, 0.3);
}

.experience-badge h3 {
  margin: 0;
  font-weight: 800;
  font-size: 24px;
}

.experience-badge p {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.principal-content .subtitle {
  color: var(--primary-golden);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.principal-content h2 {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
}

.principal-content blockquote {
  font-style: italic;
  color: #555;
  border-left: none;
  padding: 0;
  position: relative;
}

.principal-content blockquote i {
  color: rgba(255, 140, 45, 0.3);
  font-size: 40px;
}

.principal-name {
  color: var(--primary-green);
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 5px;
}

.principal-title {
  color: #888;
  font-size: 14px;
}

/* Team Card Styles - Rectangular Portrait */
.our-team-section {
  padding: 80px 0;
  background-color: #f9fbfd;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  height: 350px;
  /* Rectangular height */
  overflow: hidden;
  background: #e9ecef;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-content {
  padding: 25px;
  text-align: center;
}

.team-content h4 {
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.team-content .position {
  color: var(--primary-green);
  font-size: 0.85rem;
  margin-bottom: 15px;
  font-weight: 500;
  display: block;
}

.team-content .bio {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Carousel Tweaks */

/* Testimonials Carousel Tweaks */
.testimonials .swiper-slide {
  padding: 20px 10px;
}

.testimonials .testimonial-item {
  height: 100%;
  margin: 0;
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--primary-green);
  opacity: 0.3;
}

/* Event Calendar Styles */
.calendar-container {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background: var(--primary-green);
  padding: 10px 15px;
  border-radius: 8px;
  color: #fff;
}

.calendar-header h4 {
  margin: 0;
  font-weight: 700;
  color: #fff;
}

.calendar-header .nav-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  padding: 5px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.calendar-header .nav-btn:hover {
  background: #fff;
  color: var(--primary-green);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

#calendarDays {
  min-height: 240px;
  /* Ensures consistent height regardless of number of weeks */
}

.day-name {
  font-weight: 700;
  color: #999;
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.calendar-day {
  height: 40px;
  /* Fixed height for day boxes */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #444;
  border-radius: 5px;
  transition: 0.2s;
}

.calendar-day.today {
  background: var(--primary-green);
  color: #fff;
  font-weight: 700;
}

.calendar-day.event-day {
  position: relative;
}

.calendar-day.event-day::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary-green);
  border-radius: 50%;
}

.calendar-day.empty {
  color: #ccc;
}

.calendar-day:hover:not(.empty) {
  background: #f1f5f4;
  cursor: pointer;
}

/* Education System Section (Inspiration Style) */
.education-system {
  padding: 80px 0;
  background-color: #fdfdfd;
}

.education-system .image-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}

.education-system .img-box {
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.education-system .img-main {
  grid-row: span 2;
  height: 450px;
  border-radius: 150px 150px 20px 20px;
}

.education-system .img-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid white;
  outline: 2px dashed var(--primary-golden);
  outline-offset: 5px;
  margin-bottom: 20px;
  overflow: hidden;
}

.education-system .img-bottom {
  height: 250px;
  border-radius: 100px 100px 20px 100px;
}

.education-system .badge-orange {
  position: absolute;
  bottom: 20px;
  left: -30px;
  background: var(--primary-golden);
  color: white;
  padding: 25px;
  border-radius: 20px 50px 20px 20px;
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(223, 164, 8, 0.3);
}

.education-system .sub-title {
  color: var(--primary-golden);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.education-system .main-title {
  font-size: 2.8rem;
  color: var(--primary-green);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.education-system .main-title span {
  color: var(--primary-golden);
}

.education-system .description {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.education-system .feature-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.education-system .icon-circle {
  width: 60px;
  height: 60px;
  background: var(--primary-golden);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.5rem;
}

.education-system .feature-text h4 {
  margin: 0;
  color: #1e604d;
  font-size: 1.2rem;
  font-weight: 700;
}

.education-system .feature-text p {
  margin: 5px 0 0;
  color: #666;
  font-size: 0.9rem;
}

.education-system .action-area {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.education-system .btn-discover {
  background: var(--primary-golden);
  color: white !important;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.education-system .phone-icon {
  width: 50px;
  height: 50px;
  background: #00695c;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .event-ticker {
  background-color: var(--primary-green) !important;
}

.hero .event-ticker .ticker-item .btn-register:hover {
  color: var(--primary-green) !important;
  background-color: var(--primary-golden) !important;
}

/* Academics Page Styles */
.academic-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
  margin-bottom: 30px;
}

.academic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.academic-card .card-image {
  width: 40%;
  position: relative;
  overflow: hidden;
}

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

.academic-card:hover .card-image img {
  transform: scale(1.1);
}

.academic-card .card-image .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-green);
  color: #fff;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.academic-card .card-content {
  width: 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.academic-card .card-content h3 {
  color: var(--primary-green);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.academic-card .learn-more {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
  text-decoration: none;
}

.academic-card .learn-more:hover {
  gap: 10px;
  color: var(--primary-golden);
}

@media (max-width: 768px) {
  .academic-card {
    flex-direction: column;
  }

  .academic-card .card-image,
  .academic-card .card-content {
    width: 100%;
  }

  .academic-card .card-image {
    height: 200px;
  }
}

/* Community Partnership Styles */
.community-partnership {
  background-color: #f8f9fa;
}

.community-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 4px solid var(--primary-green);
}

.community-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.community-item .item-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.community-item .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-item .item-overlay {
  position: absolute;
  bottom: -25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(12, 106, 90, 0.4);
}

.community-item .item-content {
  padding: 40px 30px 30px;
}

.community-item .item-content h3 {
  color: var(--primary-green);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.community-item .item-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.community-item .item-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.community-item .item-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  font-weight: 500;
}

.community-item .item-features li i {
  color: var(--primary-golden);
  font-size: 16px;
}

/* Why Choose Us Section Styles - Light Theme */
.why-choose-us {
  background-color: #f1f5f4 !important;
  /* Premium light grey/green */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-us .section-header-left {
  margin-bottom: 40px;
}

.why-choose-us .sub-title {
  color: var(--primary-golden);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.why-choose-us .main-title {
  color: var(--primary-green);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.why-choose-us .main-title span {
  color: var(--primary-golden);
}

.why-choose-us .description {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.feature-small-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid #eef2f0;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-small-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-golden);
}

.feature-small-card .icon-box {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-small-card:hover .icon-box {
  background: var(--primary-golden);
}

.feature-small-card .content h4 {
  color: var(--primary-green);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-small-card .content p {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
}

.why-image-wrapper {
  position: relative;
  padding: 20px;
}

.image-arched {
  border-radius: 200px 200px 15px 15px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.image-arched img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.golden-border-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 90%;
  border: 5px solid var(--primary-golden);
  border-radius: 200px 200px 15px 15px;
  z-index: 1;
  transform: translate(15px, 15px);
}

@media (max-width: 992px) {
  .why-choose-us .main-title {
    font-size: 32px;
  }

  .why-image-wrapper {
    margin-top: 50px;
  }

  .image-arched img {
    height: 450px;
  }
}

/* Health & Wellness Section Styles - Light Theme */
.health-wellness {
  background-color: #f8f9fa !important;
  /* Premium light grey requested */
  padding: 100px 0;
  color: #444;
}

.health-wellness .sub-title {
  color: var(--primary-golden);
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.health-wellness .main-title {
  color: var(--primary-green);
  font-size: 36px;
  font-weight: 800;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.3;
}

.medicare-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #eef2f0;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.medicare-content h4 {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 20px;
}

.medicare-content .text-box {
  background: #f1f5f4;
  /* Using the same grey as other sections for consistency */
  padding: 20px;
  border-radius: 12px;
  color: #555;
}

.medicare-content .text-box p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.medicare-image img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.counseling-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--primary-green);
}

.counseling-list {
  list-style: none;
  padding: 0;
}

.counseling-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.counseling-list li i {
  color: var(--primary-golden);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: -2px;
}

.counseling-list li span {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .health-wellness .main-title {
    font-size: 28px;
  }

  .medicare-card {
    padding: 20px;
  }

  .medicare-image {
    margin-top: 20px;
    text-align: center;
  }
}

/* Shreeprada Excellence Section Styles */
.stats-section {
  background-color: #f8fbf9 !important;
  padding: 80px 0;
}

.stats-section .main-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.2;
  margin-bottom: 20px;
}

.stats-section .description {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

.stats-section .btn-group {
  display: flex;
  gap: 15px;
}

.stats-section .btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
  display: inline-block;
}

.stats-section .btn-filled {
  background-color: var(--primary-golden);
  color: white !important;
  border: 2px solid var(--primary-golden);
}

.stats-section .btn-filled:hover {
  background-color: #c99407;
  border-color: #c99407;
}

.stats-section .btn-outline {
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}

.stats-section .btn-outline:hover {
  background-color: var(--primary-green);
  color: white;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: white;
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #eef2f0;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-golden);
}

.stat-card .icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(223, 164, 8, 0.1);
  /* Golden transparency */
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.stat-card:hover .icon-wrapper {
  background: var(--primary-golden);
  transform: rotate(10deg);
}

.stat-card .icon-wrapper i {
  font-size: 32px;
  color: var(--primary-golden);
  transition: all 0.3s ease;
}

.stat-card:hover .icon-wrapper i {
  color: #fff;
}

.stat-card .number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 5px;
}

.stat-card .label {
  font-weight: 600;
  color: #1a2b23;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.stat-card .sub-label {
  font-size: 13px;
  color: #888;
}

@media (max-width: 768px) {
  .stats-section .main-title {
    font-size: 32px;
  }

  .stats-section .btn-group {
    justify-content: center;
  }

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

.rounded-circle-custom {
  border-radius: 50% !important;
  border: 5px solid rgba(255, 255, 255, 0.2);
  width: 250px;
  height: 250px;
  object-fit: cover;
}

.wellness-image-frame {
  border-radius: 150px 150px 20px 20px !important;
  /* Arched shape */
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 0 10px rgba(223, 164, 8, 0.1);
  /* Subtle golden glow */
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.wellness-image-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 0 15px rgba(223, 164, 8, 0.15);
}

/* Testimonial Section Separation */
.testimonial-bg {
  background-color: #f8fbf9 !important;
  /* Very light green tint requested */
  border-top: 1px solid #e2e8e5;
  padding: 80px 0;
}

.testimonial-bg .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Hero Section Enhancements */
.hero .hero-container .overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%) !important;
}

.hero-content h1, 
.hero-content p {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  font-weight: 800;
  letter-spacing: -1px;
}