/* --- Global Variables and Reset --- */
:root {
    --color-primary-green: rgb(0, 150, 136); /* Main company green/teal */
    --color-dark-green: #388E3C; /* Darker shade for hero gradient start (Index) */
    --color-orange: rgb(236, 102, 2); /* Primary CTA orange/Accent color */
    --color-light-bg: #F9F9F9; /* Light background for sections */
    --color-text-dark: #333; /* Primary text color */
    --color-text-light: #fff; /* Light text color */
    --color-dark-blue: #1C2B36; /* Footer Background */

    /* Generic Accent Colors for Gradients/Icons */
    --color-accent-green: #00A38C;
    --color-accent-orange: #FF7043;
    --cta-gradient-start: #00A38C;
    --cta-gradient-end: #FF7043;
	--bs-body-font-size:1.1em;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@media (min-width: 991px) {
  .mdml22 {
    margin-left: 22% !important;
  }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-light-bg);
}
h2, h3{
	font-weight:bold;
}
.text-center { text-align: center; }
.highlight-text-green { color: var(--color-primary-green); }
.highlight-text-orange { color: var(--color-orange); }

.header-section h1 { font-size: 3.75rem; margin-bottom: 15px; font-weight: 700; line-height: 1; margin-bottom: 1.5rem;}
.subtitle {
    font-size: 1.25rem;
	line-height: 1.75rem;
    color: #666;
    max-width: 48rem;
    margin: 0 auto 50px;
}
.header-section { padding: 0rem 0 3rem 0; text-align: left; } /* Adjusted padding for consistency */
.btn-discover {
    background-color: var(--color-primary-green);
    color: var(--color-text-light);
    padding: 8px 20px;	
    border-radius: 20px;
    font-size: 0.9em;
    margin-bottom: 20px;
    display: inline-block;
}

.cards-grid { padding: 0 30px 0 80px; }
/* .grid-layout is removed, replaced by Bootstrap row/col */

.card { 
    background-color: var(--color-text-light); 
    padding: 35px; 
    border-radius: 8px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); 
    height: 100%; /* Ensures cards in grid are same height */
    display: flex; /* For internal card layout */
    flex-direction: column;
}
.ml-0{
	margin-left:0 !important;
}
.card .icon-header { align-items: center; margin-bottom: 20px; }
.card .icon-box { margin-right: 15px; font-size: 1.8em; padding: 15px; border-radius: 8px; flex-shrink: 0; }


