<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: #f9f9f9;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
color: white;
padding: 80px 20px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 500px;
height: 500px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
.hero-content {
position: relative;
z-index: 1;
max-width: 900px;
margin: 0 auto;
}
.hero h1 {
font-size: 48px;
margin-bottom: 20px;
font-weight: 700;
}
.hero .subtitle {
font-size: 20px;
margin-bottom: 30px;
opacity: 0.95;
line-height: 1.8;
}
/* Main Container */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Introduction Section */
.intro-section {
background: white;
padding: 60px 40px;
margin: 40px auto;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.intro-section p {
font-size: 16px;
line-height: 1.8;
color: #555;
margin-bottom: 15px;
}
.intro-section strong {
color: #128C7E;
}
/* Pain Points Section */
.pain-points {
background: white;
padding: 60px 40px;
margin: 40px auto;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.pain-points h2 {
color: #128C7E;
font-size: 36px;
margin-bottom: 40px;
text-align: center;
}
.pain-point {
margin-bottom: 30px;
padding: 20px;
border-right: 4px solid #25D366;
background: #f8f8f8;
border-radius: 8px;
}
.pain-point h3 {
color: #128C7E;
font-size: 20px;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.pain-point h3::before {
content: '⚠️';
margin-left: 10px;
font-size: 24px;
}
.pain-point p {
color: #666;
line-height: 1.7;
font-size: 15px;
}
/* Images Section */
.images-section {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin: 60px auto;
}
.image-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.image-card img {
width: 100%;
height: 250px;
object-fit: cover;
}
.image-caption {
padding: 20px;
text-align: center;
background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}
.image-caption h3 {
color: #128C7E;
font-size: 18px;
margin-bottom: 8px;
}
.image-caption p {
color: #888;
font-size: 14px;
}
/* Why GSC Section */
.why-gsc {
background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
color: white;
padding: 60px 40px;
margin: 60px auto;
border-radius: 15px;
}
.why-gsc h2 {
font-size: 36px;
margin-bottom: 40px;
text-align: center;
}
.why-gsc-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}
.why-gsc-card {
background: rgba(255,255,255,0.1);
padding: 30px;
border-radius: 12px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.2);
}
.why-gsc-card h3 {
font-size: 22px;
margin-bottom: 15px;
display: flex;
align-items: center;
}
.why-gsc-card h3::before {
content: '✓';
font-size: 28px;
margin-left: 10px;
background: rgba(255,255,255,0.3);
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.why-gsc-card p {
font-size: 15px;
line-height: 1.7;
opacity: 0.95;
}
/* CTA Section */
.cta-section {
background: white;
padding: 60px 40px;
margin: 40px auto;
border-radius: 15px;
text-align: center;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.cta-section h2 {
color: #128C7E;
font-size: 32px;
margin-bottom: 20px;
}
.cta-section p {
font-size: 18px;
color: #666;
margin-bottom: 30px;
font-weight: 500;
}
/* WhatsApp Form Section */
.form-section {
background: white;
padding: 60px 40px;
margin: 40px auto;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.form-section h2 {
text-align: center;
color: #128C7E;
font-size: 32px;
margin-bottom: 40px;
}
/* WhatsApp Container Styling */
.whatsapp-container {
width: 100%;
background: #ffffff;
border-radius: 15px;
position: relative;
padding: 3px;
background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.inner-content {
background: #ffffff;
border-radius: 12px;
padding: 40px;
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 30px;
}
@media (max-width: 768px) {
.inner-content {
grid-template-columns: 1fr;
padding: 20px;
}
.info-section {
text-align: center;
border-bottom: 1px solid #eee;
padding-bottom: 20px;
}
.hero h1 {
font-size: 36px;
}
.hero .subtitle {
font-size: 16px;
}
}
.info-section h2 {
color: #128C7E;
font-size: 24px;
margin-top: 0;
margin-bottom: 20px;
}
.info-section p {
color: #555;
line-height: 1.7;
font-size: 15px;
}
.status-tag {
display: inline-block;
background: #e8f9ee;
color: #25D366;
padding: 8px 16px;
border-radius: 50px;
font-size: 13px;
font-weight: bold;
margin-top: 15px;
}
.form-group {
margin-bottom: 18px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #444;
font-size: 14px;
}
.form-group input, .form-group textarea {
width: 100%;
padding: 12px 15px;
border: 2px solid #f0f0f0;
border-radius: 8px;
outline: none;
transition: all 0.3s ease;
font-size: 15px;
box-sizing: border-box;
background: #fdfdfd;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.form-group input:focus, .form-group textarea:focus {
border-color: #25D366;
background: #fff;
box-shadow: 0 0 10px rgba(37, 211, 102, 0.1);
}
.btn-submit {
background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
color: white;
border: none;
width: 100%;
padding: 16px;
border-radius: 8px;
font-size: 17px;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-submit:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
/* Footer */
.footer {
background: #128C7E;
color: white;
text-align: center;
padding: 30px 20px;
margin-top: 60px;
}
.footer p {
margin: 10px 0;
font-size: 14px;
}
</style><!-- Hero Section -->
🔧 Periodic maintenance of gas networks - GSC
15 years of experience in gas network maintenance in the Kingdom
Sudden breakdowns don't happen by chance; they happen due to neglected maintenance.
<!-- Introduction Section -->
About our services
At GSC, we offer comprehensive periodic maintenance services for gas networks, starting with proactive inspection and ending with technical reports , to ensure the continuous flow of gas without interruption.
Our specialized team combines practical experience and in-depth technical knowledge to deliver maintenance that meets the highest standards of quality and safety.
<!-- Pain Points Section -->
Challenges facing large establishments
sudden work stoppage
In restaurants and factories, a gas outage means a halt in profits. Regular maintenance ensures a stable and secure supply, protecting your investment from unexpected losses.
Leaks and minor errors
Minor leaks and rust in external pipes can develop into disasters if left untreated. We detect these problems early and address them before they worsen, saving you significant repair costs.
Fines and violations
Failure to maintain your property regularly can result in fines from Civil Defense and regulatory authorities. Our services provide you with documented reports that prove your compliance with safety standards.
Forgetting exam appointments
With GSC's "Smart Reminders" system, we keep track of your schedule. We'll contact you to schedule regular visits, ensuring your facility always remains within the safe zone.
<!-- Images Gallery -->
Our Services Showroom

proactive screening
Identify problems before they occur

routine maintenance
Maintaining network efficiency

Quick repair
Immediate emergency response

Technical reports
Comprehensive maintenance documentation

Safety first
High safety standards

Restaurants and hotels
Specialized service for the commercial sector
<!-- Why GSC Section -->
Why is GSC the first choice for routine maintenance?
A legacy of achievements
More than 15 years in service of the Saudi market, during which we carried out maintenance for hundreds of major facilities.
Comprehensive examination
We perform a comprehensive network inspection, including pressure, efficiency, and safety testing.
Documented reports
Our technical reports provide you with official proof before regulatory authorities.
<!-- CTA Section -->
🚀 Your facility deserves professional maintenance
Don't leave your network security to chance.
Request regular maintenance for your network now - speak with our technical expert
<!-- WhatsApp Form Section -->
document.addEventListener("submit", function(e) {
if (e.target && e.target.id === "waForm") {
e.preventDefault();
const serviceName = "الصيانة الدورية لشبكات الغاز - GSC";
const name = document.getElementById('userName')?.value || '';
const email = document.getElementById('userEmail')?.value || '';
const phone = document.getElementById('userPhone')?.value || '';
const message = document.getElementById('userMsg')?.value || '';
const myNumber = "966126626669";
const fullText =
`أريد الاستفسار عن: (${serviceName})\n\n` +
`*بيانات العميل:*\n` +
`• الاسم: ${name}\n` +
`• الإيميل: ${email}\n` +
`• الهاتف: ${phone}\n\n` +
`*نص الرسالة:*\n${message}`;
const finalUrl = `https://wa.me/${myNumber}?text=${encodeURIComponent(fullText)}`;
window.open(finalUrl, '_blank');
}
});