/* Global Styles */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../Images/banner.jpg');
     background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
    justify-content: center;
    align-items: center;
    display:flex;
}

/* Header Styles */
header {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin: 0 15px;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffcc00;
}

/* Hero Section */
.hero {
    text-align: center;
    max-width: 600px;
    margin-top:50px;
   
}

.hero h2 {
  font-size: 53px;
  color: #ffcc00;
  margin-bottom: 20px;
}

/* Radio Button Group */
.radio-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.radio-card {
    display: inline-block;
    padding: 15px 25px;
    border: 2px solid #ccc;
    border-radius: 10px;
    background: #f9f9f9;
    color: #333;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    animation: slideIn 1s ease;
}

.radio-card:hover {
    background: #e0f7fa;
    border-color: #00796b;
    transform: scale(1.05);
}

.radio-card.selected {
    background: #b2dfdb;
    border-color: #004d40;
    color: #004d40;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.radio-card input[type="radio"] {
    display: none;
}

/* Shareholder Div */
#shareholderDiv {
    margin-top: 20px;
}

/* Footer Styles */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container */
.dis-container {
  width: 100%;
  max-width: 1029px;
  margin: auto;
    margin-top: auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 800px;
  margin-top: 90px;
}



/* Header Title */
.header-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    text-align: center;
    color: white;
    font-size: 36px;
    z-index: 2;
}

/* Disclaimer Section */
.blue-bg {
    background-color: #e9f5f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.disclmr-restrct {
    color: #d9534f;
    font-size: 20px;
    font-weight: 500;
}

.before-txt {
    font-size: 24px;
    font-weight: 500;
    color: #333;
}

.scroll-text {
    max-height:150px;
    overflow-y: auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.disclmr-imp {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.sml-txt {
    font-size: 16px;
    color: #555;
    text-align: justify;
    margin-bottom: 15px;
}

/* Conditions */
.conditions-row {
    padding: 20px 0;
}

.conditions-row-li {
    font-size: 16px;
    margin: 10px 0;
    color: #333;
    background-color: #f0f8ff;
    padding: 10px;
    border-radius: 5px;
    border-left: 4px solid #003366;
}

/* Buttons */
.btn-primary {
    background-color: #2193b0;
    border-color: #2193b0;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    margin-bottom: 10px;
}

.btn-primary:hover {
    background-color: #003366;
    transform: scale(1.05);
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .btn {
        margin-bottom: 15px;
    }
}




/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .hero h2 {
        font-size: 1.8em;
    }

    nav a {
        margin: 0 5px;
        font-size: 0.9em;
    }

   
}

.box-container {
      height: 70vh; /* Adjust height to center content vertically */
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .box {
      background-color: #f4f4f4;
      border: 1px solid #ddd;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-align: center;
      padding: 20px;
      font-size: 18px;
      font-weight: bold;
      height: 150px;
      line-height: 110px; /* Adjust for vertical text centering */
      transition: all 0.3s ease;
    }
    .box:hover {
      background-color: #007bff;
      color: #fff;
      cursor: pointer;
      transform: scale(1.05);
    }