.card h3 { font-size: 1.5em; color: var(--color-text-dark); }
.description { color: #555; margin-bottom: 25px; min-height: 70px; } /* Min height retained for visual balance */
.key-features { margin-top: auto; } /* Pushes 'learn more' to bottom */
.key-features h4 { font-weight: bold; font-size: 1em; margin-bottom: 10px; color: var(--color-text-dark); }
.key-features ul { display: flex; flex-wrap: wrap; gap: 10px 40px; list-style: none; margin-bottom: 20px; padding-left: 0; }
.key-features li { flex-basis: calc(50% - 20px); font-size: 0.95em; color: #444; }

/* key-card-features layout is removed, replaced by Bootstrap row/col */
.key-card-features {
    margin-top: 50px; /* Reduced from 90px to match typical section padding */
	margin-bottom: 50px;
}

.feature-dot { font-size: 0.4em; color: var(--color-primary-green); margin-right: 8px; vertical-align: middle; }
.feature-box { 
    background-color: var(--color-text-light); 
    padding: 20px 15px; 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25); 
    height: 100%; /* For consistent height in the stat grid */
}
.feature-box i { font-size: 1.75rem; margin-bottom: 10px; }
.check-green { color: var(--color-primary-green); }
.check-orange { color: var(--color-orange); }
.feature-box p { font-size: 0.95em; font-weight: 500; }


/* Custom Solution CTA (Service3.jpg) */
.custom-cta-section { 
    background: linear-gradient(to right, var(--cta-gradient-start), var(--cta-gradient-end)); 
    color: var(--color-text-light); 
    padding: 80px 0; 
    text-align: center; 
}
.custom-cta-content h2 { font-size: 3.5rem; margin-bottom: 10px; }
.custom-cta-content p { font-size: 1.1em; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Modules Page Item Styling */
.module-category { margin-bottom: 40px; }
.category-heading { font-size: 2em; margin-bottom: 20px; }
.heading-underline-green { color: var(--color-primary-green); border-bottom:3px solid var(--color-primary-green); display:inline-block; padding-bottom:10px;margin-bottom: 25px;margin-top: 25px;}
.heading-underline-orange { color: var(--color-orange); border-bottom:3px solid var(--color-orange); display:inline-block; padding-bottom:10px;margin-bottom: 25px;margin-top: 25px;}

/* .module-cards-row is removed, replaced by Bootstrap row/col */

.module-item {
  display: flex;
  align-items: center; /* Centers icon vertically with text block */
  gap: 16px;
  background-color: var(--color-text-light);
  border-radius: 10px;
  padding: 8px 12px;
  margin: 12px 0; /* Margin between items is now handled by Bootstrap g-3 on the row */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  height: 100%; /* Ensures item alignment in grid */
}

/* Optional hover effect */
.module-item:hover {
  transform: translateY(-2px);
  transition: 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}


/* Example variation for green theme */
.module-item-green {
  border-left: 4px solid var(--color-primary-green);
}
.module-item-orange {
  border-left: 4px solid var(--color-orange);
}

.module-item .icon-box {
    margin-right: 0; /* Resetting card icon-box margin */
    font-size: 1.2em;
    padding: 10px;
    border-radius: 5px;
}
.module-item .text-block h3 { font-size: 1.2em; margin-bottom: 2px; }
.module-item .text-block p { font-size: 0.8rem; color: #666; }

/* Seamless Integration CTA (modules4.jpg) */
.integration-cta-section { padding: 0 0 80px; }
.integration-content-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; }
.integration-text-box { background-color: var(--color-text-light); padding: 40px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); text-align:left; }
.integration-text-box h2 { font-size: 2.2em; color: var(--color-primary-green); margin-bottom: 20px; }
.integration-list i { color: var(--color-primary-green); margin-right: 10px; margin-top:10px; }
.integration-list { margin-top:30px; margin-bottom:30px; }
.integration-visual-box { 
    background: linear-gradient(to right, var(--cta-gradient-start), var(--cta-gradient-end)); 
    border-radius: 8px; 
    color: var(--color-text-light); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    min-height: 350px; 
}

a {
    text-decoration: none;
    color: var(--color-primary-green);
}

ul {
    list-style: none;
    padding-left: 0; /* Bootstrap compatibility */
}

/* --- Typography Helpers --- */
.subtitle-small {
    font-size: 1em;
    margin-bottom: 40px;
}

/* --- Buttons --- */
.btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-text-light);
    border-color: var(--color-orange);
}
.btn-primary:hover {
    background-color: #d86000;
    border-color: #d86000;
    color: var(--color-text-light);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-text-light);
    color: var(--color-text-light);
    margin-left: 15px;
}
.btn-secondary:hover {
    background-color: var(--color-text-light);
    color: var(--color-primary-green);
}

.btn-white {
    background-color: var(--color-text-light);
    color: var(--color-orange);
    padding: 12px 30px;
    border: none;
}
.btn-white:hover {
    background-color: #eee;
    color: var(--color-orange);
}

.learn-more {
    font-weight: bold;
    margin-top: auto; /* Push to bottom of card */
}

/* --- Header & Navigation --- */
.header {
    background-color: var(--color-text-light);
    padding: 0; /* Padding is now on the Bootstrap nav-brand/nav-link */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	Margin-bottom: 3rem;
}

/* .nav-container is removed, using Bootstrap's .navbar */
.logo {
    font-size: 2.0em;
    font-weight: bold;
    color: var(--color-primary-green);
}
.logo:hover {
    color: var(--color-primary-green);
}

.nav-menu .nav-item {
    font-weight: bold;
}

.nav-menu .nav-link {
    color: var(--color-text-dark);
    padding: 5px 0;
    margin: 0 10px; /* Spacing between links */
}
/* Re-applying custom active/hover styles to Bootstrap structure */
.nav-menu .nav-link.active {
    color: var(--color-primary-green);
    border-bottom: 2px solid var(--color-primary-green);
}

.nav-menu .nav-link:not(.active):hover {
    color: var(--color-primary-green);
}

