/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
 
  margin: 0;
 
  font-family: "Poppins", sans-serif;
}

:root {
  /* Colors */
  --white-color: #fff;
  --primary-color: #0A1D37;
  --secondary-color: #C9A23C;
 

  /* Font size */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;

  /* Font weight */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Border radius */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  /* Site max width */
  --site-max-width: 1300px;
}

html {
  scroll-behavior: smooth;
}

/* Stylings for whole site */
ul {
  list-style: none;
}
nav ul li a.active {
 
  color: white;
  padding: 10px 18px;
  border: 2px solid white; /* White border for the active button */
  border-radius: var(--border-radius-m);

}
a {
  text-decoration: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

img {
  width: 100%;
}
/* Navbar Styles */
.navbar {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  color: #fff;
  width: 100%;
}

/* Logo Image Styling */
.navbar img {
  width: 100px; /* Adjust width */
  height: auto; /* Maintain aspect ratio */
  margin-right: 10px; /* Add space between logo and text */
  position:absolute;
  left:0;
}





/* Logo Text Styling */
.logo-text {
  font-size: 24px; /* Adjust text size */
  margin-left: 5%;

}



/* Navbar styling */
header {
  z-index: 5;
  width: 100%;
  position: fixed;
  background: linear-gradient(to bottom, #0A1D37 , black);

}

header .navbar {
  padding: 20px;
  max-width: 98%;
  
}

.navbar .nav-logo .logo-text {
  color: var(--white-color);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu {
  display: flex;
  gap: 10px;
  margin-left: auto; /* Pushes the menu to the right */
  justify-content: flex-end; /* Aligns the items within the menu to the right */
}

.navbar .nav-menu .nav-link {
  padding: 10px 18px;
  color: var(--white-color);
  font-size: var(--font-size-m);
  border-radius: var(--border-radius-m);
  transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
  color: var(--primary-color);
  background: var(--secondary-color);
}

.navbar :where(#menu-open-button, #menu-close-button) {
  display: none;
  
}

/* background video */

.home {
    position: relative;
    overflow: hidden;
    height: 100vh; /* Ensures the section takes full viewport height */
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.home .flex {
    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: center; /* Horizontally centers the content */
    height: 100%; /* Full height for centering purposes */
    position: relative;
    z-index: 1; /* Ensures the content is above the video */
}

.content {
    text-align: center;
    color: #fff;
}

.content h3 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 600px;
}

.content .btn {
    padding: 10px 20px;
    background-color: #ff5722;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.content .btn:hover {
    background-color: #e64a19;
}
.home {
    position: relative;
    overflow: hidden;
    height: 100vh; /* Ensures the section takes full viewport height */
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.home .flex {
    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: center; /* Horizontally centers the content */
    height: 100%; /* Full height for centering purposes */
    position: relative;
    z-index: 1; /* Ensures the content is above the video */
}

.content {
    text-align: center;
    color: #fff;
}

.content h3 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 600px;
}

.content .btn {
    padding: 10px 20px;
    background-color: #ff5722;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.content .btn:hover {
    background-color: #e64a19;
}



.home {
  position: relative;
  overflow: hidden;
  height: 100vh; /* Ensures the section takes full viewport height */
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.home .flex {
  display: flex;
  align-items: center; /* Vertically centers the content */
  justify-content: center; /* Horizontally centers the content */
  height: 100%; /* Full height for centering purposes */
  position: relative;
  z-index: 1; /* Ensures the content is above the video */
}

.content {
  text-align: center;
  color: #fff;
}

.content h3 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  max-width: 600px;
}

.content .btn {
  padding: 10px 20px;
  background-color: #ff5722;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.content .btn:hover {
  background-color: #e64a19;
}

/* Background video */
.home {
  position: relative;
  overflow: hidden;
  height: 100vh; /* Ensures the section takes full viewport height */
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.home .flex {
  display: flex;
  align-items: center; /* Vertically centers the content */
  /* justify-content: center; Horizontally centers the content */
  height: 100%; /* Full height for centering purposes */
  position: relative;
  z-index: 1; /* Ensures the content is above the video */
}

.content {
  text-align: center;
  color: #fff;
}

.content h3 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  max-width: 600px;
}
.con {
  margin-top:250px;
  color: yellow;
  align:justify;
}

.content .btn {
  padding: 10px 20px;
  background-color: #FF8C00;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  align:justify;
}

.content .btn:hover {
  background-color: #e64a19;
}

/* button */

