/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Colors */
:root {
    --primary-blue: #4A76B8; /* Header & Nav Blue */
    --footer-blue: #2A4C7D; /* Darker Footer Blue */
    --footer-bottom: #1B355A;
}

/* --- Header Section --- */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background-color: #fff;
}

.logo {
    background-color: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-box {
    background-color: var(--primary-blue);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 1.2rem;
}

.contact-item .text {
    display: flex;
    flex-direction: column;
}

.contact-item .label {
    font-size: 0.8rem;
    color: #666;
}

.contact-item .value {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 0.95rem;
}

/* --- Navigation --- */
.nav-bar {
    background-color: var(--primary-blue);
}

.nav-bar ul {
    list-style: none;
    display: flex;
    padding: 15px 0;
    gap: 30px;
}

.nav-bar a {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.nav-bar a:hover {
    text-decoration: underline;
}

/* --- Dropdown Menu Styles --- */
.nav-bar ul li.dropdown {
    position: relative; 
}

.nav-bar .dropdown-menu {
    display: none; 
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: var(--primary-blue);
    min-width: 240px; 
    padding: 0;
    flex-direction: column;
    gap: 0; 
    box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
    z-index: 100;
}

.nav-bar .dropdown-menu li {
    width: 100%;
}

.nav-bar .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-weight: normal; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-bar .dropdown-menu li:last-child a {
    border-bottom: none; 
}

.nav-bar .dropdown-menu a:hover {
    background-color: var(--footer-bottom); 
    text-decoration: none;
}

.nav-bar ul li.dropdown:hover .dropdown-menu {
    display: flex; 
}

/* --- Page Header --- */
.home-page-header {
    /* background-color: #000; */
    background: url('https://amsindia.co.in/wp-content/uploads/2025/04/aa4aaccf43.jpg');
    color:rgb(0, 0, 0);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.home-page-header h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.home-page-header h2 {
    font-size: 1.5rem;
    font-weight: normal;
    display: inline-block;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 5px;
    margin-bottom: 30px;
    text-align: left; 
    position: absolute;
    left: 20px;
    bottom: 40px;
}

.breadcrumbs {
    position: absolute;
    left: 20px;
    bottom: 20px;
    font-size: 0.85rem;
    color: #aaa;
}

.breadcrumbs a {
    color: var(--primary-blue);
}

.breadcrumbs span {
    color: white;
}

/* --- Main Content --- */
.content-section {
    background-color: white;
    padding: 80px 20px;
    text-align: center;
    min-height: 300px;
}

.content-section p {
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.content-section a {
    color: var(--primary-blue);
}

/* --- Footer Section --- */
footer {
    background-color: var(--footer-blue);
    color: white;
    background-size: cover;
    background-position: center;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    padding: 60px 20px;
}

.footer-left {
    max-width: 50%;
}

.footer-logo {
    border: 2px solid white;
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 30px;
}

.footer-features {
    list-style: none;
}

.footer-features li {
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-features i {
    margin-top: 3px;
}

.footer-right h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-right h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background-color: white;
}

.address-details p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #ddd;
}

.footer-bottom {
    background-color: var(--footer-bottom);
    text-align: center;
    padding: 20px;
}

.footer-bottom a {
    color: var(--primary-blue);
    font-size: 0.9rem;
}
/* --- Services Section Styles --- */
.content-section {
    padding: 60px 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* Optional underline accent for the title */
.services-header h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: #0056b3; /* Match to your theme's blue */
    bottom: -10px;
    left: 20%;
}

.services-header p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Responsive Grid for Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Styling */
.service-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #0056b3; 
}

/* Icon Styling */
.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.icon-wrapper i {
    font-size: 35px;
    color: #0056b3; 
}

.service-card:hover .icon-wrapper {
    background-color: #0056b3;
}

.service-card:hover .icon-wrapper i {
    color: #ffffff;
}

/* Text and Button Styling */
.service-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.btn-read-more {
    display: inline-block;
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-read-more i {
    margin-left: 5px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.service-card:hover .btn-read-more {
    color: #003d82;
}

.service-card:hover .btn-read-more i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-bar ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-bar .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: var(--footer-bottom);
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header h2, .breadcrumbs {
        position: static;
        text-align: center;
        margin-top: 20px;
    }
}


        /* --- Page Header --- */
        .page-header {
            /* Changed from #000 to match the blue theme in the image */
            background-color: #3b66a8; 
            color: white;
            padding: 60px 0;
            text-align: left;
            position: relative;
        }

        .page-header h1 {
            font-size: 2.2rem;
            font-weight: normal;
            letter-spacing: 1px;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .breadcrumbs {
            font-size: 0.85rem;
            color: #000000;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .breadcrumbs a {
            color: white;
        }

        .breadcrumbs i {
            font-size: 0.7rem;
        }

        /* =========================================
           Supplementary Layout & Content Styles
           ========================================= */
        
        .main-wrapper {
            background-color: white;
            padding: 50px 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        /* Left Content Area */
        .main-content img {
            width: 100%;
            height: auto;
            margin-bottom: 30px;
            display: block;
        }

        .main-content h2 {
            font-size: 1.5rem;
            color: #666;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: normal;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        .main-content h3 {
            font-size: 1rem;
            color: #333;
            margin-bottom: 15px;
        }

        .main-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 0.9rem;
            text-align: justify;
        }

        /* Right Sidebar Area */
        .sidebar-widget {
            margin-bottom: 40px;
        }

        .sidebar-widget h4 {
            font-size: 1.1rem;
            color: #888;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: normal;
        }

        /* Services List */
        .services-list {
            list-style: none;
            border-top: 1px solid #eee;
        }

        .services-list li {
            border-bottom: 1px solid #eee;
        }

        .services-list a {
            display: block;
            padding: 12px 0;
            color: #555;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .services-list a:hover {
            color: var(--primary-blue);
        }

        /* Query Form */
        .query-form {
            border: 1px solid #eee;
            padding: 20px;
            background-color: #fff;
        }

        .form-row {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }

        .form-row input, .form-row select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            background-color: #f9f9f9;
            color: #777;
            font-size: 0.85rem;
            outline: none;
        }

        .query-form textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            background-color: #fff;
            height: 120px;
            resize: none;
            margin-bottom: 15px;
            outline: none;
        }

        .btn-submit {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 12px 25px;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            font-size: 0.85rem;
            transition: background 0.3s;
        }

        .btn-submit:hover {
            background-color: var(--footer-blue);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
 