:root {
    --primary-color: #0b4ca1;
    --secondary-color: #f1b812;
    --dark-color: #1a2530;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
    background-color: #fcfdfe;
}
.navbar-brand img {
    max-height: 100px;
}
.bg-primary-custom { background-color: var(--primary-color); }
.text-primary-custom { color: var(--primary-color); }
.text-secondary-custom { color: var(--secondary-color); }
.page-header { 
    background: linear-gradient(rgba(26,37,48,0.9), rgba(26,37,48,0.9)), url('Photo1.jpg') center/cover; 
    color: white; 
    padding: 60px 0; 
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.95) 0%, rgba(11, 76, 161, 0.9) 100%), url('Photo2.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 100px 0;
}

/* Section Spacing */
section {
    padding: 80px 0;
    border-bottom: 1px solid #edf2f7;
}

/* Product Gallery Image Card Modification */
.gallery-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    background: #ffffff;
}
.gallery-card:hover {
    transform: translateY(-5px);
}
.gallery-img-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: #f8f9fa;
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* Lists and Features styling */
.feature-icon {
    background-color: rgba(11, 76, 161, 0.1);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}
.footer-dark {
    background-color: var(--dark-color);
    color: #cbd5e1;
}
.btn-bg{
   background: url(button-bg.jpg) center / 100%;
}

.bg-primary-custom { background-color: var(--primary-color); }
.text-primary-custom { color: var(--primary-color); }


.team-card {
    border: none;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.team-card:hover {
    transform: translateY(-5px);
}
.team-img-wrapper {
    height: 280px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

/* Team Section Layout */
    .team-section {
        padding: 60px 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #f9f9f9;
    }

    .team-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .team-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
        color: #333;
        font-weight: 700;
    }

    /* Responsive Grid System */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    /* Team Card Styles */
    .team-card {
        background: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        text-align: left;
    }

    /* Enforced 1080px Image Dimensions with Responsive Containment */
    .team-card img {
        width: 100%;
        max-width: 100%;
        max-height: auto;
        object-fit: cover;
        border-radius: 4px;
        margin-bottom: 15px;
    }

    .team-member-name {
        font-size: 1.4rem;
        margin: 10px 0 5px 0;
        color: #222;
    }

    .team-member-role {
        font-size: 1rem;
        color: #666;
        margin: 0;
        font-weight: 500;
    }

    /* Gallery Card Styles */
.gallery-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    background: #ffffff;
}
.gallery-item:hover { 
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.gallery-box {
    height: 260px;
    overflow: hidden;
    background-color: #f8f9fa;
    position: relative;
    cursor: pointer;
}
.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-box img {
    transform: scale(1.04);
}

/* Lightbox Preview Modal Overlay */
.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 76, 161, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-box:hover .zoom-overlay {
    opacity: 1;
}
.zoom-overlay i {
    color: #ffffff;
    font-size: 1.8rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}
.gallery-box:hover .zoom-overlay i {
    transform: scale(1);
}

/*-- Blog ---*/

.blog-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover { 
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.blog-img-container {
    height: 220px;
    overflow: hidden;
    background-color: #f8f9fa;
}
.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thank You Page Styling */
.thankyou-section {
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f9;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-container {
    max-width: 650px;
    width: 100%;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Success Icon Animation styling */
.success-icon-box {
    width: 80px;
    height: 80px;
    background-color: #d4edda;
    color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px auto;
}

.thankyou-title {
    font-size: 2.5rem;
    color: #111111;
    margin-bottom: 15px;
    font-weight: 700;
}

.thankyou-message {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Reference Box for IDs or Summaries */
.reference-box {
    background-color: #f8f9fa;
    border-left: 4px solid #28a745;
    padding: 15px 20px;
    border-radius: 4px;
    text-align: left;
    margin-bottom: 35px;
}

.reference-text {
    margin: 5px 0;
    font-size: 0.95rem;
    color: #444444;
}

.reference-text strong {
    color: #111111;
}

/* Suggested Next Steps Links */
.next-steps {
    border-top: 1px solid #eeeeee;
    padding-top: 25px;
    margin-bottom: 30px;
}

.next-steps-title {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 15px;
    font-weight: 600;
}

.steps-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-link {
    color: #0056b3;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.step-link:hover {
    color: #003d80;
    text-decoration: underline;
}

/* Action Button */
.thankyou-btn {
    display: inline-block;
    background-color: #ffcc00; /* Matching your slider action style */
    color: #111111;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

.thankyou-btn:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
}

/* Responsive Overrides */
@media (max-width: 576px) {
    .thankyou-container {
        padding: 30px 20px;
    }
    .thankyou-title {
        font-size: 2rem;
    }
}