/* ===============================================
	SSM ENGINEERING - PROFESSIONAL CORPORATE DESIGN
	Matching Client's Current Website Style
=============================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0d2847;
    --primary-blue: #1976d2;
    --accent-orange: #ff5722;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-grey: #666666;
    --border-light: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===============================================
	TOP CONTACT BAR - STICKY
=============================================== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.container-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contact-item i {
    color: var(--accent-orange);
    font-size: 14px;
}

.top-contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.top-contact-item a:hover {
    color: var(--accent-orange); /* Turns orange on hover, matching your theme */
    text-decoration: none;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: var(--white);
    font-size: 14px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--accent-orange);
}
/* ===============================================
	TOP BAR – BRAND DESCRIPTOR (CN + EN)
=============================================== */
.top-bar-branding {
    margin-left: auto;
    text-align: right;
    line-height: 1.3;
}

/* Chinese line */
.top-bar-cn {
    font-family: 'Noto Sans SC', 'Poppins', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--white);                 /* SAME as phone/email */
    margin-bottom: 6px;                  /* 👈 GAP ADDED */
}

.top-bar-cn:hover {
    color: var(--accent-orange); /* Turns orange on hover, matching your theme */
    text-decoration: none;
}

/* English line */
.top-bar-en {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--white);                 /* SAME as phone/email */
    opacity: 0.85;                       /* Slightly softer */
}

.top-bar-en:hover {
    color: var(--accent-orange); /* Turns orange on hover, matching your theme */
    text-decoration: none;
}





/* ===============================================
	HEADER - PREMIUM DESKTOP REDESIGN
=============================================== */
.header {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 20px rgba(13, 40, 71, 0.08);
    position: sticky;
    top: 42px;
    z-index: 1000;
    padding: 0;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-blue), var(--accent-orange)) 1;
}

.container-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 15px 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo-wrapper {
    position: relative;
    padding: 8px 0;
}

.logo-wrapper::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 70%;
    background: linear-gradient(180deg, transparent, var(--primary-blue), transparent);
}

.logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(13, 40, 71, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-text h1 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Menu - Premium Styling */
.nav-menu {
    justify-self: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: rgba(25, 118, 210, 0.05);
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.nav-menu .nav-link {
    white-space: nowrap;
}

/* Dropdown Menu - Enhanced */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(13, 40, 71, 0.15);
    min-width: 260px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    margin-top: 10px;
    border-radius: 12px;
    border: 1px solid rgba(13, 40, 71, 0.08);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent-orange);
    transition: height 0.25s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(25, 118, 210, 0.08), transparent);
    color: var(--primary-blue);
    padding-left: 28px;
}

.dropdown-menu a:hover::before {
    height: 60%;
}

/* Header Right - Premium Badge & CTA */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 8px 0;
}

.cert-badge {
    position: relative;
    padding: 10px 20px;
    border-radius: 12px;
    border: 2px solid rgba(25, 118, 210, 0.15);
    transition: all 0.3s ease;
}



.cert-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.2);
    border-color: var(--primary-blue);
}

.cert-badge img {
    height: 90px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.cert-badge:hover img {
    transform: scale(1.05);
}

.btn-get-started {
    background: linear-gradient(135deg, var(--accent-orange), #d84315);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.25);
    position: relative;
    overflow: hidden;
	white-space: nowrap;
}

.btn-get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
	
	
}

.btn-get-started:hover::before {
    left: 100%;
}

.btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
}

.btn-get-started:active {
    transform: translateY(-1px);
}

/* Mobile Navigation Toggle - Modern Design */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1002;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.25);
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.35);
}

.mobile-toggle:active {
    transform: scale(0.95);
}

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

/* Animated hamburger to X */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Close Button - Modern */
.mobile-close {
    display: none;
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--accent-orange), #d84315);
    border: none;
    font-size: 28px;
    font-weight: 300;
    color: white;
    cursor: pointer;
    z-index: 10;
    width: 45px;
    height: 45px;
    line-height: 1;
    padding: 0;
    transition: all 0.3s ease;
    list-style: none;
    border-radius: 50%;
	border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
    align-items: center;
    justify-content: center;
}

.mobile-close:hover {
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 8px 22px rgba(255,87,34,0.5);
}


.mobile-close:active {
    transform: rotate(90deg) scale(0.95);
}

body.menu-open {
    overflow: hidden;
}

/* ===============================================
	HERO SLIDER
=============================================== */
.hero-slider {
    position: relative;
    height: 90vh; /* Increased from 85vh for better visual impact */
    min-height: 650px; /* Increased from 600px */
    max-height: 1000px; /* Increased from 900px */
    overflow: hidden;
    margin-top: 0; /* Removed gap - seamless transition from header */
}



.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; 
    display: block;
    filter: contrast(1.1) saturate(1.1) brightness(0.95);
    transform: scale(1.1);
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active img {
    transform: scale(1.0); 
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
    rgba(13, 40, 71, 0.15) 0%,
    rgba(13, 40, 71, 0.05) 50%,
    rgba(13, 40, 71, 0.25) 100%);
    z-index: 1;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.slider-arrow {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--primary-dark);
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: scale(1.15);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--accent-orange);
    border-color: var(--white);
    transform: scale(1.3);
}

