@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
/* General Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
  }
  
  html {
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}

  body {
	background-image: url('WhiteBack.jpg');
  }
  
  a {
	text-decoration: none;
	color: inherit;
  }
  
  ul {
	list-style: none;
  }

  p {
	color: black;
	font-size: 0.8rem;
	margin-top: 2px;
	line-height: 2rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
  
  /* Header Section */
  #header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	background: transparent;
	transition: background-color 0.3s ease;
  }
  
  .header.container {
	height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 30px;
	background-color: #29323c;
  }
  
  .brand {
	flex: 0 0 auto; /* Prevents the logo from stretching */
  }
  
  .brand img {
	width: 80px; /* Adjust logo size */
	height: auto;
  }
  
  .nav-bar {
	flex: 1 1 auto; /* Allows the nav to take available space */
	display: flex;
	justify-content: flex-end;
	align-items: center;
  }

  .nav-list ul {
	display: flex;
	gap: 20px;
  }

  .nav-list ul li a {
	color: white;
	font-weight: bold;
	font-size: 0.8rem;
	padding: 10px 15px;
	transition: color 0.3s ease;
  }
  
  .nav-list ul li a:hover {
	color: #CD3333; /* Hover color effect */
  }

  .nav-list ul.active {
    display: flex;
  }

  .nav-bar .nav-list {
	display: flex;
	align-items: center;
  }

  .nav-bar .nav-list ul {
	display: flex;
	justify-content: flex-end; /* Align items to the right */
	gap: 20px;
	margin: 0;
	padding: 10px 20px;
  }
  
  .nav-bar .hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	position: absolute; /* Absolute positioning */
	top: 10px; /* Distance from the top of the screen */
	right: 20px; /* Distance from the right of the screen */
	z-index: 1000; /* Ensure it stays above other elements */
  }
  
  .nav-bar .hamburger .bar {
	height: 2px;
	width: 20px;
	background-color: white;
	margin: 3px 0;
	transition: all 0.3s ease;
  }
  
  .nav-bar .hamburger.active .bar {
	background-color: #CD3333; /* Example: Change color when active */
  }
  
  
/* Show dropdown on hover */
.nav-bar .hamburger:hover + .nav-list ul,
.nav-list ul:hover {
  opacity: 1;
  visibility: visible;
}

  .nav-bar ul li a {
	font-size: 0.8rem;
	font-weight: bold;
	color: white;
	padding: 10px 15px;
	transition: color 0.3s ease;
  }

  .nav-bar ul li a:hover {
	color: #CD3333; /* Change color on hover */
  }
  

  /* Responsive Design */
@media screen and (max-width: 768px) {
	/* Dropdown Menu for Hamburger */
.nav-list ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: absolute;
	top: 30px;
	right: 20px;
	background-color: #29323c;
	width: 200px;
	border-radius: 10px;
	padding: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
  }

	 /* Show dropdown on hover */
	 .nav-bar .hamburger:hover + .nav-list ul,
	 .nav-list ul:hover {
	   display: flex;
	 }
   
	 .nav-bar .hamburger {
	   display: flex; /* Show hamburger on mobile screens */
	 }
} 

/* Services Section */
/* General Section Styling */
#us {
	padding: 50px 10%;
	background-image: url('WhiteBack.jpg');
	text-align: center;
  }
  
  #us h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
  }
  
  #us p {
	color: black;
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 40px;
  }
  
  .kotak {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center horizontally */
    gap: 20px;
    margin: 0 auto; /* Center horizontally relative to the parent */
  }
  
  .kotak .card {
	background: white;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	justify-content: center;
	width: 350px;
	padding: 20px;
  }
  
  .kotak .card h2 {
	font-size: 1.4rem;
	margin-top: 5px;
	margin-bottom: 5px;
  }
  
  .kotak .card img {
	width: 250px;
	margin-bottom: 5px;
  }
  
  /* Footer Section */
  #footer {
	background: white;
	color: #fff;
	padding: 20px 10%;
	text-align: center;
  }
  
  #footer .brand h1 {
	font-size: 2.5rem;
  }
  
  #footer h2 {
	margin: 10px 0;
	font-size: 0.8rem;
	color: black;
  }
  
  .social-icon {
	margin: 10px 0;
  }
  
  .social-icon img {
	width: 30px;
  }

  .brand h1 {
    font-family: 'Gistesy',sans-serif;
	font-size: 5rem;
	color: rgb(9, 9, 9);
}
  .brand h1 span {
	color: #CD3333;
}
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
	.nav-bar ul {
	  display: none;
	  flex-direction: column;
	}
  
	.nav-bar ul.active {
	  display: flex;
	  background: black;
	  position: absolute;
	  top: 60px;
	  right: 20px;
	  width: 200px;
	  border-radius: 10px;
	  padding: 10px;
	  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}
  
	.nav-bar .hamburger {
	  display: flex;
	}
  
	#hero h1 {
	  font-size: 2rem;
	}
  
	.kotak {
	  flex-direction: column;
	  gap: 20px;
	}
  
	.kotakgrey {
	  flex-direction: column;
	}
  }