/* 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: #FFB302;
 

  /* 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%;
  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;
  
}






/* Navbar remains unchanged */
/* Background Image Styling */
body {
  background-image: url('Img/55.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--white-color);
}

.contact-section {
  padding: 50px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
  border-radius: 10px;
  max-width: 100%;
  margin: 0 auto;
  color: var(--white-color);
}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Orange color for headings */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); /* Text shadow for pop effect */
}

.contact-section p {
  color: #ddd;
  margin-bottom: 40px;
  font-size: var(--font-size-m);
}

/* Contact Container */
.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Contact Info */
.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.input-box {
  margin-bottom: 15px;
}

.input-box label {
  margin-bottom: 5px;
  display: block;
  color: var(--white-color);
}

.input-box input, .input-box textarea {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: none;
  background-color: rgba(26, 26, 26, 0.9);
  color: var(--white-color);
  font-size: 16px;
  resize: none;
}

.input-box input:focus, .input-box textarea:focus {
  outline: 2px solid var(--secondary-color);
}

button {
  padding: 12px;
  border: none;
  border-radius: 5px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e67e00;
}
