body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

























.modern-page-header {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.85) 0%, rgba(13, 31, 54, 0.75) 100%);
}

.modern-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.modern-inner {
    width: 100%;
    padding: 40px 0;
    animation: fadeInUp 0.8s ease-out;
}

.modern-page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.modern-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 0.9rem;
}

.modern-breadcrumbs li {
    position: relative;
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.modern-breadcrumbs li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-breadcrumbs li a:hover {
    color: #4a90e2;
}

.modern-breadcrumbs li.active {
    color: #fff;
    font-weight: 500;
}

.modern-breadcrumbs li:not(:last-child)::after {
    content: '/';
    position: absolute;
    right: -12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== FOOTER STYLES ===== */
footer {
  background: linear-gradient(135deg, #1a3a5f 0%, #2c3e50 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 50px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.footer-icon:hover {
  background: rgba(74, 144, 226, 0.8);
  transform: scale(1.1);
}

.footer-icon i {
  font-size: 1.8rem;
  color: white;
}

.footer-box p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-box h6 {
  font-weight: 600;
  margin-top: 15px;
  color: #4a90e2;
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-icon.facebook {
  background: #3b5998;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.tiktok {
  background: #000000;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook:hover {
  background: #2d4373;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #2d46b9, #4054b2, #6a3093, #a12a76, #c13584);
}

.social-icon.tiktok:hover {
  background: #333333;
}

/* Font Awesome fallback for flaticon classes */
.flaticon-world-globe:before {
  content: "🌎";
  font-family: 'Font Awesome 6 Free';
}

.flaticon-envelope:before {
  content: "✉️";
  font-family: 'Font Awesome 6 Free';
}

.flaticon-phone-1:before {
  content: "📞";
  font-family: 'Font Awesome 6 Free';
}

/* Alternative using Font Awesome classes directly */
.footer-icon .fa-globe:before {
  content: "\f0ac";
}

.footer-icon .fa-envelope:before {
  content: "\f0e0";
}

.footer-icon .fa-phone:before {
  content: "\f095";
}

/* Responsive Design */
@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
    margin-top: 30px;
  }
  
  .footer-grid {
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-box {
    padding: 15px;
  }
  
  .footer-icon {
    width: 60px;
    height: 60px;
  }
  
  .footer-icon i {
    font-size: 1.5rem;
  }
  
  .footer-social {
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-box {
    padding: 10px;
  }
  
  .footer-social {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Animation for footer elements */
.footer-box {
  animation: fadeInUp 0.6s ease-out;
}

.footer-box:nth-child(1) { animation-delay: 0.1s; }
.footer-box:nth-child(2) { animation-delay: 0.2s; }
.footer-box:nth-child(3) { animation-delay: 0.3s; }

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

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

@media (max-width: 768px) {
    .modern-page-header {
        min-height: 70vh;
    }
    
    .modern-page-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 15px;
    }
    
    .modern-breadcrumbs {
        font-size: 0.85rem;
    }
    
    .modern-breadcrumbs li {
        margin-right: 15px;
    }
    
    .modern-breadcrumbs li:not(:last-child)::after {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .modern-page-header {
        min-height: 60vh;
    }
    
    .modern-page-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    
    .modern-breadcrumbs {
        font-size: 0.8rem;
    }
}
















































.contact-section {
  background-color: #ebebff;
  padding: 80px 40px;
  margin: 50px 0;
}

.contact-container {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-map, .contact-form {
  flex: 1;
  min-width: 320px;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.custom-contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.custom-contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.custom-contact-form input, .custom-contact-form textarea {
  flex: 1;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  transition: border-color 0.3s;
}

.custom-contact-form input:focus, 
.custom-contact-form textarea:focus {
  border-color: #555;
  outline: none;
}

.custom-contact-form button {
  background: #0073e6;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.custom-contact-form button:hover {
  background: #005bb5;
}

.custom-contact-form .form-cta {
  margin-top: 15px;
  color: #555;
}

.custom-contact-form .form-cta span {
  font-weight: bold;
  margin-left: 8px;
}