:root {
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 0px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --color-blue: #0d2244;
    --color-orange: #f57c20;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    transition: 0.35s;
}


main {
    overflow: hidden;
}

a,
button {
    cursor: pointer;
    user-select: none;
    border: none;
    outline: none;
    background: none;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.container {
    max-width: 1320px;
    height: auto;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

h2.heading_main {
    color: var(--color-blue);
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
}

h2.heading_main span {
    color: var(--color-orange);
}

.btn_main {
    background: var(--color-blue);
    padding: 10px 20px;
    border-radius: 40px;
    color: #fff;
    transition: 0.3s all ease;
}

.btn_main:hover {
    background: var(--color-orange);
}

/* 
a.btn_main i {
    font-size: 19px;
    float: left;
    margin: 0 5px 0 0;
} */

section.banner {
    width: 92%;
    float: left;
    margin:85px 4% 0 4%;
    position: relative;
}

section.banner .banner_content {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 30%;
    border-radius: 0 30px 0 0;
    padding: 50px;
}


section.banner .card ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
}

section.banner .card ul li {
    text-transform: uppercase;
    background: var(--clr-tag);
    color: #282828;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.375rem 0.625rem;
    border-radius: 0.188rem;
}

section.banner .card ul .branding {
    color: #704a31;
}

section.banner .card ul .packaging {
    color: #1e3938;
}

section.banner .card ul .marketing {
    color: #4d1637;
}

section.banner .card .content {
    padding: 0.938rem 0.625rem;
}

section.banner .card .content h3 {
    text-transform: capitalize;
    font-size: clamp(1.5rem, 1.8273rem, 1.8rem);
}

section.banner .card .content p {
    margin: 0.625rem 0 1.25rem;
    color: #565656;
}

section.banner .card-inner {
    position: relative;
    width: inherit;
    height: 85vh;
    background: var(--clr);
    border-radius: 1.25rem;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

section.banner .card-inner .box {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
}

section.banner .card-inner .box .imgBox {
    position: absolute;
    inset: 0;
}

section.banner .card-inner .box .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.banner .card-inner .box .icon {
    position: absolute;
    bottom: -0.375rem;
    right: -0.375rem;
    width: 6rem;
    height: 6rem;
    background: var(--clr);
    border-top-left-radius: 50%;
}

section.banner .card-inner .box .icon:hover .iconBox {
    transform: scale(1.1);
}

section.banner .card-inner .box .icon::before {
    position: absolute;
    content: "";
    bottom: 0.375rem;
    left: -1.25rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
}

section.banner .card-inner .box .icon::after {
    position: absolute;
    content: "";
    top: -1.25rem;
    right: 0.375rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
}

section.banner .card-inner .box .icon .iconBox {
    position: absolute;
    inset: 0.625rem;
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

section.banner .card-inner .box .icon .iconBox:hover {
    background: var(--color-blue);
}

section.banner .card-inner .box .icon .iconBox span {
    color: #fff;
    font-size: 1.5rem;
}

.imgBox p {
    position: absolute;
    bottom: 15px;
    right: 8%;
    font-size: 38px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
}

section.about_index {
    width: 100%;
    float: left;
    padding: 100px 0 50px;
}

.about_index_full {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about_index_full .about_index_left {
    width: 40%;
}

.about_index_full .about_index_right {
    width: 60%;
    padding-left: 5%;
}

.about_index_full .about_index_right p {
    width: 100%;
    float: left;
    margin: 0 0 20px 0;
}

.about_index_full .about_index_right a.btn_main {
    float: left;
}


section.review_index {
    width: 100%;
    float: left;
    padding: 100px 0 50px 0;
    background: #f9f9f9;
}

.review_index_heading {
    width: 100%;
    float: left;
    text-align: center;
}

section.review_index .review_index_full {
    display: flex;
    width: 100%;
    gap: 40px;
    justify-content: space-between;
}

section.review_index .review_index_full .review_1 {
    background: #ffffff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 40px;
    -webkit-box-shadow: 0px 0px 21px 6px rgba(212, 212, 212, 1);
    -moz-box-shadow: 0px 0px 21px 6px rgba(212, 212, 212, 1);
    box-shadow: 0px 0px 21px 6px rgb(212 212 212 / 33%);
    border: 1px solid #ccc;
    flex: 1;
}

section.review_index .review_1_quotes {
    float: left;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #8f8484;
}

section.review_index .review_1_text {
    width: 100%;
    float: left;
    margin: 20px 0;
    min-height: 135px;
}

section.review_index .review_1_footer {
    width: 100%;
    float: left;
    border-top: 1px solid #ccc;
    padding: 20px 0 0 0;
    display: flex;
    gap: 20px;
}

section.review_index .review_1_footer_img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

section.review_index .review_1_footer_text p {
    font-size: 12px;
    color: #897777;
}
.contact_us_index {
    width: 100%;
    float: left;
    padding: 100px 0 50px 0;
}
.contact_us_full {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.contact_us_full {
    display: flex;
    width: 100%;
    justify-content: space-between;
    background: #ffffff; 
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}
.contact_us_left {
    width: 50%;
    background: url(../images/bg_form.jpg);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    padding: 30px 30px 180px 30px;
    background-size: cover;
    background-repeat: no-repeat;
}
.contact_us_left:after {
    content: '';
    width: 250px;
    height: 250px;
    background: url(../images/bg_contcat.svg);
    position: absolute;
    bottom: -60px;
    right: -60px;
    background-repeat: no-repeat;
    background-size: cover;
}


.contact_us_left_heading {
    width: 100%;  
    margin: 0 0 20px 0;
}
.contact_us_left_heading h2 {
    width: 100%;
    color: #fff;
    font-size: 32px;
    margin: 0 0 5px 0;
}
.contact_us_left_heading p {
    width: 100%;
    color: #fff;
    font-size: 16px;
    margin: 0 0 5px 0;
}
.contact_us_left_info_box_text p {
    color: #fff;
}
.contact_us_left_info_box_text a{
    color: #fff;
}
.contact_us_left_info .contact_us_left_info_box {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}
.contact_us_right {
    width: 45%;
    margin: 40px 2.5% 0 2.5%;
    position: relative;
}
.contact_us_right:after {
    content: '';
    width: 170px;
    height: 120px;
    background: url(../images/letter_send.svg);
    position: absolute;
    bottom: 0;
    right: 20px;
    background-repeat: no-repeat;
    background-size: cover;
}
.contact_us_right .form_group {
margin: 0 0 20px 0;
}
.form_group label {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    width: 100%;
    display: inline-block;
}
.form_group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    background: no-repeat;
    padding: 0 10px 10px 10px;
    font-family: "Inter", serif;
    font-size: 18px;
    outline: none;
}
.form_group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    background: no-repeat;
    padding: 10px;
    font-size: 18px;
    font-family: "Inter", serif;
    outline: none;
    height: 100px;
}

.product_index{
    width: 100%;
    float: left;
    padding: 100px 0 80px 0;
}
.product_index_full {
    display: flex;
    width: 100%;
    gap: 20px;
}
.product_index_full .product_1 {
    width: 33.33%;
    background: #f9f9f9;
    box-shadow: var(--shadow-medium);
    border-radius: 8px;
}
.product_index_full .product_1 .product_1_img {
  width: 100%;          
  height: 250px;      
  overflow: hidden;  
  border-radius: 8px 8px 0 0;  
}
.product_index_full .product_1 .product_1_text h4 {
    font-size: 20px;
    color: #f57c20;
}
.product_index_full .product_1 .product_1_text p {
    font-size: 16px;
    margin: 10px 0 30px 0;
}
.product_index_full .product_1 .product_1_img img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}
.product_index_full .product_1 .product_1_text{
    padding: 15px 15px 30px 15px;
}
   .about-vynik{
      --bg: #f9f9f9;
      --card: rgba(255,255,255,0.06);
      --border: rgba(255,255,255,0.12);
      --text: #000000;
      --muted: #272727;
      --accent: #f57c20;     /* Primary gradient start */
      --accent2: #0d2244;    /* Primary gradient end */
      --glow: 0 10px 30px rgba(124,92,255,0.35);
      --radius: 18px;
      --shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 2px 4px rgba(0,0,0,0.35);
      --maxw: 1100px;
      position: relative;
      isolation: isolate;
      padding: 72px 20px 96px;
      color: var(--text);
      background:
        radial-gradient(1200px 600px at 90% -10%, rgba(124,92,255,0.18), transparent 60%),
        radial-gradient(900px 500px at -10% 10%, rgba(34,211,238,0.16), transparent 55%),
        var(--bg);
      overflow: hidden;
      }
    .about-vynik .wrap{max-width: var(--maxw); margin: 0 auto;}
    .about-vynik h2{
      font-size: clamp(1.8rem, 2.4vw + 1rem, 3rem);
      line-height: 1.1;
      margin: 0 0 10px;
      letter-spacing: -0.02em;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip: text; background-clip: text; color: transparent;
      text-shadow: 0 0 0 rgba(0,0,0,0);
    }
    .about-vynik p.lead{
      color: var(--muted);
      font-size: clamp(1rem, 0.4vw + 0.9rem, 1.2rem);
      margin: 0 0 28px;
      max-width: 72ch;
    }

    /* ---- Card Grid ---- */
    .about-vynik .grid{
      display: grid;
      gap: 18px;
      grid-template-columns: repeat(12, 1fr);
      margin-top: 18px;
    }
.about-vynik .card {
    grid-column: span 6; 
    background: #fff;
    border: 1px solid #00000021;
    border-radius: var(--radius);
    box-shadow: none;
    backdrop-filter: blur(8px);
    padding: clamp(18px, 1.6vw + 8px, 28px);
    position: relative;
    overflow: hidden;
}
    .about-vynik .card::after{
      content:"";
      position:absolute; inset:-1px;
      border-radius: calc(var(--radius) + 1px);
      pointer-events:none;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.06), transparent 35%),
        linear-gradient(90deg, rgba(124,92,255,0.20), rgba(34,211,238,0.20));
      mix-blend-mode: overlay; opacity: 0.4;
    }
    @media (min-width: 860px){
      .col-6{grid-column: span 6;}
      .col-7{grid-column: span 7;}
      .col-5{grid-column: span 5;}
    }

    /* ---- Card Headers ---- */
    .about-vynik .card h3{
      display:flex; align-items:center; gap:10px;
      font-size: clamp(1.1rem, 0.6vw + 1rem, 1.4rem);
      margin: 0 0 12px;
      letter-spacing: -0.01em;
    }
    .about-vynik .icon{
      width: 28px; height: 28px; flex: 0 0 28px;
      display:grid; place-items:center;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow: var(--glow);
    }
      .about-vynik .icon svg{width: 16px; height: 16px; color: #ffffff;}

    .about-vynik .card p, .card li{color: var(--muted); font-size: 0.98rem; line-height: 1.6;}
    .about-vynik .card ul{margin: 6px 0 0 0; padding: 0; list-style: none; display: grid; gap: 8px;}
    .about-vynik .card li{
      display:flex; align-items:flex-start; gap: 10px;
      background: rgba(0, 0, 0, 0.04);
      border: 1px solid var(--border);
      padding: 10px 12px;
      border-radius: 12px;
    }
    .tick{
      width: 18px; height: 18px; margin-top: 2px; flex: 0 0 18px;
      border-radius: 6px; display:grid; place-items:center;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
    }
    .tick svg{width: 12px; height: 12px; color:#0e0f14;}
    .pill{
      display:inline-block; padding: 3px 8px; border-radius: 999px;
      background: rgba(124,92,255,0.16);
      border: 1px solid rgba(124,92,255,0.35);
      color: #dcd6ff; font-weight: 600; margin-right: 6px;
      white-space: nowrap;
    }

    /* ---- Accent Bar ---- */
    .accent-bar{
      height: 3px; width: 100%;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      border-radius: 999px;
      margin: 12px 0 18px;
      opacity: 0.9;
    }

    /* ---- Helper ---- */
    .about-vynik .quote{
      border-left: 3px solid transparent;
      border-image: linear-gradient(180deg, var(--accent), var(--accent2)) 1;
      padding-left: 14px; margin: 8px 0 0;
      color: var(--text);
      font-weight: 600;
      margin-top: 25px;
    }