/* Reset#1B4001
---------------------------------*/
:root {
  --uat-green: #0e4c41;
  --uat-text: #ffffff;
  --uat-radius: 14px;
  --uat-gap: 24px;
}

.uat-products {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
}

.uat-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #0e4c41;
}

.uat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--uat-gap);
}

/* Each card */
.uat-card {
  background-color: var(--uat-green);
  color: var(--uat-text);
  border-radius: var(--uat-radius);
  padding: 28px 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.uat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

/* Card title */
.uat-card-title {
    color: var(--uat-text);
  font-size: 20px;
  margin-bottom: 14px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 8px;
}

/* Product list */
.uat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uat-list li {
  margin: 6px 0;
  padding-left: 18px;
  position: relative;
  font-size: 16px;
}

.uat-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f1f7f1;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
  .uat-card {
    padding: 20px;
  }
  .uat-card-title {
    font-size: 18px;
  }
}

/* ========== ABOUT HERO ========== */
.about-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #0e4c41;
  color: white;
  padding: 60px 8%;
  /* border-radius: 0 0 30px 30px; */
}

.about-hero-text {
  flex: 1 1 45%;
}

.about-hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-hero-text p {
  font-size: 24px;
  line-height: 1.6;
  color: #f5f5f5;
}

.about-hero-image {
  flex: 1 1 45%;
  text-align: right;
}

.about-hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ========== ABOUT CONTENT ========== */
.about-content {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 8%;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1 1 50%;
  padding: 20px;
}

.about-text h2 {
  color: #0e4c41;
  font-size: 2.8rem;
  margin-bottom: 15px;
  border-left: 5px solid #0e4c41;
  padding-left: 12px;
}

.about-text ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #333;
  line-height: 1.7;
  font-size: 14px;
}

.about-img {
  flex: 1 1 45%;
  text-align: center;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.about-img img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
  }

  .about-row {
    flex-direction: column;
  }

  .about-img {
    margin-top: 25px;
  }
}

/* ======== TOP INTRO SECTION ======== */
.intro-section {
  background-color: #f9fff8;
  padding: 80px 8%;
}

.intro-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.intro-text {
  flex: 1 1 50%;
}

.intro-text h1 {
  font-size: 2.6rem;
  color: #0e4c41;
  margin-bottom: 20px;
  font-weight: 700;
}

.intro-text p {
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.intro-image {
  flex: 1 1 45%;
  text-align: right;
}

.intro-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.intro-image img:hover {
  transform: scale(1.03);
}

/* Responsive Intro Section */
@media (max-width: 768px) {
  .intro-container {
    flex-direction: column;
    text-align: center;
  }
  .intro-image {
    text-align: center;
  }
  .intro-image img {
    width: 90%;
  }
}

.row.display-table {
    display: table;
}

.row.display-table [class*='col-'] {
    float: none;
    display: table-cell;
    vertical-align: top;
    text-align: center;
}

ul {
    list-style: none;
}

.figure {
    margin: 0px;
}

img {
    max-width: 100%;
}

a,
a:hover,
a:active {
    outline: 0px !important;
    text-decoration: none;
}

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:before,
.clearfix:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:after {
    clear: both;
}

/* Common style */

/* Styles
---------------------------------*/
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: normal;
    color: #0D0D0D;
    line-height: 30px;
    margin: 0;
    letter-spacing: -0.015em;
}

h1 {
    font-size: 56px;
    line-height: 80px;
}

h2 {
    font-size: 38px;
    line-height: 72px;
    font-weight: 600;
    color: #0e4c41;
}

h3 {
    font-weight: 500;
    font-size: 28px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
}

h4 {
    font-size: 24px;
    margin: 0 0 5px 0;
    line-height: 36px;
    font-weight: 500;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 14px;
}

p {
    line-height: 30px;
    margin: 0 0 12px 0;
}

/* Nav Styles
---------------------------------*/
#main-nav {
    width: 100%;
    text-align: center;
    padding: 0;
}

.navbar {
    min-height: 40px;
    margin-bottom: 0px;
    text-align: center;
    float: left;
    width: 100%;
    border: 0 none;
}

.navbar-nav {
    margin: 0;
}

.navbar-nav>li>a {
    color: #0e4c41;
    padding: 25px 25px;
    font-size: 18px;
    font-weight: 600;
}


.navbar-nav>li>a:hover,
.navbar-nav>li>a:focus {
    color: #0e4c41;
}