/* ===============================================
	SECTORS WE SERVE – IMAGE LAYOUT
=============================================== */
.sectors-section {
    background: #ffffff;
    padding: 80px 0;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.sector-card {
    position: relative;
    height: 260px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.6s ease;
}

.sector-card:hover img {
    transform: scale(1.08);
}

.sector-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 20px;
    background: linear-gradient(
	to top,
	rgba(13, 40, 71, 0.85),
	rgba(13, 40, 71, 0.2)
    );
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===============================================
	SECTIONS
=============================================== */
section {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    color: var(--accent-orange);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-tag-light {
    display: inline-block;
    color: var(--accent-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title-light {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-left {
    margin-bottom: 40px;
}

/* ===============================================
	ABOUT SECTION
=============================================== */
.about-section {
    background: var(--white);
}

.about-header {
    margin-bottom: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 25px 35px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.badge-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-grey);
    text-transform: uppercase;
    margin-top: 5px;
}

.about-content p {
    font-size: 15px;
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-intro {
    font-size: 16px;
    color: var(--text-dark);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.mv-box {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mv-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mv-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mv-box h4 i {
    width: 45px;
    height: 45px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.mv-box p {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.8;
    margin: 0;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

/* ===============================================
	SERVICES SECTION - GLASSMORPHIC
=============================================== */
.services-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf0 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
	radial-gradient(circle at 20% 30%, rgba(25, 118, 210, 0.05) 0%, transparent 50%),
	radial-gradient(circle at 80% 70%, rgba(255, 87, 34, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.8;
}

.service-category {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--accent-orange);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--accent-orange);
    font-size: 36px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pullout-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Glassmorphic Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    box-shadow: 
	0 8px 32px rgba(0, 0, 0, 0.1),
	inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 
	0 20px 60px rgba(0, 0, 0, 0.15),
	0 0 0 1px rgba(25, 118, 210, 0.3),
	inset 0 1px 0 rgba(255, 255, 255, 1);
}

.service-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-orange), #d66b20);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    z-index: 3;
    box-shadow: 
	0 4px 15px rgba(233, 123, 47, 0.4),
	inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 
	0 6px 20px rgba(233, 123, 47, 0.6),
	inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1), rgba(13, 40, 71, 0.1));
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.95);
}

.service-card:hover .service-image img {
    transform: scale(1.15);
    filter: brightness(1);
}

.service-icon-large {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
    position: relative;
    overflow: hidden;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-card-content {
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
}

.service-card p {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-size: 13px;
    color: var(--text-grey);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li {
    color: var(--primary-dark);
}

.service-features i {
    color: var(--primary-blue);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-features i {
    color: var(--accent-orange);
    transform: scale(1.2);
}

.service-features i {
    color: var(--primary-blue);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===============================================
	SAC-SINGLAS ACCREDITATION SHOWCASE
=============================================== */
.accreditation-showcase {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #051229 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.accreditation-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
	radial-gradient(circle at 20% 80%, rgba(255, 87, 34, 0.1) 0%, transparent 50%),
	radial-gradient(circle at 80% 20%, rgba(25, 118, 210, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.accreditation-showcase .container {
    position: relative;
    z-index: 1;
}

.accreditation-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.accreditation-info h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.accreditation-info h2 .highlight {
    color: var(--accent-orange);
}

.accreditation-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.accreditation-details {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 16px;
    color: var(--white);
    font-weight: 700;
}

.accreditation-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.accreditation-badge {
    background: var(--accent-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.accreditation-badge i {
    font-size: 16px;
}

.certificate-display {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.certificate-display::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.certificate-image {
    width: auto;
    max-width: 280px; 
    display: block;
    margin: 0 auto 20px auto;
    
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(25, 118, 210, 0.2);
    position: relative;
    z-index: 1;
}
.certificate-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(25, 118, 210, 0.2);
    position: relative;
    z-index: 1;
}

.certificate-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.certificate-validity {
    font-size: 14px;
    color: var(--text-grey);
}

.verify-button {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.verify-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
}

.verify-button i {
    font-size: 16px;
}

/* ===============================================
	GALLERY SECTION
=============================================== */
.gallery-section {
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 40, 71, 0.9), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

/* ===============================================
	PRINCIPLES SECTION
=============================================== */
.principles-section {
    background: var(--primary-dark);
    color: var(--white);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.principle-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
}

.principle-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.principle-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.principle-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.principle-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* ===============================================
	CERTIFICATIONS SECTION
=============================================== */
.certifications-section {
    background: var(--white);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.cert-card {
    text-align: center;
    padding: 25px 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.3s;
    background: var(--light-bg);
}

.cert-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    background: var(--white);
}

.cert-card img {
    height: 80px;
    width: auto;
    margin: 0 auto 15px;
    object-fit: contain;
}

.cert-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.cert-card p {
    font-size: 12px;
    color: var(--text-grey);
}

.cert-note {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.7;
}

/* ===============================================
	CONTACT SECTION
=============================================== */
.contact-section {
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-details {
    margin-top: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-content p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.7;
}

.detail-content a {
    color: var(--text-grey);
    text-decoration: none;
}

.detail-content a:hover {
    color: var(--primary-blue);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 14px;
    color: var(--text-grey);
    font-size: 14px;
    transition: all 0.3s;
    pointer-events: none;
    background: var(--white);
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    color: var(--primary-blue);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: var(--accent-orange);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

/* ===============================================
	FOOTER
=============================================== */
/* ===============================================
	FOOTER - IMPROVED ALIGNMENT & SPACING
=============================================== */
.footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #051229 100%);
    color: var(--white);
    padding: 70px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange), var(--primary-blue));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-col:first-child {
    padding-right: 20px;
}

.footer-logo {
    height: 110px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-col h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
    line-height: 1.4;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-orange);
}

.footer-col p {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
    margin-bottom: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.footer-col p strong {
    flex: 0 0 85px;
    color: var(--white);
    font-weight: 600;
}

.footer-col p a {
    display: block;
    width: 100%;
    margin-left: 85px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.85);
}

.footer-col p a:first-of-type {
    width: auto;
    margin-left: 0;
}

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

.footer-col li {
    margin-bottom: 12px;
    padding-left: 0;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 18px;
}

.footer-col a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-orange);
    padding-left: 22px;
}

.footer-col a:hover::before {
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

/* Footer Contact Items - Improved Alignment */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 12px;
}

.footer-contact-item strong {
    min-width: 85px;
    flex-shrink: 0;
    color: var(--white);
    font-weight: 600;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.contact-links a {
    display: block;
    line-height: 1.6;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 0;
}

.contact-links a::before {
    display: none;
}

.contact-links a:hover {
    color: var(--accent-orange);
    padding-left: 0;
    transform: translateX(4px);
}




/* ===============================================
	WHATSAPP & AI CHATBOT BUTTONS
=============================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 997;
    font-weight: 600;
    font-size: 14px;
    border: none;
}

.whatsapp-btn:hover {
    background: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    font-size: 24px;
}

.chatbot-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(25, 118, 210, 0.4);
    transition: all 0.3s;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.chatbot-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 25px rgba(25, 118, 210, 0.5);
}

/* AI Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 380px;
    height: 550px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 999;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chatbot-widget.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
	}
    to {
        opacity: 1;
        transform: translateY(0);
	}
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 24px;
}

.chatbot-title h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.chatbot-title p {
    font-size: 12px;
    opacity: 0.9;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s;
}

.chatbot-close:hover {
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
}

.chatbot-message {
    margin-bottom: 15px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
	}
    to {
        opacity: 1;
        transform: translateY(0);
	}
}

.message-bot {
    display: flex;
    gap: 10px;
}

.message-user {
    display: flex;
    justify-content: flex-end;
}

.message-avatar {
    width: 35px;
    height: 35px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.message-content {
    background: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    max-width: 75%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.message-user .message-content {
    background: var(--primary-blue);
    color: var(--white);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 4px;
}

.message-text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    white-space: pre-line;
}

.chatbot-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.chatbot-option {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.chatbot-option:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(5px);
}

.chatbot-input-area {
    padding: 15px;
    border-top: 1px solid #e0e0e0;
    background: var(--white);
}

.chatbot-input-wrapper {
    display: flex;
    gap: 10px;
}

.chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.chatbot-input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.chatbot-send {
    background: var(--primary-blue);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.typing-indicator {
    display: none;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 12px;
    width: fit-content;
}

.typing-indicator.active {
    display: flex;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.3;
	}
    30% {
        transform: translateY(-10px);
        opacity: 1;
	}
}

/* AI Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 550px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25); 
    display: none;
    flex-direction: column;
    z-index: 2000; 
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chatbot-widget.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
	}
    to {
        opacity: 1;
        transform: translateY(0);
	}
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    padding: 15px 20px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

.chatbot-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 24px;
}

.chatbot-title h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.chatbot-title p {
    font-size: 12px;
    opacity: 0.9;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2); 
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    width: 32px; 
    height: 32px; 
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
}

.chatbot-message {
    margin-bottom: 15px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
	}
    to {
        opacity: 1;
        transform: translateY(0);
	}
}

.message-bot {
    display: flex;
    gap: 10px;
}

.message-user {
    display: flex;
    justify-content: flex-end;
}

.message-avatar {
    width: 35px;
    height: 35px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.message-content {
    background: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 75%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.message-user .message-content {
    background: var(--primary-blue);
    color: var(--white);
}

.message-text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.chatbot-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.chatbot-option {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.chatbot-option:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(5px);
}

.chatbot-input-area {
    padding: 15px;
    border-top: 1px solid #e0e0e0;
    background: var(--white);
}

.chatbot-input-wrapper {
    display: flex;
    gap: 10px;
}

.chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.chatbot-input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.chatbot-send {
    background: var(--primary-blue);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.typing-indicator {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 12px;
    width: fit-content;
}

.typing-indicator.active {
    display: flex;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
	}
    30% {
        transform: translateY(-10px);
	}
}

/* ===============================================
	DESKTOP HERO IMAGE OPTIMIZATION (1025px+)
	Shows more scene context without cropping
=============================================== */
@media (min-width: 1025px) {
    .slide img {
        object-fit: cover;
        object-position: center 35%;
	}
}

/* ===============================================
	RESPONSIVE DESIGN
=============================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
	}
	
    .pullout-grid {
        grid-template-columns: repeat(2, 1fr);
	}
	
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
	}
	
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
	}
	
    .about-grid {
        grid-template-columns: 1fr;
	}
	
    .mission-vision {
        grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        position: static;
	}
	
    .container-top {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
	}
	
    .top-bar-left {
        flex-direction: column;
        gap: 10px;
        width: 100%;
	}
	
    .mobile-toggle {
        display: flex;
        /* Glassmorphic toggle button for mobile */
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 
		0 4px 15px rgba(13, 40, 71, 0.2),
		inset 0 0 20px rgba(255, 255, 255, 0.2);
	}
    
    .mobile-toggle:hover {
        background: rgba(25, 118, 210, 0.25);
        border-color: rgba(25, 118, 210, 0.4);
        box-shadow: 
		0 6px 20px rgba(25, 118, 210, 0.3),
		inset 0 0 20px rgba(255, 255, 255, 0.3);
	}
    
    .mobile-toggle span {
        background: var(--primary-blue);
        box-shadow: 0 1px 3px rgba(13, 40, 71, 0.3);
	}
	
    .mobile-close {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 25px;
        z-index: 9999;
        /* Glassmorphic close button */
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
	}
    
    .mobile-close:hover {
        background: rgba(255, 87, 34, 0.3);
        transform: rotate(90deg);
        box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
	}
    
    /* GLASSMORPHIC MOBILE MENU PANEL */
    .nav-menu ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        
        /* Glassmorphism Effect */
        background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(248, 249, 250, 0.90) 100%
        );
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        
        /* Frosted glass border */
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 
		-10px 0 40px rgba(13, 40, 71, 0.15),
		inset 0 0 60px rgba(255, 255, 255, 0.3);
        
        flex-direction: column;
        padding: 80px 25px 30px 25px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        align-items: flex-start;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 9998;
        opacity: 1;
        
        /* Custom scrollbar for glass effect */
        scrollbar-width: thin;
        scrollbar-color: rgba(25, 118, 210, 0.3) transparent;
	}
    
    /* Webkit scrollbar styling */
    .nav-menu ul::-webkit-scrollbar {
        width: 6px;
	}
    
    .nav-menu ul::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
	}
    
    .nav-menu ul::-webkit-scrollbar-thumb {
        background: rgba(25, 118, 210, 0.4);
        border-radius: 10px;
        backdrop-filter: blur(10px);
	}
    
    .nav-menu ul::-webkit-scrollbar-thumb:hover {
        background: rgba(25, 118, 210, 0.6);
	}
    
    .nav-menu ul > * {
        position: relative;
	}
	
    .nav-menu.active ul {
        right: 0;
	}
    
    /* Enhanced Glassmorphic Backdrop */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
		135deg,
		rgba(13, 40, 71, 0.7) 0%,
		rgba(25, 118, 210, 0.5) 100%
        );
        z-index: 9997;
        animation: fadeIn 0.4s ease-in-out;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
	}
    
    @keyframes fadeIn {
        from {
            opacity: 0;
		}
        to {
            opacity: 1;
		}
	}
    
    /* Glassmorphic Dropdown Menu */
    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 12px 0 12px 15px;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        
        /* Glass effect for dropdown */
        background: rgba(245, 247, 250, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 12px;
        margin-left: 10px;
        display: none;
        border-left: 3px solid var(--primary-blue);
        border: 1px solid rgba(25, 118, 210, 0.2);
        box-shadow: 
		0 4px 15px rgba(13, 40, 71, 0.1),
		inset 0 0 20px rgba(255, 255, 255, 0.5);
	}
    
    .nav-menu .dropdown.active .dropdown-menu {
        display: block;
        animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
		}
        to {
            opacity: 1;
            transform: translateY(0);
		}
	}
    
    .nav-menu .dropdown > .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
	}
    
    .nav-menu ul li {
        width: 100%;
        margin-bottom: 8px;
	}
    
    /* Glassmorphic Menu Links */
    .nav-menu .nav-link {
        padding: 14px 18px;
        font-size: 16px;
        font-weight: 500;
        width: 100%;
        display: block;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        
        /* Glass button effect */
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 2px 8px rgba(13, 40, 71, 0.08);
	}
    
    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
		90deg,
		transparent,
		rgba(25, 118, 210, 0.15),
		transparent
        );
        transition: left 0.5s ease;
	}
    
    .nav-menu .nav-link:hover::before {
        left: 100%;
	}
    
    .nav-menu .nav-link:hover {
        background: rgba(25, 118, 210, 0.15);
        border-color: rgba(25, 118, 210, 0.3);
        transform: translateX(5px);
        box-shadow: 0 4px 15px rgba(25, 118, 210, 0.2);
	}
    
    .nav-menu .dropdown-menu a {
        padding: 10px 15px;
        font-size: 14px;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: transparent;
	}
    
    .nav-menu .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.6);
        transform: translateX(5px);
        box-shadow: 0 2px 8px rgba(13, 40, 71, 0.1);
	}
	
    .header-right {
        flex-wrap: wrap;
	}
    
    .header {
        position: static;
        top: auto;
        z-index: 1000;
	}
	
    .services-grid,
    .gallery-grid,
    .principles-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
	}
	
	.accreditation-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.accreditation-info h2 {
		font-size: 32px;
	}
	
	.pullout-grid {
		grid-template-columns: 1fr;
	}
	
	.service-image,
	.service-icon-large {
		height: 180px;
	}
	
	.service-icon-large {
		font-size: 60px;
	}
	
    .contact-wrapper {
        grid-template-columns: 1fr;
	}
	
    .form-row {
        grid-template-columns: 1fr;
	}
	
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
	}
	
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
	}
	
    .whatsapp-btn span {
        display: none;
	}
	
    .hero-slider {
        margin-top: 0;
        height: 500px;
	}
	
    .mission-vision {
        grid-template-columns: 1fr;
	}
	
    .pullout-grid {
        grid-template-columns: 1fr;
	}
	
    .service-image {
        height: 180px;
	}
	
    .service-icon-large {
        height: 180px;
        font-size: 60px;
	}
	
    .chatbot-widget {
        width: calc(100vw - 20px);
        right: 10px;
        bottom: 90px;
        height: 500px;
	}
	
    .chatbot-btn {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
	}
	
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
	}
	
    .whatsapp-btn span {
        display: none;
	}
}

