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

    header {
      background-color: #fff;
  color: #00000;
  padding: 1rem 1rem 1rem;
  font-family: 'Segoe UI', Roboto, sans-serif;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo img {
      height: 40px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
      align-items: center;
    }

    nav ul li {
      position: relative;
    }

    nav ul li a {
      color: black;
      text-decoration: none;
      padding: 8px 12px;
      display: block;
		font-size:20px
    }

    nav ul li:hover > ul {
      display: block;
    }

    nav ul li ul {
      display: none;
      position: absolute;
      top: 100%;
      background-color: #DDDDDD;
      padding: 10px 0;
      min-width: 160px;
    }

    nav ul li ul li a {
      padding: 10px 15px;
    }

    nav ul li ul li a:hover {
      background-color: #E6E6E6;
    }

    /* Mobile menu hidden */
    .menu-toggle,
    .hamburger {
      display: none;
    }

    @media (max-width: 980px) {
      nav ul {
        flex-direction: column;
        background-color: #002d62;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        display: none;
      }

     .menu-toggle:checked ~ nav ul {
  display: flex;
}

      .hamburger {
        display: block;
        cursor: pointer;
		  z-index: 1001;
		  
      }

      .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px;
        background-color: #ddd;
      }
    }
  
/* Make container take full width with padding */

p{
	font-size:18px;
	font-family: "IBM Plex Sans", sans-serif;
}
.contact-hero {
  width: 100%;
  padding: 2rem 1rem;
  background-color: #f9f9f9;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  margin: 0.5rem 0;
  color: #002d62;
}

.hero-subheading {
  font-size: 1.5rem;
  margin: 0.5rem 0;
  color: #555;
}

.tagline {
  font-size: 1rem;
  margin: 1rem 0;
  color: #333;
}

.imageContainer img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 2rem 0;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary {
  background-color: #002d62;
  color: #fff;
}

.btn-secondary {
  background-color: #e0e0e0;
  color: #002d62;
}

.btn:hover {
  opacity: 0.9;
}


.section-title {
  text-align: center;
	margin-top: 3rem;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #003366;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.section-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.section-card:hover {
  transform: translateY(-5px);
}

.section-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.75rem;
}

.section-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Desktop view */
@media (min-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr 1fr;
  }
}


.cta-section {
  background: linear-gradient(135deg, #0f172a, #1e293b); /* Navy slate gradient */
  color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
  border-radius: 1rem;
  margin-top: 4rem;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e2e8f0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background-color: #3b82f6;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #2563eb;
}

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

.btn-secondary:hover {
  background-color: #1e40af;
  border-color: #1e40af;
}



    /* Mobile styles */
    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        width: 200px;
        padding: 1rem 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
      }

      .menu-toggle:checked ~ nav ul {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      /* Animate hamburger to X */
      .menu-toggle:checked + .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }

      .menu-toggle:checked + .hamburger span:nth-child(2) {
        opacity: 0;
      }

      .menu-toggle:checked + .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
      }
    }


/* Type in or/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumbs {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Assessment Tools */
.assessment-btn, .register-btn {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.assessment-btn:hover, .register-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Resource Categories */
.category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.resource-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.resource-item:last-child {
    border-bottom: none;
}

.resource-item.featured {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #3b82f6;
}

.resource-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.wp-image-52{
	width:100%
}
/* Contact Form Styles */
.manufacturing-contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
}

/* Timeline Styles */
.timeline-step, .pathway-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number, .process-step .step-number {
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3, .process-step h5 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-details {
    list-style: none;
    padding: 0;
}

.step-details li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.step-details li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Methodology Specific Styles */
.pillar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.pillar-card.revolutionary {
    border-left-color: #ef4444;
}

.pillar-card.flexible {
    border-left-color: #3b82f6;
}

.pillar-card.quantifiable {
    border-left-color: #10b981;
}

.pillar-card.profitable {
    border-left-color: #f59e0b;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.pillar-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
}

.pillar-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Process Flow */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    position: relative;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
}

/* Market Opportunities Specific */
.sector-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border-left: 6px solid transparent;
}

.sector-card.ev-sector {
    border-left-color: #10b981;
}

.sector-card.lifesciences-sector {
    border-left-color: #3b82f6;
}

.sector-card.energy-sector {
    border-left-color: #f59e0b;
}

.sector-card.reshoring-sector {
    border-left-color: #8b5cf6;
}

