body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
  }
  

  .hero-section {
    background-image: url('images/Hero_Background.svg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 15%; /* Space for overlay */
  }
  
  .container {
      z-index: 2;
      position: relative;
      padding-bottom: 50px !important;
  
  }
  
  /* Navbar styles */
  .navbar {
      padding: 2rem 4rem;
  }
  
  .btn-primary {
      background-color: transparent;
      color: white;
      border: none;
  
  }
  
  .btn-outline-primary {
      background-color: transparent;
      color: white;
      border: none;
  
  }
  
  .btn-primary :hover {
      background-color: white;
      color: #4EB4FF;
      border: 1px solid white;
  
  }
  
  .btn-outline-primary :hover {
      background-color: white;
      color: #4EB4FF;
      border: 1px solid white;
  }
  
  /* Heading and subheading */
  .hero-heading {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 15px;
  
  }
  
  .hero-subheading {
      font-size: 1.5rem;
      font-weight: 300;
      margin: 0;
  }
  
  
  
  /* Buttons */
  .btn-gradient {
      background: linear-gradient(90deg, #1573FF, #4EB4FF);
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      margin-top: 15px;
  }
  
  .btn-gradient:hover {
      background: linear-gradient(90deg, #4EB4FF, #1573FF);
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      margin-top: 15px;
  }
  
  .btn-gradient+.btn-gradient {
      margin-left: 0.7rem;
      
  }
  
  
  .dashboard-overlay {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 0.5rem;
    z-index: 1;
    margin-top: 5px; 
  }
  
  /* Dashboard image */
  .dashboard-image {
      width: 100%;
      height: auto;
      z-index: 2;
      object-fit: cover;
  }
  
  
  @media (max-width: 412px) {
      .hero-heading {
          font-size: 1.2rem;
          /* Smaller font for very small screens */
          line-height: 28px;
          padding: 0 15px;
      }
  
      .hero-subheading {
          font-size: 1rem;
          /* Adjust subheading size */
          padding: 0 15px;
      }
  
      .btn-gradient {
          padding: 0.5rem 1rem;
          font-size: 0.9rem;
          /* Reduce button size */
      }
  
      .btn-primary,
      .btn-outline-primary {
          padding: 0.5rem 1rem;
          /* Adjust padding for small screens */
      }
  
      .dashboard-overlay {
          width: 100%;
          /* Full width for very small screens */
          padding: 0.5rem;
          bottom: -20%;
          /* Adjust positioning for small screens */
      }
  
      .hero-section {
          height: 60vh;
          /* Reduce hero section height on small screens */
      }
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
      .hero-heading {
          font-size: 1.5rem;
          padding: 0 20px;
          line-height: 40px;
      }
      .container {
  flex-direction: column;
  }
  
      .hero-subheading {
          font-size: 1.1rem;
          padding: 0 20px;
      }
  
      .dashboard-overlay {
          width: 90%;
          padding: 0.5rem;
          bottom: 0%;
      }
  
      .hero-section {
          height: 70vh;
          margin-bottom: 0;
      }
  
  }
  
  @media (min-width: 1200px) {
      .hero-section {
          height: 100vh;
      }
  
      .dashboard-overlay {
          max-width: 1000px;
  
  
      }
  
  }
  
  /* For very small screens (less than 412px) including 360px */
  @media (max-width: 360px) {
      .hero-heading {
          font-size: 1.1rem;
          /* Smaller font size for small screens */
          line-height: 26px;
          padding: 0 12px;
          /* Less padding for smaller screens */
      }
  
      .hero-subheading {
          font-size: 0.9rem;
          /* Smaller subheading size */
          padding: 0 12px;
      }
  
      .btn-gradient {
          padding: 0.5rem 1rem;
          font-size: 0.8rem;
          
      }
  
      .btn-primary,
      .btn-outline-primary {
          padding: 0.5rem 1rem;
      }
  
      .dashboard-overlay {
          position: relative;
          width: 100%;
          padding: 0.5rem;
          top: 5%;
      }
  
      .hero-section {
          height: 80vh;
          
      }
  }
  @media (min-width: 1200px) {
  .hero-section {
  min-height: 100vh;  
  }
  
  .dashboard-overlay {
  max-width: 1000px;
  }
  }
  .navbar-collapse {
    transition: transform 0.3s ease-in-out;
  }
  
  /* Small Screens (Right Slide-in Navbar) */
  @media (min-width: 768px) and (max-width: 992px) , (max-width: 768px){
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%; 
        height: 100%;
        background: linear-gradient(to right, #4E9BFF, #1573FF); 
        transform: translateX(100%); 
        z-index: 1050;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        padding: 2.5rem;
    }
    .navbar .btn{
      padding-left:0% ;
      padding-right: 0%;
      padding-top: 20px;
    }
    .navbar-collapse.show {
        transform: translateX(0); 
    }
  
    .navbar-toggler {
        position: relative;
        z-index: 1100;
    }
  
    .navbar-nav {
      margin-top: 50px;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
  
    }
  
    .nav-item a {
        color: white;
        font-size: 1rem;
        text-decoration: none;
    }
  
    .dropdown-menu {
        background-color: #444;
        border: none;
    }
  
    .dropdown-item {
        color: white;
    }
    .navbar {
      padding: 2rem 2rem;
  }
  }
  
  
  
  
  section {
    padding: 20px 20px;
    margin: 20px auto;
    max-width: 1200px;
  }
  /* Split Container Styling */
  .split-container {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #1573FF;
    border-radius: 12px;
    overflow: hidden;
  }
  

  
  /* Left Side (Text Section) */
  .split-text {
    flex: 1;
    background: #ffffff;
    background-image: radial-gradient(circle at 60% 60%, rgba(0, 0, 0, 0.1) 1px, transparent 1px), radial-gradient(circle at 60% 60%, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Right Side (Image Section) */
  .split-image {
    flex: 1;
    overflow: hidden;
  }
  
  .split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }
  
    .split-text,
    .split-image {
        flex: unset;
        width: 100%;
    }
  
    .split-text {
        padding: 20px;
    }
    .section-title{
      font-size: 1.4rem !important;
    }
  }
  .content-container {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #1573FF;
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }
  
  .content-container:hover {
    
    box-shadow: 0 25px 50px rgba(159, 218, 241, 0.2);
  }
  
  .section-title {
    font-size: 1.8rem;
    color: #14358A !important;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  
  
  .key-aspects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .key-aspect {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(152, 152, 152, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; /* Ensure text is also centered */
    border: 1px dashed #1573ff;
  }
  
  /* Icons Styling */
  .aspect-icon {
    font-size: 1.5rem; /* Adjust icon size */
    color: #1573FF;
    margin-bottom: 15px;
    display: block; /* Make it block to center properly */
  }
  
  /* Hover Effects */
  .key-aspect:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .key-aspect h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .key-aspect p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
  }
  
  .key-aspect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 60%;
    height: 120%;
    background-color: #abd9fa;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    transition: all 0.3s ease;
  }
  
  .key-aspect:hover::before {
    opacity: 0.5;
    left: -10%;
    width: 70%;
  }
  
  
  .technologies .description-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .description-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: calc(33% - 20px);
    box-shadow: 0 5px 15px rgba(152, 152, 152, 0.1);
    position: relative;
    overflow: hidden;
    background-image: repeating-linear-gradient(45deg, rgba(211, 220, 253, 0.1) 0px, rgba(153, 208, 236, 0.1) 10px, transparent 10px, transparent 20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    border-radius: 8px;
    box-sizing: border-box;
    animation: borderAnimation 4s linear infinite;
    display: flex; 
    flex-direction: column;  
    align-items: center;  
    justify-content: center; 
    border: 1px solid #0052cc;

  }
  
  .description-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(142, 142, 142, 0.12);
  }
  
  
  .description-item i {
    font-size: 20px; 
    color: #1573FF; 
    margin-bottom: 15px;
    margin-top: 15px;
}

  .description-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
  }
  
  .description-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: center;
  }
  
  .website-types {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
  }
  
  .website-type1 {
    background-color: #fff;
    padding: 5px;
    border-radius: 8px;
    width: 50%;
    box-shadow: 0 5px 20px rgba(152, 152, 152, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  .website-type {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    width: 22%;
    box-shadow: 0 5px 20px rgba(152, 152, 152, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  .website-type-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .website-type1 h3 a {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 300;
    z-index: 1;
    text-decoration: none;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing:0.07cap;
  }
.website-type h3 {
    font-size: 1.2rem;
    margin-top: 20px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 1;
  }
  .website-type:hover p {
    color: #0f55be;
  }
    .website-type1:hover h3 a {
    color: #0052cc;
  }
  .website-type p {
    color: #e2dddd;
  }
   .website-type:hover h3 {
    color: #1573FF;
  }
  
  .website-type1 {
    background: linear-gradient(135deg, #1C2792 0%, #1573FF 100%); 
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  }
   .website-type {
    background: linear-gradient(135deg, #1C2792 0%, #1573FF 100%); 
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  }
  
  .website-type1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #1C2792;
    background: linear-gradient(135deg, #fafafa 0%, #d9e7fc 100%); 
  }
  .website-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #1C2792;
    background: linear-gradient(135deg, #fafafa 0%, #d9e7fc 100%); 
  }
  
  
  .website-type:hover .website-type-image {
    transform: scale(1.05); /* Slight zoom effect on image */
  }
  
  .website-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.3s ease;
  }
  
  .website-type:hover::before {
    background-color: rgba(255, 255, 255, 0.3);
  }

   .website-type1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.3s ease;
  }
  
  .website-type1:hover::before {
    background-color: rgba(255, 255, 255, 0.3);
  }
  
  .section-description {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Responsive Layout for Small Screens */
  @media (max-width: 768px) {
    .website-types {
      flex-direction: column;
      align-items: center;
    }
  
    .website-type {
      width: 100%;
      margin-bottom: 20px;
    }
  .website-type1 {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .website-type-image {
      height: 150px;
    }
  }
  


  
  @media screen and (max-width: 768px) {
    header h1 {
        font-size: 32px;
  
    }
  
    .section-title {
        font-size: 24px;
  
    }
  
  
    .key-aspects {
        grid-template-columns: 1fr;
  
        gap: 20px;
  
    }
  
    .content-container {
        padding: 30px;
  
    }
  
  
    .description-item {
        width: 90%;
        margin-bottom: 20px;
        padding: 20px;
    }
  
    .technologies .description-container {
        flex-direction: column;
        align-items: center;
    }
  
    .description-item h4 {
        font-size: 18px;
    }
  
    .description-item p {
        font-size: 14px;
    }
  
     .website-type {
        width: 90%;
  
        margin-bottom: 20px;
  
        text-align: center;
  
        padding: 20px;
  
    }
  
    .website-type1 {
        width: 100;
  
        margin-bottom: 20px;
  
        text-align: center;
  
        padding: 5px;
  
    }
  
    .website-types {
        flex-direction: column;
        align-items: center;
        gap: 10px;
  
    }
  
    .website-type h3 a {
        font-size: 0.9rem;
  
    }
  
    .website-type p {
        font-size: 14px;
  
    }
    .website-type1 h3 a {
        font-size: 0.9rem;
  
    }
  
    .website-type1 p {
        font-size: 14px;
  
    }
  
  
    .horizontal-timeline {
        flex-direction: column;
  
        gap: 20px;
    }
  
    .timeline-step {
        width: 100%;
  
    }
  
    .step-content {
        width: 100%;
  
        height: auto;
  
    }
  
  }
  .footer {
    position: relative;
    background: linear-gradient(90deg, #1B45B4, #1C2792); /* Dark background color */
    color: white;
    padding: 50px 0;
    box-shadow: 0px -5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
  }
  
  .footer-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .footer-social .social-icon {
    font-size: 26px;
    color: white;
    transition: color 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2); /* Transparent background */
  }
  
  .footer-social .social-icon:hover {
    color: #2196f3; /* Hover effect color */
    background: rgba(255, 255, 255, 0.4);
  }
  
  .footer-links,
  .footer-right {
    margin-top: 20px;
  }
  
  .footer-links h4, .footer-right h4, .footer-cert-column h4 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
  }
  
  .footer-links ul,
  .footer-right ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .footer-links ul li,
  .footer-right ul li {
    margin-bottom: 12px;
  }
  
  .footer-links ul li a,
  .footer-right ul li {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover,
  .footer-right ul li:hover {
    color: #70a9ff;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #aaa;
  }
  
  .footer-bottom hr {
    border-color: #1573FF;
    width: 90%;
    margin: 20px auto;
  }
  
  .footer-bottom p {
    margin-top: 10px;
    font-size: 14px;
  }
  /* Mobile Responsive Design */
  @media (max-width: 767px) {
    .footer .row {
      text-align: center;
    }
  
    .footer-left, .footer-links, .footer-right {
      margin-bottom: 40px;
    }
  
    .footer-logo {
      max-width: 140px;
    }
  
    .footer-description {
      font-size: 15px;
      margin-bottom: 20px;
    }
  
    .footer-social .social-icon {
      font-size: 22px;
      margin: 0 12px;
    
    }
  
    .footer-links ul li,
    .footer-right ul li {
      font-size: 14px;
    }
  
    .footer-bottom p {
      font-size: 12px;
    }
    .footer-social {
      justify-content: center; 
      display: flex;            
      gap: 15px;               
      margin-top: 20px;
    }
  }
  
  .footer-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px; /* Set the width of the shape */
    height: 150px; /* Set the height of the shape */
    background: url('images/shape_2.svg') no-repeat center center;
    background-size: cover; /* Ensures that the shape image fits correctly */
    z-index: 1; /* Ensures it's above the background image */
  }
  
  .offshore-accounting-services {
    background-color: #f2f7fc;
    padding: 60px 20px;
}

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

/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1f3b73;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Service Card */
.service-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Icons */
.icon {
    font-size: 40px;
    color: #0052cc;
    margin-bottom: 10px;
}

/* Service Title */
.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f3b73;
}

/* Service Paragraph */
.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Key Elements List */
.key-elements {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}

.key-elements li {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
}

.key-elements strong {
    color: #1f3b73;
}

/* Special Notes */
.reconciliation-note {
    font-size: 16px;
    font-style: italic;
    color: #888;
}


@media (max-width: 768px) {
  .container {
      padding: 0 15px; 
      width: 100%; 
  }
  
  .section-title {
      font-size: 28px;
      text-align: center; /* Center the title */
  }
  
  .services-grid {
      display: flex;
      flex-direction: column;
      align-items: center; 
      gap: 20px; 
  }
  
  .service-card {
      padding: 15px;
      width: 100%; 
      max-width: 350px; 
      margin: 0 auto; 
  }
  
  .key-elements li {
      font-size: 14px;
  }
  .service-card{
    padding: 20px;
   }
   .service-title{
    text-align: center;
   }
   .service-card p{
    text-align: center;
   }
}






  
/* Grow Business Section*/
.grow-business-section {
  background-color: #EBF7FF;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
 
}

/* Shape Styling */
.shape-image {
  position: absolute;
  bottom: 20px; /* Adjust for desired height above bottom */
  left: 0;
  width: 300px; /* Adjust size as needed */
}

/* Custom Button Gradient */
.custom-gradient-btn {
  background: linear-gradient(90deg, #4EB4FF, #1573FF);
  border: none;
  color: white;
}

.custom-gradient-btn:hover {
  background: linear-gradient(90deg, #1573FF, #4EB4FF); 
  color: white;
}
.btn-outline-contact{
  border: 1px solid #1573FF;
  color: #1573FF
}
.btn-outline-contact:hover{
  background: linear-gradient(90deg, #1573FF, #4EB4FF) !important; 
  color: white;
}






/* Section Styling */
.offshore-benefits {
    padding: 60px 20px;
    background-color: #f7f7f7;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #333;
}

/* Benefit List */
.benefit-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* Benefit Item */
.benefit-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 150px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.6s forwards;
}

/* Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-item:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-item:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* Icons */
.benefit-icon {
    background-color: #4EB4FF;
    border-radius: 50%;
    padding: 20px;
    color: #fff;
    font-size: 2rem;
    margin-right: 20px;
}

.benefit-content h3 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefit-list {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 20px;
    }

    .benefit-icon {
        font-size: 1.8rem;
        padding: 15px;
    }

    .benefit-content h3 {
        font-size: 1.3rem;
    }

    .benefit-content p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .benefit-list {
        grid-template-columns: 1fr 1fr;
    }
}


/* Section Styling */
.offshore-benefits-section {
  padding: 80px 40px;
  text-align: center;
  position: relative;
}

/* Container Styling */
.offshore-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}


/* Card Layout Styling */
.offshore-benefits-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 columns by default */
  gap: 40px;
}

/* Card Styling */
.offshore-benefit-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Header (Icon) */
.offshore-benefit-card-header {
  background-color: #1573FF;
  padding: 15px;
  text-align: center;
  color: #ffffff;
}

.offshore-benefit-icon {
  font-size: 2rem;
}

/* Card Body */
.offshore-benefit-card-body {
  padding: 20px;
}

.offshore-benefit-heading {
  font-size: 1.4rem;
  font-weight: 600;
  color: #14358A;
  margin-bottom: 15px;
}

.offshore-benefit-description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Hover Effect for Cards */
.offshore-benefit-card:hover {
  transform: translateY(-10px); /* Elevation on hover */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .offshore-benefits-items {
    grid-template-columns: 1fr; 
    align-items: center;/* Stack the cards vertically on smaller screens */
  }
  
  .offshore-benefits-title {
    font-size: 2rem; /* Adjust title size for small screens */
  }
  
  .offshore-benefit-card-body {
    padding: 20px; /* Reduced padding for smaller screens */
  }
}


/* Section Styling */
.our-approach {

  padding: 60px 20px;
  margin: 0 auto;
}

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

/* Step Container for Horizontal Layout */
.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.step {
  display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    width: 18%;
    min-width: 200px;
    transition: transform 0.3s ease;
    overflow: visible; 
    min-height: 250px; 
}

.step:hover {
  transform: translateY(-5px);
}

.step-icon {
  background-color: #4EB4FF;
  border-radius: 50%;
  padding: 20px;
  color: white;
  font-size: 2rem;
  margin-bottom: 15px;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.step-content {
  flex: 1; 
  overflow: visible; 
  text-align: center;
}
.step-content h3 {
  font-size: 1.2rem;
  color: #14358A;
  margin-bottom: 10px;
  text-align: center;
}

.step-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 10px;
  text-align: center;
  overflow: visible; 
  word-wrap: break-word;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 992px) {
  .steps-container {
      gap: 15px;
      justify-content: center;
  }

  .step {
      width: 45%;
  }

  .step-icon {
      padding: 15px;
      font-size: 1.5rem;
  }

  .step-content h3 {
      font-size: 1.1rem;
  }

  .step-content p {
      font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .steps-container {
      flex-direction: column;
  }

  .step {
      width: 100%;
  }
}
.footer-cert-column {
  margin-top: 20px;
}

.logo-box {
  width: 170px;
  height: 65px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  overflow: hidden;
}

.cert-logo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* force logo to fill box equally */
}

.cert-logo-link {
  text-decoration: none;
  color: white;
}

.cert-number {
  font-size: 14px;
  margin-top: 6px;
  font-weight: 500;
  color: #fff;
}