@media (max-width: 480px) {
    .section-title,
    .section-title-light {
        font-size: 28px;
	}
	
    .hero-slider {
        height: 400px;
	}
	
    .about-image img {
        height: 350px;
	}
    
    .nav-menu ul {
        width: 90vw;
        max-width: 320px;
	}
    
    .mobile-close {
        right: 15px;
        top: 12px;
	}
} 

/* ===============================================
	ENHANCED SERVICES SECTION - ADDED STYLES
=============================================== */
/* ===============================================
	ENHANCED SERVICES SECTION - CSS
	Business-Critical NDT Services with Detailed Sections
=============================================== */

/* SERVICES OVERVIEW SECTION */
/* Top-level navigation grid for core services */
.services-overview {
    margin: 60px 0 80px 0;
}

.services-overview-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.services-overview-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-orange);
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.service-overview-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-overview-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 40, 71, 0.15);
}

.service-overview-card:hover::before {
    transform: scaleX(1);
}

.service-overview-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    transition: all 0.3s ease;
}

.service-overview-card:hover .service-overview-icon {
    background: linear-gradient(135deg, var(--accent-orange), #d84315);
    transform: rotate(360deg) scale(1.1);
}

.service-overview-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.service-overview-card p {
    font-size: 13px;
    color: var(--text-grey);
    line-height: 1.5;
}

/* DETAILED SERVICE SECTIONS */
/* Core revenue-generating services get full detailed sections */
.service-detail-section {
    margin: 80px 0;
    scroll-margin-top: 150px; /* Account for fixed header */
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.service-detail-layout.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.service-detail-layout.reverse .service-detail-content {
    order: 2;
}

.service-detail-layout.reverse .service-detail-slider {
    order: 1;
}

.service-detail-header {
    margin-bottom: 30px;
}

.service-detail-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.service-detail-header h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-detail-intro {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.8;
}

.service-detail-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-detail-block h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-block h5 i {
    color: var(--accent-orange);
    font-size: 18px;
}

.service-detail-block ul {
    list-style: none;
    padding: 0;
}

.service-detail-block ul li {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.service-detail-block ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.service-detail-block ul li strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.service-detail-block p {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.8;
}

/* SERVICE IMAGE SLIDERS */
/* Lightweight sliders for each core service */
.service-detail-slider {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-light);
}

.service-slider-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.service-slide.active {
    opacity: 1;
}

.service-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.service-slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-slider-btn:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: scale(1.1);
}

.service-slider-dots {
    display: flex;
    gap: 8px;
}

.service-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-slider-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 5px;
}

/* ADDITIONAL SERVICES - COMPACT GRID */
/* Secondary services in condensed format */
.additional-services {
    margin: 80px 0;
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
}

.additional-services-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.additional-services-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-orange);
}

.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 0 30px;
}

.service-card-compact {
    background: var(--white);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.service-card-compact:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(13, 40, 71, 0.12);
    transform: translateY(-3px);
}

.service-card-compact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1), rgba(255, 87, 34, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 26px;
    transition: all 0.3s ease;
}

.service-card-compact:hover .service-card-compact-icon {
    background: var(--accent-orange);
    color: var(--white);
    transform: scale(1.1);
}

.service-card-compact h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-card-compact p {
    font-size: 13px;
    color: var(--text-grey);
    line-height: 1.6;
}

/* WHY CHOOSE US SECTION - SIGNIFICANTLY UPGRADED */
/* Designed to convince enterprise decision-makers */
.why-choose-us {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #051229 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
	radial-gradient(circle at 20% 80%, rgba(255, 87, 34, 0.1) 0%, transparent 50%),
	radial-gradient(circle at 80% 20%, rgba(25, 118, 210, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.section-tag-light {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-light {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.why-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Why Choose Us Cards - Improved Alignment */
.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 38px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-orange), var(--primary-blue));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.why-card:hover::before {
    transform: scaleY(1);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-highlight {
    display: inline-block;
    background: rgba(255, 87, 34, 0.2);
    color: var(--accent-orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.why-details {
    margin-top: 15px;
}

.why-details p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

/* Why Choose Us Icons - Improved Alignment */
.why-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--accent-orange), #d84315);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    margin: 0 auto 22px auto;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 87, 34, 0.4);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
}

.why-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-details {
    color: rgba(255, 255, 255, 0.8);
}

.why-highlight {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-details p {
    font-size: 14px;
    line-height: 1.8;
}

/* CREDENTIALS BAR */
/* Supporting credibility indicators */
.credentials-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.credential-item i {
    color: var(--accent-orange);
    font-size: 18px;
}

/* RESPONSIVE DESIGN - SERVICES & WHY CHOOSE US */
@media (max-width: 1024px) {
    .service-detail-layout,
    .service-detail-layout.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
	}
	
    .service-detail-layout.reverse .service-detail-content,
    .service-detail-layout.reverse .service-detail-slider {
        order: 0;
	}
	
    .service-detail-header h3 {
        font-size: 28px;
	}
	
    .why-grid {
        grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
    .services-overview-grid {
        grid-template-columns: 1fr;
	}
	
    .service-detail-header h3 {
        font-size: 24px;
	}
	
    .service-detail-intro {
        font-size: 14px;
	}
	
    .services-grid-compact {
        grid-template-columns: 1fr;
        padding: 0 15px;
	}
	
    .section-title-light {
        font-size: 28px;
	}
	
    .why-intro {
        font-size: 14px;
	}
	
    .credentials-bar {
        flex-direction: column;
        gap: 15px;
	}
	
    .service-detail-section {
        margin: 50px 0;
	}
	
    .additional-services {
        margin: 50px 0;
        padding: 30px 0;
	}
}

@media (max-width: 480px) {
    .service-overview-card {
        padding: 25px 15px;
	}
	
    .service-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
	}
	
    .why-card {
        padding: 25px 20px;
	}
}

/* DROPDOWN MENU FIX - VERTICAL LAYOUT */
/* Changed from horizontal to vertical per requirements */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px; /* Increased width for better readability */
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    /* VERTICAL LAYOUT - Each item stacks */
    display: flex;
    flex-direction: column; /* Key change: vertical stacking */
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    width: 100%; /* Each item takes full width */
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px; /* Increased padding for better touch targets */
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    white-space: nowrap;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-blue);
    border-left-color: var(--accent-orange);
    padding-left: 23px;
}


/* ===============================================
	COMPREHENSIVE CERTIFICATIONS SHOWCASE - ADDED STYLES
=============================================== */
/* ===============================================
	COMPREHENSIVE CERTIFICATIONS SHOWCASE - CSS
	Consolidated professional certifications section
=============================================== */

.certifications-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

.certifications-intro {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.8;
}

/* PRIMARY CERTIFICATIONS - FULL DETAIL CARDS */
.primary-certifications {
    margin-bottom: 80px;
}

.cert-detail-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.cert-detail-card.featured {
    border-color: var(--accent-orange);
    box-shadow: 0 6px 30px rgba(255, 87, 34, 0.15);
}

.cert-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.cert-detail-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-light);
}

.cert-badge-large {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-badge-large img {
    width: 100%;
    height: auto;
    max-width: 160px;
}

.cert-header-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.cert-authority {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.cert-description {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.8;
}

.cert-detail-info {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.05), rgba(13, 40, 71, 0.05));
    padding: 30px;
    border-radius: 12px;
}

.cert-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.cert-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cert-info-item.full-width {
    grid-column: 1 / -1;
}

.cert-info-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cert-info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
}

.cert-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cert-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-btn.primary {
    background: var(--accent-orange);
    color: var(--white);
}

.cert-btn.primary:hover {
    background: #d84315;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.cert-btn.secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.cert-btn.secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.cert-btn i {
    font-size: 16px;
}

/* SECONDARY CERTIFICATIONS - PROFESSIONAL GRID */
.secondary-certifications {
    margin-bottom: 60px;
}

.secondary-certs-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.secondary-certs-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-orange);
}

.cert-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.cert-card-professional {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cert-card-professional:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 40, 71, 0.12);
}

.cert-icon-badge {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.05), rgba(255, 87, 34, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 15px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.cert-card-professional:hover .cert-icon-badge {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.cert-icon-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cert-card-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.cert-card-category {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.cert-card-desc {
    font-size: 13px;
    color: var(--text-grey);
    line-height: 1.7;
}

/* CERTIFICATION SUMMARY BAR */
.cert-summary-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-dark), #051229);
    border-radius: 16px;
    margin-bottom: 30px;
}

.cert-summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
}

.cert-summary-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 87, 34, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-summary-icon i {
    font-size: 26px;
    color: var(--accent-orange);
}

.cert-summary-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cert-summary-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.cert-summary-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

