/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    background-color: #F5F5F5;
    color: #333;
}

/* Navbar Styles */
.custom-navbar {
    background-color: #2E3192;
}

.custom-navbar .navbar-brand img {
    height: 50px;
}

.custom-navbar .nav-link {
    color: #FFD700;
}

.custom-navbar .nav-link:hover {
    color: #FFA500;
}

/* Header Styles */
.custom-header {
    background-color: #2E3192;
    color: white;
    padding: 50px 0;
}

/* Button Styles */
.custom-btn {
    background-color: #FFD700;
    color: #2E3192;
    border: none;
}

.custom-btn:hover {
    background-color: #FFA500;
    color: white;
}

/* Footer Styles */
.custom-footer {
    background-color: #2E3192;
    color: white;
    padding: 20px 0;
}
/* Updated CSS for Better Design, Animations, and UI Feel */

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #F5F5F5;
}

/* Navbar Styling */
.navbar {
    background-color: #23346D;
    padding: 15px;
    transition: all 0.3s ease-in-out;
}
.navbar-brand img {
    height: 50px;
}
.navbar-nav .nav-item .nav-link {
    color: white;
    font-weight: 600;
}

/* Hero Section Improvements */
.hero {
    background: url('img/hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}
.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button Styling */
.btn-primary {
    background-color: #F4C100;
    color: #23346D;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: #23346D;
    color: #F4C100;
}

/* Footer Styling */
.footer {
    background-color: #23346D;
    color: white;
    padding: 20px 0;
    text-align: center;
}
/* Updated CSS for Performance, Accessibility, Responsiveness & Branding Enhancements */

/* Global Styles */
body {
    font-family: 'Lato', sans-serif;
    color: #ffffff;
    background-color: #2e3192; /* Using company branding color */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    background-color: #2e3192; /* Matching brand colors */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar img {
    max-width: 150px;
}

/* Buttons */
button, .btn {
    background-color: #fdb913; /* Highlight color */
    color: #2e3192;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
button:hover, .btn:hover {
    background-color: #e09b10;
}

/* Responsive Images & Lazy Loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Forms */
input, textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    button {
        width: 100%;
    }
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px;
    background: #007bff;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Services Grid Layout */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
    text-align: center;
}

.service {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service:hover {
    transform: translateY(-5px);
}

.service i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 10px;
}

/* PPT Preview Section */
.ppt-preview {
    text-align: center;
    padding: 40px;
}

.ppt-preview iframe {
    width: 100%
    height: 350px;
    border: none;
}

/* Site Images Grid */
.site-images {
    text-align: center;
    padding: 40px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
}