/*
Theme Name: ISOQACERT
Theme URI: https://isoqacert.com
Author: ISOQACERT
Author URI: https://isoqacert.com
Description: Custom theme for ISOQACERT - ISO Certification & Training with Global Credibility
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: isoqacert
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --primary-color: #112069;
    --secondary-color: #0a1e3d;
    --accent-color: #ff6b35;
    --dark-color: #112069;
    --light-bg: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #112069 0%, #0a1e3d 100%);
    --gradient-secondary: linear-gradient(135deg, #112069 0%, #0a1e3d 100%);
}

/* =============================================
   RESET & BASE
   ============================================= */
* {
    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;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.nav-link {
    color: #555 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    width: 100%;
}

.btn-get-started {
    background: var(--gradient-primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17,32,105,0.3);
}

/* Fix for btn-get-started underline - don't show the nav-link underline on the CTA button */
.btn-get-started::after {
    display: none;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    background: var(--primary-color);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
}

.badge-custom {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s;
    animation-fill-mode: both;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-hero {
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-color);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: var(--primary-color);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-learn-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 0;
}

.btn-learn-more:hover {
    gap: 10px;
    color: white;
    background-color: var(--primary-color);
}

/* =============================================
   SECTION TITLES
   ============================================= */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* =============================================
   CERTIFICATION CARDS (Homepage & Services)
   ============================================= */
.cert-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.cert-card {
    background: white;
    border-radius: 0;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.cert-card:hover::before {
    transform: scaleX(1);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.cert-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.cert-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Training Links for Homepage */
.training-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.training-link {
    display: block;
    padding: 8px 12px;
    background: var(--light-bg);
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.training-link:hover {
    background: var(--primary-color);
    color: white;
    border-left-color: var(--accent-color);
    padding-left: 18px;
}

/* Training Standard Block */
.training-standard-block {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
}

.training-standard-block:last-child {
    border-bottom: none;
}

.standard-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.standard-heading i {
    font-size: 1.8rem;
}

/* Training Course Card */
.training-course-card {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.training-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.training-course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.training-course-card:hover::before {
    transform: scaleX(1);
}

.course-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.training-course-card h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.training-course-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 48px;
}

.btn-course {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-course:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.btn-course i {
    transition: transform 0.3s ease;
}

.btn-course:hover i {
    transform: translateX(3px);
}

/* =============================================
   PRODUCT SERVICES SECTION
   ============================================= */
.product-services {
    padding: 80px 0;
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.service-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-item:hover i {
    color: white;
}

.service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* =============================================
   COMPLETE RANGE SECTION
   ============================================= */
.complete-range {
    padding: 80px 0;
    background: var(--light-bg);
}

.cert-category {
    background: white;
    border-radius: 0;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.cert-category:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title i {
    font-size: 1.2rem;
}

.cert-list {
    list-style: none;
    padding: 0;
}

.cert-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cert-list li:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.cert-list li:last-child {
    border-bottom: none;
}

/* =============================================
   WHY CHOOSE / FEATURE BOXES
   ============================================= */
.why-choose {
    padding: 80px 0;
    background: white;
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    background: var(--light-bg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* =============================================
   INDUSTRY EXPERTISE
   ============================================= */
.industry-expertise {
    padding: 80px 0;
    background: var(--light-bg);
}

.industry-card {
    background: white;
    border-radius: 0;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.industry-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.industry-title i {
    color: var(--primary-color);
}

.industry-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.service-tag {
    background: var(--light-bg);
    padding: 5px 12px;
    border-radius: 0;
    font-size: 0.85rem;
    color: #555;
}

/* =============================================
   TRUST BADGES
   ============================================= */
.trust-badges {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: scale(1.1);
}

.badge-circle {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(17,32,105,0.3);
}

.badge-text {
    font-weight: 600;
    color: var(--dark-color);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

footer .contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    height: auto;
}

footer .contact-info i {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about {
    padding: 80px 0;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: var(--light-bg);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.standard-icon-box {
    background: var(--gradient-primary);
    padding: 50px 40px;
    text-align: center;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.standard-icon-box i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.standard-icon-box .standard-label {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.standard-icon-box .standard-sub {
    font-size: 1rem;
    opacity: 0.8;
}

/* Stats Section */
.stats {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.stat-item .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 18px;
    font-weight: 600;
}

/* Partnership Section */
.partnership {
    padding: 80px 0;
}

.partnership-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.partnership-text {
    flex: 1;
}

.partnership-text h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.partnership-image {
    flex: 1;
    background-color: var(--light-bg);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Values Section */
.values {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.values-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.value-item i {
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

/* =============================================
   TRAINING PAGE
   ============================================= */
.training-features {
    padding: 80px 0;
    background: var(--light-bg);
}

.training-features .feature-box {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.training-features .feature-box:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.training-programs {
    padding: 80px 0;
    background: white;
}

.program-card {
    background: white;
    border-radius: 0;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.program-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.program-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.program-list li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.program-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Corporate Training */
.corporate-training {
    padding: 80px 0;
    background: var(--light-bg);
}

.corporate-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.corporate-text {
    flex: 1;
}

.corporate-text h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.corporate-text p {
    margin-bottom: 20px;
}

.corporate-image {
    flex: 1;
    background-color: white;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefit-list li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
}

.benefit-list li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-section .contact-info {
    background: white;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    display: block;
    color: inherit;
    margin-bottom: 0;
}

.contact-items-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(to right, rgba(17, 32, 105, 0.05), rgba(17, 32, 105, 0.01));
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

.contact-item:hover {
    background: linear-gradient(to right, rgba(17, 32, 105, 0.1), rgba(17, 32, 105, 0.03));
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(17, 32, 105, 0.1);
    border-left-width: 5px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(17, 32, 105, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(17, 32, 105, 0.3);
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--dark-color);
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(17, 32, 105, 0.25);
}

.contact-form .form-select {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(17, 32, 105, 0.25);
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17,32,105,0.3);
}

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.error-message {
    display: none;
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

/* Contact Form 7 overrides */
.wpcf7 .wpcf7-form-control {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.wpcf7 .wpcf7-form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(17, 32, 105, 0.25);
    outline: none;
}

.wpcf7 .wpcf7-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wpcf7 .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17,32,105,0.3);
}

/* Loading Spinner */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============================================
   ISO STANDARD PAGES
   ============================================= */
.overview-section {
    padding: 80px 0;
}

.overview-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.overview-text {
    flex: 1;
}

.overview-text h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.overview-text p {
    margin-bottom: 20px;
}

.overview-image {
    flex: 1;
}

/* Benefit Cards */
.benefits-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.benefit-card h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Process/Journey Steps */
.process-section {
    padding: 80px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.step-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Sector Badges */
.sector-badge {
    display: inline-block;
    background: var(--light-bg);
    padding: 8px 16px;
    margin: 5px;
    border-radius: 0;
    font-size: 0.9rem;
    color: #555;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.sector-badge:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Why Box */
.why-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: white;
}

.why-box h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.why-box p {
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(17, 32, 105, 0.05);
    color: var(--primary-color);
    font-weight: 600;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(17, 32, 105, 0.25);
}

.accordion-button {
    font-weight: 500;
    color: var(--dark-color);
}

/* =============================================
   SERVICE DETAIL PAGES
   ============================================= */
.service-card {
    background: white;
    border-radius: 0;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-card-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: white;
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* =============================================
   STANDARDS CATEGORY PAGES
   ============================================= */
.standard-card {
    background: white;
    border-radius: 0;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.standard-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.standard-number {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.standard-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.standard-desc {
    color: #666;
    line-height: 1.7;
}

/* =============================================
   BLOG PAGE
   ============================================= */
.layout-wrapper {
    display: flex;
    gap: 30px;
    padding: 30px 0;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-item {
    padding: 10px 15px;
    margin-bottom: 5px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #555;
}

.category-item:hover,
.category-item.active {
    background: var(--primary-color);
    color: white;
}

.main-content {
    flex: 1;
}

/* Hero Post */
.hero-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.hero-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.hero-content-blog {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-blog .category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    width: fit-content;
}

.hero-content-blog .hero-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 10px;
    animation: none;
}

.hero-content-blog .date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.hero-content-blog .excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.news-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 20px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.card-meta .category-badge {
    background: rgba(17, 32, 105, 0.1);
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 0;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.card-meta .date {
    color: #999;
    font-size: 0.8rem;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    line-height: 1.4;
}

.card-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Article View */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0;
}

.article-img-full {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
}

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.article-meta-row .category-badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.article-meta-row .date {
    color: #999;
    font-size: 0.85rem;
}

.article-title-full {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-content-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.article-content-body h1, .article-content-body h2,
.article-content-body h3, .article-content-body h4 {
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content-body p {
    margin-bottom: 15px;
}

.article-content-body ul, .article-content-body ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

.article-content-body li {
    margin-bottom: 8px;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination-container .page-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.pagination-container .page-btn.active,
.pagination-container .page-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* WordPress Pagination */
.pagination .page-numbers {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 0;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* =============================================
   PRIVACY POLICY & TERMS OF SERVICE
   ============================================= */
.policy-hero {
    padding: 120px 0 60px;
}

.policy-hero .hero-title {
    font-size: 2.8rem;
}

.policy-sidebar {
    position: sticky;
    top: 100px;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

.policy-sidebar a {
    display: block;
    padding: 8px 0;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.policy-sidebar a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.policy-content h2 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.policy-content p,
.policy-content ul {
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.policy-content ul {
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 8px;
}

/* =============================================
   COMPLETE RANGE CARD STYLES (Services page inline styles)
   ============================================= */
.range-card {
    background: white;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.range-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.range-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.range-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.range-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.range-card span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .layout-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: static;
    }

    .hero-post {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cert-card {
        margin-bottom: 20px;
    }

    .badge-container {
        gap: 30px;
    }

    .about-content,
    .partnership-content,
    .corporate-content,
    .overview-content {
        flex-direction: column;
    }

    .about-text,
    .partnership-text,
    .corporate-text,
    .overview-text {
        margin-bottom: 30px;
    }

    .stats-container {
        flex-direction: column;
    }

    .contact-items-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-item {
        padding: 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .article-title-full {
        font-size: 1.5rem;
    }

    .article-img-full {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}
