
    /* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #C53A45, #c53a45c2);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #C53A45, #c53a4679);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #C53A45;
    border: 2px solid #C53A45;
}

.btn-secondary:hover {
    background: #C53A45;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-outline:hover {
    background: #2c3e50;
    color: white;
}

.btn-emergency {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.btn-emergency:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-logo {
    height: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #C53A45;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: #C53A45;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Statistics */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.about-features i {
    color: #27ae60;
    margin-right: 1rem;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white; /* Alternates with About Us (#f8f9fa) */
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.differentiator-card {
    background: #f8f9fa; /* Slightly different background for cards in a white section */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-left: 4px solid #C53A45;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.differentiator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.differentiator-card i {
    font-size: 2.5rem;
    color: #C53A45;
    margin-bottom: 1rem;
    display: block;
}

.differentiator-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: #f8f9fa; /* Updated for alternation */
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C53A45, #c53a45c2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background: white; /* Updated for alternation */
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: #f8f9fa; /* Card background for white section */
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cert-logo {
    width: 80px;
   /*   height: 80px; */
    margin-bottom: 1rem;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: #f8f9fa; /* Updated for alternation */
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.areas-list {
    list-style: none;
    margin-top: 2rem;
}

.areas-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.map-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Technology */
.technology {
    padding: 80px 0;
    background: white; /* Updated for alternation */
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-item {
    background: #f8f9fa; /* Card background for white section */
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tech-item i {
    font-size: 3rem;
    color: #C53A45;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa; /* Updated for alternation */
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
    background: white; /* Card background for #f8f9fa section */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #6c757d;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-btn.active {
    background: #C53A45;
}

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    background: white; /* Alternates with Testimonials (#f8f9fa) */
}

.trusted-by .section-title {
    margin-bottom: 2.5rem;
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem; /* Increased gap for better spacing */
    align-items: center;
}

.client-logo {
    text-align: center; /* Center logo within its grid cell */
}

.client-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.6; /* Slightly more subtle */
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}


/* Emergency Services */
.emergency-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.emergency-features {
    list-style: none;
    margin: 2rem 0;
}

.emergency-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.emergency-features i {
    margin-right: 1rem;
    color: #fff;
}

.emergency-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Industry Expertise */
.industry-expertise {
    padding: 80px 0;
    background: #f8f9fa;
}

.expertise-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    background: white;
    color: #6c757d;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #C53A45;
    color: white;
}

.tab-panel {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-panel.active {
    display: block;
}

.tab-panel ul {
    list-style: none;
    margin-top: 1rem;
}

.tab-panel li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Sustainability Section */
.sustainability {
    padding: 80px 0;
    background: white; /* Alternates with Industry Expertise (#f8f9fa) */
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sustainability-text h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.sustainability-features {
    list-style: none;
    margin-top: 1.5rem;
}

.sustainability-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.05rem; /* Slightly adjusted font size */
}

.sustainability-features i {
    color: #27ae60;
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px; /* Ensure icons align well */
    text-align: center;
}

.sustainability-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}


/* Safety Standards */
.safety-standards {
    padding: 80px 0;
    background: #f8f9fa; /* Updated for alternation */
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.standard-card {
    background: white; /* Card background for #f8f9fa section */
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #C53A45;
}

.standard-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Assessment Types */
.assessment-types {
    padding: 80px 0;
    background: white; /* Updated for alternation */
}

.assessment-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
}
.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-header h3 { /* Ensure h3 takes up space */
    flex-grow: 1;
}

.accordion-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out; /* Smoother transition */
}

