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

.custom-row {
    display: flex;
    flex-wrap: wrap;
}

.col-left
 {
    width: 60%;
    padding: 20px;
    box-sizing: border-box;
}

.custom-seller-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.custom-poster-image img {
    max-width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 768px) {
    .col-left,
    .col-right {
        width: 100%;
        padding: 15px;
    }
}  
/* Main container stays centered */
.mv-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
   
    align-items: center;
}

/* Section heading styling */
.mv-header h4 {
    font-size: 18px;
    color: #34a7db;
    font-weight: 600;
    margin-bottom: 5px;
}

.mv-header h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.mv-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #f47c2f;
    margin: 10px auto 0;
}

/* Card container */
.mv-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px 25px;
    margin-bottom: 30px;
    
    max-width: 600px; /* Controls card width */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Icon styling */
.mv-icon i {
    font-size: 40px;
    color: #f47c2f;
    margin-bottom: 15px;
}

/* Card heading */
.mv-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Card paragraph */
.mv-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
/* Icon default style */
.mv-icon i {
    font-size: 40px;
    color: #f47c2f;
    margin-bottom: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect on card to target the icon */
.mv-card:hover .mv-icon i {
    transform: scale(1.2);
    color: #34a7db; /* Optional: change color on hover */
}
/*
 * Media Queries for Mobile View
 */
@media (max-width: 768px) {
    .mv-container {
        flex-direction: column; /* Stacks the mission and vision cards vertically */
        gap: 20px; /* Adds space between the cards */
        padding: 20px; /* Adjusts padding for smaller screens */
    }

    .mv-card {
        flex-basis: 100%; /* Makes each card take up the full width */
        padding: 20px; /* Adjusts padding inside the cards */
    }

    .mv-card h3 {
        font-size: 1.5rem; /* Reduces the heading size */
    }

    .mv-card p {
        font-size: 1rem; /* Reduces the paragraph font size for readability */
    }
}

/* General container for the cards */
.service-row {
    display: flex;
    justify-content: space-between; /* Creates equal space between cards */
    align-items: stretch; /* Makes all cards the same height */
    flex-wrap: wrap; /* Allows cards to wrap to the next line on smaller screens */
    gap: 20px; /* Space between the cards */
    padding: 20px;
    background-color: #f8f9fa; /* A light background for contrast */
}

/* Styling for each individual card */
.service-card {
    flex-basis: calc(25% - 15px); /* 25% width for each card, subtracting gap space */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation on hover */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px; /* Ensures a minimum height for visual consistency */
}

/* Hover effect for the card */
.service-card:hover {
    transform: translateY(-5px); /* Moves the card up slightly */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
 
}

/* Styling for the SVG icon container */
.service-svg {
    width: 60px; /* Adjust size of SVG icon */
    height: 60px;
    margin-bottom: 20px;
    /* transition: transform 0.3s ease; */
}

/* Color of the SVG icon path on hover */
.service-card:hover .service-svg path {
    fill: #34a7db; /* Change to your desired hover color */
    transition: fill 0.3s ease; /* Smooth color transition */
}

.service-card .service-svg path {
    fill: #343a40; /* Default icon color */
    transition: fill 0.3s ease;
}

/* Text and details within the card */
.service-detail h4 {
    font-size: 1.25rem;
    color: #343a40;
    margin-bottom: 10px;
}

.service-detail p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Media query for smaller screens */
@media (max-width: 992px) {
    .service-card {
        flex-basis: calc(50% - 10px); /* Two cards per row on medium screens */
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .service-card {
        flex-basis: 100%; /* One card per row on small screens */
        margin-bottom: 20px;
    }
}
.service-icon i {
    font-size: 40px;
    color: #000000 ;
    transition: transform 0.3s, color 0.3s;
}

.service-icon i:hover {
    transform: scale(1.2);
    color:#34a7db;
}

 .footer-section {
        background-color: #25272E; /* Changed background color */
        color: #d1d1d1;
        font-family: Arial, sans-serif;
        padding-top: 2rem; /* Decreased top padding */
        padding-bottom: 1.5rem; /* Decreased bottom padding */
    }
    .footer-separator {
        border-bottom: 1px solid #444;
        margin: 15px 0; /* Reduced margin to decrease spacing */
    }
    .footer-logo h2 {
        color: #4a90e2;
        font-weight: bold;
        margin-bottom: 5px; /* Reduced spacing */
    }
    .footer-logo p {
        margin-bottom: 5px; /* Reduced spacing */
    }
    .contact-icon-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-icon-box i {
        color: #d1d1d1;
        font-size: 20px;
        margin-bottom: 5px;
    }
    .contact-icon-box p {
        font-size: 14px;
        margin-bottom: 0;
        line-height: 1.2;
    }
    .useful-links h6 {
        margin-bottom: 10px; /* Reduced spacing */
    }
    .useful-links a {
        color: #d1d1d1;
        text-decoration: none;
        margin-right: 20px;
        font-weight: 500;
        font-size: 14px;
    }
    .useful-links a:hover {
        color: #4a90e2;
    }
    .social-icons-container .social-icon {
        display: inline-block;
        width: 35px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        border-radius: 50%;
        margin-left: 10px;
        color: white;
        transition: background-color 0.3s;
    }
    .social-icons-container .social-icon i {
        font-size: 16px;
    }
    .social-icons-container .social-icon.yt { background-color: #ff0000; }
    .social-icons-container .social-icon.li { background-color: #0e76a8; }
    .social-icons-container .social-icon.ig { background-color: #e4405f; }
    .social-icons-container .social-icon.fb { background-color: #1877f2; }

    /* Media Queries for Mobile View */
    @media (max-width: 768px) {
        .social-icons-container {
            margin-top: 15px;
        }
        .text-md-start, .text-md-end {
            text-align: center !important;
        }
    }
 
  .founder-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
  }

  .founder-card {
    max-width: 1200px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
  }

  .founder-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  .founder-message {
    font-style: italic;
    font-size: 18px;
    color: black;
    line-height: 1.6;
   font-family: 'Source Sans Pro', sans-serif;
  }

  .founder-sign {
    margin-top: 30px;
    text-align: right;
    font-weight: bold;
    color: #1a4d8f;
  }
   .foundermsg{
       position:absolute;
       top:23.8%;
       left:6%;
   }

  @media (max-width: 768px) {
      .founder-section{
          flex-direction: column;
        align-items: center;
      }
  .founder-card {
    padding: 20px;
    margin: 0 12px;
  }

  .founder-message {
    font-size: 16px;
  }

  .founder-sign {
    font-size: 14px;
    margin-top: 20px;
  }
  .foundermsg{ 
   top: 8.1%;
  left: 9%;
  }
}

.services-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }

  .services-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .service-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 280px;
    max-width: 500px;
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .service-icon {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .service-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a4d8f;
  }

  .service-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
  }

  @media (max-width: 600px) {
    .service-card {
      flex: 1 1 100%;
    }
  }
  .slidersection{
      position:relative;
      top:-145px;
  }
  .logoup{
      z-index:1;
  }
 #primaryMenu{
     z-index:10;
 }
  @media(max-width:668px){
      .slidersection{
          position:relative;
          top:0;
      }
      .logoup{
      z-index:0 
  }
  }
  .services-section {
  padding: 50px 20px;
  background-color: #f5faff;
  text-align: center;
}

.section-heading {
  font-weight: 700;
  font-size: 37px;
  margin-bottom: 23px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  position: relative;
  width: 300px;
  height: 280px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 119, 182, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: white;
  text-align: center;
  padding: 10px;
}

.service-card:hover .overlay {
  opacity: 1;
}

.overlay .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.overlay h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.overlay p {
  font-size: 14px;
}
.overlay .icon {
  font-size: 40px;
  margin-bottom: 12px;
  background: white;
  color: #0077b6;
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
}
.fresh-image-3{
}
@media(max-width:464px){
    .fresh-image-3{
        background:none;
      max-height:300px;
      object-fit:contain;
}
}
 .fresh-image-2 img{
     border-top-left-radius:30px;
 }