.navbar-nav>.active>a,
.navbar-nav>.active>a:hover,
.navbar-nav>.active>a:focus {
    background-color: #f6f6f6;
    color: #0e4c41;
}

.navStyle>li.active>a,
.navStyle>li.active>a:hover {
    text-decoration: none;
    color: #0e4c41;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #f7cb6b;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #f7cb6b;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #f7cb6b;
}

.form-control {
    color: #f7cb6b;
    padding: 20px 15px;
    border-color: #151c36;
    background: #151c36;
    border-radius: 0;
}

.btn-primary {
    color: #fff;
    background-color: #0e4c41;
    border-color: #0e4c41;
    padding: 10px 34px;
    border-radius: 6px;
    font-weight: 600;
    display: block;

}

.btn-primary:hover {
    background-color: #3e880a;
    border-color: #3e880a;
    color: #fff;
}

img {
    width: 100%;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #0e4c41;
}

/* ===== Footer Styling ===== */
.uat-footer {
  background-color: #f3f3f3;
  color: #333;
  padding: 50px 20px 20px;
}

.uat-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Column - Quick Links */
.uat-footer-col h4 {
    font-size: 2.2rem;
    color: #0e4c41;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.uat-footer-col h4 i {
    color: #00b894; /* accent color */
    transition: transform 0.3s ease;
}

.uat-footer-col h4:hover i {
    transform: rotate(20deg);
}

/* Menu links styling */
.uat-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uat-footer-menu li {
    margin-bottom: 8px;
}

.uat-footer-menu li a {
    color: #0e4c41;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding-left: 22px;
    transition: color 0.3s ease;
}

.uat-footer-menu li a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #00b894;
    transition: transform 0.3s ease;
}

.uat-footer-menu li a:hover {
    color: #00b894;
}

.uat-footer-menu li a:hover::before {
    transform: translateX(4px);
}


/* Social Links */
.uat-social-links {
  display: flex;
  gap: 12px;
}

.uat-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  color: #1b4001;
  font-size: 16px;
  transition: all 0.3s ease;
}

.uat-social-links a:hover {
  background-color: #1b4001;
  color: #fff;
}

/* Footer Bottom */
.uat-footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #555;
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

@media (max-width: 768px) {
  .uat-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .uat-social-links {
    justify-content: center;
  }
}

.align_center {
    text-align: center;
}

#header_wrapper {
    background: #fff;
}

.header-title {
    font-size: 30px;
    /* line-height: 50px; */
    color:#0e4c41;
}

.page_section {
    padding-top: 10px;
    padding-bottom: 50px;
}
.footer_bottom {
    /* border-top: 1px solid #1B4001; */
    padding-top: 10px;
}
.footer-page_section {
    /* padding-top: 1px; */
    padding-bottom: 10px;
    background-color:#0e4c41;
    color: #fff;
}

.mb {
    margin-bottom: 20px;
}

.main-logo {
    max-width: 198px;
}

#home {
    max-height: 960px;
    overflow: hidden;
    position: relative;
}

.banner {

    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.banner .banner-content {
    color: #fff;
    background: #0e4c41;
    /* padding: 25px 10px; */
    width: 100%;

}

#services,
#about_us,
#email {
    background-color: #F5F5F5;
}

.service-card {
    padding-top: 50px;
    padding-bottom: 50px;
}

.service-card p {
    color: rgba(0, 0, 0, 0.8);
}

.bot-card {
    background-color: #0e4c41;
    color: #fff;
    padding: 0;
}

.bot-card img {
    width: 100%;
    max-width: 100%;
}

.bot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.big-text {
    font-size: 22px;
    line-height: 20px;
    color: #0e4c41;
    font-weight: 500;
}

.bot-text {
    vertical-align: top;
    padding: 15px;
    text-align: center;
}

.bot-text p {
    font-size: 15px;
    margin: 0 0 3px 0;
}

.client-img {
    padding: 10px;
    text-align: center;
}

.client-img img {
    max-width: 100%;
    max-height: 80px;
}

.about-image {
    padding: 10px;
}

.about-image img {
    width: 100%;
}

.bot-image img {
    max-width: 100%;
    height: 140px;
}

/*
   Media Queries
--------------------------- */


