/* ================================
   Technology Meets Nature Section
   ================================ */

.tech-nature-section {
  padding: 5rem 0;
  background-color: #fff;
}

/* Heading */
.tech-nature-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 1;
  margin-top: 20px;
  color: #000;
}

/* Right text */
.tech-nature-text {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}

/* Video Wrapper */
.tech-video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding-top: 42%;
  background-color: #000;
}

/* Image / Video */
.tech-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play Button */
.tech-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Play Icon */
.tech-play-icon {
  width: 0;
  height: 0;
  border-left: 14px solid #000;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

/* Responsive */
@media (max-width: 991px) {
  .tech-nature-title {
    font-size: 2rem;
  }

  .tech-nature-text {
    margin-top: 1rem;
  }
}



/* ================================
   Dashboard Feature Section
   ================================ */

.dashboard-section {
  width: 100%;
}

/* Left Image */
.dashboard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Content */
.dashboard-content {
  background-color: #152845;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.dashboard-inner {
  padding: 4rem;
  max-width: 600px;
}

/* Heading */
.dashboard-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Subtitle */
.dashboard-subtitle {
  font-size: 1rem;
  color: #cfd8e3;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* List */
.dashboard-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
}

/* Custom Bullet */
.dashboard-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #4dd0e1;
  font-size: 1.2rem;
  line-height: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .dashboard-inner {
    padding: 2.5rem;
  }

  .dashboard-title {
    font-size: 1.8rem;
  }
}

/* SECTION CENTERING */
.triple-feature-section {
  background: #ffffff;
  padding: 5rem 0;
}

.triple-feature-section .row {
  max-width: 1200px;
  margin: auto;
}

/* COMMON IMAGE HEIGHT CONTROL */
.equal-height {
  height: 460px;
  margin-bottom: 1.5rem;
}

.left-image img,
.right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* LEFT COLUMN */
.left-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #000;
}

.left-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* CENTER CARD */
.center-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 460px;
  border-radius: 18px;
  overflow: hidden;
}

.center-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.center-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.732),
    rgba(0, 0, 0, 0.385)
  );
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.center-overlay h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.center-overlay p {
  font-size: 0.9rem;
  color: #eaeaea;
  margin-bottom: 1.5rem;
}

/* TAGS */
.center-tags {
  display: flex;
  gap: 0.5rem;
}

.center-tags span {
  background: rgba(255,255,255,0.25);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
}

/* RIGHT COLUMN */
.right-heading {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

.right-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.right-points {
  list-style: none;
  padding: 0;
}

.right-points li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #333;
}

.right-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .equal-height,
  .center-card {
    height: auto;
  }

  .center-card {
    margin: 2rem auto;
  }
}





.process-section {
  position: relative;
  padding: 6rem 0;
  background-image: url('/images/processbg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Overlay ONLY on background */
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.77);
  z-index: 1;
}


