/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom, #36454F, #D3D3D3, #FFFFFF);
  color: #333; 
  overflow-x: hidden;
}

/* NAVIGATION BASE */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background-color: rgba(0, 0, 0, 0.4); 
  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.logo {
  height: 30px; /* Fixed navbar height */
  display: flex;
  align-items: center;
}

.logo img {
  height: 55px; /* Adjust this value to fit your design */
  object-fit: contain;
}

.logo a {
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  color: black;
}

.topnav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3px; 
}

.topnav a {
  color: white; 
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  transition: background-color 0.3s ease;
  font-size: 14px;
  max-height: 100vh;
  overflow-y: auto;
}

.topnav a:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Light hover effect */
  border-radius: 4px;
}

/* --- Dropdown Styles --- */
.topnav li {
  position: relative; /* Essential for positioning the dropdown content */
}

.topnav li .dropbtn {
  padding-right: 25px;
  position: relative;
}

.topnav li .dropbtn .fa-caret-down {
  position: absolute;
  right: 8px; /* Adjust as needed */
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
}

.dropdown-content {
  display: none; /* Hidden by default */
  position: absolute;
  background-color: #36454F; /* Dark background for dropdown */
  min-width: 200px; /* Adjust width as needed */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000; /* Ensure it appears above other content */
  top: 100%; /* Position right below the parent nav item */
  left: 0;
  border-top: 2px solid #555; /* Optional: Separator line */
  border-radius: 0 0 5px 5px; /* Rounded bottom corners */
}

.dropdown-content a {
  color: #fff; /* White text for dropdown links */
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left; /* Align text to the left */
  font-size: 14px; /* Slightly smaller font for dropdown items */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
  transition: background-color 0.3s ease;
}

.dropdown-content a:last-child {
  border-bottom: none; /* No border on the last item */
}

.dropdown-content a:hover {
  background-color: #555; /* Hover effect for dropdown links */
  color: #f0f0f0;
}

/* Show the dropdown menu on hover */
.topnav li:hover .dropdown-content {
  display: block;
}

/* Styles for the hamburger icon */
.menu-toggle {
  display: none; /* Hidden by default on larger screens */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1000; /* Ensure it's above other content */
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white; /* Color of the hamburger lines */
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

/* Media Query for Smaller Screens (e.g., less than 768px wide) */
@media (max-width: 1200px) {
  .nav-container {
    padding: 10px 20px; /* Adjust padding for smaller screens */
  }

  .topnav {
    display: none; /* Hide the regular navigation links by default */
    flex-direction: column; /* Stack links vertically */
    position: absolute;
    top: 70px; /* Adjust based on your header height */
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark overlay for menu */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 998; /* Below the toggle button */
  }

  .topnav.active {
    display: flex; /* Show the navigation when 'active' class is added by JS */
    max-height: calc(100vh - 70px); /* This will allow scrolling if content overflows the screen height */
    overflow-y: auto; /* Enable vertical scrolling */
  }

  .topnav li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .topnav li:last-child {
    border-bottom: none; /* No border for the last item */
  }

  .topnav a {
    padding: 10px 15px; 
  }

  .menu-toggle {
    display: flex; /* Show the hamburger icon on smaller screens */
  }

  /* Hamburger icon animation when active */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  /* Adjustments for dropdown on mobile */
  .topnav .dropdown-content {
    position: relative; /* Stack vertically in mobile view */
    background-color: transparent; /* No distinct background in mobile */
    box-shadow: none; 
    min-width: unset;
    border-top: none;
    border-radius: 0;
    padding-left: 20px; /* Indent dropdown items for better hierarchy */
  }

  .topnav.active .dropdown-content {
    display: block; /* Always show dropdown content when main nav is active */
  }

  .topnav .dropdown-content a {
    color: #fff; 
    padding: 8px 10px; 
    border-bottom: none; 
    font-size: 1em; 
    text-align: center; 
  }

  .topnav .dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1); 
  }

  .topnav li .dropbtn .fa-caret-down {
    display: none; 
  }
}

