/* Custom CSS for ePrepZone - Modern Professional Design */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* Global Styles */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #f39c12;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --success-color: #27ae60;
  --danger-color: #e74c3c;
  --text-color: #333;
  --light-text: #fff;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
}

/* Navigation Bar */

/* Mobile Navbar Hamburger Icon and Menu Items - Force white for visibility */
@media (max-width: 991.98px) {
  .navbar-custom .navbar-toggler,
  .navbar-custom .navbar-toggler .navbar-toggler-icon,
  .navbar-custom .navbar-toggler .fas {
    color: #fff !important;
    border-color: #fff !important;
  }
  .navbar-custom .navbar-nav .nav-link {
    color: #fff !important;
  }
  .navbar-custom .navbar-nav .nav-link:hover,
  .navbar-custom .navbar-nav .nav-link.active {
    color: #ffbd50 !important;
  }
  .navbar-custom .navbar-collapse {
    background: #222 !important;
  }
}

.navbar-custom {
  background-color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-custom .navbar-brand img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.navbar-custom .nav-link {
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover {
  color: var(--accent-color) !important;
}

.btn-solid-reg {
  background-color: var(--accent-color);
  border: none;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.navbar-custom .btn-solid-reg {
  background-color: #e74c3c;
  color: white;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  margin-top: 6px;
  margin-bottom: 6px;
}

.btn-solid-reg:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

/* Header Section */
.header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.header .text-container {
  position: relative;
  z-index: 10;
  background-color: rgba(44, 62, 80, 0.85);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.header .outer-container {
  position: relative;
  z-index: 5;
}

.header h1 {
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.header h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.header .p-large {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-solid-lg {
  background-color: var(--accent-color);
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  border: none;
  margin-right: 15px;
}

.btn-outline-lg {
  background-color: transparent;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-solid-lg:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn-outline-lg:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Countdown Timer */
.countdown {
  margin-bottom: 30px;
}

.counter-number {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 15px;
  margin: 0 5px;
  min-width: 80px;
  display: inline-block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.timer-text {
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 500;
}

/* Registration Section */
.form-1 {
  background-color: white;
  padding: 80px 0;
}

.form-1 h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.form-1 h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.form-1 .media i {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-top: 8px;
}

.form-1 .media-body {
  padding-left: 15px;
}

.form-1 .media-body strong {
  color: var(--primary-color);
}

.form-container {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.form-control-input {
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  padding: 12px 15px;
  height: auto;
  font-size: 1rem;
}

.form-control-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.form-control-submit-button {
  background-color: #e74c3c;
  color: #222 !important;
  font-weight: 700;
  padding: 15px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  border: none;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  text-decoration: none !important;
}

.form-control-submit-button:active, .form-control-submit-button:visited {
  color: white !important;
  text-decoration: none !important;
}

.basic-5 .btn-solid-lg {
  background-color: #e74c3c;
  color: white;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  border: 2px solid white;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  display: inline-block;
  text-decoration: none !important;
}

.basic-5 .btn-solid-lg:active, .basic-5 .btn-solid-lg:visited {
  color: white !important;
  text-decoration: none !important;
}

.form-control-submit-button:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* EPGP Program Section */
.basic-1 {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.benefits-box {
  background-color: #3498db;
  border-radius: var(--border-radius);
  padding: 20px;
  height: 100%;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.benefits-box h5 {
  color: white;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.benefits-box .media i {
  color: #f39c12;
}

.benefits-box .media-body strong {
  color: white;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.1rem;
  margin-top: 20px;
}

.basic-1 .text-container {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.basic-1 h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.basic-1 h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.basic-1 .media i {
  color: var(--success-color);
  font-size: 1rem;
  margin-top: 6px;
}

.basic-1 .fa-gift {
  color: var(--accent-color);
}

.basic-1 .media-body {
  padding-left: 15px;
}

.basic-1 .media-body strong {
  color: var(--primary-color);
}

/* Description Section */
.basic-2 {
  padding: 80px 0;
  background-color: white;
}

.basic-2 h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.basic-2 h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.basic-2 .bullet {
  background-color: var(--secondary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-top: 6px;
}

.basic-2 h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.basic-2 h6 {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.basic-2 .media-body {
  padding-left: 15px;
}

/* Students Section */
.basic-3 {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.basic-3 .text-container {
  padding-right: 30px;
}

.basic-3 h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.basic-3 h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.basic-3 img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Date Section */
.basic-5 {
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
  padding: 80px 0;
  color: white;
}

.basic-5 .btn-solid-lg {
  background-color: #e74c3c;
  color: white;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  border: 2px solid white;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  display: inline-block;
}

.basic-5 .btn-solid-lg:hover {
  background-color: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.basic-5 h2 {
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.basic-5 h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.basic-5 p {
  color: rgba(255, 255, 255, 0.9);
}

.basic-5 a {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Newsletter Section */
.form-2 {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.form-2 h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

/* Contact Section */
.form-3 {
  padding: 80px 0;
  background-color: white;
}

.form-3 h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.form-3 h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.form-3 h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
}

.form-3 .media i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 6px;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  padding: 60px 0 30px;
  color: rgba(255, 255, 255, 0.8);
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.footer h5:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

.footer .fa-square {
  color: var(--accent-color);
  font-size: 0.7rem;
  margin-top: 8px;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .fab {
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.footer .fab:hover {
  color: var(--accent-color);
}

/* Copyright */
.copyright {
  background-color: #1a252f;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.6);
}

.copyright a {
  color: var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .header {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .header h1 {
    font-size: 2.3rem;
  }
  
  .basic-1 .text-container {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .header h1 {
    font-size: 2rem;
  }
  
  .header h3 {
    font-size: 1.3rem;
  }
  
  .counter-number {
    min-width: 60px;
    font-size: 1.5rem;
    padding: 10px;
  }
  
  .basic-3 .text-container {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

/* Custom Animation */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhance Icons */
.fa-check, .fa-gift, .fas {
  transition: all 0.3s ease;
}

.media:hover .fa-check, .media:hover .fa-gift, .media:hover .fas {
  transform: scale(1.2);
}

/* Image Enhancements */
.img-fluid {
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.img-fluid:hover {
  transform: scale(1.02);
  box-shadow: var(--box-shadow);
}

/* Button Enhancements */
.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}