/* Ensure content stays above overlay */
.process-section > * {
  position: relative;
  z-index: 2;
}
    /* Main Heading Styles */
    .subtitle-text {
        font-size: 0.9rem;
        color: #f4f4f4;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 10px;
        font-weight: 400;
    }

    .main-heading {
        font-size: 2.5rem;
        color: #7fb069;
        font-weight: 300;
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .sub-heading {
        font-size: 2.5rem;
        color: #d2d2d2;
        font-weight: 700;
        margin-bottom: 0;
        line-height: 1.2;
    }

    /* Section Title Area */
    .section-title-area {
        margin-bottom: 50px;
    }

    .process-section-title {
        font-size: 1.8rem;
        color: #dbdbdb;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .process-section-desc {
        font-size: 1rem;
        color: #979f9f;
        margin-bottom: 0;
    }

    /* Process Step Styles */
    .process-step {
        position: relative;
        z-index: 1;
    }

    .icon-circle {
        width: 90px;
        height: 90px;
        background-color: #1b5c92;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        position: relative;
        box-shadow: 0 4px 15px rgba(52, 73, 94, 0.3);
        transition: all 0.3s ease;
    }

 

    .process-step:hover .icon-circle {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(52, 73, 94, 0.4);
    }

    .step-title {
        font-size: 1rem;
        color: #f8f8f8;
        font-weight: 600;
        margin-bottom: 10px;
        margin-top: 15px;
    }

    .step-description {
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
        margin: 0;
        padding: 0 10px;
    }

    /* Connector Line */
    .connector-line {
        width: 100%;
        height: 2px;
        background-color: #d5d8dc;
        margin-top: -60px;
        position: relative;
        z-index: 0;
    }

    /* Process Group Spacing */
    .process-group {
        margin-bottom: 80px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .connector-line {
            display: none !important;
        }

        .main-heading,
        .sub-heading {
            font-size: 2rem;
        }

        .process-section-title {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .main-heading,
        .sub-heading {
            font-size: 1.6rem;
        }

        .process-section-title {
            font-size: 1.3rem;
        }

        .icon-circle {
            width: 75px;
            height: 75px;
        }

        .icon-circle svg {
            width: 32px;
            height: 32px;
        }

        .step-title {
            font-size: 0.95rem;
        }

        .step-description {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 576px) {
        .process-section {
            padding: 50px 0;
        }

        .main-heading,
        .sub-heading {
            font-size: 1.4rem;
        }

        .subtitle-text {
            font-size: 0.75rem;
        }
    }



.services-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.services-title {
    font-size: 42px;
    font-weight: bold;
    color: #2c2c2c;
    margin: 0;
    letter-spacing: 0.5px;
}

.service-card {
    background-color: #152845;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 90, 45, 0.3);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px 25px;
    color: white;
}

.service-badge {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.service-title {
    font-size: 26px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    margin-top: 10px;
}

.service-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-title {
        font-size: 32px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 22px;
    }
    
    .service-description {
        font-size: 14px;
    }
}

    
/* Container Styles */
.benefits-section {
    background: #f8f9fa;
    padding: 80px 20px;
    border-bottom: 4px solid rgb(29, 29, 144);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side Styles */
.benefits-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.3;
    margin-bottom: 30px;
}

.benefits-left h2 span {
    color: #718096;
}

.benefits-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Right Side - Cards Container */
.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Individual Card Styles */
.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Zigzag Pattern */
.benefit-card:nth-child(even) {
    margin-left: 40px;
}

.benefit-card:nth-child(odd) {
    margin-left: 0;
}

/* Icon Circle */
.benefit-icon {
    background: #152845;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

/* Tablet Styles (992px and below) */
@media (max-width: 992px) {
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-left h2 {
        font-size: 36px;
        text-align: center;
    }

    .benefits-image {
        height: 400px;
    }

    .benefits-cards {
        max-width: 600px;
        margin: 0 auto;
    }

    /* Reduce zigzag on tablets */
    .benefit-card:nth-child(even) {
        margin-left: 20px;
    }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    .benefits-section {
        padding: 50px 15px;
    }

    .benefits-container {
        gap: 30px;
    }

    .benefits-left h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .benefits-image {
        height: 300px;
    }

    /* Remove zigzag on mobile */
    .benefit-card:nth-child(even),
    .benefit-card:nth-child(odd) {
        margin-left: 0;
    }

    .benefit-card {
        padding: 20px 20px;
        gap: 15px;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
    }

    .benefit-icon svg {
        width: 20px;
        height: 20px;
    }

    .benefit-card h3 {
        font-size: 16px;
    }
}

/* Small Mobile Styles (576px and below) */
@media (max-width: 576px) {
    .benefits-section {
        padding: 40px 10px;
    }

    .benefits-left h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .benefits-image {
        height: 250px;
        border-radius: 8px;
    }

    .benefits-cards {
        gap: 15px;
    }

    .benefit-card {
        padding: 18px 15px;
        border-radius: 10px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-icon svg {
        width: 18px;
        height: 18px;
    }

    .benefit-card h3 {
        font-size: 15px;
        line-height: 1.4;
    }

    /* Remove hover effect on mobile */
    .benefit-card:hover {
        transform: none;
    }
}