* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #000;
  line-height: 1.6;
  position: relative;
  background-color: #f0f0f0;
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.3)
    ),
    url('../images/bg.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1;
  transition: opacity 0.5s ease;
}

p {
  text-align: justify;
}

html {
  overflow-y: scroll;
}

html::-webkit-scrollbar {
  width: 13px;
}

html::-webkit-scrollbar-track {
  background: #f5f6ff;
}

html::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

html::-webkit-scrollbar-thumb:hover {
  background: #555;
}

ul {
  text-align: justify;
}

ul li {
  margin-left: 19px;
  margin-bottom: 10px;		
}

@media (max-width: 768px) {
  body {
    font-size: 0.85rem !important;
  }
  
  body::before {
    background: 
      linear-gradient(
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.5)
      ),
      url('../images/bg.jpg') no-repeat center center;
  }
  
  p {
    text-align: justify;
  }
}

h1 {
  line-height: 1.2;
  font-size: 55px;
  margin: 0;
  margin-bottom: 20px;
}

h2 {
  line-height: 1.2;
  font-size: 35px;
  margin: 0;
  margin-bottom: 20px;
}

h3 {
  line-height: 1.3;
  font-size: 25px;
  margin: 0;
  margin-bottom: 20px;
}

h4, h5, h6 {
  line-height: 0.8;
  font-size: 20px;
  margin: 0;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  h1 {
    line-height: 1.2;
    font-size: 38px;
    margin: 0;
    margin-bottom: 20px;
  }
  
  h2 {
    line-height: 1.2;
    font-size: 22px;
    margin: 0;
    margin-bottom: 20px;
  }
  
  h3 {
    line-height: 1.2;
    font-size: 20px;
    margin: 0;
    margin-bottom: 20px;
  }
  
  h4, h5, h6 {
    line-height: 1.2;
    font-size: 17px;
    margin: 0;
    margin-bottom: 20px;
  }
}

.letsdo {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
}

.letsdo h2 {
  text-align: center;
  font-size: 35px;
  margin-top: 5px;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .letsdo {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 20px;
  }
  
  .letsdo h2 {
  text-align: center;
  font-size: 22px;
  margin-top: 5px;
  margin-bottom: 15px;
}
	}

nav {
  background: #ffffff;
  color: #fff;
  padding: 10px 10px;
  position: relative;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 10;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  width: 35%;
}	
  
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  z-index: 20;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: .9rem;
  padding: 8px 0px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #061fc2;
  transition: width 0.3s ease;
}

.nav-links a.active {
  color: #061fc2;
}

.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: #061fc2;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #000000;
  transition: 0.3s;
}	

.logo {
  width: 50%;
}	

@media (max-width: 768px) {
  nav {
    background: #ffffff;
    color: #fff;
    padding: 7px 15px;
    position: relative;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  
  .nav-logo {
    width: 50%;
  }	
  
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    background: #ffffff;
    width: 100%;
    padding: 38px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 20;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 2px 20px;
    font-size: .9rem;
    font-weight: bold;
    width: 100%;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    background: #ffffff;
    color: #061fc2;
  }
  
  .logo {
    width: 60%;
  }
}

.slider {
  position: relative;
  height: 550px;
  overflow: hidden;
  color: #fff;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
  transform: scale(1);
  transition: transform 8s ease-in-out;
}

.slide.active img {
  transform: scale(1.05);
}

.caption {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 25px 30px;
  border-left: 9px solid #061fc2;
  max-width: 800px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.caption h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.caption p {
  font-size: 1.2rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .slider {
    height: 400px;
  }

  .caption {
    left: 20px;
    right: 20px;
    max-width: none;
    padding: 20px;
  }

  .caption h1 {
    font-size: 1.2rem;
  }

  .caption p {
    font-size: .8rem;
  }
}

@media (max-width: 480px) {
  .slider {
    height: 490px;
  }

  .caption {
    padding: 15px;
    border-left: 7px solid #061fc2;
  }

  .caption h1 {
    font-size: 1.2rem;
  }

  .caption p {
    font-size: 0.8rem;
  }
}

.footer-container {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  padding: 0 10px;
}

/* Column 1 (Logo and description) - Wider */
.footer-column:nth-child(1) {
  flex: 2.4; /* Takes twice the space of normal columns */
  min-width: 250px;
}

/* Columns 2 and 3 (Company and Support) - Narrower */
.footer-column:nth-child(2),
.footer-column:nth-child(3) {
  flex: 1;
  min-width: 150px;
}

/* Column 4 (Contact info) - Wider */
.footer-column:nth-child(4) {
  flex: 2; /* Takes twice the space of normal columns */
  min-width: 250px;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #0ca4eb;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  margin-left: 0px;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #0ca4eb;
}

.footer-column p {
  color: #ddd;
  margin-bottom: 15px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: #ffffff;
  font-weight: bold;
}

.footer-line {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ccc, transparent);
  margin: 20px auto;
  max-width: 100%;
}

