/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: white;
  background: #15243d;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5rem;
  position: relative;
  display: block;
}

/* Typography */
.title-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.body-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Navbar */
nav#i6po {
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5rem;
  height: 80px;
  display: flex;
  align-items: center;
}

#itjq {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#iyd2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 15px;
  backdrop-filter: blur(8px);
  box-shadow: none;
  border: none;
  position: relative;
}

#iqjl {
  flex: 0 1 auto;
}

#iffs {
  flex: 0 1 auto;
  display: flex;
  gap: 2rem;
}

#id7x {
  flex: 0 1 auto;
  padding: 0 10px;
}

.nav-link {
  padding: 10px 20px;
  font-family: 'Orbitron', sans-serif;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #E7D8B7;
  opacity: 1;
}

.logo {
  display: block;
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background: black;
}

/* Add fade overlay */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30vh;
  background: linear-gradient(
    to bottom,
    rgba(21, 36, 61, 0) 0%,
    #15243d 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  width: 100%;
  margin-left: 5%;
  margin-right: 5%;
  padding: 2vw;
  padding-top: calc(80px + 2vw);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  gap: 1.5rem;
}

.hero-content h1 {
  font-size: min(3.8vw, 54px);
  line-height: 1.1;
  margin-bottom: min(2vw, 2rem);
}

.hero-content h1 span.bold-text {
  font-weight: 700;
  display: block;
  margin-bottom: 0.3em;
}

.hero-content h1 span.regular-text {
  font-weight: 400;
}

.hero-content .subtitle-text {
  font-family: 'Roboto', sans-serif;
  font-size: min(1.7vw, 24px);
  line-height: 1.4;
  margin-bottom: min(3vw, 2rem);
  opacity: 0.9;
}

/* Sections */
.section {
  position: relative;
  padding: 8rem 0;
  background: #15243d;
  width: 100%;
  overflow: hidden;
}

/* Contact Section */
.contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: #0c1525;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #E7D8B7;
}

.footer-links .fa-linkedin {
  font-size: 1.5rem;
  vertical-align: middle;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.gjs-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #007DFC;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  transition: background 0.3s ease;
}

.gjs-button:hover {
  background: #0056b3;
}

/* Responsive Design */
@media (max-width: 1280px) {
  .hamburger {
    display: flex;
  }

  #iffs {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    margin-top: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  #iffs.active {
    display: flex;
  }

  .nav-link {
    padding: 15px 20px;
    width: 100%;
    text-align: center;
  }

  #id7x {
    margin-left: auto;
  }

  #iyd2 {
    flex-wrap: nowrap;
  }

  .hero-content {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    padding: 4vw;
    padding-top: calc(80px + 4vw);
  }

  .hero-content h1 {
    font-size: min(7vw, 32px);
  }

  .hero-content .subtitle-text {
    font-size: min(4vw, 18px);
  }

  .container {
    padding: 0 3rem;
  }
  
  nav#i6po {
    padding: 0 3rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  nav#i6po {
    top: 10px;
  }

  .container {
    padding: 0 1.5rem;
  }
  
  nav#i6po {
    padding: 0 1.5rem;
  }

  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content .subtitle-text {
    font-size: 18px;
  }

  #id7x .gjs-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-image h3 {
    font-size: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }
  
  .portfolio-intro {
    padding: 0;
    font-size: 1rem;
  }

  .contact-addresses {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-container {
    width: 100%;
  }
}

/* Add padding above contact image */
.map-container {
  width: 100%;
  max-height: 400px;
  margin: 3rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #0c1525;
}

.map-container img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

/* Remove duplicate media queries */
@media (max-width: 480px) {
  #id7x .gjs-button {
    padding: 0.64rem 1.5rem;
    font-size: 0.9rem;
  }
}

#id7x .gjs-button {
  background: transparent;
  color: #E7D8B7;
  border: 1px solid #E7D8B7;
  transition: all 0.3s ease;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

#id7x .gjs-button:hover {
  background: #E7D8B7;
  color: #15243d;
  transform: translateY(-1px);
}