/* COMPLIANCE NOTE */
.cert-compliance-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    padding: 25px;
    background: rgba(25, 118, 210, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.cert-compliance-note i {
    color: var(--primary-blue);
    margin-right: 8px;
    font-size: 16px;
}

/* RESPONSIVE DESIGN - CERTIFICATIONS */
@media (max-width: 1024px) {
    .cert-detail-header {
        grid-template-columns: 160px 1fr;
        gap: 20px;
	}
	
    .cert-badge-large {
        padding: 15px;
	}
	
    .cert-header-content h3 {
        font-size: 22px;
	}
	
    .cert-info-grid {
        grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
    .certifications-showcase {
        padding: 60px 0;
	}
	
    .cert-detail-card {
        padding: 25px;
	}
	
    .cert-detail-header {
        grid-template-columns: 1fr;
        text-align: center;
	}
	
    .cert-badge-large {
        margin: 0 auto;
        max-width: 160px;
	}
	
    .cert-info-grid {
        grid-template-columns: 1fr;
	}
	
    .cert-actions {
        flex-direction: column;
	}
	
    .cert-btn {
        width: 100%;
        justify-content: center;
	}
	
    .cert-grid-professional {
        grid-template-columns: 1fr;
	}
	
    .cert-summary-bar {
        grid-template-columns: 1fr;
        padding: 25px;
	}
	
    .secondary-certs-title {
        font-size: 20px;
	}
}

@media (max-width: 480px) {
    .cert-header-content h3 {
        font-size: 20px;
	}
	
    .cert-summary-number {
        font-size: 18px;
	}
	
    .cert-summary-label {
        font-size: 11px;
	}
}

/* ===============================================
	VISUAL HIERARCHY IMPROVEMENTS - FINAL ENHANCEMENT
=============================================== */
/* ===============================================
	VISUAL HIERARCHY IMPROVEMENTS - SERVICES & CERTIFICATIONS
	Image-based cards matching reference design
=============================================== */

/* REMOVE services-overview CSS since we removed that section */
.services-overview {
    display: none !important;
}

/* ENHANCED COMPACT SERVICE CARDS - Image-based design */
.service-card-compact {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-compact:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(13, 40, 71, 0.15);
}

.service-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1), rgba(13, 40, 71, 0.1));
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.service-card-compact:hover .service-card-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.service-number-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), #d84315);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    z-index: 2;
}

.service-card-compact-content {
    padding: 25px 20px;
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-compact-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-compact-content p {
    font-size: 13px;
    color: var(--text-grey);
    line-height: 1.7;
    flex: 1;
}

/* ADDITIONAL SERVICES SECTION - Enhanced spacing */
.additional-services {
    margin: 80px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(13, 40, 71, 0.03) 0%, rgba(25, 118, 210, 0.03) 100%);
    border-radius: 20px;
}

.additional-services-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.additional-services-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 2px;
}

/* SERVICES GRID - Optimized for image cards */
.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 30px;
}

/* CORE SERVICES - Enhanced visual dominance */
.service-detail-section {
    margin: 70px 0;
    scroll-margin-top: 150px;
    position: relative;
}

.service-detail-section::before {
    content: '';
    position: absolute;
    left: -100%;
    right: -100%;
    top: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail-section:hover::before {
    opacity: 1;
}

/* CERTIFICATIONS SECTION - PROFESSIONAL DISPLAY */
.cert-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cert-card-professional {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cert-card-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.cert-card-professional:hover::before {
    transform: scaleX(1);
}

.cert-card-professional:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(13, 40, 71, 0.12);
}

.cert-icon-badge {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.08), rgba(255, 87, 34, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 20px;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.cert-card-professional:hover .cert-icon-badge {
    border-color: var(--primary-blue);
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 10px 25px rgba(25, 118, 210, 0.15);
}

.cert-icon-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cert-card-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.cert-card-category {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cert-card-desc {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.8;
}

/* PRIMARY CERTIFICATION CARDS - Enhanced visual prominence */
.cert-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 45px;
    margin-bottom: 35px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cert-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-orange));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.cert-detail-card:hover::before {
    transform: scaleY(1);
}

.cert-detail-card.featured {
    border-color: var(--accent-orange);
    box-shadow: 0 8px 35px rgba(255, 87, 34, 0.15);
}

.cert-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.cert-badge-large {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.05), rgba(255, 87, 34, 0.05));
    padding: 25px;
    border-radius: 16px;
    border: 3px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cert-detail-card:hover .cert-badge-large {
    border-color: var(--primary-blue);
    transform: scale(1.02);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
    .services-grid-compact {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
        padding: 0 20px;
	}
	
    .service-card-image {
        height: 180px;
	}
}

@media (max-width: 768px) {
    .services-grid-compact {
        grid-template-columns: 1fr;
        padding: 0 15px;
	}
	
    .service-card-image {
        height: 220px;
	}
	
    .additional-services {
        margin: 50px 0;
        padding: 40px 0;
	}
	
    .additional-services-title {
        font-size: 24px;
	}
	
    .cert-detail-card {
        padding: 30px 25px;
	}
	
    .cert-icon-badge {
        width: 100px;
        height: 100px;
	}
}

@media (max-width: 480px) {
    .service-card-image {
        height: 200px;
	}
	
    .service-number-badge {
        width: 45px;
        height: 45px;
        font-size: 16px;
        top: 12px;
        right: 12px;
	}
	
    .service-card-compact-content {
        padding: 20px 15px;
	}
}


/* ===============================================
	MODERN GLASS-CARD DESIGN - FINAL IMPLEMENTATION
=============================================== */
/* ===============================================
	MODERN GLASS-CARD DESIGN - SERVICES SECTIONS
	Matching reference design with dark theme, cyan accents
=============================================== */

/* MODERN PULL-OUT SERVICES SECTION */
.section-pullout-services {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(25, 118, 210, 0.03) 50%, transparent 100%);
}

.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-modern.centered {
    text-align: center;
}

.section-label-modern {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1), rgba(255, 87, 34, 0.1));
    border-radius: 25px;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.highlight-cyan {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* MODERN SERVICES GRID */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* MODERN GLASS SERVICE CARDS */
.service-card-modern {
    padding: 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 2px solid rgba(13, 40, 71, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card-modern.glass-card-modern {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 40, 71, 0.15);
    border-color: var(--primary-blue);
}

/* MODERN SERVICE NUMBER BADGE */
.service-number-modern {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(25, 118, 210, 0.25);
    line-height: 1;
    z-index: 10;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-number-modern {
    color: rgba(255, 87, 34, 0.4);
    transform: scale(1.1);
}

/* MODERN SERVICE IMAGE */
.service-image-modern {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: var(--primary-dark);
    position: relative;
}

.service-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.service-card-modern:hover .service-image-modern img {
    transform: scale(1.08);
    filter: brightness(1);
}

.service-image-modern::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
	to bottom,
	rgba(13, 40, 71, 0.15),
	rgba(13, 40, 71, 0.45)
    );
    pointer-events: none;
}

/* MODERN SERVICE CARD CONTENT */
.service-card-content-modern {
    padding: 2rem 2.5rem 2.5rem 2.5rem;
    background: var(--white);
}

.service-card-content-modern h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: var(--primary-dark);
    font-weight: 800;
    text-transform: uppercase;
}

.service-card-content-modern p {
    color: var(--text-grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* MODERN SERVICE FEATURES LIST */
.service-features-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-modern li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.service-features-modern li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.service-card-modern:hover .service-features-modern li::before {
    color: var(--accent-orange);
}

.service-card-modern:hover .service-features-modern li {
    color: var(--primary-dark);
}

/* RESPONSIVE - MODERN CARDS */
@media (max-width: 1024px) {
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
	}
	
    .section-title-modern {
        font-size: 2rem;
	}
}

@media (max-width: 768px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
	}
	
    .section-pullout-services {
        padding: 5rem 0;
	}
	
    .section-title-modern {
        font-size: 1.75rem;
	}
	
    .service-image-modern {
        height: 220px;
	}
	
    .service-card-content-modern {
        padding: 1.5rem 2rem 2rem 2rem;
	}
}

@media (max-width: 480px) {
    .service-number-modern {
        font-size: 2rem;
        top: 0.75rem;
        right: 1rem;
	}
	
    .service-card-content-modern h3 {
        font-size: 1.1rem;
	}
	
    .section-label-modern {
        font-size: 0.75rem;
        letter-spacing: 2px;
	}
}

/* VISUAL ENHANCEMENTS */
.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

/* COMPLEMENTARY SERVICES SECTION - Matching design */
.section-complementary-services {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 50%, rgba(255, 255, 255, 0.5) 100%);
}

@media (max-width: 992px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
    .sectors-grid {
        grid-template-columns: 1fr;
	}
}


-e 

/* ===============================================
	MOBILE & TABLET RESPONSIVE OPTIMIZATION
=============================================== */
/* ===============================================
	MOBILE & TABLET RESPONSIVE OPTIMIZATION
	Comprehensive improvements for all screen sizes
=============================================== */

/* ===================================
	TABLET LANDSCAPE (1024px - 1280px)
=================================== */
@media (max-width: 1280px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
	}
    
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
	}
}

/* ===================================
	TABLET (768px - 1024px)
=================================== */
@media (max-width: 1024px) {
    /* Container & Spacing */
    .container {
        padding: 0 25px;
	}
    
    /* Header */
    .container-header {
        padding: 0 25px;
	}
    
    .logo {
        height: 45px;
	}
    
    .logo-text h1 {
        font-size: 13px;
	}
    
    .nav-menu ul {
        gap: 18px;
	}
    
    .nav-link {
        font-size: 13px;
	}
    
    .cert-badge img {
        height: 60px;
	}
    
    .btn-get-started {
        padding: 10px 18px;
        font-size: 13px;
	}
    
    /* Hero */
    .hero-slider {
        height: 75vh; /* Increased from 65vh */
        min-height: 550px; /* Increased from 480px */
	}
    
    /* Sections */
    .section-title {
        font-size: 30px;
	}
    
    .section-title-modern {
        font-size: 26px;
	}
    
    .section-title-light {
        font-size: 30px;
	}
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
	}
    
    /* Service Cards */
    .service-detail-layout {
        gap: 40px;
	}
    
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
	}
    
    /* Why Choose Us */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
	}
    
    /* Certifications */
    .cert-detail-header {
        gap: 25px;
	}
    
    .cert-grid-professional {
        grid-template-columns: repeat(2, 1fr);
	}
}

