@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
:root {
  --main-color: #00CC00;
}
.bordered-yellow{
  border: 4px solid var(--main-color);
}
.blind-heading{
  color: #054f99;
  font-size: 30px;
}
.blind-heading span{
  color: var(--main-color);
}
/* Default Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Nunito, sans-serif;
  line-height: 1.6;
  margin: 0 auto;
  overflow-x: hidden;
}

/* Header Section */
.header-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* New Section Styles */
.image-text-section {
  padding: 2rem 1rem;
}

.image-stack {
  position: relative;
  width: 100%;
  height: auto;
}

.main-image {
  z-index: 2;
  width: 100%;
  height: auto;
  position: relative;
}

.orange-background {
  background-color: var(--main-color);
  width: 100%;
  height: 100%;
  position: absolute;
  top: -25px;
  left: -27px;
  z-index: 1;
}

/* Text Styles */
.text-content h2 {
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.2em;
  position: relative;
}
.text-content h2::before {
  position: absolute;
  top: -50px;
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: var(--main-color);
  margin-top: 20px;
}

.text-content p {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: Nunito;
  line-height: 1.7em;
}

.text-content a.btn {
  border-radius: none !important;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--main-color);
  color: black;
  margin-top: 30px;
}

.text-content a.btn:hover {
  background-color: var(--main-color);
  color: black;
}
/* Add margin to the text-content section on smaller screens (phones, max-width: 576px) */
@media (max-width: 576px) {
  .text-content {
    margin-top: 45px;
    padding: 0 15px;
  }
  .text-content h2::before {
    position: absolute;
    top: -50px;
    content: '';
    display: block;
    width: 80%;
    height: 4px;
    background-color: var(--main-color);
    margin-top: 20px;
    text-align: center;
    left: 35px;
  }
  .image-stack {
    position: relative;
    width: 100%;
    height: auto;
    transform: translateX(10px);
  }
  .image-text-section {
    padding-bottom: 0px !important;
  }
}

/* Blue Section */
.blue-section {
  background-color: var(--main-color);
  color: #054f99;
  padding: 20px 0;
}

.blue-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

/* Media Queries */
@media (min-width: 998px) {
  .row {
    display: flex;
    flex-direction: row;
  }

  .text-content {
    text-align: left; /* Left align text on medium screens and larger */
    margin-top: 20px !important;
  }

  .text-content h2 {
    font-size: 36px;
  }

  .text-content p {
    font-size: 18px;
  }

  .blue-section h3 {
    font-size: 36px;
  }
  .fix {
    transform: translateX(0px) !important;
    margin-bottom: 20px !important;
  }
  .fix-3 {
    margin-bottom: 30px !important;
  }
  .fix-4 {
    display: flex !important;
    justify-content: start !important;
  }
  .fix-5 {
    padding-left: -5px !important;
  }
}

@media (min-width: 992px) {
  .text-content h2 {
    font-size: 40px;
  }

  .blue-section h3 {
    font-size: 40px;
  }

  .image-stack .orange-background {
    width: 75%;
  }
  .fix {
    transform: translateX(0px) !important;
    margin-bottom: 20px !important;
  }
  .fix-3 {
    margin-bottom: 30px !important;
  }
  .fix-4 {
    display: flex !important;
    justify-content: start !important;
  }
  .fix-5 {
    padding-left: -5px !important;
  }
}

@media (max-width: 576px) {
  .row {
    flex-direction: column; /* Stack items vertically on small screens */
  }

  .text-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .text-content p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .blue-section h3 {
    font-size: 24px;
  }

  .text-content a.btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .fix {
    transform: translateX(0px) !important;
    margin-bottom: 20px !important;
  }
  .fix-3 {
    margin-bottom: 30px !important;
  }
  .fix-4 {
    display: flex !important;
    justify-content: start !important;
  }
  .fix-5 {
    padding-left: -5px !important;
  }
}

/* 3rd section */
.vertical-image {
  height: 100%;
  max-height: 600px;
  object-fit: cover;
}
/* Tick list styling */
.tick-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1rem;
}

.tick-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
  font-weight: 600;
}

.tick-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white; /* Tick color to white */
}

/* Purple Section */
.purple-section {
  color: #054f99; /* Blue background */
  background-color: var(--main-color);
  padding: 30px 0;
  padding-bottom: 0px;
}

.purple-section h3 {
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 20px;
}
/* For tablets and medium devices (max-width: 768px) */
@media (max-width: 768px) {
  .purple-section h3 {
    font-size: 28px;
  }
}

/* For small devices and phones (max-width: 576px) */
@media (max-width: 576px) {
  .purple-section h3 {
    font-size: 24px;
  }
}

/* For extra small devices (max-width: 400px) */
@media (max-width: 400px) {
  .purple-section h3 {
    font-size: 20px; /* Smallest font size for very small screens */
  }
}

/* Gallery Section Styles */
.gallery-section img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}
.gallery-heading {
  font-weight: 800;
  font-size: 40px;
  line-height: 1em;
  text-align: center;
}
.custom {
  background-color: var(--main-color);
  color: #054f99;
  padding: 30px 0;
  padding-bottom: 20px;
  font-weight: 700;
}
.custom h3 {
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
}
/* Styles for the new card section */
.card-section {
  padding: 50px 0;
}

