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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #194a7a;
  transition: all 0.3s ease;
}

a:hover {
  color: #476f95;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #194a7a;
  margin-bottom: 15px;
  position: relative;
}

.section-header .underline {
  width: 80px;
  height: 4px;
  background: #476f95;
  margin: 0 auto;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary, .btn-overlay {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: #194a7a;
  color: #ffffff;
  border: 2px solid #194a7a;
}

.btn-primary:hover {
  background-color: #123b62;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: #194a7a;
  border: 2px solid #194a7a;
}

.btn-secondary:hover {
  background-color: #194a7a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-tertiary {
  background-color: transparent;
  color: #476f95;
  border: none;
  padding: 8px 0;
  position: relative;
}

.btn-tertiary:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #476f95;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

.btn-tertiary:hover {
  color: #194a7a;
}

.btn-tertiary:hover:after {
  width: 100%;
}

.btn-overlay {
  background-color: #ffffff;
  color: #194a7a;
  border: none;
}

.btn-overlay:hover {
  background-color: #194a7a;
  color: #ffffff;
}

.text-link {
  color: #476f95;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.text-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.text-link:hover {
  color: #194a7a;
}

.text-link:hover i {
  transform: translateX(5px);
}

/* Header/Navigation */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

header.scrolled .logo span {
  color: #194a7a;
}

header.scrolled .nav-menu a {
  color: #FFFFFF;
}

header.scrolled .nav-menu a:hover {
  color: #194a7a;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.3s ease;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu .btn-primary {
  color: #ffffff !important;
}

.nav-menu li {
  margin: 0 15px;
}

.nav-menu li:last-child {
  margin-right: 0;
}

.nav-menu a {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}

.nav-menu a:hover {
  color: #d1dbe4;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .hero-content {
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  border-right: 3px solid transparent;
  animation: blink 1s step-end infinite;
  white-space: nowrap;
  overflow: hidden;
}

.hero .hero-content p {
  font-size: 1.2rem;
  color: #d1dbe4;
  margin-bottom: 30px;
}

.hero .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(25, 74, 122, 0.9), rgba(71, 111, 149, 0.8));
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: #ffffff;
}

.about .about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  opacity: 0;
  transition: opacity 1s ease;
}

.about .about-content.reveal {
  opacity: 1;
}

.about .about-content.reveal .about-text {
  animation: slideInLeft 1s forwards;
}

.about .about-content.reveal .about-slider {
  animation: slideInRight 1s forwards;
}

.about .about-text {
  flex: 1;
}

.about .about-text h3 {
  font-size: 2rem;
  color: #194a7a;
  margin-bottom: 20px;
}

.about .about-text p {
  margin-bottom: 15px;
  color: #666666;
}

.about .about-slider {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about .about-slider .slide-image {
  height: 400px;
  background-size: cover;
  background-position: center;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: #d1dbe4;
}

.services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.services .service-card {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.services .service-card:hover .service-icon {
  background-color: #194a7a;
  color: #ffffff;
}

.services .service-card .service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #d1dbe4;
  color: #194a7a;
  font-size: 2rem;
  border-radius: 50%;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.services .service-card h3 {
  font-size: 1.5rem;
  color: #194a7a;
  margin-bottom: 15px;
}

.services .service-card p {
  color: #666666;
  margin-bottom: 25px;
}

/* Showcase Section */
.showcase {
  padding: 100px 0;
  background-color: #ffffff;
}

.showcase .showcase-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.showcase .showcase-filter .filter-btn {
  background: none;
  border: 2px solid #a3b7ca;
  color: #666666;
  padding: 8px 20px;
  margin: 0 10px 10px 0;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.showcase .showcase-filter .filter-btn:hover,
.showcase .showcase-filter .filter-btn.active {
  background-color: #194a7a;
  border-color: #194a7a;
  color: #ffffff;
}

.showcase .showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.showcase .showcase-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.showcase .showcase-item .showcase-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
}

.showcase .showcase-item .showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 74, 122, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.showcase .showcase-item .showcase-overlay h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.showcase .showcase-item .showcase-overlay p {
  color: #d1dbe4;
  margin-bottom: 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.2s;
}

.showcase .showcase-item .showcase-overlay .btn-overlay {
  transform: translateY(20px);
  transition: all 0.3s ease 0.3s;
}

.showcase .showcase-item:hover .showcase-image {
  transform: scale(1.1);
}

.showcase .showcase-item:hover .showcase-overlay {
  opacity: 1;
}

.showcase .showcase-item:hover .showcase-overlay h3,
.showcase .showcase-item:hover .showcase-overlay p,
.showcase .showcase-item:hover .showcase-overlay .btn-overlay {
  transform: translateY(0);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background-image: url('cta-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(25, 74, 122, 0.95), rgba(71, 111, 149, 0.9));
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta .cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta .cta-content h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta .cta-content p {
  font-size: 1.2rem;
  color: #d1dbe4;
  margin-bottom: 30px;
}

/* Team Section */
.team {
  padding: 100px 0;
  background-color: #ffffff;
}

.team .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team .team-member:hover .member-image {
  transform: scale(1.05);
}

.team .team-member .member-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
}

.team .team-member .member-info {
  padding: 25px;
  text-align: center;
}

.team .team-member .member-info h3 {
  font-size: 1.5rem;
  color: #194a7a;
  margin-bottom: 5px;
}

.team .team-member .member-info .member-title {
  color: #476f95;
  font-weight: 600;
  margin-bottom: 15px;
}

.team .team-member .member-info .member-bio {
  color: #666666;
  margin-bottom: 20px;
}

.team .team-member .member-info .member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team .team-member .member-info .member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #d1dbe4;
  color: #194a7a;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.team .team-member .member-info .member-social a:hover {
  background-color: #194a7a;
  color: #ffffff;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: #d1dbe4;
}

.testimonials .testimonial-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonials .testimonial-card .quote {
  font-size: 2rem;
  color: #7593af;
  margin-bottom: 20px;
}

.testimonials .testimonial-card .testimonial-text {
  color: #666666;
  font-style: italic;
  margin-bottom: 25px;
}

.testimonials .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-card .testimonial-author .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-right: 15px;
}

.testimonials .testimonial-card .testimonial-author .author-info h4 {
  color: #194a7a;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonials .testimonial-card .testimonial-author .author-info p {
  color: #666666;
  font-size: 0.9rem;
}

.testimonials .swiper-pagination-bullet {
  background-color: #7593af;
}

.testimonials .swiper-pagination-bullet-active {
  background-color: #194a7a;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: #ffffff;
}

.contact .contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact .contact-info .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact .contact-info .info-item i {
  font-size: 1.5rem;
  color: #194a7a;
  margin-right: 20px;
  margin-top: 5px;
}

.contact .contact-info .info-item h3 {
  font-size: 1.2rem;
  color: #194a7a;
  margin-bottom: 5px;
}

.contact .contact-info .info-item p {
  color: #666666;
}

.contact .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact .contact-form .form-group {
  margin-bottom: 20px;
}

.contact .contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #476f95;
}