@media (max-width: 992px) {
  .footer-column {
    min-width: calc(50% - 20px) !important;
  }
}

@media (max-width: 576px) {
  .footer-column {
    min-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: left;
    text-align: left;
    font-size: 14px;
  }

  .footer-column {
    margin: 2px 0;
    width: 100%;
    max-width: 300px;
    flex: 1 1 170px;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 10px;
    color: #ddd;
    font-weight: bold;
    padding-top: 5px;
  }
}

.container {
  padding: 20px 40px;
  border: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  
}

.containerr {
  padding: 20px 40px;
  background: #fff;
  color: #000;
  border: 0px;
  
}

section {
  padding: 40px 20px;
  margin-top: 15px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  animation: fadeIn 1s ease forwards;
  animation-iteration-count: 1;
}

section.animate {
  opacity: 1;
  transform: translateY(0);
}

.two-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.two-div > div {
  flex: 1;
  min-width: 300px;
  margin: 20px;
}

.features-container {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
  flex-wrap: nowrap;
}

.feature-list {
  flex: 2;
}

.small-image {
  flex: 1;
  display: flex;
  justify-content: left;
  align-items: center;
}

.small-image img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
  
  .containerr {
    padding: 10px;
  }
  
  section {
    padding: 30px 15px;
  }

  .two-div {
    flex-direction: column;
    gap: 15px;
  }

  .two-div > div {
    margin: 5px 0;
    min-width: 100%;
  }

  .features-container {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .feature-list {
    flex: 2;
  }

  .feature-list p {
    font-size: 0.85rem !important;
    margin: 8px 0;
  }

  .large-image img {
    height: 250px !important;
  }

  .small-image {
    flex: 1;
    justify-content: flex-start;
  }

  .small-image img {
    max-width: 100px !important;
    height: auto;
  }
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.card {
  position: relative;
  flex: 1 1 calc(33.33% - 20px);
  height: 350px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  animation: riseUp 1s ease forwards;
  opacity: 0;
  animation-fill-mode: forwards;
  border: 1px solid #ffffff;
}

.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.4s; }
.card:nth-child(3) { animation-delay: 0.6s; }
.card:nth-child(4) { animation-delay: 0.8s; }
.card:nth-child(5) { animation-delay: 1s; }
.card:nth-child(6) { animation-delay: 1.2s; }

.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 30px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card-content i {
  margin-bottom: 15px;
  color: #fff;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95rem;
  flex-grow: 1;
}

@media (max-width: 768px) {
.card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.card-content p {
  font-size: 0.85rem !important;
  flex-grow: 1;
  margin-bottom: 10px;
}

.card {
  position: relative;
  flex: 1 1 calc(60% - 20px);
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  animation: riseUp 1s ease forwards;
  opacity: 0;
  animation-fill-mode: forwards;
  border: 1px solid #ffffff;
}

.countdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    padding: 10px;
    gap: 25px;
}
	}


.more-btn {
  background: #061fc2;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s ease;
  margin-top: 15px;
}

.more-btn:hover {
  background: #04147a;
}

@keyframes riseUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.scroll-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  animation-fill-mode: forwards;
}

