body {
    margin: 0;
	padding: 0;
    font-family: sans-serif;
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff; /* White text */
    background-image: url('images/Togi Togi Tower BG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keep background fixed during scroll */
    min-height: 100vh; /* Ensure body takes full viewport height */
}

header {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black header */
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid #ff6600; /* Orange border */
}

h1 {
    color: #ff6600; /* Orange title */
    margin: 0;
    font-size: 3em;
    text-shadow: 2px 2px 4px #000;
}

main {
    max-width: 1200px; /* Limit content width */
    margin: 40px auto; /* Center main content with spacing */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* Slightly darker semi-transparent background for content */
    border-radius: 8px;
}

.about {
    margin-bottom: 40px; /* Space below the about section */
    padding: 20px;
    background-color: rgba(255, 102, 0, 0.1); /* Faint orange background */
    border-left: 5px solid #ff6600; /* Orange left border */
    border-radius: 5px;
}

.about h2 {
    color: #ff6600; /* Orange heading */
    margin-top: 0;
    text-align: center;
    margin-bottom: 15px;
}

.about p {
    color: #ddd; /* Lighter text color for readability */
    line-height: 1.6;
    text-align: justify;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Distribute images evenly */
    gap: 20px; /* Space between images */
    margin-bottom: 40px;
}

.image-container {
    flex: 1 1 200px; /* Flex properties for responsive image containers */
    max-width: 250px; /* Max width for each image container */
    background-color: #333; /* Placeholder background */
    border: 2px solid #ff6600; /* Orange border */
    border-radius: 5px;
    overflow: hidden; /* Hide parts of image that overflow */
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
}

.image-container img {
    display: block;
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.actions {
    text-align: center;
    margin-bottom: 40px;
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center items */
    align-items: center; /* Vertically align items */
    gap: 20px; /* Add space between buttons */
}

button {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease; /* Added box-shadow transition */
    display: inline-flex; /* Align icon and text */
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Remove underline from link button */
}

.contact-button {
    background-color: #ff6600; /* Orange background */
    color: #ffffff; /* White text */
    border: 2px solid #ff6600;
}

.contact-button:hover {
    background-color: #e65c00; /* Darker orange on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Adjusted shadow for consistency */
}

.download-button {
    background-color: #ff6600; /* Orange background */
    color: #ffffff; /* White text */
    border: 2px solid #ff6600;
}

.download-button i {
    margin-right: 8px; /* Space between icon and text */
}

.download-button:hover {
    background-color: #e65c00; /* Darker orange on hover */
    transform: translateY(-2px); /* Lift effect */
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.4); /* Orange glow shadow */
}

.app-store-link {
    text-decoration: none;
}

.p2 {
	color:#aaa;
}

.applogo{
	width:160px;
}

.contact-form-section {
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7); /* Darker overlay for form */
    border-radius: 8px;
    max-width: 600px; /* Limit form width */
    margin: 20px auto; /* Center form */
    border: 1px solid #ff6600; /* Subtle orange border */
}

.contact-form-section h2 {
    color: #ff6600;
    text-align: center;
    margin-bottom: 10px;
}

.contact-form-section p {
    color: #ccc;
    text-align: center;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ddd;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #555; /* Darker border */
    border-radius: 4px;
    background-color: #333; /* Dark input background */
    color: #fff; /* White text input */
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6600; /* Orange border on focus */
    box-shadow: 0 0 5px rgba(255, 102, 0, 0.5); /* Orange glow on focus */
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing */
    min-height: 100px;
}

.submit-button {
    background-color: #ff6600; /* Orange background */
    color: #ffffff; /* White text */
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: block; /* Make button block level */
    width: 100%; /* Make button full width */
    margin-top: 10px; /* Space above button */
    font-weight: bold;
}

.submit-button:hover {
    background-color: #e65c00; /* Darker orange on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.4); /* Orange glow shadow */
}

footer {
    text-align: center;
    padding: 15px 0;
    margin-top: 180px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #aaa;
    font-size: 0.9em;
    border-top: 1px solid #444;
}