/*
  Theme Name: NewBiz
  Theme URL: https://bootstrapmade.com/newbiz-bootstrap-business-template/
  Author: BootstrapMade.com
  License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #007bff;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #007bff;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #007bff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled,
#header.header-pages {
  height: 60px;
  padding: 10px 0;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 7px 0;
  max-height: 26px;
}

.main-pages {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  position: relative;
  background: url("../img/intro-bg.png") center bottom no-repeat;
  background-size: cover;
  padding: 200px 0 120px 0;
}

#intro .intro-img {
  width: 50%;
  float: right;
}

#intro .intro-info {
  width: 50%;
  float: left;
}

#intro .intro-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}

#intro .intro-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #007bff;
  border: 2px solid #007bff;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #004289;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #007bff;
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #004289;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #007bff;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #74b5fc;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #004289;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #666;
  width: 50%;
  font-weight: 500;
}

/* Section with background - Modern Colorful */

.section-bg {
  background: linear-gradient(135deg, #ecf5ff 0%, #f0e7ff 50%, #ffe7f0 100%);
  position: relative;
  overflow: hidden;
}

.section-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-bg::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 147, 251, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* About Us Section
--------------------------------*/

#about {
  background: #fff;
  padding: 60px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #007bff;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #007bff;
  font-size: 24px;
}

#about .about-container .icon-box:hover .icon {
  background: #007bff;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

/* Services Section
--------------------------------*/

#services {
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#services .box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#services .icon {
  position: absolute;
  left: -10px;
  top: calc(50% - 32px);
}

#services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #007bff;
}

#services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

#why-us {
  padding: 60px 0;
  background: #004a99;
}

#why-us .section-header h3,
#why-us .section-header p {
  color: #fff;
}

#why-us .card {
  background: #00458f;
  border-color: #00458f;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#why-us .card:hover {
  background: #003b7a;
  border-color: #003b7a;
}

#why-us .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#why-us .card h5 {
  font-size: 22px;
  font-weight: 600;
}

#why-us .card p {
  font-size: 15px;
  color: #d8eafe;
}

#why-us .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
}

#why-us .card .readmore:hover {
  border-bottom: #fff solid 2px;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}

/* Portfolio Section
--------------------------------*/

#portfolio {
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #007bff;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #007bff;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #007bff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #007bff;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #3395ff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #003166;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/* Testimonials Section
--------------------------------*/

#testimonials {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #007bff;
}

/* Team Section
--------------------------------*/

#team {
  background: #fff;
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

#team .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 62, 128, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #007bff;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Clients Section
--------------------------------*/

#clients {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#clients .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clients .client-logo:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}

/* Contact Section
--------------------------------*/

#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 50%, #f0e7ff 100%);
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #007bff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #007bff;
}

#contact .social-links a:hover {
  background: #007bff;
  color: #fff;
}

#contact .info {
  color: #283d50;
}

#contact .info i {
  font-size: 32px;
  color: #007bff;
  float: left;
  line-height: 1;
}

#contact .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 14px;
}

#contact .form #sendmessage {
  color: #007bff;
  border: 1px solid #007bff;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .form button[type="submit"] {
  background: #007bff;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#contact .form button[type="submit"]:hover {
  background: #0067d5;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #00428a;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #004a99;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #007bff;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #0067d5;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
}

#footer .footer-top .footer-links ul a:hover {
  color: #74b5fc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #007bff;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #0062cc;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 991px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #intro {
    padding: 140px 0 60px 0;
  }

  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }

  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }

  #why-us .card {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
  }

  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .section-header p {
    width: 100%;
  }

  #testimonials .testimonial-item {
    text-align: center;
  }

  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

@media (max-width: 574px) {
  #intro {
    padding: 100px 0 20px 0;
  }
}

/*--------------------------------------------------------------
# Modern Intro Section
--------------------------------------------------------------*/

#intro {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

