/* ================================
   ARINS Packaging — Theme / Reset
=================================== */
:root {
  --teal: #006d6d;
  --teal-600: #005a5a;
  --coral: #e75a51;
  --charcoal: #1f1f1f;
  --ink: #2a2a2a;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --soft: #f5f8f8;
  --card: #fafafa;
  --ring: rgba(0,0,0,.08);
}

* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ================================
   Navigation
=================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 6px 20px var(--ring);
}
.nav__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
}
.brand__logo {
  height: 80px;
  width: auto;
}
.brand__text {
  font-weight: 700;
  letter-spacing: .3px;
}
.nav__links {
  margin-left: auto;
  display: flex;
  gap: 20px;
}
.nav__links a {
  text-decoration: none;
  color: #2f2f2f;
  font-weight: 600;
  opacity: .9;
}
.nav__links a:hover {
  color: var(--teal);
}
.btn {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  border: 2px solid transparent;
  transition: .2s ease;
}
.btn--primary {
  background: var(--teal);
  color: #fff;
}
.btn--primary:hover {
  background: var(--coral);
}
.btn--ghost {
  border-color: var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--teal);
  color: #fff;
}
.nav__cta {
  margin-left: 6px;
}

/* Dropdown */
.dropdown {
  position: relative;
  list-style: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  z-index: 999;
}

.dropdown-menu li {
  border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #00796b;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Scrollable dropdown */
.dropdown-menu.scrollable {
  max-height: 250px; /* approx 2 items */
  overflow-y: auto;
}

/* Optional: custom scrollbar */
.dropdown-menu.scrollable::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu.scrollable::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}

.dropdown-menu.scrollable::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Mobile nav */
.nav__toggle {
  display: none;
}
.nav__hamburger {
  display: none;
  margin-left: auto;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  margin: 5px 0;
  border-radius: 2px;
}
@media (max-width: 940px) {
  .nav__links {
    display: none;
    position: absolute;
    inset: 62px 0 auto 0;
    background: #fff;
    padding: 14px 24px;
    box-shadow: 0 16px 30px var(--ring);
    flex-direction: column;
  }
  .nav__hamburger {
    display: block;
  }
  .nav__toggle:checked ~ .nav__links {
    display: flex;
  }
  .nav__cta {
    display: none;
  }
}

/* ================================
   Hero (Split layout + shapes)
=================================== */
.hero {
  position: relative;
  height: 70vh;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(52px, 8vw, 90px) 0;
}
.hero__left{
  width: fit-content;
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.50), rgba(255, 255, 255, 0.19));
  padding: 28px;
  border-radius: 12px;
  backdrop-filter: blur(3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}