/* ===================================
	MOBILE NAVIGATION (< 992px)
=================================== */
@media (max-width: 992px) {
    /* Show mobile toggle button */
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1002;
        transition: all 0.3s ease;
	}
    
    .mobile-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--primary-dark);
        border-radius: 3px;
        transition: all 0.3s ease;
	}
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
	}
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
	}
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
	}
    
    /* Mobile navigation menu */
    .nav-menu {
        position: fixed;
        top: 93px;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: calc(100vh - 93px);
        background: var(--white);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
        -webkit-overflow-scrolling: touch;
	}
    
    .nav-menu.active {
        right: 0;
	}
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
	}
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
	}
    
    .nav-link {
        padding: 16px 25px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 14px;
	}
    
    /* Dropdown in mobile */
    .dropdown .nav-link i {
        transition: transform 0.3s ease;
	}
    
    .dropdown.active .nav-link i {
        transform: rotate(180deg);
	}
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(13, 40, 71, 0.04);
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-radius: 0;
        padding: 0;
	}
    
    .dropdown.active .dropdown-menu {
        max-height: 600px;
	}
    
    .dropdown-menu a {
        padding: 12px 25px 12px 50px;
        font-size: 13px;
        border-left: 3px solid var(--primary-blue);
        background: transparent;
	}
    
    .dropdown-menu a:hover {
        background: rgba(25, 118, 210, 0.08);
	}
    
    /* Hide desktop items */
    .header-right {
        display: none;
	}
    
    /* Mobile menu overlay */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
	}
    
    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
	}
}

/* ===================================
	MOBILE (< 768px)
=================================== */
@media (max-width: 768px) {
    /* Global */
    .container {
        padding: 0 20px;
	}
    
    .container-top {
        padding: 0 20px;
	}
    
    .container-header {
        padding: 0 20px;
	}
    
    /* Top Bar */
    .top-bar {
        padding: 8px 0;
        font-size: 12px;
	}
    
    .top-bar-left {
        gap: 12px;
        flex-wrap: wrap;
	}
    
    .top-contact-item {
        font-size: 12px;
	}
    
    .top-contact-item i {
        font-size: 12px;
	}
    
    /* Header */
    .header {
        padding: 10px 0;
	}
    
    .logo {
        height: 40px;
	}
    
    .logo-text h1 {
        font-size: 11px;
        letter-spacing: 0.5px;
	}
    
    /* Hero */
    .hero-slider {
        height: 70vh; /* Increased from 55vh - much more impactful on mobile! */
        min-height: 500px; /* Increased from 380px */
        margin-top: 0;
	}
    
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
	}
    
    .slider-arrows {
        padding: 0 20px;
	}
    
    /* Section Headers */
    .section-title {
        font-size: 28px;
        line-height: 1.2;
	}
    
    .section-title-modern {
        font-size: 24px;
	}
    
    .section-title-light {
        font-size: 28px;
	}
    
    .section-tag,
    .section-tag-light {
        font-size: 12px;
        padding: 6px 16px;
	}
    
    .section-label-modern {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 0.4rem 1.2rem;
	}
    
    .section-header-center,
    .section-header-modern {
        margin-bottom: 35px;
	}
    
    .services-intro,
    .why-intro {
        font-size: 13px;
        margin-bottom: 30px;
	}
    
    /* About Section */
    .about-section {
        padding: 50px 0;
	}
    
    .about-grid {
        gap: 35px;
	}
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 10px;
        right: 10px;
	}
    
    .badge-number {
        font-size: 28px;
	}
    
    .badge-text {
        font-size: 10px;
	}
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
	}
    
    /* Service Detail Sections */
    .service-detail-section {
        margin: 45px 0;
        padding: 35px 0;
	}
    
    .service-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
	}
    
    .service-detail-layout.reverse .service-detail-content {
        order: 1;
	}
    
    .service-detail-layout.reverse .service-detail-slider {
        order: 2;
	}
    
    .service-detail-header h3 {
        font-size: 22px;
	}
    
    .service-detail-tag {
        font-size: 11px;
        padding: 6px 14px;
	}
    
    .service-detail-intro {
        font-size: 13px;
	}
    
    .service-detail-info {
        gap: 20px;
	}
    
    .service-detail-block h5 {
        font-size: 15px;
        margin-bottom: 12px;
	}
    
    .service-detail-block ul {
        gap: 8px;
	}
    
    .service-detail-block ul li {
        font-size: 13px;
        padding-left: 20px;
	}
    
    /* Service Sliders */
    .service-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
        background: rgba(255, 87, 34, 0.95);
        color: var(--white);
        border: 2px solid var(--white);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	}
    
    .service-slider-btn:hover,
    .service-slider-btn:active {
        background: var(--primary-dark);
        transform: scale(1.05);
	}
    
    .service-slider-controls {
        bottom: 25px;
        gap: 20px;
	}
    
    .service-slider-dots {
        gap: 8px;
	}
    
    .service-slider-dot {
        width: 8px;
        height: 8px;
	}
    
    /* Modern Service Cards */
    .section-complementary-services,
    .section-pullout-services {
        padding: 50px 0;
	}
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
	}
    
    .service-card-modern {
        max-width: 100%;
	}
    
    .service-number-modern {
        font-size: 2.2rem;
        top: 1rem;
        right: 1.3rem;
	}
    
    .service-image-modern {
        height: 200px;
	}
    
    .service-card-content-modern {
        padding: 1.8rem 1.5rem 2rem 1.5rem;
	}
    
    .service-card-content-modern h3 {
        font-size: 1.15rem;
        margin-bottom: 0.9rem;
	}
    
    .service-card-content-modern p {
        font-size: 0.9rem;
        margin-bottom: 1.3rem;
	}
    
    .service-features-modern li {
        padding: 0.45rem 0;
        font-size: 0.9rem;
	}
    
    /* Why Choose Us */
    .why-choose-us {
        padding: 50px 0;
	}
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
	}
    
    .why-card {
        padding: 25px 20px;
	}
    
    .why-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
        margin-bottom: 18px;
	}
    
    .why-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
	}
    
    .why-highlight {
        font-size: 12px;
        margin-bottom: 10px;
	}
    
    .why-details p {
        font-size: 13px;
	}
    
    .credentials-bar {
        flex-wrap: wrap;
        gap: 12px;
        padding: 20px 15px;
	}
    
    .credential-item {
        font-size: 12px;
	}
    
    /* Principles */
    .principles-section {
        padding: 50px 0;
	}
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
	}
    
    .principle-card {
        padding: 25px 20px;
	}
    
    .principle-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
	}
    
    /* Certifications */
    .certifications-showcase {
        padding: 50px 0;
	}
    
    .primary-certifications {
        margin-bottom: 50px;
	}
    
    .cert-detail-card {
        padding: 25px 20px;
        margin-bottom: 25px;
	}
    
    .cert-detail-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
	}
    
    .cert-badge-large {
        margin: 0 auto;
        max-width: 140px;
        padding: 15px;
	}
    
    .cert-header-content h3 {
        font-size: 20px;
	}
    
    .cert-authority {
        font-size: 12px;
	}
    
    .cert-description {
        font-size: 13px;
	}
    
    .cert-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
	}
    
    .cert-info-label {
        font-size: 11px;
	}
    
    .cert-info-value {
        font-size: 14px;
	}
    
    .cert-actions {
        flex-direction: column;
        gap: 12px;
	}
    
    .cert-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
	}
    
    .secondary-certifications {
        margin-bottom: 50px;
	}
    
    .secondary-certs-title {
        font-size: 20px;
        margin-bottom: 30px;
	}
    
    .cert-grid-professional {
        grid-template-columns: 1fr;
        gap: 20px;
	}
    
    .cert-card-professional {
        padding: 25px 20px;
	}
    
    .cert-icon-badge {
        width: 90px;
        height: 90px;
        margin-bottom: 18px;
	}
    
    .cert-card-content h4 {
        font-size: 16px;
	}
    
    .cert-card-category {
        font-size: 12px;
	}
    
    .cert-card-desc {
        font-size: 13px;
	}
    
    .cert-summary-bar {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 20px;
	}
    
    .cert-summary-icon {
        width: 50px;
        height: 50px;
	}
    
    .cert-summary-icon i {
        font-size: 22px;
	}
    
    .cert-summary-number {
        font-size: 20px;
	}
    
    .cert-summary-label {
        font-size: 11px;
	}
    
    /* Contact Section */
    .contact-section {
        padding: 50px 0;
	}
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
	}
    
    .contact-info {
        order: 2;
	}
    
    .contact-form-wrapper {
        order: 1;
	}
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
	}
    
    .form-group {
        margin-bottom: 15px;
	}
    
    input,
    textarea,
    select {
        font-size: 16px; /* Prevent iOS zoom */
        padding: 12px 15px;
	}
    
    .btn-submit {
        width: 100%;
        padding: 14px 20px;
	}
    
    /* Footer */
    .footer {
        padding: 40px 0 20px 0;
	}
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
	}
    
    .footer-col h3 {
        font-size: 16px;
	}
    
    .footer-col ul {
        text-align: center;
	}
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 20px;
	}
    
    /* Sticky Elements */
    .whatsapp-btn {
        bottom: 85px;
        right: 20px;
        padding: 12px 16px;
	}
    
    .whatsapp-btn span {
        display: none;
	}
    
    .chatbot-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
	}
    
    .chatbot-widget {
        width: calc(100vw - 30px);
        height: calc(100vh - 150px);
        bottom: 90px;
        right: 15px;
	}
}

