/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
}

/* Header */
header {
    display: flex;
    justify-content: space-between; /* Changed from flex-end to space-between to push elements to the sides */
    align-items: center; /* Vertically center the logo and contact info */
    padding: 20px 0;
    border-bottom: 2px solid #e0e0e0;
    background: linear-gradient(135deg, #ffffff 50%, #f0e6d6 50%);
}

.contact-info {
    text-align: right;
    font-size: 14px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Navigation */
nav {
    background-color: #4a4a4a;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #4a90e2;
}

/* Main Container */
.main-container {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 20px;
}

/* Main Content */
.main-content {
    flex: 2;
}

.featured-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-carousel {
    width: auto;
    height: auto;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.image-carousel img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image-carousel img:hover {
    transform: scale(1.05);
}

.img11{
    height: auto;
    width: 16em;
}

.logo-container {
    text-align: left;
    margin-left: 20px; 
}

.logo-container img {
    max-width: 250px; 
    height: auto;
}

.majha{
    font-size: 100px;
}

.contact-info {
    text-align: right;
    font-size: 14px;
    line-height: 1.5;
}

/* Sidebar */
.sidebar {
    flex: 1;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar-item {
    margin-bottom: 20px;
}

.sidebar-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #151618;
    margin-bottom: 10px;
}

.sidebar-item p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.sidebar-item a {
    color: #141617;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: color 0.3s;
}

.sidebar-item a:hover {
    color: #3b77d8a6;
}

/* Testimonials */
.testimonials {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonials h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #4a90e2;
    margin-bottom: 20px;
}

blockquote {
    margin: 0;
    padding: 10px;
    border-left: 5px solid #4a90e2;
    font-style: italic;
}

blockquote p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    text-align: right;
    font-size: 12px;
    color: #555;
}

/* Call to Action */
.cta {
    margin-top: 40px;
    text-align: center;
}

.cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #4a90e2;
    margin-bottom: 20px;
}

.cta button {
    background-color: #4a90e2;
    color: #ffffff;
    font-size: 18px;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta button:hover {
    background-color: #3b78d8;
}

/* Footer */
footer {
    margin-top: 40px;
    padding: 20px 0;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 5px 0;
    line-height: 1.6;
}

footer p br {
    display: block;
    margin-top: 5px;
}