.sector-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sector-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.sector-investment {
    color: #059669;
    font-weight: 700;
    font-size: 1.1rem;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.opportunity-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
}

.requirements-box {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #bfdbfe;
    margin-top: 2rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.requirements-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.requirements-list li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Investment Tiers */
.investment-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tier-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.tier-card.growth-tier {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.tier-header {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    text-align: center;
}

.tier-card.growth-tier .tier-header {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

.investment-range {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
}

.tier-card.growth-tier .investment-range {
    color: #fbbf24;
}

.tier-content {
    padding: 2rem;
}

.tier-requirements {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.tier-requirements li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tier-requirements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.tier-opportunities {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    border-left: 3px solid #0ea5e9;
}

/* Stats and Metrics */
.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #3b82f6;
}

.metric-card.primary {
    border-top-color: #10b981;
}

.metric-card.secondary {
    border-top-color: #f59e0b;
}

.metric-card.tertiary {
    border-top-color: #ef4444;
}

.metric-card.quaternary {
    border-top-color: #8b5cf6;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4b5563;
    margin-top: 0.5rem;
}

.metric-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Contact Page Specific */
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-link {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.method-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.business-hours {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

.hours-list {
    margin: 1rem 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
}

.time {
    color: #4b5563;
}

.hours-note {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.emergency-contact {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    padding: 3rem 0;
    border-top: 4px solid #ef4444;
}

.emergency-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-info h2 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.emergency-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-emergency {
    background: #dc2626 !important;
    border-color: #dc2626 !important;
}

.btn-emergency:hover {
    background: #b91c1c !important;
}

.emergency-note {
    font-size: 0.9rem;
    color: #7f1d1d;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline-step, .pathway-step {
        flex-direction: column;
        text-align: center;
    }
    
    .sector-header {
        flex-direction: column;
        text-align: center;
    }
    
    .opportunities-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-tiers {
        grid-template-columns: 1fr;
    }
    
    .tier-card.growth-tier {
        transform: none;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .pillar-grid, .section-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .page-header {
        background: none !important;
        color: #000 !important;
    }
    
    .btn, .assessment-btn, .register-btn {
        display: none;
    }
    
    .contact-method, .metric-card, .pillar-card, .sector-card {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
    
    .emergency-contact {
        display: none;
    }
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.btn:focus,
.assessment-btn:focus,
.register-btn:focus,
.contact-link:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .pillar-card, .sector-card, .metric-card {
        border: 2px solid #000;
    }
    
    .btn {
        border: 2px solid #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .pillar-card, .section-card, .metric-card {
        transition: none;
    }
    
    .pillar-card:hover, .section-card:hover {
        transform: none;
    }
}

/* Dark Mode Support (if implemented) */
@media (prefers-color-scheme: dark) {
    .pillar-card, .sector-card, .metric-card, .contact-method {
        background: #1f2937;
        color: #f9fafb;
        border-color: #374151;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        background: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }
    
    .requirements-box {
        background: #1e3a8a;
        border-color: #3b82f6;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.linker{
	text-decoration:none
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

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

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #3b82f6;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-primary { color: #3b82f6; }
.text-success { color: #10b981; }
.text-warning { color: #f59e0b; }
.text-error { color: #ef4444; }
.bg-light { background-color: #f8fafc; }
.bg-white { background-color: white; }
.rounded { border-radius: 6px; }
.rounded-lg { border-radius: 12px; }
.shadow { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.shadow-lg { box-shadow: 0 10px 30px rgba(0,0,0,0.12); }

/* End of Additional CSS */

.company-overview{
	background-color:white
}

/* Footer Start */
.full-width-footer {
  background-color: #002d62;
  color: #ffffff;
  padding: 3rem 1rem 2rem;
  font-family: 'Segoe UI', Roboto, sans-serif;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}


.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2rem;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffdd57;
}

.footer-section p,
.footer-section ul,
.footer-section li,
.footer-section a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin: 0.3rem 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-section a:hover {
  color: #ffdd57;
  text-decoration: underline;
}

.footer-bottom {
  background-color: #001b3a;
  padding-top: 1.5rem;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-content p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffdd57;
  text-decoration: underline;
}

.footer-tagline {
  text-align: center;
  padding: 1rem;
  color: #ddd;
  font-size: 0.95rem;
  font-style: italic;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .footer-content,
  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    margin-top: 0.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-tagline {
    font-size: 0.85rem;
  }
}


/* Footer End */
   