.hero__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  animation: slide 12s infinite;
}
.hero__slide {
  width: 100%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.slide1 {background-image: url('../../../../frontend/assets/images/bannerimages/bannerd.png'); }
.slide2 {background-image: url('../../../../frontend/assets/images/bannerimages/banner 11.png'); }
.slide3 {background-image: url('../../../../frontend/assets/images/bannerimages/banner 3.png'); }





@keyframes slide {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(0); }
  33%  { transform: translateX(-100%); }
  58%  { transform: translateX(-100%); }
  66%  { transform: translateX(-200%); }
  91%  { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}


.hero__grid {
  position: relative;
}
.hero h1 {
  font-size: clamp(25px, 5.4vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  color: var(--charcoal);
  margin: 0 0 12px;
}
.accent {
  color: #e63946;
}
.hero p {
  color: var(--charcoal);
  max-width: 52ch;
  margin: 0 0 20px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  color: var(--charcoal);
  font-weight: 600;
}
.hero__actions{
  display:flex;
  flex-wrap: wrap;
  gap:12px;
  margin:10px 0 18px
}

.hero__badges li{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hero__badges li img {
  height:  25px;
  width: auto;
}
@media (max-width: 425px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__right {
    order: -1;
  }
  .hero__badges li img {
    height:  20px;
    width: auto;
  }
}

/* ================================
   About
=================================== */
.about {
  padding: 50px 0;
}
.about__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.about__media img{
  border-radius:18px;
  box-shadow:0 16px 40px var(--ring)
}

.about__content h2 {
  font-size: clamp(26px, 3.8vw, 40px);
  margin: 0 0 10px;
  color: var(--charcoal);
  line-height: 2.6rem;
}
.about__content p {
  color: #444;
  margin: 0 0 20px;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.pillars__item {
  background: var(--soft);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
}
.pillars__icon {
  font-size: 22px;
  display: inline-block;
  margin-bottom: 8px;
}
.pillars__icon img {
  height: 40px;
}
.pillars__item h4 {
  margin: 0 0 6px;
  color: var(--teal);
}
@media (max-width: 940px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Products
=================================== */
.products {
  padding: 50px 0;
  background: linear-gradient(180deg,#fff,#f7fbfb);
}
.section-head {
  text-align: center;
  margin-bottom: 28px;
}
.section-head h2 , .section-title{
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 0;
  color: var(--charcoal);
}
.section-head p {
  margin-top: 8px;
  color: var(--muted);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 18px;
}
.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 30px var(--ring);
  transition: .2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px var(--ring);
}
.card img {
  height: 130px;
  object-fit: contain;
  margin: auto;
}
.card h3 {
  margin: 8px 0 0;
  color: var(--teal);
}
.card p {
  color: #464646;
  margin: 4px 0 10px;
}
.link {
  margin-top: auto;
  color: var(--coral);
  font-weight: 700;
  text-decoration: none;
}
.link:hover {
  opacity: .8;
}
@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 620px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Industries (Icon band)
=================================== */
.industries {
  padding: 50px 0;
}
.icons {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 14px;
  margin-top: 14px;
}
.icons__item {
  background: var(--soft);
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
  font-weight: 700;
  color: #344;
  box-shadow: 0 4px 16px var(--ring);
  transition: .2s;
}
.icons__item span {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}

.icons__item span img {
  height: 45px;
  margin: auto;
}

.icons__item:hover {
  background: linear-gradient(135deg, rgba(0,109,109,.08), rgba(231,90,81,.08));
}
@media (max-width: 940px) {
  .icons {
    grid-template-columns: repeat(3,1fr);
  }
}
@media (max-width: 520px) {
  .icons {
    grid-template-columns: repeat(2,1fr);
  }
}

/* ================================
   Sustainability
=================================== */
.sustain {
  padding: 50px 0;
  background: #f1f7f6;
}
.sustain__wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}
.sustain__text h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 0 0 8px;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  color: #3f3f3f;
}
.checks li {
  margin: 6px 0;
  font-weight: 600;
}
.sustain__art {
  position: relative;
  min-height: 220px;
}
.leaf {
  position: absolute;
  border-radius: 60px;
  filter: blur(6px);
}
.leaf--1 {
  inset: 20% auto auto 8%;
  width: 160px;
  height: 70px;
  background: rgba(0,109,109,.25);
}
.leaf--2 {
  inset: auto 18% 12% auto;
  width: 140px;
  height: 60px;
  background: rgba(231,90,81,.23);
}
.leaf--3 {
  inset: 30% 34% auto auto;
  width: 110px;
  height: 50px;
  background: rgba(0,109,109,.18);
}
@media (max-width: 940px) {
  .sustain__wrap {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Global
=================================== */
.global {
  padding: 50px 0;
}
.global__map {
  width: min(900px,100%);
  margin: 14px auto 0;
  filter: contrast(1.05) saturate(1.05);
}

/* ================================
   Careers
=================================== */
.careers {
  padding: 50px 0;
  background: linear-gradient(180deg,#f9fbfb,#fff);
}
.careers__box {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
}
.careers__text h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 0 0 6px;
}
.careers__text p {
  margin: 8px 0 16px;
}
.careers__media img {
  border-radius: 16px;
  box-shadow: 0 16px 40px var(--ring);
}
@media (max-width: 940px) {
  .careers__box {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Footer
=================================== */
.footer {
  background: #0f1111;
  color: #d5d5d5;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr .5fr .5fr .5fr;
  gap: 40px;
  align-items: start;
  padding: 38px 0;
}

.footer_heading{
  margin: 0px;
  color: #e63946;
  border-bottom: 2px solid #008080;
}
.footer__brand img {
  background: white;
  height: 100px;
  padding: 3px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 12px;
  text-align: justify;
}
.footer__brand p {
  text-align: justify;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer__links a {
  text-decoration: none;
  color: #d5d5d5;
}
.footer__links a:hover , .footer__links p strong:hover {
  color: var(--coral);
}
.footer__form {
  background: #141616;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 16px;
}
.footer__form h3 {
  margin: 0 0 10px;
}

.footer__links p  {
  cursor: pointer;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.footer input,
.footer textarea {
  width: 100%;
  background: #0f1111;
  border: 1px solid rgba(255,255,255,.08);
  color: #eaeaea;
  border-radius: 10px;
  padding: 10px;
}
.footer textarea {
  resize: vertical;
}
.footer__bottom {
  text-align: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #a8a8a8;
}

.footer__social {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer__social a:hover {
  background: #008080; /* teal highlight */
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 940px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 425px) {
  .footer__social {
    gap: 10px;
  }
  .footer__brand p {
    font-size: 12px; 
  }
  .footer__social a {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }
  .footer_heading{
    font-size: 18px;
  }
  .footer__links {
    gap: 0px;
  }

  .footer__links a {
    font-size: 12px;
  }

  .footer__links p {
    font-size: 12px;
  }
  .footer__grid {
    gap: 20px;
  }
}

/*contect us */

.contact-hero {
  position: relative;
  background:  no-repeat center/cover;
  color: #fff;
  padding: 100px 20px;
  text-align: left;
}
.contact-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  margin: 0 0 12px;
}
.contact-hero p {
  max-width: 500px;
  font-size: 18px;
  line-height: 1.6;
}

.contact-section {
  width: 100%;
  padding: 3rem 1rem;
}

.contact-container {
  max-width: 1180px;
  margin: auto;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Left info */
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact-info h2 span {
  color: #e63946;
}
.contact-info p {
  margin-bottom: 1.5rem;
  color: #7e7e7e;
}

.info-box {
  margin-bottom: 1.2rem;
}
.info-box h4 {
  color: #008080;
  margin-bottom: 0.3rem;
}

.socials {
  margin-top: 1.5rem;
}
.socials h4 {
  margin-bottom: 0.5rem;
  color: #008080;
}
.socials a {
  margin-right: 15px;
  color: #e63946;
  font-size: 1.2rem;
  transition: 0.3s;
}
.socials a:hover {
  color: #008080;
}

/* Right Form */
.contact-form {
  background: #f5f5f5 ;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.contact-form h3 {
  margin-bottom: 1.2rem;
  color: #008080;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input, .contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid #444;
  padding: 0.8rem;
  color: #1c1c1c;
  outline: none;
  transition: 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-bottom: 2px solid #008080;
}

/* .contact-form input[type="tel"] {
  border-bottom: 2px solid #444;
}
.contact-form input[type="tel"]:focus {
  border-bottom: 2px solid #e63946;
} */

.contact-form button {
  background: #008080;
  border: none;
  color: #fff;
  padding: 0.9rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #e63946;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    margin: 20px;
  }
}
@media (max-width: 425px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .cta p{
    font-size: 1rem;
  }
}

@media (max-width: 375px) {
  .cta p{
    font-size: 0.8rem;
  }
}

@media (max-width: 320px) {
  .cta p{
    font-size: 0.7rem;
  }
}
/*manufacturing*/

/* Blocks */
.blocks {
  margin-top: 20px;
}
.blocks .block {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  gap: 2rem;
}
.blocks .block.reverse {
  flex-direction: row-reverse;
}
.blocks .text {
  flex: 1;
}
.blocks .text h2 {
  color: #008080;
}
.blocks .text ul {
  list-style: none;
  padding: 0;
}
.blocks .text ul li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.blocks .text ul li::before {
  content: "✔";
  color: #e63946;
  position: absolute;
  left: 0;
}
.blocks .image {
  flex: 1;
  height: 350px; /* fixed height for uniformity; adjust as needed */
  overflow: hidden; /* hide overflow from cropping */
}

.blocks .image img {
  width: 100%;
  height: 100%; /* make image fill the container height */
  object-fit: cover; /* scale and crop image to fill container */
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}


/* CTA */
.cta {
  text-align: center;
  background: #008080;
  color: #fff;
  padding: 3rem 2rem;
  margin-top: 3rem;
}


.cta button {
  margin-top: 1rem;
  background: #e63946;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
}
.cta button:hover {
  background: #c92f38;
}

.quote-icon {
  font-size: 4rem;
  font-weight: bold;
  color: #00c2c2;
  display: block;
  margin-bottom: 10px;
}



/* Responsive */
@media (max-width: 425px) {
  .blocks .block {
    flex-direction: column;
  }
  .blocks .block.reverse {
    flex-direction: column;
  }

}

:root{
  --teal:#008080;
  --coral:#E63946;
  --deep:#073B3A;
  --ink:#1f2933;
  --muted:#6b7a86;
  --bg:#f7fbfb;
  --white:#ffffff;
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:'Poppins',sans-serif;
  color:var(--ink);
  background:var(--bg);
}

/* ---------- HERO ---------- */
.Sustainability-hero{
  position:relative;
  min-height:70vh;
  display:grid;
  place-items:center;
  background:radial-gradient(80rem 60rem at 85% -20%, rgba(0,128,128,.25), transparent 60%),
  radial-gradient(70rem 50rem at -10% 120%, rgba(230,57,70,.25), transparent 60%),
  linear-gradient(135deg,#082b2a,#0e3f3d 45%, #0b2e2d);
  overflow:hidden;
}
.hero-inner{
  text-align:center;
  padding:2rem 1rem;
  color:#eaf9f7;
  max-width:1050px;
}
.Sustainability-hero h1{
  font-size:clamp(2.5rem,6vw,4.5rem);
  letter-spacing:.5px;
  font-weight:700;
}
.Sustainability-hero p{
  margin:.75rem auto 2rem;
  font-weight:300;
  font-size:clamp(1rem,2.2vw,1.25rem);
  color:#c9f1ee;
}
.Sustainability-hero p span{color:var(--coral);font-weight:600}

/* blobs */
.blob{
  position:absolute;filter:blur(12px);opacity:.4;mix-blend:screen;
  animation:float 12s ease-in-out infinite;
}
.blob-1{width:520px;height:520px;background:radial-gradient(circle at 30% 30%, #19b3a6, transparent 60%); top:-120px; left:-90px;}
.blob-2{width:460px;height:460px;background:radial-gradient(circle at 70% 60%, #ff6b6b, transparent 60%); bottom:-140px; right:-120px;}
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-18px)}
}

/* wave separator */
.Sustainability-wave{position:absolute;left:0;right:0;bottom:-1px;width:100%;height:auto;display:block}

/* sunsablity page  */


/* APPROACH SECTION CSS */

.approach {
  padding: 50px 2rem;
  text-align: center;
  padding-top: 20px;
}

.approach h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.approach-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.approach-card img {
  height: 160px;
  margin-top: 10px;
  object-fit: cover;
}

.approach-card h3 {
  font-size: 1.3rem;
  color: #222;
  margin: 1rem;
}

.approach-card p {
  font-size: 0.95rem;
  padding: 0 1rem 1.5rem;
  color: #555;
}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);

}

/* subcatagory page */

/* PRODUCT HIGHLIGHT */
.product-highlight {
  padding: 60px 10%;
  background: #f9fbfc;
}

.highlight-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.highlight-big {
  background: linear-gradient(135deg, #008080, #009999);
  color: #fff;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight-big:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.highlight-big h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  max-width: 520px;
}
.highlight-big p {
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 520px;
  color: #f0f0f0;
}
.highlight-big img {
  position: absolute;
  right: 20px;
  bottom: 10px;
  width: 280px;
  border-radius: 12px;
}

.highlight-small {
  display: flex;
  flex-direction: column;
  gap: 10%;
}

.small-card {
  height: 50%;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.small-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.small-card h3 {
  color: #333;
  margin-bottom: 10px;
}
.small-card img {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 100px;
}

.tag {
  display: inline-block;
  background: #fff;
  color: #008080;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.tag.coral {
  background: #E63946;
  color: #fff;
}

.btn-explore {
  background: #E63946;
  color: #fff;

}
.btn-explore:hover {
  background: #fff;
  color:#E63946;
  margin: auto;
}
.btn-sm {
  background: #008080;
  color: #fff;
  padding: 6px 14px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-sm:hover {
  background: var(--coral);
}


/* Animation Effects */
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}
.animate.delay1 {
  animation-delay: 0.3s; 
}
.animate.delay2 {
  animation-delay: 0.6s; 
}


@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .highlight-container {
    grid-template-columns: 1fr; /* ek column me aa jayega */
  }

  .highlight-big {
    padding: 30px;
    text-align: center;
  }

  .highlight-big h2 {
    font-size: 1.8rem;
    margin: auto;
    margin-bottom: 10px;
  }

  .highlight-big p {
    font-size: 0.95rem;
    max-width: 100%;
    margin: 0 auto 15px;
  }

  .highlight-big img {
    position: static;
    width: 80%;
    margin: 20px auto 0;
    display: block;
  }

  .highlight-small {
    flex-direction: column;
    gap: 15px;
  }

  .small-card {
    padding: 15px;
    text-align: center;
  }

  .small-card img {
    position: static;
    width: 60%;
    margin: 15px auto 0;
    display: block;
  }

  .btn-explore {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}


@media(max-width: 992px) {
  .highlight-container {
    grid-template-columns: 1fr;
  }
  .highlight-big img {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
  .small-card img {
    position: static;
    width: 100%;
    margin-top: 15px;
  }
}
@media(max-width: 425px) {

  .highlight-big h2 {
    font-size: 18px;
  }
  .highlight-big p {
    text-align: justify
  }
}

/* product detailed page */

/* EXPLORE PRODUCT */
.explore-product {
  margin: 50px auto;
  color: #333;
  max-width:1180px;
  background: #f9fbfc;
}
.explore-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

}
.hero-text h1 {
  color: #004d4d; /* Teal Green */
  font-size: 2.5rem;
}
.hero-text .tagline {
  color: #e63946; /* Coral Red */
  font-weight: 500;
  margin: 10px 0;
}
.hero-text .desc {
  color: #555;
  margin-bottom: 20px;
}

/* HERO IMAGE */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 400px;
  border-radius: 16px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image img:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}



/* FEATURES */
.product-features {
  margin-top: 60px;
  text-align: center;
}
.product-features h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.feature-item h4 {
  font-size: 1.2rem;
  color: #004d4d;
  margin-bottom: 10px;
}

.feature-item i {
  font-size: 2rem;
  color: #004d4d;
  margin-bottom: 10px;
}
.feature-item:hover { transform: translateY(-5px); }

/* RESPONSIVE DESIGN */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .explore-product {
    max-width:92%;

  }
  .explore-hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-image img {
    max-width: 300px;
  }

 
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.6rem;
  }
  .hero-text .desc {
    font-size: 0.9rem;
  }
  .hero-image img {
    max-width: 250px;
  }
 /*   .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }*/

   .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-thumbs img {
    width: 70px;
  }
}



/* Our Company  */
/* INTRO */
.company-intro {
  padding: 50px 10%;
  background: #f9fbfc;
  text-align: center;
}
.company-intro h2 {
  margin-bottom: 20px;
}
.company-intro p {
  color: #444;
  max-width: 800px;
  margin: 10px auto;
}

/* PARTNERS */
.company-partners {
  padding: 50px 10%;
  padding-top: 0px;
  text-align: center;
}
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.partner-logos img {
  height: 60px;
  transform: translate(0.25) ease;
}
.partner-logos img:hover {
  transform: translateY(-4px);

}

/* Responsive */
@media(max-width: 1024px){
  .hero-overlay h1 { font-size: 1.5rem; text-align:center; }
  .glance-grid { gap: 20px; }
}

/* ACCREDITATION */
.arins-container {
  width: min(1180px, 92%);
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}

/* Heading */
.arins-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.arins-header p {
  color: #555;
  font-size: 1.1rem;
}
.arins-highlight {
  color: #008080;
}

/* Grid for 2 cards */
.arins-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Card */
.arins-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.arins-card img {
  height: 90px;
  margin: auto;
  margin-bottom: 15px;
}
.arins-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #008080;
  margin-bottom: 8px;
}
.arins-card p {
  font-size: 0.95rem;
  color: #555;
}
.arins-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}


/* vision & mission Page  */

.vision {
  margin: 50px 0px;

}
.card {

}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h2 {
  margin: 0 0 14px;
  color: var(--teal);
}

.card p {
  color: var(--muted);
  line-height: 1.6;
  text-align: justify;
}

/* ==============================
   ICON STYLES
============================== */
.icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  height: auto;
  width: 80%;
}

.arins-approach {
  width: min(1180px, 92%);
  margin: auto;
  padding: 30px 0;
  padding-bottom: 0px;
  text-align: center;
}
.arins-approach-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 60px;
  color: var(--arins-teal);
  position: relative;
  display: inline-block;
}
.arins-approach-title::after {
  content: "";
  width: 70%;
  height: 4px;
  background: linear-gradient(90deg, var(--arins-coral), var(--arins-teal));
  position: absolute;
  left: 15%;
  bottom: -14px;
  border-radius: 2px;
}
.arins-approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.arins-approach-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 25px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.arins-approach-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}
.arins-approach-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--arins-teal), var(--arins-coral));
}
.arins-approach-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--arins-teal), var(--arins-coral));
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.arins-approach-icon img {
  height: 50%;

}
.arins-approach-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--arins-text);
}
.arins-approach-card p {
  font-size: 15px;
  color: var(--arins-muted);
  line-height: 1.6;
}