/* ===================================
	SMALL MOBILE (< 480px)
=================================== */
@media (max-width: 480px) {
    /* Ultra-compact spacing */
    .container {
        padding: 0 15px;
	}
    
    .container-top,
    .container-header {
        padding: 0 15px;
	}
    
    /* Top Bar */
    .top-bar-left {
        gap: 8px;
	}
    
    .top-contact-item {
        font-size: 10px;
	}
    
    /* Header */
    .logo {
        height: 35px;
	}
    
    .logo-text h1 {
        font-size: 9px;
        letter-spacing: 0.3px;
	}
    
    /* Hero */
    .hero-slider {
        height: 65vh; /* Increased from 50vh */
        min-height: 450px; /* Increased from 320px */
	}
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
	}
    
    /* Typography */
    .section-title {
        font-size: 22px;
	}
    
    .section-title-modern {
        font-size: 20px;
	}
    
    .section-title-light {
        font-size: 22px;
	}
    
    .section-tag,
    .section-tag-light,
    .section-label-modern {
        font-size: 9px;
        letter-spacing: 1.5px;
	}
    
    /* Service Cards */
    .service-number-modern {
        font-size: 1.9rem;
        top: 0.8rem;
        right: 1rem;
	}
    
    .service-image-modern {
        height: 180px;
	}
    
    .service-card-content-modern {
        padding: 1.5rem 1.2rem;
	}
    
    .service-card-content-modern h3 {
        font-size: 1.05rem;
	}
    
    .service-card-content-modern p {
        font-size: 0.85rem;
	}
    
    .service-features-modern li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
	}
    
    /* Service Details */
    .service-detail-header h3 {
        font-size: 20px;
	}
    
    .service-detail-tag {
        font-size: 10px;
        padding: 5px 12px;
	}
    
    .service-detail-intro {
        font-size: 12px;
	}
    
    .service-detail-block h5 {
        font-size: 14px;
	}
    
    .service-detail-block ul li {
        font-size: 12px;
	}
    
    /* Why Choose Us */
    .why-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
	}
    
    .why-card h3 {
        font-size: 16px;
	}
    
    .why-highlight {
        font-size: 11px;
	}
    
    .why-details p {
        font-size: 12px;
	}
    
    /* Certifications */
    .cert-header-content h3 {
        font-size: 18px;
	}
    
    .cert-icon-badge {
        width: 80px;
        height: 80px;
	}
    
    .cert-summary-number {
        font-size: 18px;
	}
    
    .cert-summary-label {
        font-size: 10px;
	}
    
    /* Forms */
    .btn-submit {
        padding: 13px 18px;
        font-size: 14px;
	}
}

/* ===================================
	LANDSCAPE MOBILE (< 500px height)
=================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        height: 80vh;
	}
    
    .nav-menu {
        height: calc(100vh - 70px);
        top: 70px;
	}
    
    .chatbot-widget {
        height: calc(100vh - 100px);
	}
}

/* ===================================
	TOUCH DEVICE OPTIMIZATIONS
=================================== */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-link {
        min-height: 48px;
        padding: 14px 25px;
	}
    
    .dropdown-menu a {
        min-height: 44px;
	}
    
    button,
    .btn-primary,
    .btn-submit,
    .cert-btn {
        min-height: 44px;
	}
    
    /* Remove problematic hover states */
    .service-card-modern:hover {
        transform: none;
	}
    
    .service-card-modern:active {
        transform: translateY(-3px);
        transition: transform 0.1s ease;
	}
    
    .why-card:hover {
        transform: none;
	}
    
    .why-card:active {
        opacity: 0.95;
	}
    
    /* Better tap feedback */
    .nav-link:active,
    .dropdown-menu a:active {
        background: rgba(25, 118, 210, 0.1);
	}
}

/* ===================================
	PRINT STYLES
=================================== */
@media print {
    .top-bar,
    .header,
    .nav-menu,
    .mobile-toggle,
    .whatsapp-btn,
    .chatbot-btn,
    .chatbot-widget,
    .slider-arrows,
    .service-slider-controls,
    .footer {
        display: none !important;
	}
    
    body {
        font-size: 12pt;
        line-height: 1.5;
	}
    
    .hero-slider {
        height: auto;
        min-height: 200px;
	}
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
	}
    
    a {
        text-decoration: underline;
	}
    
    .service-card-modern,
    .cert-card-professional,
    .why-card {
        page-break-inside: avoid;
	}
	}/* ===============================================
	MOBILE & TABLET OPTIMIZATIONS
	Appended to existing styles.css
	Desktop behavior remains unchanged
=============================================== */

/* ===============================================
	TABLET OPTIMIZATIONS (769px - 1024px)
=============================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    
    /* Top Bar - Compact Layout */
    .container-top {
        padding: 0 30px;
	}
    
    .top-bar-left {
        gap: 20px;
	}
    
    .top-contact-item {
        font-size: 12px;
	}
    
    .top-bar-branding {
        margin-left: 20px;
	}
    
    .top-bar-cn {
        font-size: 11px;
        margin-bottom: 4px;
	}
    
    .top-bar-en {
        font-size: 10px;
	}
    
    /* Header - Tighter Spacing */
    .container-header {
        padding: 0 30px;
	}
    
    .logo-wrapper {
        gap: 12px;
	}
    
    .logo {
        height: 55px;
	}
    
    .logo-text h1 {
        font-size: 14px;
        letter-spacing: 0.3px;
	}
    
    .nav-menu ul {
        gap: 20px;
	}
    
    .nav-link {
        font-size: 13px;
	}
    
    .cert-badge img {
        height: 55px;
	}
    
    .btn-get-started {
        padding: 10px 22px;
        font-size: 13px;
	}
    
    /* Hero Slider */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
        max-height: 750px;
	}
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 18px;
	}
    
    /* Sections Spacing */
    .sectors-section,
    .about-section,
    .services-section,
    .why-choose-section,
    .principles-section,
    .certifications-section,
    .contact-section {
        padding: 60px 0;
	}
    
    /* Section Titles */
    .section-title {
        font-size: 32px;
	}
    
    .section-title-modern,
    .section-title-light {
        font-size: 30px;
	}
    
    /* Sectors Grid */
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
	}
    
    /* About Section */
    .about-grid {
        gap: 40px;
	}
    
    /* Services Grid */
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
	}
    
    /* Why Choose Grid */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
	}
    
    /* Certifications */
    .cert-grid-professional {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
	}
    
    /* Contact Form */
    .contact-wrapper {
        gap: 40px;
	}
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
	}
}