@media (max-width: 991px) {
    h1 {
        font-size: 32px;
        line-height: inherit;
    }

    h2 {
        font-size: 30px;
        line-height: inherit;
    }

    h3 {
        font-size: 22px;
        line-height: inherit;
        font-weight: 600;
    }

    h4 {
        font-size: 20px;
        line-height: inherit;
    }

    h6 {
        font-size: 20px;
        line-height: inherit;
    }

    .navbar-toggle {
        display: block !important;
    }

    .navbar-header {
        float: right !important;
        position: absolute;
        top: 15px;
        right: 0;
    }

    .navStyle {
        float: right;
        width: auto;
        text-align: center;
    }

    .navbar-toggle .icon-bar {
        background: #fff;
    }

    .navbar-toggle {
        border-color:#0e4c41;
        background:#0e4c41;
        padding: 7px;
        border-radius: 0;
    }

    .navbar-toggle:hover,
    .navbar-toggle:focus {
        background: #0e4c41;
        outline: none;
    }

    .navStyle ul li {
        display: block;
    }

    .navStyle {
        float: right;
        width: 100%;
        text-align: center;
    }

    .navbar {
        border: 0px solid #fff;
        min-height: inherit;
        margin-bottom: 0px;
        float: right;
        width: 100%;
        position: absolute;
        /* background: #0D0D0D; */
        left: 0;
    }

    .navStyle ul li {
        display: block;
        margin: 0px;
    }

    .navStyle ul li:last-child {
        margin: 0px;
    }

    .navbar-nav {
        background: #0e4c41;
        width: 100%;
    }

    .navbar-nav li {
        float: none;
    }

    .navbar-nav>li>a {
        color: #fff;
        padding: 10px 11px;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .collapse {
        display: block;
        visibility: visible;
    }

    .banner {
        position: absolute;
        top: 0;
    }

    .banner .banner-content {
        position: absolute;
        bottom: 50%;
    }

    /* .main-logo {
        padding: 10px 0;
    } */

    .page_section {
        padding-top: 50px;
        padding-bottom: 50px;

    }

    .footer-page_section {
        /* padding-top: 1px; */
        padding-bottom: 10px;
        background-color:#0e4c41;
        color: #fff;
    }

    .big-text {
        font-size: 32px;
        line-height: 50px;
        color: #0e4c41;
        font-weight: 500;
    }


    .bot-image {
        position: relative;
    }

    .bot-card.bot-card-center .bot-text {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;

    }

    .bot-card-center .bot-image {
        position: relative;
        top: 70px;
    }
}

/* Service Card Styles */
.product-service-card {
    color: #fff;
    padding: 20px;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.product-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* Text readability */
    z-index: 1;
    transition: background 0.4s ease;
}

.product-service-card h4,
.product-service-card p {
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

.product-service-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
}

.product-service-card p {
    font-size: 2rem;
}

.product-service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.product-service-card:hover::before {
    background: rgba(0, 0, 0, 0.6);
}

/* Responsive Text Sizes */
@media (max-width: 768px) {
    .product-service-card {
        min-height: 260px;
        padding: 15px;
    }

    .product-service-card h4 {
        font-size: 1.3rem;
    }

    .product-service-card p {
        font-size: 2rem;
    }

    .bot-image img {
        max-width: 100%;
        height: 100%;
    }
}


/* map */
.map-fullwidth iframe {
    width: 100vw;
    max-width: 100%;
    border: #0D0D0D 1px solid;
    height: 100vh;
    max-height: 100%;
}

.client-logo-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- UAT Exports styles --- */
/* 🌿 Universal Agro Traders - Our Exports Page Styling */
.uat-exports-wrap {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  color: #0e4c41;
}

.uat-exports-header {
  text-align: center;
  margin-bottom: 40px;
}

.uat-exports-header h1 {
  font-size: 2.5rem;
  color: #0e4c41;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.uat-exports-header p {
  font-size: 1rem;
  color: #444;
}

/* 🌍 City Cards Grid */
.uat-list-cities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 50px;
  margin-top: 40px;
}

.uat-city {
  display: block;
  background: #e6f3e0;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #0e4c41;
  text-align: center;
  padding: 25px 15px;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.uat-city::before {
  content: '';
  background: url('https://cdn-icons-png.flaticon.com/512/684/684908.png') no-repeat center/contain;
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto 10px;
  opacity: 0.9;
}

.uat-city:hover {
  background: #0e4c41;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(27, 64, 1, 0.3);
}

/* --- City Cards Grid --- */
.uat-list-cities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px
/*   margin: 40px 0;
  padding: 0 20px; */
}

