.people-section {
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    background-color: #ffffff;
}

.content-wrapper {
    display: flex;
    width: 100%;
}

.text-content {
    flex: 1;
    padding: 5% 5% 5% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-content {
    flex: 1;
    background-image: url('../assets/IMG-0048.jpg');
    background-size: cover;
    background-position: center;
}

.main-heading {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #000;
    max-width: 90%;
}

.sub-heading {
    font-weight: normal;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
    max-width: 80%;
}

.description {
    font-size: 1.1rem;
    color: #555;
    font-weight: normal;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    max-width: fit-content;
    background: #000;
    color: #fff;
}


.arrow-icon {
    margin-left: 0.5rem;
}

@media (max-width: 1024px) {
    .main-heading {
        font-size: 2.8rem;
    }

    .sub-heading {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .cta-button {
        margin: 0 auto;
    }

    .text-content {
        padding: 2rem;
        order: 2;
    }

    .image-content {
        min-height: 400px;
        order: 1;
    }

    .main-heading {
        font-size: 2.3rem;
        max-width: 100%;
    }

    .sub-heading,
    .description {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
    }

    .sub-heading {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
    }

    .image-content {
        min-height: 300px;
    }
}

.working-section {
    min-height: 100vh;
    padding: 4rem 0;
    background: white;
    color: rgb(36, 0, 63);
    position: relative;
}

.section_wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

.main_heading {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 4rem;
    font-weight: 500;
    max-width: 90%;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.image-container {
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    position: relative;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-block {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.side-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: #808080;
    text-transform: uppercase;
}

@media (max-width: 1200px) {

    .section_wrapper { padding: 0 2rem }

    .main_heading {
        font-size: 1.5rem;
    }

    .section-wrapper {
        padding: 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .side-label {
        display: none;
    }

    .text-block {
        font-size: 1.4rem;
    }

    .image-container {
        padding-bottom: 100%;
        height: fit-content;
    }

    .text-content { padding: 2%; }

    .services-label {display: none;}
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Featured Service Section */
.featured-service {
    padding: 100px 0;
    background: linear-gradient(135deg, #f2f9ff 0%, #e6f4ff 100%);
    position: relative;
    overflow: hidden;
}

.featured-service::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(0, 204, 255, 0.1);
    z-index: 1;
}

.featured-service::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(0, 68, 124, 0.05);
    z-index: 1;
}

.featured-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.featured-text {
    flex: 1;
    padding-right: 50px;
}

.featured-text h2 {
    font-size: 36px;
    color: #00447c;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.featured-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #00ccff;
}

.featured-text p {
    color: #555;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.featured-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.featured-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #444;
}

.featured-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ccff;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: #006699;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 102, 153, 0.3);
}

.cta-button:hover {
    background-color: #00447c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 153, 0.4);
}

.featured-image {
    flex: 1;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: white;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e0e0e0;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 180px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #006699;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 102, 153, 0.2);
}

.process-step:hover .step-number {
    background-color: #00ccff;
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 18px;
    color: #00447c;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.client-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.client-card:hover {
    transform: translateY(-10px);
}

.client-image {
    width: 120px;
    height: 120px;
    background-color: #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}

.client-quote {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}

.client-quote::before,
.client-quote::after {
    content: '"';
    font-size: 50px;
    color: #e0e0e0;
    position: absolute;
    font-family: Georgia, serif;
}

.client-quote::before {
    top: -20px;
    left: 0;
}

.client-quote::after {
    bottom: -40px;
    right: 0;
}

.client-name {
    color: #00447c;
    font-weight: 600;
    margin-bottom: 5px;
}

.client-position {
    color: #999;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #00447c 0%, #006699 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(0, 204, 255, 0.1);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-primary {
    background-color: #00ccff;
    color: #00447c;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 204, 255, 0.3);
}

.cta-primary:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: white;
    padding: 13px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span.blue {
    color: #00ccff;
}

.footer-about p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #00ccff;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #00ccff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
}

.footer-links li a:hover {
    color: #00ccff;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    color: #ccc;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    margin-right: 10px;
    color: #00ccff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Media Queries */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-content {
        flex-direction: column;
    }
    
    .featured-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .featured-image {
        max-width: 100%;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .process-steps::before {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 100%;
    }
    
    .process-step {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 36px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul li {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 28px;
    }
    
    .section-header h2,
    .featured-text h2,
    .cta-section h2 {
        font-size: 28px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
}

/* For Demo Purposes */
.service-image.underwater-inspection {
    background-image: url('/api/placeholder/600/400');
}

.service-image.rov-operations {
    background-image: url('/api/placeholder/600/400');
}

.service-image.pipeline-maintenance {
    background-image: url('/api/placeholder/600/400');
}

.service-image.subsea-installation {
    background-image: url('/api/placeholder/600/400');
}

.service-image.diving-services {
    background-image: url('/api/placeholder/600/400');
}

.service-image.offshore-support {
    background-image: url('/api/placeholder/600/400');
}

.featured-image img {
    background-image: url('/api/placeholder/600/400');
    height: 400px;
}
/* Enhanced Services Section Styling */
.services-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.services-intro {
  font-size: 1.2rem;
  color: #666;
  max-width: 900px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

.services-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.service-card-enhanced {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #e9ecef;
  position: relative;
}

.service-card-enhanced:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-header-card {
  background: linear-gradient(135deg, #0b0b31 0%, #1a1a4a 100%);
  color: white;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.service-header-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transform: rotate(45deg);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 1rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.service-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.service-header-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.service-description {
  padding: 2.5rem;
}

.service-summary {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 500;
}

.service-capabilities h4 {
  color: #0b0b31;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #0b0b31;
  padding-bottom: 0.5rem;
}

.capabilities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.capability-group {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #0b0b31;
  transition: all 0.3s ease;
}

.capability-group:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.capability-group h5 {
  color: #0b0b31;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.capability-group h5 i {
  color: #28a745;
  font-size: 1.1rem;
}

.capability-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capability-group li {
  padding: 0.4rem 0;
  color: #666;
  line-height: 1.5;
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.95rem;
}

.capability-group li:before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.4rem;
}

.service-benefits {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 1px solid #dee2e6;
}

.service-benefits h4 {
  color: #0b0b31;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
  font-size: 1.5rem;
  color: #28a745;
  margin-bottom: 0.5rem;
}

.benefit-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.service-cta-btn {
  /* display: inline-flex; */
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  margin-top: 1rem;
}

.service-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  color: white;
  text-decoration: none;
}

.service-cta-btn i {
  transition: transform 0.3s ease;
}

.service-cta-btn:hover i {
  transform: translateX(3px);
}

/* Responsive Design for Enhanced Services */
@media (max-width: 1200px) {
  .services-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .service-card-enhanced {
    margin: 0 1rem;
  }
  
  .service-description {
    padding: 1.5rem;
  }
  
  .capabilities-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-header-card h3 {
    font-size: 1.3rem;
  }
  
  .services-intro {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .service-cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .capability-group {
    padding: 1rem;
  }
}

/* Animation for service cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card-enhanced {
  animation: fadeInUp 0.6s ease-out;
}

.service-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
.service-card-enhanced:nth-child(2) { animation-delay: 0.2s; }
.service-card-enhanced:nth-child(3) { animation-delay: 0.3s; }
.service-card-enhanced:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced section title styling */
.services .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b0b31;
  margin-bottom: 1rem;
  position: relative;
}

.services .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 2px;
}