 * {
   padding: 0;
   margin: 0;
   
 }

 body {
   background-image: url('\images\backgroundvalley.jpg');
   background-color: #eff8ff;
 }

 .navbar {
   background: linear-gradient(90deg, #ffffff, #ffffff);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .navbar-brand img {
   height: 45px;
 }

 .nav-link {
   font-weight: 500;
   color: #015f8a !important;
   transition: color 0.3s ease;
 }

 .nav-link:hover {
   color: #0077b6 !important;
 }

 .btn-primary {
   background-color: #0077b6;
   border: none;
   transition: background-color 0.3s ease;
 }

 .btn-primary:hover {
   background-color: #005f8a;
 }

 .navbar-nav {
   align-items: center;
 }

 @media (max-width: 767px) {
   .navbar-brand img {
     height: 40px;
   }
 }

 .slider {
   width: 100%;
   max-width: 100%;
   height: 500px;
   overflow: hidden;
   margin: 40px auto;
   border-radius: 10px;
   position: relative;


 }

 .slides {
   display: flex;
   width: 400%;
   height: 100%;
   animation: slide 20s infinite;

 }

 .slides img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 @keyframes slide {
   0% {
     margin-left: 0;
   }

   20% {
     margin-left: 0;
   }

   25% {
     margin-left: -100%;
   }

   45% {
     margin-left: -100%;
   }

   50% {
     margin-left: -200%;
   }

   70% {
     margin-left: -200%;
   }

   75% {
     margin-left: -300%;
   }

   95% {
     margin-left: -300%;
   }

   100% {
     margin-left: 0;
   }
 }


 /*============================= home pages desion============== */
 .headhome {
  margin-bottom: 3rem;
   width: 100%;
   height: 100vh;
   background: url('/images/valleyback.jpg') no-repeat center center/cover;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   color: white;
 }

 .headhometext {
   text-align: center;
   /* background-color: rgba(0, 0, 0, 0.4); Optional: adds overlay to make text readable */
   padding: 20px;
   border-radius: 10px;
 }

 .headhometext h1 {
   font-size: 9rem;
   margin-bottom: 8px;
 }

 .headhometext p {
   font-style: italic;
   font-size: 2rem;
   margin: 0;
 }

 @media (max-width: 768px) {
   .headhome {
    width: 100%;
    height: 50vh;
}
.headhometext h1 {
    font-size: 4rem;
    margin-bottom: 8px;
}
.headhometext p {
    font-style: italic;
    font-size: 1.5rem;
    margin: 0;
}
  .elementor-element {
    flex-direction: column;       /* Stack content vertically */
    max-width: 100%;              /* Full width on small screens */
    margin: 20px 10px;            /* Some spacing from edges */
    border-radius: 0;             /* Optional: remove rounding on small screens */
  
}

 }

 /*===================== elementor-element ==================*/
 .elementor-element {
   max-width: 1200px;
   margin: auto;
   background: #fff;
   display: flex;
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
   border-radius: 5px;
   overflow: hidden;
 }

 .text-section {
   flex: 1;
   padding: 40px;
 }

 .text-section h1 {
   color: #3b85ab;
   /* red */
   font-size: 48px;
   margin-bottom: 20px;
 }

 .text-section p {
   font-size: 18px;
   line-height: 1.7;
   color: #333;
   text-align: justify;
 }

 .image-section {
   flex: 1;
   background-color: #f4f4f4;
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 20px;
 }

 .image-section img {
   width: 100%;
   max-width: 500px;
   border-radius: 20px;
 }

 @media (max-width: 768px) {
   .container {
     flex-direction: column;
   }

   .text-section,
   .image-section {
     padding: 20px;
   }

   .text-section h1 {
     font-size: 32px;
   }
 }

 /* =====================card for prodiuct ====================== */
 .card-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2e2e2e;
  font-weight: 700;
  margin-top: 40px;
  font-style: italic;
}
 .card-container {
   padding: 3rem;
   display: flex;
   gap: 20px;
   justify-content: center;
   flex-wrap: wrap;
 }

 .card {
   background-color: #fff;
   width: 300px;
   border-radius: 10px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
   overflow: hidden;
   transition: transform 0.3s ease;
 }

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

 .card img {
   width: 100%;
   height: 20rem;
   object-fit: cover;
 }

 .card-content {
   padding: 20px;
 }

 .card-content h3 {
   margin-top: 0;
   font-size: 24px;
   color: #e50914;
 }

 .card-content p {
   font-size: 16px;
   color: #555;
   margin: 10px 0 20px;
 }

 .card-content a {
   display: inline-block;
   padding: 10px 20px;
   background-color: #388fc6;
   color: #fff;
   text-decoration: none;
   border-radius: 5px;
   transition: background-color 0.2s ease;
 }

 .card-content a:hover {
   background-color: #012c6d;
 }



 /* aboutvalleyppani */

 .aboutforcomapnyvalleypsni {
   background-image: url('/images/background.png');
   /* Replace with your image */
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   padding: 0px 0px;
   color: white;
   display: flex;
   justify-content: flex-end;
   /* Push content to right */
 }

 .about-section {
   width: 57%;
   /* Or 40% if you want a smaller section */
   padding: 9rem 0;
   border-radius: 12px;
   margin-right: 40px;
   /* Optional: spacing from right edge */
 }

 .about-section h2 {
   font-size: 4rem;
   margin-bottom: 20px 0;
   color: #ffffff;
   /* Red color for heading */

 }

 .about-section p {
   font-style: italic;
   font-size: 1.2rem;
   margin: 20px;
   color: #ffffff;
   /* Red color for heading */

 }









 /* =============Footer section==================== */
 .footer {
   background-color: #043059;
   color: #ffffff;
   padding: 40px 20px 20px;
   font-family: Arial, sans-serif;
 }

 .footer-container {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   max-width: 1200px;
   margin: auto;
   gap: 20px;
 }

 .footer-column {
   flex: 1;
   min-width: 250px;
 }

 .footer-column img {
   width: 100px;
   height: auto;
   margin-bottom: 20px;
   margin-left: auto;
   margin-right: auto;
 }

 .footer-column h2 {
   color: #00bcd4;
   font-size: 28px;
   margin-bottom: 10px;
 }

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

 .footer-column p,
 .footer-column li {
   font-size: 14px;
   line-height: 1.6;
   color: #cccccc;
 }

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

 .footer-column ul li a {
   text-decoration: none;
   color: #cccccc;
   transition: color 0.3s ease;
 }

 .footer-column ul li a:hover {
   color: #00bcd4;
 }

 .footer-bottom {
   text-align: center;
   border-top: 1px solid #333;
   padding-top: 15px;
   margin-top: 20px;
   font-size: 14px;
   color: #888;
 }



 /* ===== Section wrapper (light top gradient background like screenshot) ===== */