.animate-on-scroll {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.inverted-image {
  filter: 
    invert(100%)
    hue-rotate(180deg)
    saturate(900%);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-weight: bold;
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
}

thead {
  background-color: #333;
  color: #fff;
}

th {
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  padding-left: 30px;
  line-height: 3;
}

td {
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  padding-left: 30px;
  line-height: 2;
}

tbody td.category {
  font-weight: bold;        
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding-left: 30px;
}

tbody td.product {
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  thead {
    display: none;
  }

  table {
    border: none;
    font-size: 12px;
  }

  tbody tr {
    display: block;
    margin-bottom: 10px;        
    border: 1px solid #ccc;
  }

  tbody td {
    display: block;
    border: none;
    padding: 10px;
  }

  tbody td.category {
    font-weight: bold;        
    font-size: 16px;
    border-bottom: 1px solid #ccc;
  }

  tbody td.product {
    padding-left: 30px;
  }
}

.inner-area {
  position: relative;
  background: url('../images/oil-rig-at-port-e1674741523466.jpg') center center / cover no-repeat fixed;
  padding: 75px 0;
  color: #fff;
  text-align: center;
}

.inner-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.inner-area .container,
.inner-area .section-content,
.inner-area .row,
.inner-area .col-12 {
  position: relative;
  z-index: 2;
}

.inner-area h4 {
  font-size: 42px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 4px;
  color: #fff;
}

.inner-area p {
  font-size: 16px;
  color: #ddd;
  text-decoration: none;
  word-spacing: .8em;
}

.inner-area p a {
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
}

.inner-area p a:hover {
  color: #f9c851;
}

@media (max-width: 768px) {
  .inner-area {
    padding: 70px 20px;
  }

  .inner-area h4 {
    font-size: 32px;
  }
}

.breadcrumb-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.breadcrumb-wrapper ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: bold;
}

.breadcrumb-wrapper li {
  color: #ddd;
}

.breadcrumb-wrapper li + li::before {
  content: "/";
  padding: 0 8px;
  color: #ccc;
}

.breadcrumb-wrapper a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-wrapper a:hover {
  color: #f9c851;
}

@media (max-width: 768px) {
  .breadcrumb-wrapper ol {
    font-size: 13px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.containerz {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}

.left-div {
  flex: 1;
  padding: 20px;
}

.right-div {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.right-div .big-image {
  width: 75%;
  height: 500px;
  object-fit: cover;
}

.right-div .small-image {
	position: absolute;
    width: 60%;
    height: 415px;
    top: 204px;
    right: 10px;
    object-fit: inherit;
    border: 0;
}

@media (max-width: 768px) {
  .left-div {
    min-width: 300px;
    padding: 5px;
    position: relative;
    top: -20px;
  }

  .right-div {
    min-width: 300px;
    position: relative;
    top: 30px;
    justify-content: flex-start;
    margin-bottom: 35px;
  }

  .right-div .big-image {
    width: 75%;
    height: 290px !important;
    margin-bottom: 65px;
  }

  .right-div .small-image {
    width: 67%;
    height: 260px !important;
    top: 87px;
    right: 5px;
  }
}

.card2-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.card2 {
  flex: 1;
  min-width: 280px;
  max-width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.card2:hover {
  transform: translateY(-5px);
}

.card2 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card2-content {
  padding: 20px;
  flex-grow: 1;
}

.card2-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 15px;
  color: #000;
  text-align: center;
}

.card2-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
  justify-content: center;
  align-items: center;
}

.card2-content .read-more {
  display: block;
  margin: 0 auto;
  padding: 12px 20px;
  background: #061fc2;
  color: #fff;
  border: none;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  width: 50%;
  margin-bottom: 25px;
}

.card2-content .read-more:hover {
  background-color: #0066cc;
}

@media (max-width: 768px) {
  .card2-container {
    flex-direction: column;
  }
}

.about-container {
  display: flex;
  margin-top: 20px;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 60px;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

.cta-section {
  background: #1d3557;
  color: white;
  text-align: center;
  padding: 20px 60px;
}

.cta-section h2 {
  font-size: 35px;
  margin-top: 40px;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: center;
}

.cta-button {
  background: #061fc2;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
  cursor: pointer;
  width: 15%;
  margin-top: auto;
}

.cta-button:hover {
  background: #e76f51;
}

@media (max-width: 768px) {
  .cta-button {
  background: #061fc2;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
  cursor: pointer;
  width: 50%;
  margin-top: auto;
}
  }

.newsletter-form {
     display: flex;
     gap: 10px;
     justify-content: center;
     flex-wrap: wrap;
   }

.newsletter-input {
     padding: 15px 20px;
     border: none;
     border-radius: 5px;
     font-size: 1em;
     flex-grow: 1;
     min-width: 200px;
     max-width: 400px;
   }

   .form-note {
     font-size: 0.8em;
     margin-top: 15px;
     opacity: 0.8;
   }
   
.page-header {
  background: #0a2d4a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2em;
  opacity: 0.85;
}

.grid-services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.service-box {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-box h3 {
  font-size: 1.25em;
  color: #0a2d4a;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 0.95em;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .service-box {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .service-box {
    flex: 1 1 100%;
  }
  
  .grid-services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 0px 0px;
	}
}

.advantages-section { 
  padding: 40px 0;
  text-align: center;
}

.advantages-section h2 {
  font-size: 35px;
  color: #102a43;
  margin-bottom: 10px;
}

.advantages-section h2 span {
  font-weight: normal;
  font-size: 0.6em;
  color: #666;
}

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-left: 35px;
  margin-right: 35px;
}

.advantage-box {
  flex: 1 1 calc(33.333% - 20px);
  background: #f4f7fb;
  padding: 45px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  text-align: left;
  transition: box-shadow 0.3s ease;
}

.advantage-box:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.advantage-box h4 {
  font-size: 1.1em;
  color: #0a2d4a;
  margin-bottom: 10px;
}

.advantage-box p {
  font-size: 0.95em;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .advantage-box {
    flex: inherit;
    background: #f4f7fb;
    padding: 25px;
    border-radius: 10px;
    border: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-left: 24px;
    margin-right: 24px;
  }
  
  .advantages-section h2 {
	font-size: 22px;
	color: #102a43;
	margin-bottom: 10px;
}  
  .cta-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .cta-section p {
    font-size: .8em;
    margin-bottom: 30px;
    text-align: center;
  }
}

.card3-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px; /* Reduced from 70px */
}