/* ===============================================
	MOBILE OPTIMIZATIONS (≤768px)
=============================================== */
@media (max-width: 768px) {
    
    /* ===== TOP BAR MOBILE ===== */
    .top-bar {
        padding: 8px 0;
        font-size: 11px;
        position: static;
        display: block;
        z-index: 1001;
	}
    
    .container-top {
        padding: 0 12px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 6px;
	}
    
    .top-bar-left {
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100%;
        order: 1;
	}
    
    .top-contact-item {
        font-size: 10.5px;
        gap: 5px;
	}
    
    .top-contact-item i {
        font-size: 11px;
	}
    
    /* Top Bar Branding - Mobile */
    .top-bar-branding {
        margin-left: 0;
        text-align: left;
        width: 100%;
        order: 2;
        margin-top: 0;
	}
    
    .top-bar-cn {
        font-size: 9.5px;
        margin-bottom: 2px;
        letter-spacing: 0.3px;
        display: block;
	}
    
    .top-bar-en {
        font-size: 8.5px;
        letter-spacing: 0.2px;
        display: block;
	}
    
    /* ===== HEADER MOBILE ===== */
    .header {
        position: static;
        top: auto;
        padding: 10px 0;
        z-index: 1000;
        margin-top: 0;
	}
    
    .container-header {
        padding: 0 12px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
	}
    
    /* Header Left - Logo & Text */
    .header-left {
        flex: 1;
        max-width: calc(100% - 60px);
        min-width: 0;
	}
    
    .logo-wrapper {
        gap: 8px;
        display: flex;
        align-items: center;
        width: 100%;
	}
    
    .logo {
        height: 38px;
        width: auto;
        flex-shrink: 0;
	}
    
    .logo-text {
        flex: 1;
        min-width: 0;
        overflow: hidden;
	}
    
    .logo-text h1 {
        font-size: 9.5px;
        line-height: 1.2;
        letter-spacing: 0.2px;
        word-wrap: break-word;
        white-space: normal;
        overflow-wrap: break-word;
        margin: 0;
	}
    
    /* Mobile Toggle Button - Make sure it's visible */
    .mobile-toggle {
        display: flex !important;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        z-index: 100;
        flex-shrink: 0;
	}
    
    .mobile-toggle span {
        width: 24px;
        height: 2.5px;
        background: var(--text-dark);
        transition: all 0.3s;
        border-radius: 2px;
        display: block;
	}
    
    /* Navigation Menu - Refine the existing 992px mobile menu */
    .nav-menu {
        top: 0;
        height: 100vh;
	}
    
    .nav-menu ul {
        padding: 70px 0 30px 0;
	}
    
    /* Mobile Menu Close Button - Make sure it's visible */
    .mobile-close {
        display: block !important;
	}
    
    /* ===== HERO SLIDER MOBILE ===== */
    .hero-slider {
        height: 60vh;
        min-height: 400px;
        max-height: 650px;
        margin-top: 0;
	}
    
    .slide img {
        object-fit: cover;
        object-position: center;
	}
    
    .slider-arrows {
        padding: 0 10px;
        z-index: 15;
	}
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	}
    
    .slider-dots {
        bottom: 20px;
        gap: 8px;
	}
    
    .slider-dot {
        width: 10px;
        height: 10px;
	}
    
    /* ===== SECTION SPACING MOBILE ===== */
    .sectors-section,
    .about-section,
    .services-section,
    .why-choose-section,
    .principles-section,
    .certifications-section {
        padding: 50px 0;
	}
    
    .contact-section {
        padding: 45px 0;
	}
    
    /* ===== SECTION HEADERS MOBILE ===== */
    .section-header-center,
    .section-header-left,
    .section-header-modern {
        margin-bottom: 35px;
        text-align: center;
	}
    
    .section-tag,
    .section-tag-light,
    .section-label-modern {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 6px 14px;
        margin-bottom: 12px;
	}
    
    .section-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 12px;
	}
    
    .section-title-modern,
    .section-title-light {
        font-size: 24px;
        line-height: 1.3;
	}
    
    .section-description,
    .section-intro-modern {
        font-size: 14px;
        line-height: 1.6;
	}
    
    /* ===== SECTORS GRID MOBILE ===== */
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
	}
    
    .sector-card {
        height: 180px;
	}
    
    .sector-overlay {
        font-size: 13px;
        padding: 12px;
	}
    
    /* ===== ABOUT SECTION MOBILE ===== */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
	}
    
    .about-image {
        height: 350px;
        margin-bottom: 25px;
	}
    
    .experience-badge {
        width: 110px;
        height: 110px;
        bottom: 20px;
        left: 20px;
	}
    
    .badge-number {
        font-size: 32px;
        margin-bottom: 3px;
	}
    
    .badge-text {
        font-size: 11px;
	}
    
    .about-content {
        text-align: center;
	}
    
    .about-header {
        text-align: center;
        margin-bottom: 30px;
	}
    
    .about-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
	}
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 25px;
	}
    
    .stat-item {
        padding: 20px;
	}
    
    .stat-number {
        font-size: 36px;
	}
    
    .stat-label {
        font-size: 12px;
	}
    
    .about-features {
        gap: 12px;
        margin-bottom: 25px;
	}
    
    .feature-item {
        font-size: 13px;
        padding: 10px 14px;
	}
    
    /* ===== SERVICES GRID MOBILE ===== */
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
	}
    
    .service-card-modern {
        max-width: 100%;
	}
    
    .service-number-modern {
        font-size: 2.2rem;
        top: 1rem;
        right: 1.2rem;
	}
    
    .service-image-modern {
        height: 220px;
	}
    
    .service-card-content-modern {
        padding: 1.8rem 1.5rem;
	}
    
    .service-card-content-modern h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
	}
    
    .service-card-content-modern p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
	}
    
    .service-features-modern {
        gap: 0.3rem;
	}
    
    .service-features-modern li {
        font-size: 0.88rem;
        padding: 0.5rem 0;
	}
    
    /* Service Detail Sections */
    .service-detail-section {
        padding: 45px 0;
	}
    
    .service-detail-header {
        margin-bottom: 30px;
        text-align: center;
	}
    
    .service-detail-header h3 {
        font-size: 24px;
        margin-bottom: 15px;
	}
    
    .service-detail-tag {
        font-size: 11px;
        padding: 6px 14px;
	}
    
    .service-detail-intro {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
	}
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 25px;
	}
    
    .service-detail-block {
        padding: 25px 20px;
	}
    
    .service-detail-block h5 {
        font-size: 16px;
        margin-bottom: 15px;
	}
    
    .service-detail-block ul {
        gap: 10px;
	}
    
    .service-detail-block ul li {
        font-size: 13px;
        padding-left: 25px;
	}
    
    /* ===== WHY CHOOSE US MOBILE ===== */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
	}
    
    .why-card {
        padding: 28px 24px;
        text-align: center;
	}
    
    .why-icon-wrapper {
        margin: 0 auto 20px;
        justify-content: center;
	}
    
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
	}
    
    .why-icon i {
        display: flex;
        align-items: center;
        justify-content: center;
	}
    
    .why-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
	}
    
    .why-highlight {
        font-size: 13px;
        margin-bottom: 15px;
        padding: 6px 12px;
	}
    
    .why-details {
        margin-top: 15px;
	}
    
    .why-details p {
        font-size: 13px;
        line-height: 1.6;
	}
    
    /* ===== PRINCIPLES SECTION MOBILE ===== */
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
	}
    
    .principle-card {
        padding: 25px 20px;
	}
    
    .principle-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 18px;
	}
    
    .principle-card h4 {
        font-size: 17px;
        margin-bottom: 10px;
	}
    
    .principle-card p {
        font-size: 13px;
        line-height: 1.6;
	}
    
    /* ===== CERTIFICATIONS MOBILE ===== */
    .certification-hero-modern {
        padding: 45px 0;
	}
    
    .cert-header-modern {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
	}
    
    .cert-header-badge {
        margin: 0 auto 25px;
        width: 180px;
        height: 180px;
	}
    
    .cert-header-content h3 {
        font-size: 22px;
        margin-bottom: 12px;
	}
    
    .cert-status-badge {
        font-size: 11px;
        padding: 7px 16px;
        margin-bottom: 15px;
	}
    
    .cert-header-content p {
        font-size: 14px;
        line-height: 1.6;
	}
    
    .cert-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 25px;
	}
    
    .cert-info-item {
        padding: 18px;
	}
    
    .cert-info-label {
        font-size: 11px;
        margin-bottom: 6px;
	}
    
    .cert-info-value {
        font-size: 15px;
	}
    
    .cert-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
	}
    
    .cert-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 22px;
        font-size: 13px;
	}
    
    /* Secondary Certifications */
    .secondary-certifications {
        margin-bottom: 45px;
	}
    
    .secondary-certs-title {
        font-size: 22px;
        margin-bottom: 30px;
        text-align: center;
	}
    
    .cert-grid-professional {
        grid-template-columns: 1fr;
        gap: 22px;
	}
    
    .cert-card-professional {
        padding: 28px 22px;
        text-align: center;
	}
    
    .cert-icon-badge {
        width: 100px;
        height: 100px;
        margin: 0 auto 20px;
	}
    
    .cert-icon-badge i {
        font-size: 36px;
	}
    
    .cert-card-content h4 {
        font-size: 17px;
        margin-bottom: 8px;
	}
    
    .cert-card-category {
        font-size: 12px;
        margin-bottom: 12px;
	}
    
    .cert-card-desc {
        font-size: 13px;
        line-height: 1.6;
	}
    
    /* Certification Summary Bar */
    .cert-summary-bar {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 22px;
        margin-bottom: 30px;
	}
    
    .cert-summary-item {
        padding: 20px;
        text-align: center;
	}
    
    .cert-summary-icon {
        width: 55px;
        height: 55px;
        margin: 0 auto 12px;
	}
    
    .cert-summary-icon i {
        font-size: 24px;
	}
    
    .cert-summary-number {
        font-size: 22px;
        margin-bottom: 5px;
	}
    
    .cert-summary-label {
        font-size: 11px;
	}
    
    .cert-compliance-note {
        font-size: 13px;
        line-height: 1.6;
        padding: 20px;
        text-align: center;
	}
    
    /* ===== CONTACT SECTION MOBILE ===== */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
	}
    
    /* Form First, Info Second */
    .contact-form-wrapper {
        order: 1;
	}
    
    .contact-info {
        order: 2;
	}
    
    .section-header-left {
        text-align: center;
        margin-bottom: 30px;
	}
    
    .section-header-left p {
        font-size: 14px;
        line-height: 1.6;
	}
    
    .contact-details {
        gap: 25px;
	}
    
    .contact-detail-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
	}
    
    .detail-icon {
        width: 55px;
        height: 55px;
        margin: 0 auto;
	}
    
    .detail-icon i {
        font-size: 22px;
	}
    
    .detail-content h4 {
        font-size: 13px;
        margin-bottom: 8px;
	}
    
    .detail-content p,
    .detail-content a {
        font-size: 14px;
        line-height: 1.6;
	}
    
    /* Contact Form */
    .contact-form {
        padding: 30px 20px;
	}
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
	}
    
    .form-group {
        margin-bottom: 16px;
	}
    
    input,
    textarea,
    select {
        font-size: 16px;
        padding: 13px 16px;
	}
    
    .form-group label {
        font-size: 13px;
	}
    
    textarea {
        min-height: 120px;
	}
    
    .btn-submit {
        width: 100%;
        padding: 15px 24px;
        font-size: 14px;
        letter-spacing: 0.5px;
	}
    
    /* ===== FOOTER MOBILE ===== */
    .footer {
        padding: 45px 0 25px 0;
	}
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
	}
    
    .footer-col {
        text-align: center;
	}
    
    .footer-logo {
        height: 110px;
        margin: 0 auto 15px;
	}
    
    .footer-col h3 {
        font-size: 17px;
        margin-bottom: 12px;
	}
    
    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 15px;
	}
    
    .footer-col p {
        font-size: 13px;
        line-height: 1.6;
	}
    
    .footer-col ul {
        text-align: center;
	}
    
    .footer-col ul li {
        margin-bottom: 10px;
	}
    
    .footer-col ul li a {
        font-size: 13px;
	}
    
    .footer-contact-item {
        margin-bottom: 18px;
	}
    
    .footer-contact-item strong {
        font-size: 13px;
        margin-bottom: 8px;
	}
    
    .contact-links {
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: center;
	}
    
    .contact-links a {
        font-size: 13px;
	}
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 25px;
        margin-top: 35px;
	}
    
    .footer-bottom p {
        font-size: 12px;
        line-height: 1.5;
	}
    
    /* ===== STICKY ELEMENTS MOBILE ===== */
    .whatsapp-btn {
        bottom: 90px;
        right: 20px;
        width: 56px;
        height: 56px;
        padding: 14px;
        border-radius: 50%;
	}
    
    .whatsapp-btn span {
        display: none;
	}
    
    .whatsapp-btn i {
        font-size: 26px;
	}
    
    .chatbot-btn {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
	}
    
    .chatbot-btn i {
        font-size: 24px;
	}
    
    /* Chatbot Widget Mobile */
    .chatbot-widget {
        width: calc(100vw - 24px);
        height: calc(100vh - 120px);
        bottom: 85px;
        right: 12px;
        max-width: 100%;
        border-radius: 12px;
	}
    
    .chatbot-header {
        padding: 18px 20px;
	}
    
    .chatbot-header h3 {
        font-size: 16px;
	}
    
    .chatbot-close {
        width: 32px;
        height: 32px;
        font-size: 20px;
	}
    
    .chatbot-messages {
        padding: 20px 15px;
	}
    
    .message {
        max-width: 85%;
        font-size: 14px;
        padding: 12px 16px;
	}
    
    .chatbot-input-area {
        padding: 15px;
	}
    
    .chatbot-input-area input {
        font-size: 15px;
        padding: 12px 16px;
	}
    
    .chatbot-send-btn {
        padding: 12px 20px;
        font-size: 14px;
	}
}

