:root{
  --color1: #3498db;
  --color2: #2874a6;
  --color3: #5dade2;
  --color4: #db5934;
  --color5: #85c1e9;
  --font-dark: #000000;
  --font-light: #ffffff;
  --common-font: "Poppins", sans-serif;font-weight: 400;
  font-style: normal;;
  --hero-font: "Poppins", sans-serifont-weight: 400;
  font-style: normal;;
  --hero-sub-font: "Poppins", sans-serifont-weight: 400;
  font-style: normal;;
  --header-font: "Poppins", sans-serifont-weight: 800;
  font-style: normal;;
  --paragraph-font: "Poppins", sans-serif;font-weight: 400; font-style: normal;;
  --footer-font: "Poppins", sans-serif; font-weight: 400;
  font-style: normal;;

}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--common-font);
}

/* Container */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
      max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
      max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
      max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
      max-width: 1140px;
  }
}

/* Global Heading Styling */
h1, h2, h3, h4, h5, h6 {
  position: relative;
  margin-bottom: 20px;
}

h3 {
font-size: 1.4rem;
}

h2::after, h3::after, h4::after, h5::after, h6::after {
  content: '';
  display: block;
  width: 50px;
  height: 5px;
  background-color: var(--color2);
  margin-top: 5px;
}

/* Button Primary*/
.button {
  box-sizing: border-box;
  border: 0;
  border-radius: 40px;
  color: var(--font-light);
  padding: .6em 1em;
  background: var(--color2);
  display: flex;
  transition: 0.1s background;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
  text-decoration: none;
}

.button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: black;
  visibility: hidden;
}

.button:hover {
  background-color: var(--color1);
  text-decoration: underline;
}

/* Button secondary*/


/* Navigation Bar */
.navbar {
  background-color: #333;
  padding: 20px 0 0;
  color: #fff;
  position: sticky;    /* Make the navbar sticky */
  top: 0;              /* Stick it to the top of the screen */
  z-index: 1000;       /* Ensure it's above other elements */
  width: 100%;         /* Full width */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4); /* Add slight shadow */
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: right;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 800;
}

.navbar-logo {
  height: 40px;
}

.navbar-nav {
  list-style: none;
  display: flex;
}

.navbar-nav .nav-item {
  margin: 10px 0px;
}

.navbar-nav .nav-item a {
  color: #fff;
  text-decoration: none;
}

.navbar-nav .nav-item a:hover {
  text-decoration: underline;
}

/* Hero Section */
#hero {
  background: url('https://lh3.googleusercontent.com/NG4eRqkxnwWKib73j4tGETCoNQn4rPtJL-N_S2Gq5V7XGPUZT4TWyrDkdA4eVhklBEbQUArUf9AgCwnJRbwivIEGFvhx7JEC_xJzD3GOwVqHnPWyGrpzARXh_9AZ0Q=w1024-rw-v1-e365') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  padding: 0px 0;
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
  text-align: center; /* Ensure text alignment */
  height: 80vh; /* Full viewport height */
  margin: 0; /* Remove any margin */
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4); /* Add slight shadow */
}

#hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Add slight shadow */;
  
}

#hero p {
  font-size: 24px;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Add slight shadow */

}

#service-hero {
  color: #fff;
  text-align: center;
  padding: 150px 0;
  height: 50vh;
  margin: 20px;
  border-radius: 30px 0 0 30px;
}
#service-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

#service-hero p {
  font-size: 24px;
}

/* About Section */
#about {
  padding: 50px 0;
  text-align: left;
}

#about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

#about p {
  font-size: 18px;
}

/* Card */
.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: left;
}

.card-icon img {
  width: 100%;
  min-height: 200px;
  max-height: 200px;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.card-title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 800;
}

.card-subcopy {
  font-size: 16px;
  color: #666;
}

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

/* Images */
.main-image{
  width: 100%;
  border-radius: 20px;
}
.image{
  width: 100%;
  border-radius: 20px;
  border: #000000 solid 0.1px;
}
/* Image styling */
.zoom-image {
transition: transform 0.3s ease; /* Smooth animation */
position: relative; /* To control stacking order on hover */
}
/* Scale up on hover for screens wider than 768px */
@media (min-width: 769px) {
.zoom-image:hover {
  transform: scale(2); /* Double the size */
  z-index: 10; /* Bring to front */
}
}