.card3 {
  flex: 1;
  min-width: 280px;
  max-width: 32%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  animation: riseUp 0.8s ease forwards;
  animation-iteration-count: 1;
  opacity: 0;
  height: 480px; /* Added fixed height */
}

.card3:nth-child(1) { animation-delay: 0.1s; }
.card3:nth-child(2) { animation-delay: 0.2s; }
.card3:nth-child(3) { animation-delay: 0.3s; }
.card3:nth-child(4) { animation-delay: 0.4s; }
.card3:nth-child(5) { animation-delay: 0.5s; }
.card3:nth-child(6) { animation-delay: 0.6s; }
.card3:nth-child(7) { animation-delay: 0.7s; }
.card3:nth-child(8) { animation-delay: 0.8s; }
.card3:nth-child(9) { animation-delay: 0.9s; }
.card3:nth-child(10) { animation-delay: 1.0s; }
.card3:nth-child(11) { animation-delay: 1.1s; }
.card3:nth-child(12) { animation-delay: 1.2s; }
.card3:nth-child(13) { animation-delay: 1.3s; }
.card3:nth-child(14) { animation-delay: 1.4s; }
.card3:nth-child(15) { animation-delay: 1.5s; }
.card3:nth-child(16) { animation-delay: 1.6s; }

.card3:hover {
  transform: translateY(-5px);
}

.card3 img {
  width: 100%;
  height: 160px; /* Reduced from 200px */
  object-fit: cover;
}

