
.navbar {
    background-color: white;
    font-weight: bold;

}

.nav-link:hover {
    color: white;
    background-color: black;
}

.main {
    background: url(main\ section\ web.png)no-repeat;
    background-size: cover;
    width: 100%;
    height: 95vh;
}

.main h3 {
    font-size: 4.4rem;
    font-weight: 700;
}

.btn-warning:hover {
    background-color: black;
    color: white;
    border-color: black;
    transition: 0.5;
}
.about img {
    -webkit-box-shadow: 0px 0px 17px -4px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 17px -4px rgba(0,0,0,0.75);
box-shadow: 0px 0px 17px -4px rgba(0,0,0,0.75);
}

#about2 {
    font-size: 3rem;
    font-weight: 900;
}

/* .image-container {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}

.img-fluid {
    max-width: 100%; 
    height: auto; 
    box-shadow: 7px 4px 8px rgba(0, 0, 0, 0.2); 
    border-radius: 8px; 
} */


.card {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-body {
    margin: 0; /* Ensures no extra spacing from the container */
    padding: 0; /* Keeps the layout tight */
}

#CS {
    font-size: 24px; /* Keep heading size consistent */
    font-weight: bolder;
    margin-bottom: 5px; /* Reduces space below the heading */
    line-height: 1.2; /* Tightens line spacing for the heading */
}

.card-body p {
    font-size: 16px; /* Keeps paragraph text consistent with the card */
    margin: 5px 0; /* Reduces space between paragraphs */
    line-height: 1.4; /* Tightens the line spacing in paragraphs */
}

#fsc {
    font-size: 24px; /* Keep heading size consistent */
    font-weight: bolder;
    margin-bottom: 5px; /* Reduces space below the heading */
    line-height: 1.2; /* Tightens line spacing for the heading */ }

.contact {
    background-color: black;
    color: white;
}

.list {
    align-items: center;
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-section {
    background: #1c1c1c; /* Dark grey background */
    color: #fff; /* White text */
    padding: 50px 20px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.contact-container p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #aaa; /* Lighter grey text for subheading */
}

/* Contact Information */
/* Contact Information */
.contact-info {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the block */
    max-width: 500px; /* Set a fixed width for consistent alignment */
    margin-left: auto;
    margin-right: auto;
}

.contact-info p {
    font-size: 1rem;
    width: 100%; /* Ensures consistent width */
    text-align: left; /* Align text to the left for uniformity */
    margin: 10px 0;
    color: #aaa;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    word-break: break-word; /* Ensures long links break nicely */
}

.contact-info a:hover {
    text-decoration: underline;
}


/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #2c2c2c;
    color: #fff;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form button {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background: #444;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #666; /* Lighter grey on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container h2 {
        font-size: 2rem;
    }

    .contact-container p {
        font-size: 0.9rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }

    .contact-form button {
        font-size: 0.9rem;
    }
}