.sources {
  --maxw: 1200px;
  --card-r: 18px;
  --shadow: 0 6px 24px rgba(16, 24, 40, 0.08);
  --border: 1px solid rgba(2, 86, 143, 0.08);
  --text: #0f172a;
  --muted: #6b7280;
  --brand-blue-1: #bfe9ff;
  --brand-blue-2: #eff8ff;

  background: linear-gradient(180deg, #eff7fc 0%, #ffffff 70%);
  padding: 56px 20px 64px;
  color: var(--text);
}

/* ===== Header ===== */
.sources__header {
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
}

.sources__header h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.sources__header p {
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
}

/* ===== Grid ===== */
.sources__grid {
  max-width: var(--maxw);
  margin: 28px auto 0;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .sources__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sources__grid { grid-template-columns: 1fr; }
}

/* ===== Card ===== */
.source-card {
  background: #ffffff;
  border-radius: var(--card-r);
  box-shadow: var(--shadow);
  border: var(--border);
  padding: 28px 22px 22px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.source-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(16,24,40,.12);
}

/* Icon badge with subtle glow */
.source-card__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  position: relative;
  box-shadow:
    0 12px 22px rgba(0, 155, 255, 0.18),
    inset 0 -6px 16px rgba(255,255,255,.35);
}

.icon--blue {
  background: radial-gradient(80% 80% at 30% 30%, #b9e9ff 0%, #63c7ff 45%, #19a7ff 100%);
}
.icon--green {
  background: radial-gradient(80% 80% at 30% 30%, #c8f3d3 0%, #7cd68f 45%, #38b56b 100%);
}

/* Titles & texts */
.source-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 2px;
}

.source-card .sub {
  color: #24a3f3;
  font-weight: 600;
  margin-bottom: 12px;
}

.source-card .desc {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  margin: 0 auto 16px;
  max-width: 320px;
}

/* Divider like screenshot */
.source-card .divider {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, rgba(2,86,143,0.06), rgba(2,86,143,0.12), rgba(2,86,143,0.06));
  margin: 12px 0 14px;
}