/* --- Icon Boxes (Reusable Style) --- */
.icon-box {
    font-size: 1.5em;
    padding: 10px;
    border-radius: 5px;
    color: var(--color-text-light);
    display: inline-block;
    margin-bottom: 15px;
}
.icon-box.icon-green { background-color: var(--color-primary-green); }
.icon-box.icon-orange { background-color: var(--color-orange); }
.icon-box.icon-teal { background-color: #008080; } /* Specific teal color kept */
.icon-box.icon-dark-orange { background-color: #CC5500; } /* Specific dark orange color kept */
.icon-box.icon-white-bg { background-color: var(--color-text-light); color: var(--color-primary-green); box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }

/* --- Stats Grid (Reusable Style) --- */
/* .stats-grid is removed/replaced by key-card-features */
.stat-number { font-size: 3.5rem; font-weight: bold; margin-bottom: 5px; }
.stat-label { font-size: 1em; color: #666; }
.stat-green { color: var(--color-primary-green); }
.stat-orange { color: var(--color-orange); }


/* ================================================= */
/* --- INDEX PAGE SECTIONS (High Specificity) --- */
/* ================================================= */

/* --- Hero Section (index1.jpg) --- */
.hero-section { 
    background: linear-gradient(to right, var(--color-dark-green), var(--color-primary-green)); 
    color: var(--color-text-light); 
    padding: 100px 0; 
    text-align: center; 
}
.hero-content h1 { 
    font-size: 3em; 
    margin-bottom: 20px; 
    font-weight: 900; 
}
.hero-content p { 
    font-size: 1.2em; 
    margin-bottom: 40px; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
}

/* --- Features Section (index4.jpg) --- */
.features-section { padding: 80px 0; background-color: var(--color-primary-green); color: var(--color-text-light);  }
/* .features-content is removed, replaced by Bootstrap row/col */
.features-text { padding-right: 40px; }
.features-text h2 { font-size: 3.5rem; margin-bottom: 20px; }
.features-text p { margin-bottom: 30px; }
.features-text ul { list-style: none; padding-left: 0; }
.features-text li { margin-bottom: 15px; font-size: 1.05em; line-height: 2rem }
.features-text li i { color: var(--color-orange); margin-right: 10px; }

.features-visual { 
    /* The large block behind the text on the right side of the screenshot */
    background-color: rgba(255, 255, 255, 0.05); 
    padding: 100px 0; /* Reduced padding for responsiveness */
    border-radius: 10px; 
    display: flex; /* Centering content */
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Added shadow for contrast */
    margin-top: 30px; /* Space on mobile */
}

@media (min-width: 992px) { /* Apply desktop-like padding on large screens */
    .features-visual {
        padding: 250px 0px;
        margin-top: 0;
    }
}

.real-time-box { text-align: center; }
.icon-large i { font-size: 3em; color: var(--color-orange); margin-bottom: 15px; }

/* --- Testimonials Section (index5.jpg) --- */
.testimonials-section { padding: 80px 0; text-align: center; background-color: var(--color-text-light); }
.section-heading { margin-bottom: 40px; }
.section-heading h2 { font-size: 2em; }
.section-heading p { color: #666; }
/* .testimonials-grid is removed, replaced by Bootstrap row/col */
.testimonial-card { 
    padding: 30px; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    text-align: left; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); 
    background-color: var(--color-text-light);
    height: 100%; /* For consistent card height in grid */
    display: flex;
    flex-direction: column;
}
.rating { color: var(--color-orange); font-size: 1.2em; margin-bottom: 15px; }
.testimonial-card p { margin-bottom: 20px; flex-grow: 1; }
.client-info { display: flex; align-items: center; margin-top: auto; }
.client-initial { 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold; 
    color: var(--color-text-light); 
    margin-right: 15px; 
}
.initial-s { background-color: var(--color-primary-green); }
.initial-d { background-color: var(--color-orange); }
.initial-a { background-color: #3f51b5; } /* Placeholder for a third color */
.client-name { font-weight: bold; margin: 0; line-height: 1.2; }
.client-title { font-size: 0.85em; color: #777; margin: 0; }

/* --- CTA Section (index6.jpg) --- */
.cta-section { 
    background: linear-gradient(to right, var(--color-primary-green), var(--color-orange)); 
    color: var(--color-text-light); 
    padding: 80px 0; 
    text-align: center; 
}
.cta-content h2 { font-size: 2.5em; margin-bottom: 10px; }
.cta-content p { font-size: 1.1em; margin-bottom: 30px; }


/* ================================================= */
/* --- ABOUT US PAGE SECTIONS --- */
/* ================================================= */
.mission-vision-section { padding: 50px 0 80px; background-color: var(--color-light-bg); }
/* .mission-vision-grid is removed, replaced by Bootstrap row/col */
.vision-card { 
    padding: 30px; 
    background-color: var(--color-text-light); 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.vision-card h3 { font-size: 1.4em; margin-bottom: 15px; }

/* Core Values */
.core-values-section { padding: 40px 0 80px; background-color: var(--color-primary-green); color: var(--color-text-light); }
.core-values-section h2 { font-size: 3em; margin-bottom: 5px; }
/* .core-values-grid is removed, replaced by Bootstrap row/col */
.value-item { text-align: center; }
.value-item .icon-box { margin-bottom: 10px; }
.value-item h4 { font-size: 1.1em; font-weight: 600; }

/* Journey/Timeline Section Styles (The Corrected Layout) */
.journey-section { 
    padding: 80px 0; 
    background-color: var(--color-light-bg); 
}
.journey-section h2 { 
    font-size: 2.5em; 
    margin-bottom: 10px;
}
.timeline-container { 
    max-width: 800px; 
    margin: 50px auto 0; 
    position: relative; /* Needed for absolute positioning of .year */
}

/* Resetting the vertical line and alternating styles for the correct offset card look */
.timeline-container::after { content: none; }
.timeline-item:nth-child(odd),
.timeline-item:nth-child(even),
.timeline-item:nth-child(odd) .year,
.timeline-item:nth-child(even) .year,
.timeline-item:nth-child(odd) .timeline-content,
.timeline-item:nth-child(even) .timeline-content {
    /* These styles are intentionally overridden/removed to implement the offset-card look */
    right: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}


/* Base style for each timeline card (central card) */
.timeline-item {
    display: flex;
    align-items: center;
    background-color: var(--color-text-light);
    padding: 25px 30px; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); 
    margin-bottom: 25px;
    position: relative;
    max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
}

/* The Year Box styling (offset to the left) */
.timeline-item .year {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--color-text-light);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px; 
    flex-shrink: 0;
    
    /* Position the year absolutely to the left of the content block */
    position: absolute; 
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    
    margin-right: 0; /* Ensures no conflicting margin */
}

/* Mobile adjustment: Move year box inside the card on small screens */
@media (max-width: 576px) {
    .timeline-item {
        padding-left: 110px; /* Make space for the year box inside */
    }
    .timeline-item .year {
        position: absolute;
        left: 15px; /* Place it inside the card */
        top: 50%;
        transform: translateY(-50%);
        width: 70px;
        height: 70px;
        font-size: 1.3em;
    }
}


/* Year Box Colors */
.timeline-green .year { background-color: var(--color-primary-green); }
.timeline-orange .year { background-color: var(--color-orange); }

/* Content block styling */
.timeline-content { 
    flex-grow: 1;
    text-align: left;
    margin-left: 0; 
    margin-right: 0; 
    padding-left: 0; 
}
.timeline-content h3 { font-size: 1.3em; margin-bottom: 5px; }
.timeline-content p { color: #666; font-size: 0.95em; }


/* ================================================= */
/* --- CONTACT PAGE SECTIONS --- */
/* ================================================= */

.contact-details-section { padding: 50px 0; }
/* .details-grid is removed, replaced by Bootstrap row/col */
.detail-card {
    background-color: var(--color-text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
}
.detail-card h4 { font-size: 1.2em; margin-bottom: 15px; color: var(--color-text-dark); }
.detail-card p { font-size: 0.95em; color: #555; margin-bottom: 5px; }
.detail-card .icon-box { margin-bottom: 15px; }

.contact-section { padding: 50px 0 80px; background-color: var(--color-light-bg); }
/* .contact-grid is removed, replaced by Bootstrap row/col */

.form-wrapper {
    background-color: var(--color-text-light);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.form-wrapper h2 { font-size: 1.8em; margin-bottom: 30px; color: var(--color-primary-green); }
.contact-form label { display: block; font-size: 0.9em; font-weight: 500; margin-bottom: 5px; color: #444; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

/* .form-row is removed, replaced by Bootstrap row g-3/col-md-6 */
.form-group { flex: 1; } /* Kept for compatibility if used outside of row/col */

.btn-submit { width: 100%; padding: 15px; font-size: 1.1em; }

.map-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px; /* Space on mobile */
}

@media (min-width: 992px) { /* Remove top margin on desktop */
    .map-cta-wrapper {
        margin-top: 0;
    }
}

.map-container {
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.why-contact-cta {
    background: linear-gradient(to bottom right, var(--cta-gradient-start), var(--cta-gradient-end));
    color: var(--color-text-light);
    padding: 30px;
    border-radius: 8px;
	line-height:2rem;
}
.why-contact-cta h3 { font-size: 1.5em; margin-bottom: 10px; }
.why-contact-cta p { font-size: 1em; margin-bottom: 20px; }


/* ================================================= */
/* --- FOOTER --- */
/* ================================================= */

.footer {
    background-color: var(--color-dark-blue);
    color: #bbb;
    padding: 60px 0 0;
}
/* .footer-content is removed, replaced by Bootstrap row/col */

.footer-logo {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.9em;
    line-height: 1.5;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.social-links a {
    color: var(--color-text-light);
    font-size: 1.2em;
    transition: color 0.3s;
}
.social-links a:hover {
    color: var(--color-orange);
}
.footer a{
	color: var(--color-primary-green);
}
.footer-links h3,
.footer-contact h3 {
    font-size: 1.2em;
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
    font-size: 0.9em;
}
.footer-links a:hover {
    color: var(--color-orange);
}

.footer-contact p {
    font-size: 0.9em;
    margin-bottom: 10px;
}
.footer-contact i {
    color: var(--color-orange);
    margin-right: 10px;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.8em;
    color: #888;
}