/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #0050cc; /* Background color for the entire website, including individual sections */
  --default-color: #f8f8f8; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e59d02; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #00023D; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #f8f8f8;  /* The default color of the main navmenu links */
  --nav-hover-color: #e59d02; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #f8f8f8; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #f8f8f8; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #f8f8f8; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e59d02; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
:root{
	--blue: #0050cc;
	--dark: #000023;
	--navy: #0050cc;
	--yellow: #b8860b;
	--white: #ffffff;
}

.light-background {
  --background-color: #1b1a1a;
  --surface-color: #282828;
}

.dark-background {
  --background-color: #00023D;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1b1b1b;
  --contrast-color: #ffffff;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color:var(--blue);
}

/* Navigation */
.navbar{
    background:var(--navy);
}
.nav-item {
	background:#013c58;
	color: #fff;
}
.navbar-brand{
    color:#FFD400 !important;
    font-weight:bold;
    font-size:30px;
}

.nav-link{
    color:#fff !important;
    margin-left:20px;
}

.navbar .dropdown ul {
    color:#000 !important;
	margin: 0;
    padding: 10px 20px;
    background: #000;
    display: block;
    position: absolute;
    visibility: hidden;
	list-style: none;
    left: 14px;
	gap: 24px
    top: 530%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

.navbar .dropdown ul li {
    min-width: 200px;
	color:#000 !important;
	list-style: none;
	list-style-type: none;
  }

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
	list-style: none;
    color: #fff;
  }

.navbar .dropdown ul a i {
    font-size: 12px;
	color: #fff !important;
  }

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

.navbar .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
	color:#fff !important;
  }

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

/* Hero */
.hero{
    background:linear-gradient(rgba(0,51,153,.85),rgba(0,51,153,.85)),url('../assets/img/car.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
    padding:120px 0;
}

.hero h1{
    font-size:55px;
    font-weight:bold;
}

.hero p{
    font-size:22px;
}

.btn-yellow{
    background:#FFD400;
    color:#000;
    font-weight:bold;
    border:none;
    padding:15px 35px;
}

.btn-yellow:hover{
    background:var(--yellow);
}

/* Cards */
.services{
    padding:80px 0;
}

.card{
    border:none;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.icon{
    font-size:45px;
    color:#003399;
}

/* CTA */
.cta{
    background:#003399;
    color:#fff;
    padding:80px 0;
}

  /* Target the specific list or all lists */
  .no-bullets {
    list-style-type: none; 
    padding-left: 0; /* Optional: Aligns text to the edge */
  }


  /* ===== HEADER / NAV ===== */
  .top-header {
    background-color: var(--dark);
    color: #ffffff;
    width: 100%;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
  }

  .brand-group {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .brand-title {
    color: var(--brand-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-links a {
    color: #ffffff;
    text-decoration: none;
  }

  .custom-dropdown {
    position: relative;
  }

  .dropdown-trigger {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }

  .dropdown-trigger::after {
    content: "";
    display: inline-block;
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
  }

  .dropdown-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--brand-dark);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 10;
  }

  .custom-dropdown:hover .dropdown-items {
    display: block;
  }

  .dropdown-items li a {
    display: block;
    padding: 8px 16px;
  }

  .dropdown-items li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

/* Footer */
footer{
    background:#000023;
    color:#ffffff;
    padding:25px;
}