/* Add these hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 20px;
}

.hamburger span {
  width: 30px;
  height: 2px;
  background: white;
  border-radius: 10px;
  transition: all 0.3s linear;
}

/* Add fade transition to next section */
#who-are-we {
  position: relative;
  background: #15243d;
  z-index: 3;
  padding-bottom: 12rem;
}

#who-are-we::before {
  display: none;
}

/* Update footer logo */
.footer-logo img {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Update button alignment */
.hero-content .gjs-button {
  width: 100%;
  text-align: center;
  padding: min(1.5vw, 1rem) min(3vw, 2rem);
  margin-top: 0;
}

/* Keep text centered on mobile */
@media (max-width: 992px) {
  .hero-content {
    padding-top: calc(80px + 4vw);
    text-align: center;
  }
}

/* Update section title styles */
.section .title-text {
  font-family: 'Orbitron', sans-serif;
  font-size: min(3.8vw, 54px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: min(3vw, 3rem);
  -webkit-text-stroke: 0.5px white;
  text-stroke: 0.5px white;
  color: transparent;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Keep responsive adjustments */
@media (max-width: 992px) {
  .section .title-text {
    font-size: min(7vw, 32px);
  }
}

/* Keep hero title filled */
.hero-content .title-text {
  -webkit-text-stroke: 0;
  text-stroke: 0;
  color: white;
  text-transform: uppercase;
}

/* Update mobile button size */
@media (max-width: 480px) {
  #id7x .gjs-button {
    padding: 0.64rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Update Info Cards Styles */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 3rem;
  margin-top: 4rem;
}

.info-card {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 4rem 2rem 2rem;
  position: relative;
  transition: transform 0.3s ease;
  color: #15243d;
  margin-top: 60px;
}

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

.info-card .body-text {
  color: #15243d;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 0;
  padding: 1rem 1rem 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .info-cards {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Update icon container styles */
.icon-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #E7D8B7, #9FAABD);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-container i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-container .fa-bolt,
.icon-container .fa-chart-line {
  color: #15243d;
  font-size: 3rem;
  z-index: 2;
  animation: pulse 2s infinite;
}

.icon-container .icon-bg {
  font-size: 5rem;
  opacity: 0.1;
  color: #15243d;
  animation: rotate 10s linear infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Section transitions */
.section {
  position: relative;
  padding: 8rem 0;
  background: #15243d;
  width: 100%;
  overflow: hidden;
}

/* Who We Are Section */
#who-are-we {
  position: relative;
  background: #15243d;
  padding: 8rem 0;
  overflow: hidden;
}

.who-we-are-content {
  margin-top: 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.main-statement {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.3;
  font-weight: 500;
}

.statement-line {
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.statement-line.main-line {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 2rem;
  color: #E7D8B7;
}

.statement-line.description {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  line-height: 1.6;
  opacity: 0.8;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

.statement-line:not(:first-child) {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

.accent-text {
  color: #E7D8B7;
  font-weight: 700;
  position: relative;
  display: inline-block;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.accent-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #E7D8B7, transparent);
}

.statement-details {
  max-width: 800px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 2rem;
  border-left: 3px solid rgba(231, 216, 183, 0.3);
}

@media (max-width: 768px) {
  .main-statement {
    font-size: clamp(1.2rem, 3vw, 2rem);
  }
  
  .statement-line:not(:first-child) {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
  }
  
  .accent-text {
    font-size: clamp(1.2rem, 3vw, 2rem);
  }
  
  .statement-details {
    font-size: 0.9rem;
  }
}

/* Revert About Us section background */
#about-us {
  position: relative;
  background: linear-gradient(135deg, #0c1525 0%, #15243d 100%);
  color: white;
  margin-top: -4rem;
  overflow: hidden;
}

#about-us::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom right, #15243d 49%, #000000 51%);
}

#about-us::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239FAABD' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.about-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #E7D8B7;
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(231, 216, 183, 0.1);
  border-radius: 12px;
  transform: rotate(45deg);
  z-index: -1;
  transition: all 0.3s ease;
}

.about-card:hover .about-icon::after {
  transform: rotate(60deg) scale(1.2);
}

.about-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #9FAABD;
}

.about-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-card {
    padding: 1.5rem;
  }
}

/* Contact Section Styles */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-addresses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .contact-addresses {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-container {
    width: 100%;
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #E7D8B7;
  margin-top: 0.25rem;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-text strong {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: #9FAABD;
}

.contact-text a {
  color: #E7D8B7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #9FAABD;
}

.contact-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.map-container {
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #0c1525;
}

.contact-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 992px) {
  .map-container {
    width: 100%;
  }
  
  .contact-form {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-addresses {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-container {
    width: 100%;
  }
}

/* Contact form styles */
.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: #9FAABD;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E7D8B7;
  background: rgba(255, 255, 255, 0.05);
}

.contact-form .gjs-button {
  width: 100%;
  background: transparent;
  border: 0.5px solid #E7D8B7;
  color: #E7D8B7;
  transition: all 0.3s ease;
}

.contact-form .gjs-button:hover {
  background: #E7D8B7;
  color: #15243d;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .contact-form {
    margin-top: 2rem;
  }
}

/* Add animation container styles */
.network-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#networkCanvas {
  width: 100%;
  height: 100%;
}

/* Update container padding */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5rem;
  position: relative;
  display: block;
}

/* Update navbar padding */
nav#i6po {
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5rem;
  height: 80px;
  display: flex;
  align-items: center;
}

/* Update responsive padding */
@media (max-width: 992px) {
  .container {
    padding: 0 3rem;
  }
  
  nav#i6po {
    padding: 0 3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
  
  nav#i6po {
    padding: 0 1.5rem;
  }
}

/* Update hero content positioning */
.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  width: 100%;
  margin-left: 5%;
  margin-right: 5%;
  padding: 2vw;
  padding-top: calc(80px + 2vw);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  gap: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-content {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    padding: 4vw;
    padding-top: calc(80px + 4vw);
  }
}

.geometric-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(to bottom, #000000 0%, rgba(21, 36, 61, 0.8) 100%);
}

.grid {
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: 
    linear-gradient(to right, rgba(231, 216, 183, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(231, 216, 183, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg);
  animation: moveGrid 20s linear infinite;
  left: -50%;
  top: -50%;
}

@keyframes moveGrid {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translateY(50%);
  }
}

/* Energy Pulses */
.energy-pulses {
  position: absolute;
  width: 100%;
  height: 100%;
}

.pulse {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #E7D8B7;
  box-shadow: 0 0 10px #E7D8B7, 0 0 20px #E7D8B7;
}

.pulse:nth-child(1) {
  left: 20%;
  animation: pulsate 3s ease-in-out infinite;
  animation-delay: 0s;
}

.pulse:nth-child(2) {
  left: 50%;
  animation: pulsate 3s ease-in-out infinite;
  animation-delay: 1s;
}

.pulse:nth-child(3) {
  left: 80%;
  animation: pulsate 3s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes pulsate {
  0% {
    top: 100%;
    opacity: 1;
  }
  100% {
    top: 0%;
    opacity: 0;
  }
}

/* Add subtle glow effect */
.geometric-animation::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(231, 216, 183, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #15243d;
  margin: 2rem auto;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 90%;
  max-width: 900px;
  position: relative;
  border-radius: 10px;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #E7D8B7;
}

.modal-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #E7D8B7;
}

.modal-content h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin: 1.5rem 0 1rem;
  color: #E7D8B7;
}

.modal-text {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

.modal-text p {
  margin-bottom: 1rem;
}

.modal-text ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.modal-text li {
  margin-bottom: 0.5rem;
}

.modal-text strong {
  color: #E7D8B7;
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: #E7D8B7;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: white;
}

@media (max-width: 768px) {
  .modal-content {
    margin: 1rem;
    padding: 1.5rem;
    width: calc(100% - 2rem);
  }

  .modal-content h2 {
    font-size: 1.5rem;
  }

  .modal-content h3 {
    font-size: 1.3rem;
  }

  .modal-content h4 {
    font-size: 1.1rem;
  }
}

/* Portfolio Section Styles */
.portfolio-section {
  background: linear-gradient(135deg, #0c1525 0%, #15243d 100%);
  position: relative;
}

.portfolio-intro {
  max-width: 100%;
  margin: 0 auto 4rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  aspect-ratio: 16/9;
}

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

.portfolio-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.systems-img {
  background-image: url('assets/systems-bg.jpg');
}

.assets-img {
  background-image: url('assets/assets-bg.jpg');
}

.portfolio-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 36, 61, 0.7);
  transition: background 0.3s ease;
}

.portfolio-card:hover .overlay {
  background: rgba(21, 36, 61, 0.5);
}

.portfolio-image h3 {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: white;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-image h3 {
    font-size: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }
  
  .portfolio-intro {
    padding: 0;
    font-size: 1rem;
  }
}

/* Sarisa Photo Styles */
.sarisa-photo {
  text-align: center;
  margin-top: 2rem;
}

.sarisa-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Follow Us Styles */
.follow-us {
  text-align: center;
  margin-top: 1rem;
  color: white;
}

.follow-us h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.follow-us a {
  color: #E7D8B7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.follow-us a:hover {
  color: #9FAABD;
}

/* Follow Us Modal Styles */
.follow-us-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(21, 36, 61, 0.95); /* Black w/ opacity */
}