/* Animated Background Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: #fff;
  top: -100px;
  right: -50px;
  animation: float-shape-1 20s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: #fff;
  bottom: 50px;
  left: -50px;
  animation: float-shape-2 25s ease-in-out infinite;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: #fff;
  top: 50%;
  left: 50%;
  animation: float-shape-3 30s ease-in-out infinite;
}

#intro .intro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

#intro .container {
  position: relative;
  z-index: 2;
}

#intro .intro-content {
  z-index: 3;
  animation: slideInLeft 0.8s ease-out;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease-out 0.2s both;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

#intro .intro-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 2px;
  animation: slideInLeft 0.8s ease-out 0.3s both;
}

#intro .intro-subtitle {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
  opacity: 0.95;
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

#intro .intro-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 500px;
  animation: slideInLeft 0.8s ease-out 0.5s both;
}

#intro .intro-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: slideInLeft 0.8s ease-out 0.6s both;
}

#intro .btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

#intro .btn-primary {
  background: #fff;
  color: #667eea;
  border: 2px solid #fff;
}

#intro .btn-primary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#intro .btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

#intro .btn-outline-light:hover {
  background: #fff;
  color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#intro .intro-img {
  text-align: center;
  z-index: 3;
  animation: slideInRight 0.8s ease-out 0.3s both;
}

#intro .intro-image {
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s ease-out 1s both;
}

.scroll-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scroll-wheel 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes float-shape-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
}

@keyframes float-shape-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -30px); }
}

@keyframes float-shape-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(-5px);
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

/*--------------------------------------------------------------
# Modern Image Slider
--------------------------------------------------------------*/

#slider {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 500px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 10;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%);
  z-index: 1;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 40px;
  color: #fff;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  animation: slideUp 0.8s ease-out;
}

.slide-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.slide-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 20;
  transform: translateY(-50%);
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.slider-btn:active {
  transform: scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.indicator {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

.indicator.active {
  background: #fff;
  width: 32px;
  border-radius: 6px;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Slider */
@media (max-width: 768px) {
  .slider-container {
    height: 350px;
  }

  .slide-content {
    padding: 40px 30px;
  }

  .slide-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .slide-description {
    font-size: 14px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .slider-controls {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 250px;
  }

  .slide-content {
    padding: 30px 20px;
  }

  .slide-title {
    font-size: 18px;
  }

  .slide-description {
    font-size: 12px;
  }

  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }

  .indicator.active {
    width: 24px;
  }
}

#about {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0e7ff 50%, #ffe7f0 100%);
}

#about .section-header {
  margin-bottom: 50px;
}

#about .section-header h3 {
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

#about .section-header p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

#about .about-subtitle {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

#about .content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

#about .about-intro {
  line-height: 1.8;
  font-size: 15px;
  color: #555;
  margin-bottom: 35px;
}

#about .about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#about .feature-item {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

#about .feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  opacity: 0;
  transition: opacity 0.4s ease;
}

#about .feature-item:hover {
  box-shadow: 0 16px 60px rgba(102, 126, 234, 0.18);
  transform: translateY(-10px);
  background: linear-gradient(135deg, #f8f9ff 0%, #f0e7ff 100%);
}

#about .feature-item:hover::before {
  opacity: 1;
}

#about .feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#about .feature-item:hover .feature-icon-wrapper {
  transform: scale(1.15) rotateY(10deg);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

#about .feature-icon-wrapper i {
  font-size: 32px;
  color: #ffffff;
  transition: all 0.4s ease;
}

#about .feature-item:hover .feature-icon-wrapper i {
  transform: scale(1.2);
}

#about .feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#about .feature-item h5 {
  font-size: 17px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

#about .feature-item p {
  margin: 0 0 6px 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-weight: 500;
}

#about .feature-item small {
  color: #999;
  font-size: 13px;
  font-style: italic;
}

#about .background {
  position: relative;
}

#about .background img {
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
  transition: all 0.4s ease;
}

#about .background img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 80px rgba(102, 126, 234, 0.3);
}

/*--------------------------------------------------------------
# Modern Alumni Registration Section
--------------------------------------------------------------*/

#alumni-register {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

#alumni-register .section-header {
  margin-bottom: 50px;
  text-align: center;
}

#alumni-register .section-header h3 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

#alumni-register .section-header p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

#alumni-register .card {
  border: none;
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #667eea, #764ba2) 1;
}

#alumni-register .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #4facfe);
  border-radius: 20px 20px 0 0;
}

#alumni-register .card:hover {
  box-shadow: 0 25px 80px rgba(102, 126, 234, 0.3);
  transform: translateY(-15px) scale(1.02);
}

#alumni-register .card-body {
  padding: 45px 40px;
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(240,243,255,0.5) 100%);
}

#alumni-register .form-group {
  margin-bottom: 22px;
}