/* ===============================================
	SMALL MOBILE REFINEMENTS (≤480px)
=============================================== */
@media (max-width: 480px) {
    
    /* Top Bar Ultra Compact */
    .top-bar {
        padding: 5px 0;
	}
    
    .container-top {
        padding: 0 10px;
        gap: 4px;
	}
    
    .top-contact-item {
        font-size: 10.5px;
        gap: 4px;
	}
    
    .top-contact-item i {
        font-size: 10px;
	}
    
    .top-bar-cn {
        font-size: 10px;
        margin-bottom: 1px;
	}
    
    .top-bar-en {
        font-size: 9px;
	}
    
    /* Header Ultra Compact */
    .header {
        top: 38px;
        padding: 7px 0;
	}
    
    .container-header {
        padding: 0 10px;
	}
    
    .logo {
        height: 35px;
	}
    
    .logo-text h1 {
        font-size: 8.5px;
        line-height: 1.1;
        letter-spacing: 0.1px;
	}
    
    .mobile-toggle {
        padding: 5px;
	}
    
    .mobile-toggle span {
        width: 22px;
        height: 2px;
	}
    
    /* Hero Slider */
    .hero-slider {
        margin-top: 0;
        height: 65vh; /* Increased from 50vh for better mobile impact */
        min-height: 450px; /* Increased from 340px */
	}
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
	}
    
    .slider-arrows {
        padding: 0 10px;
	}
    
    /* Sections */
    .sectors-section,
    .about-section,
    .services-section,
    .why-choose-section,
    .principles-section,
    .certifications-section {
        padding: 40px 0;
	}
    
    .container {
        padding: 0 15px;
	}
    
    /* Typography */
    .section-title {
        font-size: 23px;
	}
    
    .section-title-modern,
    .section-title-light {
        font-size: 21px;
	}
    
    .section-tag,
    .section-tag-light,
    .section-label-modern {
        font-size: 9px;
        padding: 5px 12px;
	}
    
    /* Sectors Grid */
    .sectors-grid {
        gap: 12px;
	}
    
    .sector-card {
        height: 160px;
	}
    
    .sector-overlay {
        font-size: 12px;
        padding: 10px;
	}
    
    /* Service Cards */
    .service-number-modern {
        font-size: 2rem;
	}
    
    .service-image-modern {
        height: 200px;
	}
    
    .service-card-content-modern {
        padding: 1.5rem 1.2rem;
	}
    
    .service-card-content-modern h3 {
        font-size: 1.1rem;
	}
    
    .service-card-content-modern p {
        font-size: 0.87rem;
	}
    
    /* Why Choose Cards */
    .why-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
	}
    
    .why-icon i {
        display: flex;
        align-items: center;
        justify-content: center;
	}
    
    .why-card {
        padding: 24px 20px;
	}
    
    .why-card h3 {
        font-size: 17px;
	}
    
    /* Certifications */
    .cert-header-badge {
        width: 160px;
        height: 160px;
	}
    
    .cert-icon-badge {
        width: 90px;
        height: 90px;
	}
    
    /* Contact Form */
    .contact-form {
        padding: 25px 18px;
	}
    
    /* Footer */
    .footer-grid {
        gap: 30px;
	}
    
    /* Sticky Buttons */
    .whatsapp-btn,
    .chatbot-btn {
        width: 52px;
        height: 52px;
	}
}

/* ===============================================
	LANDSCAPE MOBILE OPTIMIZATION
=============================================== */
@media (max-width: 768px) and (max-height: 500px) and (orientation: landscape) {
    
    .hero-slider {
        height: 75vh;
        min-height: 350px;
	}
    
    .nav-menu {
        height: calc(100vh - 60px);
        top: 60px;
	}
    
    .nav-menu ul {
        padding: 15px 0;
	}
    
    .nav-link,
    .dropdown-menu a {
        padding: 10px 25px;
        min-height: 40px;
	}
    
    .chatbot-widget {
        height: calc(100vh - 80px);
	}
}

/* ===============================================
	TOUCH DEVICE ENHANCEMENTS
=============================================== */
@media (hover: none) and (pointer: coarse) {
    
    /* Ensure minimum touch target sizes */
    .nav-link,
    .dropdown-menu a,
    button,
    .btn-primary,
    .btn-submit,
    .btn-get-started,
    .cert-btn {
        min-height: 44px;
        min-width: 44px;
	}
    
    /* Remove hover transforms on touch */
    .service-card-modern:hover,
    .why-card:hover,
    .principle-card:hover,
    .cert-card-professional:hover {
        transform: none;
	}
    
    /* Active state feedback for touch */
    .service-card-modern:active {
        transform: translateY(-2px);
        transition: transform 0.1s ease;
	}
    
    .why-card:active,
    .principle-card:active {
        opacity: 0.95;
        transition: opacity 0.1s ease;
	}
    
    /* Better tap feedback for links */
    .nav-link:active,
    .dropdown-menu a:active,
    a:active {
        background: rgba(25, 118, 210, 0.08);
	}
    
    /* Prevent iOS zoom on focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
	}
}

/* ===============================================
	SAFE AREA INSETS (iOS NOTCH)
=============================================== */
@media (max-width: 768px) {
    
    @supports (padding-top: env(safe-area-inset-top)) {
        
        .top-bar {
            padding-top: max(8px, env(safe-area-inset-top));
		}
        
        .nav-menu {
            padding-top: env(safe-area-inset-top);
		}
        
        .whatsapp-btn {
            bottom: max(90px, calc(90px + env(safe-area-inset-bottom)));
		}
        
        .chatbot-btn {
            bottom: max(20px, calc(20px + env(safe-area-inset-bottom)));
		}
        
        .chatbot-widget {
            bottom: max(85px, calc(85px + env(safe-area-inset-bottom)));
		}
	}
}

/* ===============================================
	PERFORMANCE OPTIMIZATIONS
=============================================== */
@media (max-width: 768px) {
    
    /* Reduce animations on mobile for performance */
    .slide img {
        transform: scale(1.05);
        transition: transform 4s ease-out;
	}
    
    .slide.active img {
        transform: scale(1);
	}
    
    /* Hardware acceleration hints */
    .nav-menu,
    .nav-overlay,
    .chatbot-widget {
        will-change: transform, opacity;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
	}
    
    /* Optimize scrolling */
    .nav-menu,
    .chatbot-messages {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
	}
	}section {
	scroll-margin-top: 140px;
}

@media (max-width: 768px) {
	section {
		scroll-margin-top: 200px;
	}
}
@media (max-width: 768px) {
	
	/* Stack header vertically - MAINTAIN EXISTING STRUCTURE */
	.container-header {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		position: relative;
	}
	
	/* Logo centered */
	.logo-wrapper {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.logo-wrapper::after {
		display: none;
	}
	
	/* BIGGER mobile logo */
	.logo {
		height: 150px;
	}
	
	/* Certification below logo */
	.header-right {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.cert-badge img {
		height: 80px;
		margin-top: 5px;
	}
	
	.cert-badge::before {
		font-size: 8px;
		padding: 2px 8px;
	}
	
	/* Hide button like client screenshot */
	.btn-get-started {
		display: none;
	}
	
	/* Hamburger icon placement - IMPROVED STYLING */
	.mobile-toggle {
		display: flex;
		position: absolute;
		right: 20px;
		top: 85px;
	}
	
}
@media (max-width: 768px) {
	.hero-slider {
		margin-top: 0;
	}
}
@media (max-width: 768px) {
	.hero-slider {
		height: 70vh; /* Increased from 45vh for better mobile visibility */
	}
}
@media (min-width: 1025px) {
    .slide img {
        width: 100%;
        height: 70vh;
        object-fit: cover;
        object-position: center;
        transform: none;
	}
}
@media (max-width: 768px) {
	
	.logo img {
		height: 110px;
		width: auto;
	}
	
	.cert-badge img {
		height: 85px;
		width: auto;
	}
	
}

@media (max-width: 768px) {
	
	.mobile-close {
		display: flex !important;
		position: absolute;
		top: 15px;
		right: -250px;   /* push slightly outside padding */
		z-index: 1003;
	}
	
}
@media (max-width: 768px) {
	
	.footer-contact-item {
		display: grid;
		grid-template-columns: 90px 1fr;
		align-items: start;
		gap: 6px 12px;
	}
	
	.footer-contact-item strong {
		grid-column: 1;
	}
	
	.contact-links,
	.footer-contact-item span {
		grid-column: 2;
	}
	
}

/* Show close button when mobile menu opens */
.nav-menu.active .mobile-close {
    display: flex;
}
@media (max-width: 768px) {
    .mobile-close {
        display: none; /* Hidden by default */
        position: absolute;
        top: 20px;
        right: -250px;    /* FIXED: Changed from -250px to 20px to bring it on screen */
        z-index: 10001; /* High z-index to stay on top of everything */
        background: linear-gradient(135deg, var(--accent-orange), #d84315);
        border: 2px solid #fff;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 28px;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	}
	
    /* This ensures the button appears ONLY when the menu is open */
    .nav-menu.active .mobile-close {
        display: flex !important;
	}
}
@media (max-width: 768px) {
    /* Summary Bar Centering */
    .cert-summary-bar {
        display: flex;
        flex-direction: column; /* Stack vertically for mobile */
        align-items: center;    /* Center items horizontally */
        gap: 25px;              /* Consistent vertical spacing */
        padding: 30px 15px;
        text-align: center;
	}
	
    .cert-summary-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
	}
	
    .cert-summary-content {
        align-items: center;    /* Centers the number and label text */
	}
}
@media (max-width: 768px) {
    /* Footer Contact Grid for Mobile */
    .footer-contact-item {
        display: grid;
        grid-template-columns: 80px 1fr; /* Fixed width for the labels */
        gap: 5px 15px;                   /* Gap between label and content */
        text-align: left;                /* Keeps text aligned to the left */
        margin-bottom: 20px;
        width: 100%;
	}
	
    /* Resets any flex-centering that might conflict */
    .contact-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Ensures links stay left-aligned */
        gap: 4px;
	}
	
    /* Makes the address and website labels consistent */
    .footer-col p strong {
        min-width: 80px; 
        display: inline-block;
	}
}
@media (max-width: 768px) {
    /* FIX FOR FOOTER ARROWS */
    .footer-col a {
        display: flex;
        align-items: center;
        padding-left: 20px !important; /* Creates clear space for the arrow */
        position: relative;
	}
	
    .footer-col a::before {
        content: '▸';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%); /* Centers arrow vertically */
        color: var(--accent-orange);
        font-weight: 700;
        display: block !important;
	}
	
    /* FIX FOR SERVICE CARD ARROWS (e.g., Fastener Testing) */
    .service-features-modern li {
        padding-left: 25px !important; /* Increases room for orange arrow */
        position: relative;
        text-align: left;
	}
	
    .service-features-modern li::before {
        content: '▸';
        position: absolute;
        left: 0;
        top: 0; /* Aligns with the first line of text */
        color: var(--primary-blue); /* Or var(--accent-orange) based on your preference */
        display: inline-block !important;
	}
	
    /* PREVENT BUTTON OVERLAP ON FOOTER TEXT */
    .footer {
        padding-bottom: 120px !important; /* Pushes content up so floating buttons don't hide text */
	}
}