.follow-us-modal .modal-content {
  background: rgba(255, 255, 255, 0.03);
  margin: 10% auto;
  padding: 2.5rem;
  border: 1px solid rgba(231, 216, 183, 0.1);
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  color: white;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.follow-us-modal .modal-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: #E7D8B7;
  margin-bottom: 2rem;
  text-align: center;
}

.resource-item {
  margin-bottom: 1.5rem;
}

.resource-item h3 {
  font-size: 1.2rem;
  color: #E7D8B7;
}

.resource-item p {
  color: rgba(255, 255, 255, 0.8);
}

/* Update Login Form Button */
.login-form .gjs-button {
  width: 100%;
  background: transparent;
  border: 1px solid #E7D8B7;
  color: #E7D8B7;
  padding: 0.8rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  letter-spacing: 1px;
}

.login-form .gjs-button:hover {
  background: #E7D8B7;
  color: #15243d;
}

/* Navbar Styles */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(21, 36, 61, 0.8);
}

.logo img {
  height: 60px; /* Default logo size */
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.gjs-button {
  padding: 0.5rem 1rem; /* Adjust button padding */
  background: transparent; /* Original background */
  color: #E7D8B7; /* Vegas text color */
  border: 2px solid #E7D8B7; /* Vegas stroke */
  border-radius: 5px; /* Rounded corners */
  transition: background 0.3s ease, color 0.3s ease; /* Transition for hover effect */
}

.gjs-button:hover {
  background: #E7D8B7; /* Background on hover */
  color: #15243d; /* Text color on hover */
}

.hamburger {
  display: none; /* Hidden by default */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .nav-links {
    display: none; /* Hide links by default on mobile */
    flex-direction: column;
    position: absolute;
    top: 60px; /* Adjust based on navbar height */
    left: 0;
    right: 0;
    background: rgba(21, 36, 61, 0.9);
    padding: 1rem;
  }

  .nav-links.active {
    display: flex; /* Show links when active */
  }

  .hamburger {
    display: flex; /* Show hamburger menu */
  }

  .logo img {
    height: 48px; /* 20% smaller on smaller screens */
  }
}

/* Responsive Logo Size */
@media (max-width: 780px) {
  .logo img {
    height: 48px; /* 20% smaller on smaller screens */
  }
}

/* Footer Styles */
.footer {
    background: #0c1525;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items */
        text-align: center; /* Center text */
    }

    .footer-links {
        flex-direction: column; /* Stack links vertically */
        gap: 1rem; /* Adjust gap for better spacing */
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Show hamburger for screens below 992px */
@media (max-width: 992px) {
  .hamburger {
    display: flex; /* Show hamburger menu */
  }
}

/* Show hamburger for screens between 992px and 1280px */
@media (min-width: 992px) and (max-width: 1280px) {
  .hamburger {
    display: flex; /* Show hamburger menu */
  }
}