body {
	font-family: 'Arial', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: black;
	color: #333;
      }
      
      .navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #202124;
	padding: 10px 20px;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
      }
      
      .navbar .logo {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
      }
      
      .nav-links {
	list-style: none;
	display: flex;
	gap: 20px;
      }
      
      .nav-links li a {
	color: #fff;
	text-decoration: none;
	padding: 5px 10px;
	transition: 0.3s ease;
      }
      
      .nav-links li a:hover {
	background-color: #555;
	border-radius: 5px;
	border: 2px solid #4285f4;
	padding: 3px 8px;
      }
      
      .hero {
	background: black;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
      }
      .hero h1 {
	font-size: 50px;
	transition: font-size 0.5s ease-in-out;
	cursor: pointer;
      }
      
      
      .hero h1.active {
	font-size: 60px;
      }
      
      .hero p {
	font-size: 20px;
	margin-bottom: 20px;
      }
      
      .explore-btn {
	background-color: #4285f4;
	color: #fff;
	border: none;
	padding: 10px 20px;
	font-size: 18px;
	cursor: pointer;
	border-radius: 5px;
	transition: 0.3s ease;
	border: 2px solid transparent;
      }
      
      .explore-btn:hover {
	background-color: #357ae8;
	border: 2px solid #fff;
	padding: 8px 18px;
      }

      
      #about {
	background-color: #000;
	border-top: 3px solid #4285f4;
	border-bottom: 3px solid #ddd;
	transition: transform 0.3s ease-in-out;
        }
        
        #about:hover {
	transform: scale(1.02);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        
        #about h2 {
	font-size: 42px;
	margin-bottom: 20px;
	font-weight: 700;
	color: #f4b400;
        }
        
        #about p {
	font-size: 18px;
	line-height: 1.8;
	font-weight: 500;
	max-width: 800px;
	margin: auto;
	color: #ddd;
        }
        
      .services {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
      }
      
      .service-box {
	border: 1px solid #ddd;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	width: 300px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: 0.3s ease;
      }
      
      .service-box p{
	color: black;
      }
      
      .service-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	border-left: 5px solid #4285f4;
      }
      
      .contact-section {
	background-color: #f0f0f0;
	padding: 40px 20px;
	text-align: center;
	border-top: 2px solid #ddd;
      }
      
      .content-section h2 {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 32px;
      }
      
      .contact-form input, .contact-form textarea {
	width: 80%;
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #ddd;
	border-radius: 5px;
      }
      
      .contact-form button {
	background-color: #4285f4;
	color: #fff;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 5px;
	transition: 0.3s ease;
      }
      
      .contact-form button:hover {
	background-color: #357ae8;
	transform: scale(1.05);
      }
      
      .boxmail {
	color: #fff;
	height: 100%;
	width: 70%;
	margin-left: 5rem;
	margin-right: 5rem;
	margin-top: 5rem;
	margin-bottom: 2rem;
}
      .last{
	border: 1px solid #ddd;
      }
      footer {
	background-color: black;
	text-align: center;
	padding: 10px 0;
	position: relative;
	bottom: 0;
	width: 100%;
      }