* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utility Bar */
.utility-bar {
  background-color: #002856;
  color: white;
  font-size: 14px;
  padding: 8px 0;
}

.utility-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-left,
.utility-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.utility-link:hover {
  color: #FFD200;
}

.phone {
  font-weight: 600;
}

/* Main Header */
.main-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Navigation */
.main-nav {
  flex: 1;
  margin: 0 40px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #002856;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 0;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #0064A0;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -100px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-top: 3px solid #0064A0;
  min-width: 800px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px;
  gap: 40px;
}

.mega-column h3 {
  color: #002856;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #FFD200;
}

.mega-column ul {
  list-style: none;
}

.mega-column li {
  margin-bottom: 8px;
}

.mega-column a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.mega-column a:hover {
  color: #0064A0;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #FECB00;
  color: #022244;
}

.btn-primary:hover {
  background-color: #F0AB00;
}

.btn-secondary {
  background-color: #0064A0;
  color: white;
  border: 2px solid #0064A0;
}

.btn-secondary:hover {
  background-color: #003C64;
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #002856;
  margin: 3px 0;
  transition: 0.3s;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  padding: 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  color: #002856;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.mobile-nav-close:hover {
  background-color: #f8f9fa;
}

.mobile-nav-list {
  list-style: none;
}

.mobile-nav-item {
  margin-bottom: 15px;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #002856;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.3s;
  cursor: pointer;
}

.mobile-nav-link:hover {
  color: #0064A0;
}

.mobile-submenu {
  display: none;
  padding: 20px 0 0 20px;
  background-color: #f8f9fa;
  margin-top: 10px;
  border-radius: 5px;
}

.mobile-submenu.active {
  display: block;
}

.mobile-submenu-item {
  margin: 0;
}

.mobile-submenu-link {
  display: block;
  color: #666;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  transition: color 0.3s;
}

.mobile-submenu-link:hover {
  color: #0064A0;
}

.mobile-nav-toggle {
  background: none;
  border: none;
  color: #002856;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.mobile-nav-toggle:hover {
  background-color: #f0f0f0;
}


/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 60px 40px;
  background: linear-gradient(135deg, #002856 0%, #0064A0 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Diagonal blend effect */
.hero-content::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 200px;
  height: 100%;
  background: linear-gradient(135deg, #0064A0 0%, rgba(0, 100, 160, 0.8) 50%, rgba(0, 100, 160, 0.3) 100%);
  clip-path: polygon(50% 0%, 100% 0%, 50% 100%, 0% 100%);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 3;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* Image overlay for better blending */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 40, 86, 0.4) 0%,
    rgba(0, 100, 160, 0.2) 30%,
    transparent 60%
  );
  z-index: 1;
}

/* Alternative curved blend effect (uncomment to use instead of diagonal) */
/*
.hero-content::after {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 100px;
  height: 100%;
  background: linear-gradient(135deg, #0064A0 0%, rgba(0, 100, 160, 0.6) 70%, transparent 100%);
  border-radius: 0 0 0 50%;
  z-index: 1;
}
*/

/* Button Styles */
 .btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

/*.btn-primary {
  background: white;
  color: #002856;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}
*/
.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #002856;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-content {
    padding: 40px 20px;
    order: 2;
  }
  
  .hero-content::after {
    display: none;
  }
  
  .hero-image {
    min-height: 300px;
    order: 1;
  }
  
  .image-overlay {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 40, 86, 0.3) 100%
    );
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .btn {
    flex: 1;
    max-width: 200px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 30px 15px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Additional enhancement: Subtle animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text h1,
.hero-text p,
.hero-actions {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-text p {
  animation-delay: 0.2s;
}

.hero-actions {
  animation-delay: 0.4s;
}


/* Quick Actions */
.quick-actions {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.action-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.action-icon {
  margin-bottom: 20px;
}

.action-card h3 {
  color: #002856;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.action-card p {
  color: #666;
  margin-bottom: 20px;
}

.action-link {
  color: #0064A0;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.action-link:hover {
  border-bottom-color: #0064A0;
}

/* Featured Services */
.featured-services {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #002856;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  color: #002856;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  color: #0064A0;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.service-link:hover {
  border-bottom-color: #0064A0;
}

/* News & Events */
.news-events {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.view-all {
  color: #0064A0;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.view-all:hover {
  border-bottom-color: #0064A0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 25px;
}

.news-date {
  color: #999;
  font-size: 14px;
  font-weight: 600;
}

.news-content h3 {
  color: #002856;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 15px;
  line-height: 1.4;
}

.news-content p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.news-link {
  color: #0064A0;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.news-link:hover {
  border-bottom-color: #0064A0;
}

/* Footer */
.main-footer {
  background-color: #002856;
  color: white;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD200;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #FFD200;
}

.contact-info p {
  margin-bottom: 15px;
  color: #ccc;
}

/* SOCIAL ICONS BELOW */

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  color: #ccc;
  text-decoration: none;
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-color: currentColor;
}

/* Brand-specific hover colors */
.social-link.facebook:hover {
  color: #1877F2;
}

.social-link.twitter:hover {
  color: #1DA1F2;
}

.social-link.instagram:hover {
  color: #E4405F;
}

.social-link.linkedin:hover {
  color: #0A66C2;
}

/* SOCIAL ICONS ABOVE */

.footer-bottom {
  border-top: 1px solid #004080;
  padding: 20px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ccc;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #FFD200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .mega-menu {
    min-width: 600px;
  }
  
  .mega-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .actions-grid,
  .services-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    display: none;
  }
  
  .hero {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-image img {
    height: 300px;
  }
  
  .hero-text h1 {
    font-size: 32px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .actions-grid,
  .services-grid,
  .news-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .utility-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .utility-left,
  .utility-right {
    justify-content: center;
  }
}