/* Check a Trade Section */
#check {
  padding: 50px 0;
  background-color: var(--color3);
}

#check h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
}

#check h1 a {
  color: var(--font-dark);
}
/* Contact Section */
#contact {
  padding: 50px 0;
  align-items: center;
}

#contact h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact input, #contact textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 20px;
}

#contact button {
  padding: 10px 20px;
  font-size: 18px;
  background-color: var(--color1);
  color: #fff;
  border: none;
  cursor: pointer;
}

#contact button:hover {
  background-color: #555;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

footer h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

footer p, footer ul, footer a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 5px;
}

footer a:hover {
  text-decoration: underline;
}

hr{
  margin-bottom: 20px;
}

/* Container */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Responsive Breakpoints */
@media (min-width: 576px) {
  .container {
      max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
      max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
      max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
      max-width: 1140px;
  }
}

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Columns */
[class*='col-'] {
  position: relative;
  width: 100%;
  padding: 10px;
}

/* Extra small devices (phones) */
.col-xs-1 { width: 8.33%; }
.col-xs-2 { width: 16.66%; }
.col-xs-3 { width: 25%; }
.col-xs-4 { width: 33.33%; }
.col-xs-5 { width: 41.66%; }
.col-xs-6 { width: 50%; }
.col-xs-7 { width: 58.33%; }
.col-xs-8 { width: 66.66%; }
.col-xs-9 { width: 75%; }
.col-xs-10 { width: 83.33%; }
.col-xs-11 { width: 91.66%; }
.col-xs-12 { width: 100%; }

/* Small devices (tablets) */
@media (min-width: 576px) {
  .col-sm-1 { width: 8.33%; }
  .col-sm-2 { width: 16.66%; }
  .col-sm-3 { width: 25%; }
  .col-sm-4 { width: 33.33%; }
  .col-sm-5 { width: 41.66%; }
  .col-sm-6 { width: 50%; }
  .col-sm-7 { width: 58.33%; }
  .col-sm-8 { width: 66.66%; }
  .col-sm-9 { width: 75%; }
  .col-sm-10 { width: 83.33%; }
  .col-sm-11 { width: 91.66%; }
  .col-sm-12 { width: 100%; }
}

/* Medium devices (desktops) */
@media (min-width: 768px) {
  .col-md-1 { width: 8.33%; }
  .col-md-2 { width: 16.66%; }
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.33%; }
  .col-md-5 { width: 41.66%; }
  .col-md-6 { width: 50%; }
  .col-md-7 { width: 58.33%; }
  .col-md-8 { width: 66.66%; }
  .col-md-9 { width: 75%; }
  .col-md-10 { width: 83.33%; }
  .col-md-11 { width: 91.66%; }
  .col-md-12 { width: 100%; }
}

/* Large devices (large desktops) */
@media (min-width: 992px) {
  .col-lg-1 { width: 8.33%; }
  .col-lg-2 { width: 16.66%; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.33%; }
  .col-lg-5 { width: 41.66%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.33%; }
  .col-lg-8 { width: 66.66%; }
  .col-lg-9 { width: 75%; }
  .col-lg-10 { width: 83.33%; }
  .col-lg-11 { width: 91.66%; }
  .col-lg-12 { width: 100%; }
}

/* Extra large devices (extra large desktops) */
@media (min-width: 1200px) {
  .col-xl-1 { width: 8.33%; }
  .col-xl-2 { width: 16.66%; }
  .col-xl-3 { width: 25%; }
  .col-xl-4 { width: 33.33%; }
  .col-xl-5 { width: 41.66%; }
  .col-xl-6 { width: 50%; }
  .col-xl-7 { width: 58.33%; }
  .col-xl-8 { width: 66.66%; }
  .col-xl-9 { width: 75%; }
  .col-xl-10 { width: 83.33%; }
  .col-xl-11 { width: 91.66%; }
  .col-xl-12 { width: 100%; }
}