.card3-content {
  padding: 15px; /* Reduced from 20px */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card3-content h3 {
  font-size: 18px; /* Reduced from 20px */
  margin-bottom: 10px; /* Reduced from 15px */
  margin-top: 10px; /* Reduced from 15px */
  color: #000;
  text-align: center;
}

.card3-content p {
  font-size: 0.9em; /* Reduced from 0.95em */
  color: #555;
  margin-bottom: 15px; /* Reduced from 20px */
  text-align: justify;
}

.card3-content ul {
  margin-bottom: 15px; /* Reduced from 30px */
}

.card3-content ul li {
  margin-left: 16px; /* Reduced from 19px */
  margin-bottom: 3px; /* Reduced from 4px */
  font-size: 13px; /* Reduced from 14px */
}

.card3-content .read-more {
  display: block;
  margin: 10px auto 15px; /* Reduced bottom margin from 25px */
  padding: 10px 15px; /* Reduced from 12px 20px */
  background: #061fc2;
  color: #fff;
  border: none;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  width: 50%;
  font-weight: bold;
  margin-top: auto; /* Pushes button to bottom */
}

.card3-content .read-more:hover {
  background-color: #0066cc;
}

@media (max-width: 768px) {
  .card3 {
    animation-delay: 0s !important;
    animation-duration: 0.5s;
    height: auto; /* Flexible height on mobile */
    min-height: 350px;
	max-width: 100%
  }
  
  .card3-container {
    flex-direction: column;
  }
  
  .card3 img {
    height: 140px; /* Slightly smaller on mobile */
  }
  
  .card3-content {
    padding: 12px;
  }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #061fc2;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .back-to-top:hover {
    background: #e76f51;
    transform: translateY(-3px);
  }

  .back-to-top.active {
    opacity: 1;
    visibility: visible;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
    fill: white;
  }
  
  .container-fluid {
  width: 100%;
}

.row {
  display: -webkit-inline-box;
  flex-wrap: wrap;
}

.inner .row {
  display: flex;
  align-items: center;
}

.left, .right {
  flex: 0 0 50%;
  padding: 15px;
}

.content-inner {
  padding: 20px;
}

.img-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.container-fluid h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.container-fluid p {
  margin-bottom: 20px;
}

hr.lined {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  margin: 40px auto;
  max-width: 80%;
}

/* Mobile Responsive - Single Breakpoint */
@media (max-width: 768px) {
  .inner .row {
    display: flex;
    flex-direction: column;
  }
  
  /* Force image to come first */
  .right {
    order: 1;
    width: 100%;
    padding: 0 0 15px 0;
  }
  
  /* Force heading and paragraph to come after image */
  .left {
    order: 2;
    width: 100%;
    padding: 0 0 15px 0;
  }
  
  /* Remove any br tags in mobile view */
  .content-inner br {
    display: none;
  }
  
  .container-fluid h3 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  
  .content-inner {
    padding: 0;
  }
  
  hr.lined {
    margin: 30px auto;
  }
  
  /* Specifically handle reverse-order sections */
  .reverse-order .left {
    order: 1;
  }
  .reverse-order .right {
    order: 2;
  }
}


.contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 55px;
      justify-content: space-between;
    }

    .contact-info {
      flex: 1;
      min-width: 300px;
    }

    .contact-form {
      flex: 1;
      min-width: 300px;
    }
	
	.contact-container h4 {
		font-weight: 25px;
	}

    .info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }

    .info-icon {
      font-size: 20px;
      color: #3498db;
      margin-right: 15px;
      min-width: 25px;
      text-align: center;
      margin-top: 3px;
    }

    .map-container {
      height: 300px;
      margin-top: 30px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    .form-group {
      margin-bottom: 20px;
    }

    label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: #2c3e50;
    }

    input, textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-family: inherit;
      font-size: 16px;
      transition: border 0.3s;
    }

    input:focus, textarea:focus {
      outline: none;
      border-color: #3498db;
    }

    textarea {
      min-height: 150px;
      resize: vertical;
    }

    .submit-btn {
      background: #3498db;
      color: white;
      border: none;
      padding: 12px 30px;
      font-size: 16px;
      cursor: pointer;
      border-radius: 4px;
      transition: background 0.3s;
      font-weight: 600;
    }

    .submit-btn:hover {
      background: #2980b9;
    }

    @media (max-width: 768px) {
     .contact-container {
        flex-direction: column;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
	
	
	 .progress-container {
            width: 100%;
            font-family: Arial, sans-serif;
            margin: 0;
        }
        
        .progress-item {
            margin-bottom: 25px;
        }
        
        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .progress-bar {
            height: 7px;
            background-color: #f0f0f0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .progress-fill {
            height: 100%;
            border-radius: 12px;
            width: 0;
            transition: none; /* We'll control this with JS */
        }
        
        /* Individual bar colors */
        .cleaner .progress-fill {
            background: linear-gradient(to right, #2196F3, #0D47A1);
        }
        
        .stronger .progress-fill {
            background: linear-gradient(to right, #2196F3, #0D47A1);
        }
        
        .better .progress-fill {
            background: linear-gradient(to right, #2196F3, #0D47A1);
        }
        
        .percentage {
            font-size: 14px;
            color: #555;
        }