* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-dark: #1e40af;
    --secondary-color: #14b8a6;
    --accent-color: #f97316;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  /* padding: 5px 10px; */
  height: 100px;
  padding-right: 50px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo_img {
  height: 150px;
  margin-left: 10px;  
}

.logo .company-name {
  color: navy;
  font-weight: bold;
  font-size: 24px;
}

.logo small {
  display: block;
  font-size: 14px;
  color: #d32f2f;
  padding-left: 40px;
}

.contact-info {
  display: flex;
  align-items: center;
}

.contact-item {
  background-color: #ffebee;
  color: #d32f2f;
  padding: 5px;
  border-radius: 10px;
  margin-left: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center; /* center horizontally */
  margin-right: 5px;
}

.contact-item i {
  font-size: 28px; /* adjust size to fit nicely */
}
.contact-label {
  color: #d32f2f;
  font-weight: bold;
}
.whatsapp {
  background-color: #2aba4c;
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  margin-left: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.whatsapp i {
  font-size: 35px;
}

.nav-bar {
  background-color: #0c387a;
  padding: 10px 30px;
  position: relative;
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

.nav-bar ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-bar li {
  margin: 0 5px;
  position: relative;
}

.nav-bar a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  transition: background-color 0.3s, color 0.3s;
}

.nav-bar a:hover {
  background-color: white;
  color: #0d47a1;
  border-radius: 10px;
}

.dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #0c387a;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

/* Style for dropdown arrows */
.nav-bar ul li a i {
    font-size: 14px;          /* adjust icon size */
    margin-left: 6px;         /* push icon a bit to the right */
    position: relative;
    top: 1.5px;                 /* move icon slightly down */
    color:white;              /* optional: set color */
    transition: transform 0.3s ease;
}

/* Optional: Rotate arrow on hover */
.nav-bar ul li:hover > a i {
    transform: rotate(180deg);
     color: #0d47a1;
}


.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content {
  display: block;
}

.dropdown-content li {
  margin: 0;
}

.dropdown-content a {
  padding: 10px 15px;
}

.dropdown-content a:hover {
  background-color: white;
  color: #0d47a1;
}

.contact-button {
  background-color: rgb(79, 184, 225);
  border-radius: 5px;
}

.contact-button:hover {
  background-color: white;
  color: #0d47a1;
}

.gradient {
  height: 10px;
  background: linear-gradient(to bottom, #0d47a1, #64b5f6);
}

/* Media Queries for Responsiveness */

/* For tablets and smaller desktops (max-width: 1024px) */
@media (max-width: 1024px) {
  .top-bar {
    padding-right: 20px;
    height: auto;
  }

  .logo_img {
    height: 120px;
  }

  .logo .company-name {
    font-size: 18px;
  }

  .logo small {
    font-size: 10px;
    padding-left: 20px;
  }

  .contact-item {
    width: 50px;
    height: 50px;
  }

  .contact-item i {
    font-size: 24px;
  }

  .contact-label,
  .contact-value {
    font-size: 14px;
  }

  .whatsapp {
    padding: 8px 12px;
  }

  .whatsapp i {
    font-size: 30px;
  }

  .nav-bar {
    padding: 10px 20px;
  }

  .nav-bar a {
    padding: 8px 12px;
  }
}

/* For mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    height: auto;
  }

  .logo {
    margin-bottom: 15px;
  }

  .logo_img {
    height: 100px;
  }

  .logo .company-name {
    font-size: 16px;
  }

  .logo small {
    font-size: 10px;
    padding-left: 10px;
  }

  .contact-info {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }

  .contact-item {
    width: 40px;
    height: 40px;
    margin-left: 5px;
  }

  .contact-item i {
    font-size: 20px;
  }

  .contact-label,
  .contact-value {
    font-size: 12px;
  }

  .whatsapp {
    padding: 6px 10px;
    margin-left: 5px;
  }

  .whatsapp i {
    font-size: 25px;
  }

  .nav-bar {
    padding: 20px;
  }

  .menu-toggle {
    display: block;
    top: 10px;
  }

  .nav-bar ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background-color: #0c387a;
    z-index: 10;
  }

  .nav-bar ul.open {
    display: flex;
  }

  .nav-bar li {
    margin: 0;
    text-align: center;
  }

  .nav-bar a {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown .dropdown-content {
    position: static;
    box-shadow: none;
    display: none;
  }

  .dropdown:hover .dropdown-content,
  .dropdown.open .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    padding: 10px 20px;
    text-align: center;
  }
}

/* For smaller mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .logo {
    /* flex-direction: colum; */
    align-items: center;
  }

  .logo_img {
    height: 80px;
    margin-bottom: 5px;
  }

  .logo .company-name {
    font-size: 14px;
  }

  .logo small {
    padding-left: 0;
    font-size: 9px;
  }

  .contact-info > div:not(.contact-item) {
    font-size: 12px;
  }

  .contact-value {
    word-break: break-all;
  }
}

/* Enhanced Footer Styling */
.footer {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #1d4ed8 50%, #2563eb 75%, #1e40af 100%);
  color: #ffffff;
  padding: 60px 0 0;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.footer-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 0 40px 40px;
  z-index: 1;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #e2e8f0;
  position: relative;
  margin-right:100px ;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #34d399);
  border-radius: 1px;
}

.footer-brand .company-logo h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-description {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #cbd5e1;
  font-weight: 400;
}

