/* Write Custom Css Here */
.maintain-title{
	color: red;
}

/* --- Zagazaga Section Reset & Variables --- */
:root {
  --zag-orange: #ff6a00;
  --zag-dark-orange: #e05300;
  --zag-blue: #0b3c95;
  --zag-text-dark: #1a1a1a;
  --zag-text-muted: #555555;
  --zag-bg-light: #f4f7f9;
}

.zagazaga-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.zagazaga-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* --- Image / Placeholder Styling --- */
.zagazaga-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3; /* Maintains standard layout shapes */
  background-color: var(--zag-bg-light); /* Fallback placeholder color */
}

.zagazaga-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Interactive Play Button overlay styling */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--zag-orange);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.4);
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--zag-dark-orange);
}

/* --- Content Styling --- */
.zagazaga-subheading {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zag-dark-orange);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.zagazaga-heading {
  font-size: 2rem;
  line-height: 1.25;
  color: var(--zag-text-dark);
  margin-bottom: 20px;
  font-weight: 800;
}

.zagazaga-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--zag-text-muted);
  margin-bottom: 18px;
}

/* Brand Highlights */
.highlight-orange {
  color: var(--zag-dark-orange);
  font-weight: 600;
}

.highlight-blue {
  color: var(--zag-blue);
  font-weight: 600;
}

/* Footer Credits */
.zagazaga-footer {
  margin-top: 30px;
  border-top: 1px solid #eeeeee;
  padding-top: 15px;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--zag-text-dark);
  margin: 0;
}

.author-company {
  font-size: 0.85rem;
  color: var(--zag-text-muted);
  margin: 2px 0 0 0;
}

/* --- Responsive Media Queries (Tablets & Desktops) --- */
@media (min-width: 768px) {
  .zagazaga-heading {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .zagazaga-container {
    grid-template-columns: 1.1fr 1.2fr; /* Perfect balanced layout split */
    gap: 60px;
  }
  
  .zagazaga-image-wrapper {
    aspect-ratio: auto;
    height: 520px; /* Locked ideal height for desktop layout symmetry */
  }
}

/* --- Zagazaga About Section Styles --- */
:root {
  --zag-orange-main: #ff6a00;
  --zag-text-main: #2b2b2b;
  --zag-text-secondary: #5a5a5a;
  --zag-tab-bg-inactive: #f1f3f5;
}

.zag-about-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.zag-about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Image Wrapper */
.zag-about-image-box {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.zag-about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Content Text Typography */
.zag-about-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--zag-text-main);
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zag-about-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--zag-text-secondary);
  margin-bottom: 30px;
}

/* --- Interactive Tabs Navigation --- */
.zag-tabs-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: 2px solid #eeeeee;
  padding-bottom: 1px;
}

.zag-tab-btn {
  flex: 1;
  background-color: var(--zag-tab-bg-inactive);
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--zag-text-main);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px 4px 0 0;
  text-align: center;
}

/* Active Tab Button Style */
.zag-tab-btn.active {
  background-color: var(--zag-orange-main);
  color: #ffffff;
}

.zag-tab-btn:hover:not(.active) {
  background-color: #e2e6ea;
}

/* --- Tab Content Content Panels --- */
.zag-tab-content {
  display: none; /* Hidden by default */
  animation: fadeInZag 0.4s ease-in-out;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--zag-text-secondary);
}

/* Display active panel style */
.zag-tab-content.active {
  display: block;
}

/* Sub-lists Styling inside Content blocks */
.zag-values-highlights {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.zag-values-highlights li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.zag-values-highlights li::before {
  content: "•";
  color: var(--zag-orange-main);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.zag-values-list {
  padding-left: 20px;
}

.zag-values-list li {
  margin-bottom: 12px;
}

/* Fade in smooth animation */
@keyframes fadeInZag {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Layout Breakers --- */
@media (min-width: 992px) {
  .zag-about-container {
    grid-template-columns: 1fr 1.3fr; /* Visual split balance matching your photo aspect ratio */
    gap: 50px;
  }
  
  .zag-tabs-nav {
    display: inline-flex;
    width: 100%;
  }
}

/* --- Zagazaga Service Areas Section Styles --- */
:root {
  --zag-orange-brand: #ff6a00;
  --zag-orange-dark: #e05300;
  --zag-navy-brand: #0b3c95;
  --zag-dark-neutral: #1f1f1f;
  --zag-body-muted: #525252;
  --zag-bg-tint: #f9fbfd;
}

.zag-service-areas-section {
  padding: 80px 20px;
  background-color: var(--zag-bg-tint);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.zag-areas-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Content Column Styling */
.zag-areas-subheading {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zag-orange-brand);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.zag-areas-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--zag-dark-neutral);
  margin-top: 0;
  margin-bottom: 25px;
}

.zag-areas-highlight {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--zag-navy-brand);
  margin-bottom: 20px;
  font-weight: 500;
}

.zag-areas-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--zag-body-muted);
  margin-bottom: 20px;
}