/* --- Individual City Card --- */
.uat-city-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uat-city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* --- City Image --- */
.uat-city-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* --- City Info --- */
.uat-city-info {
  padding: 15px;
  background:#0e4c41;
  text-align: center;
}

.uat-city-info h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
}

/* --- Fallback for Missing Image --- */
.uat-no-image {
  background: #ccc;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
}

/* 📦 Category Cards */
.uat-list-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 50px;
  margin: 30px 0;
}

.uat-category {
  background: #f1f8ef;
  border: 2px solid #0e4c41;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  color: #0e4c41;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.uat-category:hover {
  background:#0e4c41;
  color: #fff;
  transform: scale(1.05);
}

/* ===== Category Cards ===== */

.uat-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background-color: #f8fff5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uat-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.uat-category-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.uat-category-name {
  font-size: 18px;
  font-weight: 600;
  color: #1b4332;
  padding: 12px;
  text-align: center;
  background-color: #e8f5e9;
  width: 100%;
}

@media (max-width: 600px) {
  .uat-category-name {
    font-size: 16px;
    padding: 10px;
  }
}

/* 🛍 Product Cards Grid */
.uat-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.uat-product-card {
  background: #f7fdf5;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.uat-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(27, 64, 1, 0.25);
}

.uat-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #0e4c41;
}

.uat-product-card h3 {
  text-align: center;
  color: #0e4c41;
  margin: 15px 0 10px;
  font-size: 2.1rem;
}

.uat-excerpt {
  /* font-size: 0.9rem; */
  color: #333;
  padding: 0 15px 15px;
  text-align: center;
}

/* 🌾 Breadcrumb and Section Header */
.uat-breadcrumb-container {
  /* margin: 30px auto 40px; */
  text-align: center;
  /* max-width: 900px; */
  padding: 0 15px;
}

/* --- Breadcrumb --- */
.uat-breadcrumb {
  background-color: #ccf5d3; /* light green shade */
  color: #1b4332;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.uat-breadcrumb:hover {
  background-color: #b7f2c4; /* brighter green on hover */
  transform: translateY(-2px);
}

.uat-breadcrumb a {
  color: #006400;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.uat-breadcrumb a:hover {
  color: #004d00;
  text-decoration: underline;
}


.uat-separator {
  color: #999;
  font-size: 18px;
  margin: 0 3px;
}

.uat-current {
  color:#0e4c41;
  font-weight: 600;
}

/* --- Heading --- */
.uat-section-heading {
  font-size: 26px;
  font-weight: 700;
  color: #0e4c41;
  text-transform: capitalize;
  margin-top: 10px;
}

.uat-section-heading span {
  color: #0e4c41;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .uat-section-heading {
    font-size: 22px;
  }
  .uat-breadcrumb {
    font-size: 14px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .uat-exports-header h1 {
    font-size: 2rem;
  }
  .uat-city {
    font-size: 1rem;
  }
  .uat-product-card h3 {
    font-size: 1rem;
  }
}
.uat-city {
  position: relative;
  color: #070707;
  background-color: #e4f3d9;
  background-blend-mode: multiply;
}
.uat-city-overlay {
  background: rgba(0,0,0,0.4);
  padding: 40px 10px;
  border-radius: 12px;
}



