/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.col-md-12, .col-md-6, .col-md-4, .col-md-8,
.col-sm-12, .col-sm-6, .col-sm-7, .col-sm-5, .col-sm-8 {
  padding: 15px;
}

.col-md-12 { width: 100%; }
.col-md-6 { width: 50%; }
.col-md-4 { width: 33.333%; }
.col-md-8 { width: 66.666%; }
.col-sm-12 { width: 100%; }
.col-sm-6 { width: 50%; }
.col-sm-7 { width: 58.333%; }
.col-sm-5 { width: 41.666%; }
.col-sm-8 { width: 66.666%; }

.text-center { text-align: center; }
.text-right { text-align: right; }

/* Header Styles */
header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-part__block {
  background: #003d7a;
  color: #fff;
  padding: 15px 0;
  font-size: 14px;
}

.top-part__block p {
  margin: 0;
}

.middel-part__block {
  padding: 20px 0;
  background: #fff;
}

.logo img {
  max-width: 150px;
  height: auto;
}

.top-info__block {
  padding: 10px 0;
}

.top-info__block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-info__block li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.top-info__block i {
  color: #ffa500;
  font-size: 18px;
  margin-top: 2px;
}

.top-info__block p {
  margin: 0;
  font-size: 13px;
}

.top-info__block p span {
  display: block;
  font-size: 12px;
  color: #666;
}

.top-info__block a {
  color: #003d7a;
  text-decoration: none;
}

.top-info__block a:hover {
  text-decoration: underline;
}

/* Navigation */
.main_nav {
  background: #fff;
  border-top: 1px solid #eee;
}

.navbar {
  background: #fff;
  border: none;
  margin: 0;
  padding: 0;
}

.navbar-default {
  background: #fff;
  border: none;
}

.navbar-header {
  padding: 0;
}

.navbar-toggle {
  border: 1px solid #ddd;
  background: #f5f5f5;
}

.navbar-toggle:hover {
  background: #e5e5e5;
}

.nav.navbar-nav {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav.navbar-nav > li {
  position: relative;
}

.nav.navbar-nav > li > a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav.navbar-nav > li > a:hover {
  background: #f5f5f5;
  color: #003d7a;
}

.nav.navbar-nav > li > a.custom-btn {
  background: #ffa500;
  color: #fff;
  border-radius: 3px;
  margin: 10px 0;
}

.nav.navbar-nav > li > a.custom-btn:hover {
  background: #ff8c00;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  list-style: none;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav.navbar-nav > li:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #003d7a;
  padding-left: 25px;
}

/* Banner */
.main-banner {
  background: linear-gradient(135deg, #003d7a 0%, #0066cc 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.rev_slider_wrapper {
  width: 100%;
  height: 400px;
}

.rev_slider {
  width: 100%;
  height: 100%;
}

.rev-slidebg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Section */
.about-section {
  padding: 60px 0;
  background: #fff;
}

.about-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.about-section h2 span {
  color: #ffa500;
}

.about-section h3 {
  font-size: 24px;
  margin: 40px 0 20px 0;
  color: #333;
}

.b-line {
  display: block;
  width: 60px;
  height: 3px;
  background: #ffa500;
  margin: 15px auto 30px;
}

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

.about-section table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.about-section table td {
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 18px;
}

.padding {
  padding: 60px 0;
}

.ptb-xs-60 {
  padding: 60px 0;
}

/* Keynote Speakers */
.testimonial-block__section {
  background: #f9f9f9;
  padding: 60px 0;
}

.heading-box {
  margin-bottom: 30px;
}

.heading-box h2 {
  font-size: 32px;
  color: #333;
}

.heading-box h2 span {
  color: #ffa500;
}

.team-pagination {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.team-member {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.inner-box {
  display: flex;
  height: 100%;
}

.inner-box .col-sm-5 {
  padding: 0;
  overflow: hidden;
}

.inner-box .col-sm-5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-box .col-sm-7 {
  padding: 20px;
  display: flex;
  align-items: center;
}

.quote-box {
  width: 100%;
}

.quote-icon {
  font-size: 24px;
  color: #ffa500;
  margin-bottom: 10px;
}

.quote-left {
  display: block;
}

.quote-text {
  margin: 10px 0;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

.quote-right {
  display: block;
  margin-top: 10px;
  font-size: 12px;
}

.quote-author {
  display: block;
  color: #003d7a;
  font-weight: 600;
  margin-top: 5px;
}

/* Patrons Section */
.progress_wrap__block {
  background: #fff;
  padding: 60px 0;
}

.section_title__block {
  margin-bottom: 30px;
}

.section_title__block h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 15px;
}

.section_title__block .b-line {
  margin: 15px auto;
}

.progress_wrap__block table {
  width: 100%;
}

.progress_wrap__block table td {
  text-align: center;
  padding: 20px;
}

.progress_wrap__block img {
  max-width: 100%;
  height: auto;
  margin: 0 10px;
}

/* Footer */
footer {
  background: #003d7a;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  font-size: 13px;
}

#copyright {
  margin: 0;
}

/* Utility Classes */
.mb-30 { margin-bottom: 30px; }
.mb-20 { margin-bottom: 20px; }
.pb-15 { padding-bottom: 15px; }
.pb-30 { padding-bottom: 30px; }
.ptb-15 { padding: 15px 0; }

/* Responsive */
@media (max-width: 768px) {
  .col-md-12, .col-md-6, .col-md-4, .col-md-8 {
    width: 100%;
  }
  
  .nav.navbar-nav {
    flex-direction: column;
  }
  
  .nav.navbar-nav > li > a {
    padding: 10px 15px;
  }
  
  .top-info__block {
    text-align: left;
  }
  
  .team-member {
    width: 100%;
  }
  
  .inner-box {
    flex-direction: column;
  }
  
  .inner-box .col-sm-5,
  .inner-box .col-sm-7 {
    width: 100%;
    padding: 15px;
  }
}