.accordion-item.active .accordion-content {
    padding: 1rem 2rem 2rem;
    max-height: 500px; /* Increased max-height */
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content ul {
    list-style: none;
    margin-top: 1rem;
}

.accordion-content li {
    padding: 0.25rem 0;
}

/* Team */
.team {
    padding: 80px 0;
    background: #f8f9fa; /* Updated for alternation */
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white; /* Card background for #f8f9fa section */
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover; /* Ensure images fill space nicely */
}

.team-member h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.team-member span {
    color: #C53A45;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
    background: white; /* Updated for alternation */
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Adjusted minmax */
    gap: 2rem;
}

.case-study {
    background: #f8f9fa; /* Card background for white section */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.case-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-content {
    padding: 2rem;
}

.case-link {
    color: #C53A45;
    text-decoration: none;
    font-weight: 600;
}

.case-link:hover {
    text-decoration: underline;
}


/* Resources / Insights Section */
.resources-insights {
    padding: 80px 0;
    background: #f8f9fa; /* Alternates with Case Studies (white) */
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: white; /* Card background for #f8f9fa section */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.insight-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insight-content {
    padding: 1.5rem;
}

.insight-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    line-height: 1.3;
}

.insight-content p.insight-excerpt { /* Specific class for excerpt */
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.insight-meta {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insight-meta i {
    color: #C53A45;
}

.insight-link {
    display: inline-block; /* Better for spacing */
    margin-top: 0.5rem;
    color: #C53A45;
    text-decoration: none;
    font-weight: 600;
}

.insight-link:hover {
    text-decoration: underline;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white; /* Alternates with Resources/Insights (#f8f9fa) */
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa; /* Item background for white section */
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}
.faq-question:hover {
    background: #e9ecef;
}
.faq-question h4 { /* Ensure h4 takes up space */
    flex-grow: 1;
    margin-right: 1rem; /* Space before icon */
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out; /* Smoother transition */
}

.faq-item.active .faq-answer {
    padding: 1rem 2rem 2rem;
    max-height: 250px; /* Adjusted max-height */
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    display: flex; /* Flex column for better alignment */
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid #C53A45;
    transform: scale(1.05);
}
.pricing-card.featured:hover { /* Keep hover effect for featured card */
    transform: scale(1.05) translateY(-5px);
}


.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #C53A45;
    margin-bottom: 0.5rem;
}

.price-unit {
    color: #6c757d;
    margin-bottom: 2rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left; /* Align features list text to left */
    flex-grow: 1; /* Allow features list to grow */
}

.features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.features i {
    color: #27ae60;
    margin-right: 1rem;
    width: 20px; /* Align checkmarks */
}

.pricing-card .btn { /* Ensure button is at the bottom */
    margin-top: auto;
}


/* Contact */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start; /* Align icon to top of text block */
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #C53A45;
    margin-right: 1rem;
    width: 30px;
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-top: 0.25rem; /* Align icon better with first line of text */
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C53A45;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #C53A45;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #C53A45;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu { /* This was .nav-list before, should be .nav-menu */
        position: fixed;
        top: 70px; /* Assuming header height is around 70px */
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem; /* Add some padding */
        padding-bottom: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem; /* This was already here, correct for items within menu */
    }

    .nav-toggle {
        display: block;
    }

    .hero-container-grid,
    .about-content,
    .areas-content,
    .emergency-content,
    .contact-content,
    .sustainability-content { /* Added sustainability */
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sustainability-img { /* Added for sustainability image order on mobile */
        order: -1; 
        margin-bottom: 2rem; 
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn { /* Make buttons full width on mobile in hero */
        width: 100%;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .pricing-card.featured {
        transform: none; /* Remove scaling on mobile for featured card */
    }
    .pricing-card.featured:hover {
        transform: translateY(-5px); /* Keep hover lift */
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid,
    .tech-grid,
    .team-grid,
    .differentiators-grid, /* Added for Why Choose Us */
    .client-logos-grid, /* Added for Trusted By */
    .insights-grid, /* Added for Resources */
    .standards-grid { /* Added for Safety Standards */
        grid-template-columns: 1fr;
    }
    
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0; /* Start hidden for animation */
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mt-2 {
    margin-top: 1rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}