/* ====== Single Product Page Styling ====== */
.uat-single-product {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.uat-single-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: #f7fff8; /* light mint green */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.uat-single-inner:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

/* Product Image */
.uat-single-media {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uat-product-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.uat-no-thumb {
  width: 100%;
  height: 300px;
  background-color: #e8f5e9;
  color: #555;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
}

/* Product Content */
.uat-single-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.uat-product-title {
  font-size: 2rem;
  color: #1b4332;
  margin-bottom: 10px;
  border-bottom: 2px solid #a3e4a6;
  display: inline-block;
  padding-bottom: 5px;
}

.uat-meta div {
  margin: 5px 0;
  font-size: 16px;
  color: #333;
}

.uat-meta strong {
  color: #1b4332;
}

.uat-desc {
  margin-top: 15px;
  line-height: 1.6;
  font-size: 17px;
  color: #333;
}

.uat-extra {
  background: #e9fce9;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.uat-extra h4 {
  margin-bottom: 10px;
  color: #1b4332;
  font-size: 18px;
}

.uat-extra ul {
  margin: 0;
  padding-left: 20px;
}

.uat-extra li {
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .uat-single-inner {
    flex-direction: column;
    padding: 20px;
  }

  .uat-single-media, .uat-single-content {
    flex: 1 1 100%;
  }

  .uat-product-title {
    font-size: 1.6rem;
  }
}

/* Quotation Card */
/* Quotation Card Overlapping Footer */
.uat-quotation-card {
    position: relative; /* required for overlap */
    z-index: 10; /* ensure it’s above the footer */
/*     max-width: 500px; /* adjust width as needed */ */
    margin: 0 auto; /* center horizontally */
    background-color:  #0e4c41; /* card background, adjust as needed */
    color: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    
    /* This is the overlap part */
    transform: translateY(30px); /* move up to overlap footer */
}

/* Optional: Button inside card */
.uat-quotation-card .uat-quote-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #fcb040;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.uat-quotation-card .uat-quote-btn:hover {
    background-color: #e0e0e0;
}


.uat-quotation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.uat-quotation-card h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.uat-quotation-card p {
    color: #;
    font-size: 16px;
    margin-bottom: 20px;
}

/* .uat-quote-btn {
    display: inline-block;
    background-color: #1B4001;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
 */
.uat-quote-btn:hover {
    background-color: #3e880a;
    color: #fff;
    transform: scale(1.05);
}


//contact us page 

/* Contact Page CSS */
.contact-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

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

/* ===== Row 1: Info Box ===== */
.contact-info-row {
  margin-bottom: 30px;
	margin-top:30px
}

.contact-info-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  flex: 1;
  min-width: 250px;
  gap: 15px;
}

.info-item i {
  font-size: 24px;
  color: #0073aa;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.info-item a {
  color: #0073aa;
  text-decoration: none;
}

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

/* ===== Row 2: Map + Form ===== */
.contact-map-form-row {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.map-column, .form-column {
  flex: 1;
  min-width: 300px;
}

.map-column iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 10px;
}

/* Form Styling */
.form-column h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #222;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.contact-form textarea {
  height: 140px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  border: none;
  background-color: #fcb040 ;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
	font-weight: 700;
}

.contact-form button:hover {
  background-color:#0e4c41;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .contact-map-form-row {
    flex-direction: column;
  }
  .contact-info-box {
    flex-direction: column;
  }
}



/* EXPORT HERO */
.uat-export-hero {
    background: linear-gradient(120deg, #0b9444, #047857);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.uat-export-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.uat-export-hero p {
    font-size: 16px;
    opacity: 0.9;
}

/* CONTENT SECTION */
.uat-export-content {
    padding: 60px 20px;
}

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

/* GRID */
.uat-export-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* LEFT CONTENT */
.uat-export-thumb img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.uat-export-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* PRODUCTS */
.uat-export-products h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #0b9444;
}

.uat-export-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.uat-export-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.uat-export-product-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.uat-export-product-card h4 {
    padding: 10px;
    font-size: 14px;
}

.uat-export-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .uat-export-grid {
        grid-template-columns: 1fr;
    }

    .uat-export-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .uat-export-hero h1 {
        font-size: 30px;
    }

    .uat-export-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.uat-page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 90px 20px;
    color: #fff;
}

.uat-page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.4)
    );
}

.uat-page-header-content {
    position: relative;
    max-width: 1200px;
    margin: auto;
    z-index: 2;
}

.uat-page-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.uat-breadcrumbs {
    font-size: 14px;
    opacity: 0.9;
}

.uat-breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .uat-page-title {
        font-size: 30px;
    }
}


.uat-page-header {
    position: relative;
    min-height: 280px; /* IMPORTANT */
    background-size: cover;
    background-position: center;
    padding: 90px 20px;
}

.uat-page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.4)
    );
}

.uat-page-header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    color: #fff;
}

/* HOME EXPORTS SECTION */
.uat-home-exports {
    padding: 60px 20px;
    background: #f9fafb;
    text-align: center;
}

.uat-home-exports-head h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #0b9444;
}

.uat-home-exports-head p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* FLAGS GRID */
.uat-export-flags {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.uat-flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #222;
    transition: transform 0.3s ease;
}

.uat-flag-item img {
    width: 70px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.uat-flag-name {
    margin-top: 6px;
    font-size: 13px;
}

.uat-flag-item:hover {
    transform: translateY(-5px);
}

/* MOBILE */
@media (max-width: 600px) {
    .uat-home-exports-head h2 {
        font-size: 26px;
    }

    .uat-flag-item img {
        width: 60px;
        height: 42px;
    }
}

.uat-export-btn-wrap {
    margin-top: 35px;
    text-align: center;
}

