html, body {
  font-family: 'Dosis', sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
  background-color: white;
  color: #001F5B;
  scroll-behavior: smooth;
}

@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #001F5B 0%, #003d99 100%);
  color: white;
  padding: 50px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 3.0rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.0rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Button Styles */
.btn-primary-custom {
  background: #FD652F !important;
  border: none !important;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  color: white !important;
}

.btn-primary-custom:hover {
  background: #e55527 !important;
  transform: translateY(-2px);
}

/* Section Styles */
.section-white {
  background-color: white;
  padding: 80px 0;
}

.section-light {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.section-blue {
  background-color: #001F5B;
  color: white;
  padding: 80px 0;
}

/* Section Headings */
.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FD652F;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

/* Team member cards */
.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 31, 91, 0.1);
  transition: all 0.3s ease;
  border: none;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 31, 91, 0.2);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-card .card-body {
  padding: 1.5rem;
  position: relative;
}

.team-card .card-title {
  font-weight: 700;
  color: #001F5B;
  margin-bottom: 0.5rem;
}

.team-card .card-text {
  color: #666;
  font-size: 0.95rem;
}

/* LinkedIn icon in card body */
.team-card .linkedin-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #0077B5;
  font-size: 24px;
  transition: all 0.3s ease;
}

.team-card .linkedin-icon:hover {
  color: #005885;
  transform: scale(1.2);
}

/* Navbar Enhancement */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

/* Logo sizing */
.navbar-brand img {
  width: 200px;
  height: auto;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #FD652F !important;
}

/* Carousel Enhancement */
.carousel {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background-color: white;
}

.carousel-item img {
  height: 400px;
  object-fit: cover;
}

.section-spacing {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

/* Responsive video container */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Accordion Styling */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  background-color: #001F5B;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
  background-color: #FD652F;
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #FD652F;
}

#contactanos {
  text-align: center;
  background-color: #ddd;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #001F5B 0%, #003d99 100%);
  color: white;
  padding: 40px 20px;
  text-align: center;
  position: relative; 
  margin-top: auto;
  width: 100%;
}

footer a {
  color: #FD652F;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #e55527;
}

/* Social Buttons in Footer */
.rounded-social-buttons {
  text-align: center;
  margin: 30px 0;
}

.rounded-social-buttons .social-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border: 2px solid transparent;
  padding: 0;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  font-size: 25px;
  font-weight: normal;
  line-height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 10px;
  background: #FD652F;
}

.rounded-social-buttons .social-button:hover {
  transform: scale(1.1) rotate(360deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .carousel-item img {
    height: 250px;
  }
}