#alumni-register .form-group label {
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#alumni-register .form-control {
  border: 2px solid #e8e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, #ffffff, #f5f7ff);
}

#alumni-register .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15), 0 8px 20px rgba(102, 126, 234, 0.2);
  background: #ffffff;
  transform: translateY(-2px);
}

#alumni-register .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border: none;
  padding: 14px 40px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

#alumni-register .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

#alumni-register .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

#alumni-register .btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

#alumni-register .btn-primary:active {
  transform: translateY(-2px) scale(0.98);
}

#alumni-register .text-center {
  text-align: center;
}

#alumni-register p {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 20px;
}

#alumni-register a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#alumni-register a:hover {
  color: #764ba2;
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Modern Contact Section
--------------------------------------------------------------*/

#contact {
  padding: 80px 0;
  background: #fff;
}

#contact .section-header {
  margin-bottom: 50px;
  text-align: center;
}

#contact .section-header h3 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

#contact .section-header p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Modern Colorful Contact Info Boxes */
.contact-info-box {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 30px;
  border: 2px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-info-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.4s ease;
}

.contact-info-box:nth-child(1):hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
  border-color: transparent;
}

.contact-info-box:nth-child(2):hover {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px rgba(245, 87, 108, 0.4);
  border-color: transparent;
}

.contact-info-box:nth-child(3):hover {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: #fff;
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px rgba(79, 172, 254, 0.4);
  border-color: transparent;
}

.contact-info-icon {
  font-size: 48px;
  color: #667eea;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
  border-radius: 50%;
}

.contact-info-box:hover .contact-info-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.15) rotate(10deg);
}

.contact-info-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.contact-info-box:hover h4 {
  color: #fff;
  letter-spacing: 0.5px;
}

.contact-info-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0;
  transition: color 0.4s ease;
}

.contact-info-box:hover p {
  color: rgba(255, 255, 255, 0.95);
}

.contact-info-box a {
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

.contact-info-box:hover a {
  color: #fff;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Bottom Navigation Bar
--------------------------------------------------------------*/

/* Modern Colorful Bottom Navbar */
.navbar-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.98) 100%);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #4facfe) 1;
  box-shadow: 0 -8px 30px rgba(102, 126, 234, 0.25);
  display: none;
  z-index: 1030;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar-bottom .nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 8px 0;
  gap: 0;
  height: 72px;
}

.navbar-bottom .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  padding: 8px 10px;
  font-size: 11px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex: 1;
  max-width: 80px;
  border-radius: 12px;
  margin: 0 3px;
  position: relative;
  font-weight: 500;
}

.navbar-bottom .nav-item:nth-child(1) {
  --color-from: #667eea;
  --color-to: #764ba2;
}

.navbar-bottom .nav-item:nth-child(2) {
  --color-from: #f093fb;
  --color-to: #f5576c;
}

.navbar-bottom .nav-item:nth-child(3) {
  --color-from: #4facfe;
  --color-to: #00f2fe;
}

.navbar-bottom .nav-item:nth-child(4) {
  --color-from: #43e97b;
  --color-to: #38f9d7;
}

.navbar-bottom .nav-item:nth-child(5) {
  --color-from: #fa709a;
  --color-to: #fee140;
}

.navbar-bottom .nav-item:hover {
  background: linear-gradient(135deg, var(--color-from) 0%, var(--color-to) 100%);
  color: #fff;
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}