/* commitment section  */

.commitment-title {
 font-size: 34px;
 font-weight: bold;
 color: var(--commit-teal);
 text-align: center;
 margin-bottom: 60px;
 position: relative;
}
.commitment-title::after {
 content: "";
 width: 80px;
 height: 4px;
 background: linear-gradient(90deg, var(--commit-teal), var(--commit-coral));
 position: absolute;
 bottom: -12px;
 left: 50%;
 transform: translateX(-50%);
 border-radius: 3px;
}
/* Management Card */
.commitment-card {
 display: flex;
 align-items: flex-start;
 gap: 25px;
 background: #fff;
 border-radius: var(--commit-radius);
 padding: 30px;
 margin-bottom: 40px;
 box-shadow: 0 8px 25px rgba(0,0,0,0.08);
 border-radius: 10px;
 transition: transform 0.3s ease;
}
.commitment-card:hover {
 transform: translateY(-8px);
}
/* Profile Image */
.commitment-img {
 flex-shrink: 0;
 width: 90px;
 height: 90px;
 border-radius: 50%;
 background: linear-gradient(135deg, var(--commit-teal), var(--commit-coral));
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 40px;
 color: #fff;
 box-shadow: 0 5px 18px rgba(0,0,0,0.15);
}
.commitment-img img {
 width: 90px;
 height: 90px;
 border-radius: 50%;
 object-fit: cover;
}
/* Content */
.commitment-content h3 {
 font-size: 22px;
 margin: 0 0 8px;
 color: rgb(0, 128, 128);
}
.commitment-role {
 font-weight: bold;
 font-size: 15px;
 color: var(--commit-coral);
 margin-bottom: 10px;
}
.commitment-content p {
 font-size: 15px;
 color: var(--commit-muted);
 line-height: 1.6;
 text-align: justify;
}
.commitment-content b {
 color: var(--commit-text);
}
/* Responsive */
@media(max-width:768px) {
 .commitment-card {
   flex-direction: column;
   text-align: center;
   align-items: center;
 }
 .commitment-content h3 {
   margin-top: 12px;
 }
}