/* Interactive Location Badges */
.zag-location-tag {
  background-color: #ffffff;
  color: var(--zag-dark-neutral);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-block;
  border: 1px solid #e2e8f0;
  margin: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* Dynamic Bottom Callout Box */
.zag-areas-banner {
  background-color: #ffffff;
  border-left: 4px solid var(--zag-orange-brand);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.zag-areas-banner p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--zag-body-muted);
  font-style: italic;
}

/* Right Media Column Styling */
.zag-areas-visual-box {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  background-color: #e2e8f0;
  aspect-ratio: 4 / 3;
}

.zag-areas-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Floating Info Card Overlay over Image */
.zag-map-overlay-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.zag-overlay-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.zag-icon {
  font-size: 1.5rem;
  background-color: rgba(255, 106, 0, 0.1);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.zag-overlay-item h4 {
  margin: 0 0 2px 0;
  font-size: 1rem;
  color: var(--zag-dark-neutral);
  font-weight: 700;
}

.zag-overlay-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--zag-body-muted);
}

/* --- Responsive Breakpoints --- */
@media (max-width: 576px) {
  .zag-map-overlay-card {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 16px 16px;
    background-color: #ffffff;
    box-shadow: none;
  }
  
  .zag-areas-visual-box {
    aspect-ratio: auto;
    overflow: visible;
    background-color: transparent;
    box-shadow: none;
  }
  
  .zag-areas-img {
    border-radius: 16px 16px 0 0;
    height: 250px;
  }
}

@media (min-width: 992px) {
  .zag-areas-container {
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
  }
  
  .zag-areas-visual-box {
    height: 560px;
    aspect-ratio: auto;
  }
}

/* --- Base Variables & Core Layout --- */
:root {
    --primary-color: orange; /* Deep Corporate Green */
    --accent-orange: #ff6b35; /* Profile Ring Accent Orange */
    --accent-yellow: #ffb703; /* Profile Accent Yellow */
    --text-dark: #2d3748;
    --text-light: #f7fafc;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
}

/* --- CMS Container Fixes & Breakouts --- */
/* This forces our main structural wrappers to ignore the page builder's boxed constraints */
header, .hero, .services-section, .blueprint-section, .hse-section, .contact-section, footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent-orange); }

/* --- Buttons & UI Elements --- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #e0531f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--accent-yellow);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: #e5a400;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-block {
    width: 100%;
    display: block;
}

.badge {
    background: rgba(255, 183, 3, 0.2);
    color: var(--accent-yellow);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(27, 58, 50, 0.85), rgba(27, 58, 50, 0.95)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1200') center/cover;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #e2e8f0;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* --- Service Catalog Styling --- */
.services-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-top-color: var(--accent-orange);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.35rem;
}

/* --- Operational Blueprint Timeline --- */
.blueprint-section {
    padding: 5rem 0;
}

.blueprint-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
    margin-top: 2rem;
}

.step {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.step:hover {
    background: var(--primary-color);
    color: #fff;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.step h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* --- HSE Performance Section --- */
.hse-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5rem 0;
}

.hse-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hse-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.hse-list {
    list-style: none;
    margin-top: 1.5rem;
}

.hse-list li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
}

.hse-card-visual {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1613214149579-90994e77cb24?auto=format&fit=crop&q=80&w=600') center/cover;
    height: 350px;
    border-radius: 12px;
    position: relative;
    border: 4px solid var(--accent-yellow);
}

.visual-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- Contact & Request Block --- */
.contact-section {
    background: #fff;
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    width: 30px;
}

.booking-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.booking-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--accent-orange);
}


/* --- Responsive Layout Configurations (Mobile Optimization) --- */
@media (max-width: 992px) {
    .hse-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-content h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        width: 100%;
        gap: 0;
        transition: var(--transition);
        padding-top: 2rem;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 1.5rem 0;
    }

    .burger { display: block; }
    .nav-active { right: 0; }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .hero-btns .btn { width: 80%; }
}