/* Info rows */
.rows { display: grid; gap: 8px; text-align: left; }
.row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  font-size: 15px;
  color: #4b5563;
}
.row .val { justify-self: end; }
.row .muted { color: #6b7280; font-weight: 500; text-align: right; }

/* Small tweak so long minerals lines look balanced on small screens */
@media (max-width: 420px) {
  .row { grid-template-columns: 1fr; }
  .row .val { justify-self: start; text-align: left; }
}


.bulk-orders {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.bulk-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.bulk-header h2 span {
  color: #2ea44f;
}

.bulk-header p {
  font-size: 16px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 40px;
}

.bulk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bulk-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.bulk-card .icon {
  font-size: 42px;
  margin-bottom: 10px;
}

.bulk-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.bulk-card .desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}

.features {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.features li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.features li::before {
  content: "●";
  color: #22c55e;
  position: absolute;
  left: 0;
  font-size: 12px;
  top: 2px;
}

.offer-box {
  background: #ecfdf5;
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  text-align: left;
}

.offer-box p {
  margin: 4px 0;
}

.offer-box span {
  color: #059669;
  font-weight: 600;
}



/*   =============about section start=================  */
.about-valley {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.about-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-header h2 span {
  color: #2ea44f;
}

.about-header p {
  font-size: 16px;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
  text-align: left;
}

.about-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-text p {
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.quote-box {
  background: #ecfdf5;
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
}

.quote-box p {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 6px;
  color: #065f46;
}

.quote-box span {
  font-weight: 600;
  color: #059669;
}

@media (max-width: 850px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-text {
    text-align: center;
  }
}

.valley-features {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.valley-features h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
}

.valley-features h2 span {
  color: #2ea44f;
}

/* Grid Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 15px;
  line-height: 1.5;
}

.feature-card h3 {
  font-size: 17px;
  margin: 10px 0 6px;
}

.feature-card p {
  color: #4b5563;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  background: #22c55e;
  color: #fff;
  border-radius: 10px;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  gap: 15px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 22px;
}

.stat span {
  font-size: 14px;
}



/* ==================products section ============ */
.products-section {
  padding: 60px 20px;
  background-color: #f0fbff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.products-heading h2 {
  font-size: 36px;
  color: #0a2d4d;
  margin-bottom: 10px;
  font-weight: 700;
}

.products-heading h2 span {
  color: #1ecbe1;
}

.products-heading p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

.product-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image video {
  width: 90%;
  max-width: 985px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .products-heading h2 {
    font-size: 28px;
  }

  .products-heading p {
    font-size: 16px;
  }

  .product-image video {
    width: 100%;
  }
}



/* ==========blog= Section================= */
.related-articles {
  background-color: #f2fdfc;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2e2e2e;
  font-weight: 700;
  margin-bottom: 40px;
  font-style: italic;
}

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

.article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-content {
  padding: 20px;
}

.article-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.article-content p {
  color: #5c5c5c;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.article-content a {
  color: #007a78;
  font-weight: 600;
  text-decoration: none;
}

.article-content a:hover {
  text-decoration: underline;
}