/* Sustainability page  */
/* Problems Section */
#arins-problems {
  background: #f9fbfc;
  padding: 20px 10%;
}

/* Problem Grid */
.arins-problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.arins-problem-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.arins-problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.arins-problem-card .icon-box {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00c2c2;
}
.icon-box img {
  height: 50%;
}
.arins-problem-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--arins-text);
}
.arins-problem-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Stats Section */
.arins-problems-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background: rgb(0, 128, 128);
  padding: 40px;
  border-radius: 16px;
  color: #fff;
}
.arins-problems-stats .stat {
  text-align: center;
}
.arins-problems-stats h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #e63946;
}
.arins-problems-stats p {
  font-size: 0.95rem;
  margin-top: 10px;
  color: #ffffff;
}

/* wwwhccchoisee section  */

/* Hero Section */
#arins-why-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: center;
}
.arins-hero-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(2,44,48,0.08);
}
h1.arins-hero-title {
  margin: 14px 0 10px;
  font-size: 28px;
  color: var(--arins-text);
}
p.arins-hero-sub {
  margin: 0;
  color: #6b7c80;
  font-size: 15px;
}
/* Why Choose Items */
.arins-hero-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.arins-why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.arins-why-icon {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(45deg, rgb(15, 118, 110), rgb(20, 184, 166));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0,192,204,0.12);
}
.arins-why-copy h4 {
  margin: 0;
  font-size: 16px;
  color: var(--arins-text);;
}
.arins-why-copy p {
  margin: 4px 0 0;
  color: #6b7c80;
  font-size: 14px;
}
/* Mockup Section */
#arins-mockup {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arins-mockup-frame {
  width: 360px;
  height: 260px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7ffff);
  box-shadow: 0 20px 40px rgba(3,33,38,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.arins-device-mock {
  width: 320px;
  height: 200px;
  border-radius: 12px;
  background: linear-gradient(45deg, rgb(15, 118, 110), rgb(20, 184, 166));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  padding: 10px;
}
.arins-badge {
  position: absolute;
  left: 10px;
  top: -10px;
  background: #e63946;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,120,130,0.12);
}
/* Features Grid */
#arins-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 50px;
}
.arins-feature {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(2,44,48,0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.arins-feature h5 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--arins-text);;
}
.arins-feature p {
  margin: 0;
  color: #6b7c80;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 980px) {
  #arins-why-hero {
    grid-template-columns: 1fr;
  }
  #arins-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .arins-hero-card {
    padding: 20px;
  }
  #arins-features {
    grid-template-columns: 1fr;
  }
  .arins-mockup-frame {
    width: 280px;
    height: 200px;
  }
}


@media (max-width: 425px) {

  .arins-mockup-frame {
    width: 220px;
  }
  h1.arins-hero-title {
    font-size: 22px;
  }
  .arins-problems-stats {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  padding: 20px;
  }
  .brand__logo {
    height: 45px;
    width: auto;
  }

}