.payment-section h5 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #e2e8f0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.payment-icon img {
  width: 36px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links li a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #60a5fa, #34d399);
  transition: width 0.3s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links li a:hover::before {
  width: 100%;
}

.footer-contact .contact-info1 {
  margin-bottom: 32px;
}

.contact-item1 {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: #cbd5e1;
}

.contact-item1 i {
  width: 18px;
  margin-right: 12px;
  color: #60a5fa;
  font-size: 14px;
}

.social-section h5 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #e2e8f0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook:hover {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
  border-color: #1877f2;
}

.social-icon.instagram:hover {
 background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);

  border-color: #e4405f;
}

.social-icon.youtube:hover {
  background: linear-gradient(135deg, #ff0000, #ff4444);
  border-color: #ff0000;
}

.social-icon.linkedin:hover {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
  border-color: #0077b5;
}

/* Bottom Section */
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.copyright p {
  font-size: 14px;
  color: #e2e8f0;
  font-weight: 400;
}

.footer-links-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links-bottom a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}

.footer-links-bottom a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.developer-credit p {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 400;
}

.highlight {
  color: #60a5fa;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 0 32px 40px;
  }
  
  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 968px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    padding: 0 24px 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-contact {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 20px 32px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 16px;
  }
  
  .footer-contact {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .contact-info1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-bottom-container {
    padding: 24px 20px;
    gap: 12px;
  }
  
  .footer-links-bottom {
    flex-direction: column;
    gap: 12px;
  }
  
  .separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .main-content h1 {
    font-size: 2rem;
  }
  
  .main-content p {
    font-size: 1rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px 24px;
  }
  
  .footer-brand .company-logo h3 {
    font-size: 24px;
  }
  
  .payment-icons {
    justify-content: center;
  }
  
  .footer-bottom-container {
    padding: 20px 16px;
  }
  
  .copyright p,
  .developer-credit p {
    font-size: 12px;
  }
  
  .footer-links-bottom a {
    font-size: 12px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

/* Focus states for accessibility */
.footer-links li a:focus,
.social-icon:focus,
.footer-links-bottom a:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Animation for loading */
.footer-column {
  animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
.footer-column:nth-child(5) { animation-delay: 0.5s; }
.footer-column:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effects for entire footer columns */
.footer-column:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

/* Enhanced visual hierarchy */
.footer-brand {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 40px;
}

/* Subtle glow effect on hover for payment icons */
.payment-icon:hover {
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(96, 165, 250, 0.3);
}

/* Enhanced contact items */
.contact-item1 {
  transition: all 0.3s ease;
  padding: 8px 0;
  border-radius: 6px;
}

.contact-item1:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 8px;
  margin-left: -8px;
}

.contact-item1:hover i {
  color: #34d399;
  transform: scale(1.1);
}
 
.contact-button {
    background-color: rgb(79, 184, 225);
    border-radius: 5px;
}
 
.contact-button:hover {
    background-color: white;
    color: #0d47a1;
}
 
.contact-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}
 
.contact-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}
 
.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}
 
.contact-hero p {
    font-size: 20px;
    color: var(--gray-200);
}
 
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}
 
.contact-form, .contact-info-section {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
 
.contact-form:hover, .contact-info-section:hover {
    transform: translateY(-5px);
}
 
.contact-form h2, .contact-info-section h2 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}
 
.contact-form h2::after, .contact-info-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}
 
.form-group {
    margin-bottom: 20px;
}
 
.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 16px;
}
 
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 16px;
    background: var(--gray-50);
    transition: border-color 0.3s, box-shadow 0.3s;
}
 
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(62, 119, 255, 0.2);
    outline: none;
}
 
.form-group textarea {
    resize: vertical;
    min-height: 150px;
}
 
.button-group {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
 
.submit-btn {
    background: linear-gradient(90deg, #4A90E2, #357ABD);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
}
 
.submit-btn:hover {
    background: linear-gradient(90deg, #357ABD, #2A5EA6);
    transform: scale(1.05);
}
 
.download-btn {
    background: linear-gradient(90deg, #28A745, #218838);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
}
 
.download-btn:hover {
    background: linear-gradient(90deg, #218838, #1C6C33);
    transform: scale(1.05);
}
 
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    border-left: 6px solid var(--primary-color);
    border-radius: 10px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
 
.info-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: color 0.3s;
}
 
.info-item h3 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}
 
.info-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}
 
.info-item:hover {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}
 
.info-item:hover i {
    color: var(--accent-color);
}
 
.contact-info-section {
    border-top: 5px solid var(--primary-color);
    padding-top: 30px;
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    border-radius: 15px;
}
 
.info-note {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
    padding: 15px;
    background: var(--gray-50);
    border-radius: 8px;
    border-left: 4px solid var(--primary-light);
}
 
@media (max-width: 768px) {
    
    .contact-info {
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
    }
    .contact-item {
        width: 40px;
        height: 40px;
        margin-left: 5px;
    }
    .contact-item i {
        font-size: 20px;
    }
    .contact-label,
    .contact-value {
        font-size: 12px;
    }

    .contact-content {
        flex-direction: column;
    }
    .contact-hero h1 {
        font-size: 28px;
    }
    .contact-hero p {
        font-size: 16px;
    }
    .contact-form, .contact-info-section {
        padding: 20px;
    }
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    .info-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .button-group {
        flex-direction: column;
        gap: 10px;
    }
}

 a{
  text-decoration: none;
 }
