:root {
  --primary-color: #dc3545;
  --secondary-color: #0d6efd;
}

body {
  font-family: "Arial", sans-serif;
}

.top-bar {
  background-color: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.logo {
  max-height: 60px;
}

.contact-info {
  display: flex;
  gap: 110px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  background-color: #0673b7;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.contact-details p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.navbar {
  background-color: #fff;
  padding: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 20px 25px;
  transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-nav {
  gap: 50px;
}

.btn-login {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 30px;
  border: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-login:hover {
  background-color: #c82333;
  color: white;
}

.btn-register {
  background-color: #000;
  color: white;
  padding: 10px 30px;
  border: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-register:hover {
  background-color: #333;
  color: white;
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("hero.jpg") center/cover;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-contact {
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 35px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-contact:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.btn-contact i {
  margin-right: 8px;
}

.campus-support-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.section-subtitle {
  color: #dc3545;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #dc3545;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-top: 15px;
  line-height: 1.3;
}

.section-description {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.contact-section {
  background-color: #f1f4f8;
}

.contact-image {
  background: #dc3545 url("ladki.png") center/contain no-repeat;
  min-height: 100%;
  position: relative;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.contact-badge {
  background: #fff;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-section .row.align-items-stretch {
  justify-content: center;
}

.contact-badge h4 {
  margin: 0;
  font-size: 20px;
  color: #000;
}

.contact-badge .dot {
  width: 10px;
  height: 10px;
  background-color: #dc3545;
  display: inline-block;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.form-control,
.form-select {
  border-radius: 4px;
  padding: 10px 12px;
}
.contact-info-section {
  background-color: #e8ebf3;
  padding: 80px 0;
}

.contact-section-subtitle {
  color: #dc3545;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.contact-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 0;
}

.contact-intro-text {
  color: #5a5a5a;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 0;
  padding-top: 5px;
}

.contact-cards-wrapper {
  background-color: transparent;
  margin-top: 40px;
}

.contact-card-row {
  padding: 30px 0;
}

.contact-divider {
  border: none;
  border-top: 1px solid #cbd5e0;
  margin: 0;
  opacity: 1;
}

.contact-card-title {
  font-size: 1.39rem;
  font-weight: 700;
  color: #003d7a;
  margin: 0;
  line-height: 1.4;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.contact-detail-item i {
  color: #dc3545;
  font-size: 15px;
  margin-top: 3px;
  min-width: 18px;
}

.contact-detail-item span {
  flex: 1;
  color: #4a5568;
  font-size: 18px;
}

.location-section {
  background-color: #fff;
  padding: 80px 0 60px;
}

.location-subtitle {
  color: #dc3545;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.location-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #dc3545;
}

.location-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-top: 15px;
  line-height: 1.3;
}

.location-description {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto;
}

.footer-top {
  background: linear-gradient(rgba(30, 123, 184, 0.95), rgba(26, 95, 143, 0.95)),
    url("footimg.jpg") center/cover;
  padding: 80px 0 40px;
  color: white;
  position: relative;
}

.footer-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.footer-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  background-color: #fff;
  padding: 60px 0 30px;
}

.footer-logo {
  max-width: 200px;
}

.footer-description {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: #1e7bb8;
  color: white;
  transform: translateY(-3px);
}

.footer-contact {
  text-align: left;
}

.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-wrapper i {
  color: #1e7bb8;
  font-size: 20px;
}

.contact-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.contact-address {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.contact-detail {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-detail i {
  color: #1e7bb8;
  margin-right: 8px;
}

.contact-detail a {
  color: #666;
  text-decoration: none;
}

.contact-detail a:hover {
  color: #1e7bb8;
}

.footer-newsletter {
  text-align: left;
}

.newsletter-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-icon-wrapper i {
  color: #1e7bb8;
  font-size: 20px;
}

.newsletter-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.newsletter-description {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.copyright-text {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.footer-legal-links a:hover {
  color: #1e7bb8;
}
 
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 36px;
  height: 36px;
  background-color:#046BD2;
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 9999;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #046BD2;
  transform: translateY(-4px);
}


@media (max-width: 768px) {
  .top-bar {
    padding: 10px 0;
    text-align: start;
  }

  .logo {
    max-height: 45px;
    margin-bottom: 10px;
  }

  .contact-info {
    flex-direction: column;
    gap: 12px;
  }

  .contact-item {
    justify-content: center;
  }

  .contact-details h6 {
    font-size: 13px;
  }

  .contact-details p {
    font-size: 12px;
  }

  .contact-image {
    min-height: 250px;
    background-size: contain;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar-nav .nav-link {
    padding: 12px 15px;
    text-align: center;
  }

  .btn-login,
  .btn-register {
    width: 100%;
    margin: 5px 0;
    padding: 10px;
  }

  .contact-info {
    flex-direction: column;
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .navbar-nav .nav-link {
    padding: 15px 20px;
  }
  .section-title {
    font-size: 1.8rem;
  }

  .campus-support-section {
    padding: 60px 0;
  }

  .contact-info-section {
    padding: 60px 0;
  }

  .contact-section-title {
    font-size: 1.6rem;
  }

  .contact-card-row {
    padding: 20px 0;
  }

  .contact-card-title {
    font-size: 1.1rem;
  }

  .contact-detail-item {
    font-size: 13px;
  }

  .location-title {
    font-size: 1.8rem;
  }

  .location-section {
    padding: 60px 0 40px;
  }

  .location-description {
    font-size: 15px;
  }
  .footer-top {
    padding: 50px 0 20px;
  }

  .footer-bottom {
    padding: 40px 0 20px;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .contact-title,
  .newsletter-title {
    font-size: 1.1rem;
  }

  .contact-details {
    display: none;
  }
  .contact-item {
    display: none;
  }
  .navbar-nav {
    gap: 0px;
  }
}

@media (max-width: 991px) {
  .contact-info {
    gap: 20px;
  }

  .navbar-nav .nav-link {
    padding: 15px 18px;
  }

  .btn-login,
  .btn-register {
    padding: 8px 20px;
  }

  .contact-section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .contact-intro-text {
    margin-bottom: 30px;
  }

  .contact-card-row {
    padding: 25px 0;
  }

  .contact-card-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .contact-image {
    min-height: 250px;
    background-size: contain;
  }

  .footer-top {
    padding: 60px 0 30px;
  }

  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .contact-details {
    display: none;
  }
  .contact-item {
    display: none;
  }
  .navbar-nav {
    gap: 0px;
  }
}
