/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* Dark theme for AMD */
    color: #f5f5f5;
    padding-top: 130px; 
    text-align: center;
}

    /* Welcome Popup Styles */
    .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2000;
      }
  
      .popup-content {
        background: #2c2c2c;
        padding: 30px 40px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
        color: #f5f5f5;
        max-width: 400px;
        animation: popupFadeIn 0.5s ease-in-out;
      }
  
      .popup-content h2 {
        color: #FFD700;
        margin-bottom: 10px;
      }
  
      .popup-content p {
        margin-bottom: 20px;
        font-size: 16px;
      }
  
      .popup-content button {
        background: linear-gradient(135deg, #ff4500, #cc3700);
        border: none;
        padding: 12px 25px;
        font-size: 16px;
        color: white;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
      }
  
      .popup-content button:hover {
        background: linear-gradient(135deg, #cc3700, #991f00);
        transform: scale(1.05);
      }
  
      @keyframes popupFadeIn {
        from {
          opacity: 0;
          transform: scale(0.9);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }
    

/* Header Styling */
header {
    background: linear-gradient(135deg, #ff6200, #ff4500);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.site-header {
    background-color: #ff4500; /* Strong orange */
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(19, 17, 17, 0.3);
  }
  
  .header-left {
    display: flex;
    align-items: center;
    gap: 015px;
    margin-right: 50px;
  }
  
  .golden-logo {
    height: 60px;
    width: auto;
    border-radius: 8px;
  }
  
  .header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .main-title {
    font-size: 32px;
    color: white;
    margin: 0;
    font-weight: 700;
  }
  
  .subtitle {
    font-size: 12px;
    color: rgb(0, 0, 0);
    letter-spacing: 1px;
    margin: 02px 0 0;
  }
  

/* Navigation Bar */
nav {
    background-color: #333;
    padding: 10px 0;
    top: 100px; 
    position: fixed;
    width: 100%;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.5); /* AMD Red Shadow Effect */

}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background-color: #ff5722;
    border-radius: 5px;
}

/* Main Content Box (One Box Around All Sections with Shadow) */
.container {
    width: 80%;
    max-width: 1000px;
    margin: 100px auto 60px auto;
    background: #2c2c2c;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.5); /* AMD Red Shadow Effect */
    border-radius: 15px; /* Rounded corners */
    margin-top: 60px;
}

/* Section Styling (Inside the Box) */
.wel, .comp, .mob, .supcom {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    font-size: 20px;
}

/* Modern Button Styling */
button {
    display: inline-block;
    padding: 12px 20px;
    margin: 10px;
    background: linear-gradient(135deg, #ff4500, #cc3700);
    color: white;
    border: none;
    border-radius: 25px; /* More rounded buttons */
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(255, 69, 0, 0.5);
    letter-spacing: 1px;
}

/* Fix the button text inside */
button a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    width: 100%;
}

/* Button Hover Effect */
button:hover {
    background: linear-gradient(135deg, #cc3700, #991f00);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 69, 0, 0.7);
}

/* Button Click (Active) Effect */
button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgba(255, 69, 0, 0.5);
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #ff4500;
    color: white;
    margin-top: 30px;
}