.navbar-bottom .nav-item:active,
.navbar-bottom .nav-item.active {
  background: linear-gradient(135deg, var(--color-from) 0%, var(--color-to) 100%);
  color: #fff;
  transform: translateY(-10px) scale(1.12);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.navbar-bottom .nav-item i {
  font-size: 24px;
  margin-bottom: 3px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-bottom .nav-item .nav-label {
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s ease;
  letter-spacing: 0.3px;
}

.navbar-bottom .nav-item:hover i {
  transform: scale(1.3) rotateY(10deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.navbar-bottom .nav-item:active i,
.navbar-bottom .nav-item.active i {
  transform: scale(1.4) rotateY(-10deg);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

/*--------------------------------------------------------------
# Mobile Responsive Design
--------------------------------------------------------------*/

@media (max-width: 768px) {
  /* Show bottom navbar on mobile */
  .navbar-bottom {
    display: flex;
    height: 72px;
    align-items: flex-start;
  }

  .navbar-bottom .nav-item {
    font-size: 10px;
  }

  .navbar-bottom .nav-item i {
    font-size: 22px;
  }

  /* Add bottom margin to main content to accommodate navbar */
  main {
    padding-bottom: 80px;
  }

  /* Modern Card Styles for Mobile */
  #alumni-register .card {
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
  }

  #alumni-register .card-body {
    padding: 30px 20px;
  }

  #alumni-register .form-group label {
    font-size: 12px;
  }

  #alumni-register .form-control {
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13px;
  }

  #intro {
    height: auto;
    min-height: 500px;
    padding: 35px 0;
  }

  #intro .intro-title {
    font-size: 28px;
  }

  #intro .intro-subtitle {
    font-size: 18px;
  }

  #intro .intro-description {
    font-size: 13px;
    line-height: 1.6;
  }

  #intro .intro-buttons {
    flex-direction: column;
    gap: 12px;
  }

  #intro .btn {
    width: 100%;
    text-align: center;
    padding: 13px 24px;
    font-size: 13px;
    border-radius: 8px;
  }

  #intro .intro-img {
    display: none;
  }

  #intro .intro-content {
    text-align: center;
  }

  /* About Section Mobile */
  #about {
    padding: 50px 0;
  }

  #about .section-header {
    margin-bottom: 40px;
  }

  #about .section-header h3 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  #about .section-header p {
    font-size: 13px;
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
  }

  #about .about-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
  }

  #about .about-container {
    flex-direction: column-reverse;
    gap: 30px;
  }

  #about .background {
    margin-bottom: 0;
  }

  #about .background img {
    max-height: 300px;
    border-radius: 12px;
  }

  .about-features {
    margin-top: 25px;
    gap: 15px;
  }

  #about .feature-item {
    flex-direction: row;
    text-align: left;
    margin-bottom: 0;
    padding: 18px;
    gap: 16px;
  }

  #about .feature-item i {
    font-size: 26px;
    min-width: 32px;
    flex-shrink: 0;
  }

  /* Alumni Registration Mobile */
  #alumni-register {
    padding: 50px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  }

  #alumni-register .section-header {
    margin-bottom: 35px;
  }

  #alumni-register .section-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  #alumni-register .section-header p {
    font-size: 13px;
    max-width: 100%;
    padding: 0 10px;
  }

  #alumni-register .card {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
  }

  #alumni-register .card-body {
    padding: 30px 20px;
  }

  #alumni-register .form-group {
    margin-bottom: 18px;
  }

  #alumni-register .form-group label {
    font-size: 13px;
    font-weight: 600;
  }

  #alumni-register .form-control {
    padding: 11px 12px;
    font-size: 13px;
    border-radius: 6px;
  }

  #alumni-register .btn-primary {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 8px;
  }

  #alumni-register p {
    font-size: 13px;
    margin-top: 15px;
  }

  /* Contact Section Mobile */
  #contact {
    padding: 50px 20px;
    background: #fff;
  }

  #contact .section-header {
    margin-bottom: 35px;
  }

  #contact .section-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  #contact .section-header p {
    font-size: 13px;
    max-width: 100%;
    padding: 0 10px;
  }

  .contact-info-box {
    padding: 26px 18px;
    margin-bottom: 18px;
    border-radius: 12px;
    text-align: center;
    background: #f8f9fa;
  }

  .contact-info-icon {
    font-size: 42px;
    margin-bottom: 12px;
    color: #667eea;
  }

  .contact-info-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
  }

  .contact-info-box p {
    font-size: 13px;
    margin-bottom: 5px;
    color: #666;
    line-height: 1.6;
  }

  .map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
  }

  .map-container iframe {
    height: 320px !important;
    border-radius: 12px;
  }

  /* Container padding on mobile */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button spacing */
  .btn {
    margin: 5px 0;
  }

  .btn-lg {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Enhanced Bottom Navigation */
  .navbar-bottom {
    height: 72px;
    padding: 8px 0;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.12);
  }

  .navbar-bottom .nav-container {
    gap: 0;
  }

  .navbar-bottom .nav-item {
    padding: 10px 12px;
    font-size: 11px;
    flex: 1;
    max-width: none;
    transition: all 0.2s ease;
    position: relative;
  }

  .navbar-bottom .nav-item:active {
    background: rgba(102, 126, 234, 0.08);
  }

  .navbar-bottom .nav-item i {
    font-size: 24px;
    margin-bottom: 3px;
    transition: all 0.2s ease;
  }

  .navbar-bottom .nav-item .nav-label {
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .navbar-bottom .nav-item.active i {
    color: #667eea;
    transform: scale(1.1);
  }
}