/* Style for the active navigation link */
.topnav a.active-link {
  font-weight: bold; 
  color: #007bff; 
  background-color: rgba(255, 255, 255, 0.1); 
  border-radius: 4px;
}

/* Ensure active state also applies on mobile if needed */
@media (max-width: 768px) {
  .topnav a.active-link {
    background-color: rgba(255, 255, 255, 0.15); 
    color: #007bff; 
  }
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d') no-repeat center center/cover;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Default hero stays for homepage */
.hero {
  background: url('https://images.unsplash.com/photo-1573164574572-cb89e39749b4') no-repeat center center/cover;
}

/* About Page */
.about-hero {
  background: url('https://images.unsplash.com/photo-1573164574572-cb89e39749b4') no-repeat center center/cover;
}

/* Services Page */
.services-hero {
  background: url('assets/pexels-olly-845451.jpg') no-repeat center center/cover;
}

/* Solutions Page */
.solutions-hero {
  background: url('assets/pexels-gabby-k-9488847.jpg') no-repeat center center/cover;
}

/* Global Opportunities Page */
.global-hero {
  background: url('assets/pexels-olly-3769138.jpg') no-repeat center center/cover;
}

/* What We Do Page */
.what-we-do-hero {
  background: url('assets/pexels-polina-tankilevitch-6928878.jpg') no-repeat center center/cover;
}

/* Who We Serve Page */
.who-we-serve-hero {
  background: url('assets/pexels-fauxels-3184416.jpg') no-repeat center center/cover;
}

/* Our Mission Page */
.mission-hero {
  background: url('assets/pexels-diva-plavalaguna-6147381.jpg') no-repeat center center/cover;
}

/* FAQs Page */
.faqs-hero {
  background: url('assets/pexels-pixabay-221164.jpg') no-repeat center center/cover;
}

/* Contact Page */
.contact-hero {
  background: url('assets/pexels-markus-winkler-1430818-12231824.jpg') no-repeat center center/cover;
}

/* Get Started Page */
.get-started-hero {
  background: url('assets/pexels-tomfisk-2116721.jpg') no-repeat center center/cover;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Section: Hero */
.startup-hero {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.startup-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.startup-text {
  flex: 1 1 55%;
  padding-right: 30px;
}

.startup-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.startup-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

.btn-startup {
  background-color: #2f8f2f;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
}

.startup-image {
  flex: 1 1 40%;
  text-align: center;
}

.startup-image img {
  width: 90%;
  border-radius: 10px;
}

/* Section: Benefits */
.startup-benefits {
  background-color: #eee;
  padding: 60px 0;
}

.startup-benefits h2 {
  color: #ff6600;
  margin-bottom: 10px;
  font-size: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.benefit-item i {
  margin-right: 10px;
  font-size: 1.2em; 
}


.benefit-icon {
  font-size: 1.8rem;
  color: #ff6600;
  margin-right: 20px;
}

.benefit-content h3 {
  margin: 0;
  font-weight: 600;
}

.benefit-content p {
  margin: 5px 0 0;
}

.btn-primary {
  background: lightgrey;
  color: #333;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: transparent;
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-secondary {
  color: darkgray;
  background-color: #00152b;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
  color: #333;
}


/* Services Section */
.services {
  padding: 60px 20px;
  text-align: center;
  background-color: #f7f7f7;
}

.services h2 {
  margin-bottom: 40px;
  font-size: 32px;
  color: #333;
}

.service-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-box {
  background: black;
  padding: 30px;
  border-radius: 8px;
  width: 280px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 20px;

}

.service-icons-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 40px 0;
  background-color: #00152b;
}

.service-icon-box {
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  width: 150px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-icon-box i {
  font-size: 32px;
  color: #0077b6;
  margin-bottom: 12px;
}

.service-icon-box p {
  color: #00152b;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3;
}

.service-icon-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.service-icon-box a {
  display: block;
  text-decoration: none; 
  color: inherit;
  
}

.service-icon-box a i {  
   color: #0077b6; 
  font-size: 32px; 
  margin-bottom: 12px; 
}

.service-icon-box a p {
  color: #00152b;
  font-weight: bold;
  font-size: 14px; 
  line-height: 1.3; 
}


/* CTA Banner */
.cta-banner {
  text-align: center;
  padding: 30px 20px;
}

.cta-banner h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.cta-banner p {
  font-size: 16px;
  margin-bottom: 15px;
}


/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}


/* FAQ */
.faq-section {
      max-width: 900px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .faq-box {
      background: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }

    .faq-box:hover {
      transform: translateY(-5px);
    }

    .faq-box h3 {
      display: flex;
      align-items: center;
      font-size: 20px;
      color: #333;
    }

    .faq-box h3 i {
      color: #f9c54d;
      margin-right: 10px;
    }

    .faq-box p {
      font-size: 16px;
      color: #555;
      margin-top: 10px;
    }
 

.faq-item { /* */
  margin-bottom: 30px; /* */
}

.faq-item h3 { /* */
  font-size: 20px; /* */
  margin-bottom: 10px; /* */
  color: #333; /* */
}

.faq-item p { /* */
  font-size: 16px; /* */
  color: #555; /* */
}

/* Contact Columns */
/* Contact Page Modern Style */
.contact-form {
  background: #fff;
  padding: 40px 30px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-group {
  position: relative;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.contact-form input,
.contact-form textarea { /* */
  width: 100%; /* */
  padding: 12px 40px 12px 40px; /* */
  border: 1px solid #ccc; /* */
  border-radius: 6px; /* */
  font-size: 15px; /* */
  font-family: inherit; /* */
  transition: border-color 0.3s, box-shadow 0.3s; /* */
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f9c54d;
  box-shadow: 0 0 0 3px rgba(249, 197, 77, 0.3);
  outline: none;
}

.contact-form button.btn-primary {
  padding: 12px;
  font-size: 16px;
  border: none;
  background-color: lightgrey;
  color: #333;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .form-group::before { /* */
  content: ''; /* */
  font-family: 'FontAwesome'; /* */
  position: absolute; /* */
  left: 12px; /* */
  top: 50%; /* */
  transform: translateY(-50%); /* */
  color: #999; /* */
  font-size: 16px; /* */
}

.input-icon { /* */
  position: relative; /* */
  display: flex; /* */
  align-items: center; /* */
}

.input-icon i { /* */
  position: absolute; /* */
  left: 12px; /* */
  color: #888; /* */
  font-size: 16px; /* */
}

.input-icon input,
.input-icon textarea { /* */
  width: 100%; /* */
  padding: 12px 12px 12px 40px; 
  border: 1px solid #ccc; /* */
  border-radius: 6px; /* */
  font-size: 16px; /* */
  transition: border 0.3s, box-shadow 0.3s; /* */
  outline: none; /* */
}

.input-icon input:focus,
.input-icon textarea:focus { /* */
  border-color: #f9c54d; /* */
  box-shadow: 0 0 0 3px rgba(249, 197, 77, 0.3); /* */
}

.centered-section,
.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

 .centered-section ul {
  list-style-position: inside;
 /* display: inline-block; */
  text-align: justify;
  margin: 0 auto;
  
}
/* VIDEO SECTION — CENTERED & RESPONSIVE */

.video-section {
  padding: 60px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

.video-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  margin: 20px auto;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.page-content p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
  line-height: 1.6;
  color: #333;
  font-size: 1.1rem;
  text-align: justify;
}

.page-content h2 {
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.page-content .text ul {
  padding-left: 8em;  /* Adjust this value to match your design */
  margin-top: 1em;      /* Optional spacing from paragraph */
  list-style-position: inside; /* Keeps bullet points nicely aligned */
}




/* Centered Image */
.page-content img.centered-img {
  max-width: 600px;
  width: 90%;
  height: auto;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
}

.page-content .form-intro-text {
  text-align: center; 
  margin-bottom: 30px; 
  max-width: 800px; 
  margin-left: auto; 
  margin-right: auto; 
}
.page-content.alt-bg .split.two-column .text {
  margin-top: -10px;
}

/* Split Layout */
.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

.two-column .text,
.two-column .image {
  flex: 1;
  min-width: 280px;
}

.two-column.reverse {
  flex-direction: row-reverse;
}

.split img {
  width: 100%;
  border-radius: 8px;
}

/* Utility */
ul {
  margin-top: 10px;
  padding-left: 20px;
  color: #444;
}

ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* About Page */
.about-hero {
  background: url('https://images.unsplash.com/photo-1590650046871-bd08c1e5f492') center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.about-hero h1 {
  font-size: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 8px;
}

.about-main {
  text-align: center;
  padding: 40px 20px;
}

.about-image {
  max-width: 600px;
  margin: 20px auto;
  display: block;
  border-radius: 10px;
}

.why-us-box {
  background-color: #fff8f0;
  border-left: 5px solid #b34300;
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.why-us-box h2 {
  color: #b34300;
  margin-bottom: 15px;
}

.why-us-box ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
}

.video-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 20px;
  border-radius: 10px;
  max-width: 800px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}


.typing-text {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}

    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .cards-row { 
      display: flex; 
      flex-wrap: wrap; 
      justify-content: center; 
      gap: 30px; 
      padding: 40px 20px; 
      background-color: #f9f9f9; 
    }

    .card { 
      background: white; 
      border-top: 5px solid #ccc; 
      width: 300px; 
      padding: 30px 20px; 
      box-shadow: 0 0 10px rgba(0,0,0,0.05); 
      text-align: center; 
      border-radius: 8px; 
      transition: transform 0.3s ease; 
    }

    .card:hover { 
      transform: translateY(-5px); 
    }

    .card-icon { 
      font-size: 40px; 
      margin-bottom: 15px; 
    }

    .blue .card-icon { color: #2196F3; } 
    .blue { border-color: #2196F3; } 

    .yellow .card-icon { color: #f9c54d; } 
    .yellow { border-color: #f9c54d; } 

    .red .card-icon { color: #f44336; } 
    .red { border-color: #f44336; } 

    .card h3 { 
      font-size: 20px; 
      margin-bottom: 15px; 
      font-weight: bold; 
    }

    .card ul { 
      list-style: none; 
      padding: 0;
      margin: 0 0 15px;
      font-size: 14px; 
      color: #555; 
    }

    .card ul li { 
      margin-bottom: 6px; 
    }

    .card a { 
      font-size: 14px;
      text-decoration: underline; 
      color: #333; 
    }

    @media (max-width: 960px) { 
      .cards-row { 
        flex-direction: column; 
        align-items: center; 
      }
    }

.startup-process { 
  background-color: #f9f9f9; 
  padding: 60px 20px; 
  text-align: center; 
   width: 100%;
}

.startup-process .section-title { 
  font-size: 2em; 
  margin-bottom: 40px; 
}

.process-steps { 
  display: flex; 
  justify-content: space-around; 
  align-items: center; 
  position: relative; 
  flex-wrap: wrap; 
  padding: 20px 0; 
}

.process-step {
  flex: 1; 
  max-width: 150px; 
  margin: 0 10px; 
  z-index: 1; 
}

.process-step i { 
  font-size: 1.8rem; 
  color: #e74c3c; 
  margin-bottom: 10px; 
}

.process-step h3 { 
  font-size: 1rem; 
  margin-bottom: 5px; 
}

.process-step p { 
  font-size: 0.9rem; 
  color: #555; 
  margin: 0; 
  line-height: 1.3; 
}

/* Dotted horizontal connector */
.process-steps::before { 
  content: ""; 
  position: absolute; 
  top: 35px; 
  left: 5%; 
  right: 5%; 
  height: 0; 
  border-top: 2px dotted #ccc; 
  z-index: 0; 
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; 
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none; 
    transition: background-color 0.3s ease;
}

.whatsapp-float i {
    margin-top: 0; 
}

.whatsapp-float:hover {
    background-color: #1DA851; /
}

/* Media query for smaller screens to adjust position if needed */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

.thank-you-page {
  padding: 100px 20px;
  text-align: center;
  background-color: #f7f7f7;
}

.thank-you-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.thank-you-page p {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 2rem;
}

.thank-you-page .btn-primary {
  padding: 12px 24px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.thank-you-page .btn-primary:hover {
  background-color: #0056b3;
}
