body{
  font-family:'Segoe UI',sans-serif;
  margin:0;
  background:#f4f6f9;
}

/* ===== TOP BAR / NAV ===== */
.navbar{
  background:#ffffff !important;   /* White top */
  padding:15px 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar .nav-link{
  color:#4b2c82 !important;        /* Purple */
  font-weight:600;
  margin-left:20px;
}

.navbar .nav-link:hover{
  color:#eb6e19 !important;        /* Orange hover */
}

/* Logo */
.site-logo{
  height:55px;
}

/* Dropdown menu */
.dropdown-menu{
  border-radius:8px;
  border:none;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.dropdown-item{
  font-weight:500;
}

/* ===== SLIDER ===== */
.hero-slide img{
  height:550px;
  object-fit:cover;
}

.carousel-caption{
  bottom: 10%;
  background: rgba(75,44,130,0.7);  /* Purple overlay */
  padding: 25px 40px;
  border-radius: 12px;
  
}

.carousel-caption h3{
  color:#ffffff;
  font-size:42px;
  font-weight:700;
}

.carousel-caption p{
  color:#f1f1f1;
  font-size:18px;
  margin-bottom:10px;
}

/* ===== SECTIONS ===== */
.section{
  padding:60px 40px;
}

.section h2{
  color:#4b2c82;
  margin-bottom:20px;
}

/* ===== FOOTER GENERAL ===== */
.footer {
  background:#1c1f2b;
  color:#eee;
}

.footer h3, .footer h5 {
  color:#f4c430;
}

.footer a {
  color:#ddd;
  text-decoration:none;
}
.footer a:hover {
  color:#f4c430;
}

/* ===== SUBSCRIBE BOX ===== */
.subscribe-box {
  background: linear-gradient(135deg, #22263a, #2a2f4a);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.subscribe-title {
  flex: 1;
}

.subscribe-form-wrap {
  flex: 2;
}

.subscribe-form-wrap .form-control {
  height: 48px;
  border-radius: 8px;
  border: none;
}

.subscribe-form-wrap button {
  height: 48px;
  border-radius: 8px;
  font-weight: 600;
}

/* Make subscribe responsive */
@media (max-width: 768px) {
  .subscribe-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== FOOTER SECTIONS ===== */
.second-footer {
  padding-top: 40px;
  padding-bottom: 40px;
}

.widget-title {
  margin-bottom: 15px;
  font-weight: 700;
}

.widget_contact_wrapper li {
  margin-bottom: 8px;
}

/* Bottom footer */
.bottom-footer-text {
  padding: 20px 0;
  background: #161926;
}