/* Extra small devices (< 480px) */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  #intro {
    height: auto;
    min-height: 550px;
    padding: 40px 16px;
  }

  #intro .intro-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  #intro .intro-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #intro .intro-description {
    font-size: 12px;
    display: none;
  }

  #about {
    padding: 40px 0;
  }

  #about .section-header {
    margin-bottom: 30px;
  }

  #about .section-header h3,
  #alumni-register .section-header h3,
  #contact .section-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  #about .section-header p,
  #alumni-register .section-header p,
  #contact .section-header p {
    font-size: 12px;
    padding: 0 10px;
  }

  #about .about-subtitle {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .about-features {
    margin-top: 18px;
    gap: 12px;
  }

  #about .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 10px;
    margin-bottom: 0;
  }

  #about .feature-item i {
    font-size: 22px;
    min-width: auto;
  }

  #about .feature-item h5 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  #about .feature-item p {
    font-size: 11px;
    line-height: 1.5;
  }

  #about .background img {
    max-height: 250px;
  }

  #alumni-register {
    padding: 40px 16px;
  }

  #alumni-register .card {
    border-radius: 10px;
  }

  #alumni-register .card-body {
    padding: 25px 16px;
  }

  #alumni-register .form-group {
    margin-bottom: 16px;
  }

  #alumni-register .form-group label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  #alumni-register .form-control {
    font-size: 13px;
    padding: 10px 10px;
    border-radius: 5px;
  }

  #alumni-register .btn-primary {
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
    border-radius: 6px;
  }

  #alumni-register p {
    font-size: 12px;
    margin-top: 12px;
  }

  #alumni-register a {
    font-size: 12px;
  }

  #contact {
    padding: 40px 16px;
  }

  #contact .section-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  #contact .section-header p {
    font-size: 12px;
  }

  .contact-info-box {
    padding: 20px 14px;
    margin-bottom: 16px;
    text-align: center;
    border-radius: 10px;
  }

  .contact-info-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .contact-info-box h4 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .contact-info-box p {
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1.5;
  }

  .map-container {
    border-radius: 10px;
    margin-top: 20px;
  }

  .map-container iframe {
    height: 300px !important;
    border-radius: 10px;
  }

  /* Container padding on mobile */
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* Button spacing */
  .btn {
    margin: 4px 0;
  }

  .btn-lg {
    padding: 11px 16px;
    font-size: 13px;
  }

  .navbar-bottom {
    display: block;
    height: 68px;
    padding: 6px 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
  }

  .navbar-bottom .nav-container {
    gap: 0;
    padding: 0;
  }

  .navbar-bottom .nav-item {
    padding: 8px 8px;
    font-size: 10px;
    min-width: 50px;
    max-width: none;
    flex: 1;
  }

  .navbar-bottom .nav-item i {
    font-size: 20px;
    margin-bottom: 2px;
  }

  .navbar-bottom .nav-item .nav-label {
    font-size: 9px;
    line-height: 1.1;
  }

  main {
    padding-bottom: 68px;
  }
}

/* ========================================
   Jobs Section - Modern & Responsive
   ======================================== */

#jobs-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7ff 0%, #f0e7ff 50%, #fff5f7 100%);
  position: relative;
  overflow: hidden;
}

#jobs-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#jobs-section .container {
  position: relative;
  z-index: 2;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

/* Job Card Styles */
.job-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.job-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.job-card:hover::before {
  opacity: 1;
}

