/* Content Section */
body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
    background-color: #f9f9f9; /* Soft background color */
    /* padding: 50px 20px; */
    width: 100%;
    max-width: 100%; /* Override Bootstrap's default */
    background-color: #f9f9f9; /* Background color */
    margin: 0; /* Remove any auto margins */
}
.display-4{
    margin-top: 150px;

}


.row {
    margin-bottom: 50px;
}

/* Heading Styles */
h1, h2 {
    font-family: 'Poppins', sans-serif;
    color: navy; /* Dark Blue for primary color */
}

h1 {
    font-size: 3rem; /* Larger font for header */
    letter-spacing: 2px;
   
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: white; /* Secondary color */
}

/* Paragraph Styling */
p {
    font-size: 1.2rem;
    color: #555; /* Slightly lighter text for readability */
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Button Styles */
.btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #ff6600; /* Secondary color */
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #cc5200;
    transform: scale(1.05); /* Slight zoom effect */
}

.btn-outline-secondary {
    background-color: transparent;
    color: #003366; /* Primary color */
    border: 2px solid #003366;
}

.btn-outline-secondary:hover {
    background-color: #003366;
    color: white;
    transform: scale(1.05); /* Slight zoom effect */
}

/* Image Styling */
.img-fluid {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    .lead {
        font-size: 1rem;
    }
    /* .container {
        width:150%;
    } */
}