.custom-card {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
.custom-card .card-img {
  object-fit: cover;
  width: 100%;
  height: 250px;
}

.custom-card .card-text {
  background-color: var(--main-color);
  padding: 20px;
  text-align: center;
}

.custom-card .card-text h4 {
  color: #054f99;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}

/* Styles for the third card (Icon Card) */
.custom-card .card-icon {
  font-size: 4rem;
  color: #054f99;
  margin-top: 30px;
}

.custom-card .contact-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 10px 0;
}

.custom-card.d-flex {
  padding: 30px 20px;
}
.custom-card .custom-text {
  width: 100%;
}
/* Styles for the third card (Icon Card) */
.custom-card.d-flex {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-card .card-icon {
  font-size: 4rem;
  color: #054f99;
  margin-top: 30px;
}

.custom-card .contact-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 10px 0;
}
.hello {
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Contact Us heading at the bottom */
.custom-card .card-text {
  background-color: var(--main-color);
  padding: 20px;
  text-align: center;
  width: 100%; /* Full width */
  margin-top: auto; /* Push to the bottom */
}

.custom-card .card-text h4 {
  color: #075db3;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}

/* Ensure all cards are equal height */
.row.g-4 {
  display: flex;
  align-items: stretch;
}

.custom-card {
  display: flex;
  flex-direction: column;
}
/* styles for section */
/* General Tick Icon Styling */
.tick-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px; /* Set a fixed width */
  height: 50px; /* Set a fixed height */
  background-color: var(--main-color);
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bg-orange {
  background-color: var(--main-color);
}

/* Adjust Column Gap */
.row.align-items-center.justify-content-evenly {
  gap: 30px; /* Increase gap between columns */
}

.main-image {
  width: 100%;
  max-width: 450px;
  height: auto;
}

/* Adjust Tick Icon Alignment with Text */
.d-flex.align-items-start .tick-icon {
  margin-top: 4px;
}

p.m-0 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

/* Updated H4 Styling */
h4 {
  font-size: 32px;
  font-weight: 700; /* Make it bolder */
  margin-bottom: 15px;
}

/*  Service Styles */
.li-service {
  font-size: 20px;
  font-weight: 600;
}
/* footer styles */
.footer-section {
  background-color: #fbe304;
}
.footer-text {
  color: #2d558c;
  font-weight: 800;
  font-size: 32px;
}

/* Additional Styles */
.fix {
  transform: translateX(50px);
  margin-bottom: 20px !important;
}

.tick-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-orange {
  background-color: orange;
}

.head {
  font-size: 24px;
  font-weight: 800;
}
.fix-12 {
  margin-top: 55px !important;
}
.header-section-3 img {
  width: 100%;
  height: auto;
}
.what-we-do{
  color: #0000fe;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .text-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .text-content {
    text-align: center;
    margin-top: 50px !important;
  }
  .text-content h2::before {
    position: absolute;
    top: -50px;
    content: '';
    display: block;
    width: 80%;
    height: 4px;
    background-color: var(--main-color);
    margin-top: 20px;
    text-align: center;
    left: 50px;
  }
  .text-content a.btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
}
@media (min-width: 533px) and (max-width: 767px) {
  .orange-background {
    background-color: var(--main-color);
    width: 80% !important;
    height: 100%;
    position: absolute;
    top: -25px;
    left: -27px;
    z-index: 1;
  }
  .image-stack {
    transform: translateX(40px);
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .custom-card .card-img {
    height: auto !important;
  }
}

@media (min-width: 518px) and (max-width: 768px) {
  .fix-9 {
    transform: translateX(25px) !important;
  }
  .fix-4 {
    display: flex !important;
    justify-content: start !important;
  }
  .fix-10 {
    margin-bottom: 0px !important;
  }
  .fix-12 {
    margin-top: 30px !important;
  }
}
@media (max-width: 768px) {
  .fix-12 {
    margin-top: 30px !important;
  }
  .stylish-img{
    width: 100% !important;
  }
  .mt-c{
    margin-top: 3rem ;
  }
}
@media (max-width: 517px) {
  .fix-13 {
    margin-bottom: 0px !important;
  }
}
@media (max-width: 370px) {
  .what-we-do{
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 998px) {
  .text-content p {
    font-size: 12px;
  }
  .text-content a.btn {
    font-size: 12px;
  }
  .tick-list li {
    font-size: 14px;
  }
  .service-heading {
    font-size: 24px;
  }
}

/* Media Queries */
@media (min-width: 768px) and (max-width: 998px) {
  .head {
    font-size: 16px;
  }
  .body {
    font-size: 12px !important;
  }
}
@media (min-width: 998px) and (max-width: 1199px) {
  .fix-15 {
    margin-top: 75px !important;
  }
}

@media (max-width: 552px) {
  .fix-17 {
    transform: translateX(-10px);
  }
}
/* Call Styles for Mobile */

/* Fixed Call Button for Mobile */
.call-button {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background-color: var(--main-color);
  color: black;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  z-index: 1000;
  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .call-button {
    display: block;
  }
}