/* Job Card Header */
.job-card-header {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.job-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.job-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.job-card:hover .job-image {
  transform: scale(1.1);
}

.job-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.job-card:hover .job-overlay {
  opacity: 1;
}

.btn-detail {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-detail:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

/* Job Card Body */
.job-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.job-position {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.4;
}

.job-company {
  font-size: 14px;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-company i {
  font-size: 16px;
}

/* Job Contact Info */
.job-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  padding: 16px;
  background: #f8f9ff;
  border-radius: 12px;
  border-left: 3px solid #667eea;
}

.contact-label {
  font-size: 13px;
  color: #555;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-label i {
  color: #667eea;
}

.contact-info {
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-info i {
  color: #f5576c;
}

/* Job Description */
.job-description {
  flex: 1;
  margin-bottom: 20px;
}

.job-description p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* View Detail Button */
.btn-view-detail {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.btn-view-detail:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  background: linear-gradient(135deg, #764ba2, #667eea);
  color: white;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: #888;
}

.empty-icon {
  font-size: 80px;
  color: #ddd;
  margin-bottom: 20px;
  display: block;
}

.empty-state h4 {
  font-size: 24px;
  color: #555;
  margin-bottom: 10px;
}

.empty-state p {
  font-size: 15px;
  color: #888;
  max-width: 400px;
  margin: 0 auto;
}

/* Modal Styles */
.modal-job-detail .modal-content {
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-job-detail .modal-header {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 24px;
}

.modal-job-detail .modal-title {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-job-detail .close {
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.modal-job-detail .close:hover {
  opacity: 1;
}

.job-detail-header {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.job-detail-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.job-detail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.job-detail-position {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.job-detail-company {
  color: #667eea;
  font-weight: 600;
  margin: 0;
}

/* Detail Content */
.job-detail-content {
  padding: 0;
}

.detail-section {
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
}

.detail-section:last-child {
  border-bottom: none;
}

.detail-title {
  font-size: 15px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-title i {
  color: #667eea;
  font-size: 16px;
}

.detail-table {
  width: 100%;
  margin: 0;
}

.detail-table tr {
  border: none;
}

.detail-table td {
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #f5f5f5;
}

.detail-table tr:last-child td {
  border-bottom: none;
}

.detail-table .label {
  font-weight: 600;
  color: #555;
  min-width: 150px;
}

.detail-table .value {
  color: #2c3e50;
  word-break: break-word;
}

.contact-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-link:hover {
  color: #764ba2;
}

.detail-description {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
  background: #f8f9ff;
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.modal-footer {
  padding: 20px 24px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 12px;
}

.modal-footer .btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
}

.modal-footer .btn-secondary {
  background: #e0e0e0;
  color: #333;
}

.modal-footer .btn-secondary:hover {
  background: #d0d0d0;
}

.modal-footer .btn-success {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-footer .btn-success:hover {
  box-shadow: 0 10px 25px rgba(67, 233, 123, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .jobs-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
  }
}

@media (max-width: 768px) {
  #jobs-section {
    padding: 60px 0;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .job-card {
    border-radius: 16px;
  }

  .job-card-header {
    height: 160px;
  }

  .job-card-body {
    padding: 20px;
  }

  .job-position {
    font-size: 16px;
  }

  .job-company {
    font-size: 13px;
  }

  .detail-section {
    padding: 16px 0;
  }

  .detail-title {
    font-size: 13px;
  }

  .detail-table .label {
    min-width: 120px;
    font-size: 13px;
  }

  .detail-table .value {
    font-size: 13px;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  #jobs-section {
    padding: 40px 0;
  }

  .jobs-grid {
    gap: 16px;
  }

  .job-card-header {
    height: 140px;
  }

  .job-card-body {
    padding: 16px;
  }

  .job-position {
    font-size: 15px;
  }

  .job-company {
    font-size: 12px;
  }

  .btn-view-detail {
    padding: 10px 16px;
    font-size: 13px;
  }

  .job-contact {
    padding: 12px;
    margin-bottom: 12px;
  }

  .contact-label,
  .contact-info {
    font-size: 12px;
  }

  .job-detail-header {
    flex-direction: column;
    text-align: center;
  }

  .job-detail-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .detail-table .label {
    min-width: auto;
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .detail-table tr {
    display: block;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
  }

  .detail-table td {
    display: block;
    padding: 0;
    border: none;
  }

  .modal-job-detail .modal-content {
    border-radius: 12px;
  }

  .modal-job-detail .modal-header {
    padding: 16px;
  }

  .modal-job-detail .modal-title {
    font-size: 16px;
  }

  .modal-body {
    padding: 16px;
  }

  .modal-footer {
    padding: 16px;
  }

  .detail-description {
    font-size: 13px;
    padding: 12px;
  }

  .empty-state {
    padding: 60px 16px;
  }

  .empty-icon {
    font-size: 60px;
  }

  .empty-state h4 {
    font-size: 20px;
  }

  .empty-state p {
    font-size: 13px;
  }
}