.contact .contact-form .form-group input,
.contact .contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #a3b7ca;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact .contact-form .form-group input:focus,
.contact .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #476f95;
  box-shadow: 0 0 0 3px rgba(71, 111, 149, 0.2);
}

.contact .contact-form button {
  width: 100%;
}

/* Footer */
footer {
  background-color: #194a7a;
  color: #ffffff;
  padding: 80px 0 0;
}

footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

footer .footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

footer .footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

footer .footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

footer .footer-links h4:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #7593af;
}

footer .footer-links ul li {
  margin-bottom: 10px;
}

footer .footer-links ul li a {
  color: #d1dbe4;
}

footer .footer-links ul li a:hover {
  color: #ffffff;
}

footer .footer-links .social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

footer .footer-links .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

footer .footer-links .social-icons a:hover {
  background-color: #ffffff;
  color: #194a7a;
}

footer .footer-links .newsletter h4 {
  font-size: 1rem;
  margin-bottom: 15px;
}

footer .footer-links .newsletter h4:after {
  display: none;
}

footer .footer-links .newsletter .newsletter-form {
  display: flex;
}

footer .footer-links .newsletter .newsletter-form input {
  flex: 1;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 0 15px;
  color: #ffffff;
}

footer .footer-links .newsletter .newsletter-form input::placeholder {
  color: #d1dbe4;
}

footer .footer-links .newsletter .newsletter-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

footer .footer-links .newsletter .newsletter-form button {
  width: 45px;
  height: 45px;
  background-color: #7593af;
  border: none;
  border-radius: 0 8px 8px 0;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

footer .footer-links .newsletter .newsletter-form button:hover {
  background-color: #476f95;
}

footer .footer-bottom {
  text-align: center;
  padding: 20px 0;
}

footer .footer-bottom p {
  font-size: 0.9rem;
  color: #a3b7ca;
}

/* Animations for scroll effects */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-element.animate {
  opacity: 1;
  transform: translateY(0);
}

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

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

@keyframes blink {
  0%, 100% {
    border-right-color: transparent;
  }
  50% {
    border-right-color: #ffffff;
  }
}

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 992px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 768px;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .contact .contact-content {
    grid-template-columns: 1fr;
  }
  
  footer .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 576px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero .hero-content h1 {
    font-size: 2.5rem;
    white-space: normal;
  }
  
  .hero .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about .about-content {
    flex-direction: column;
  }
  
  .about, .services, .showcase, .team, .testimonials, .contact {
    padding: 70px 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 10px 0;
  }
  
  .nav-menu a {
    color: #333333;
  }
  
  .nav-menu a:hover {
    color: #194a7a;
  }
  
  footer .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .hero .hero-content h1 {
    font-size: 2rem;
  }
  
  .about .about-slider .slide-image {
    height: 300px;
  }
  
  .about, .services, .showcase, .team, .testimonials, .contact {
    padding: 50px 0;
  }
  
  .contact .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  
  footer .footer-links {
    grid-template-columns: 1fr;
  }
}