@font-face {
    font-display: swap;
    font-family: 'public_roman_bold';
    src: url(../fonts/public/PublicoBanner-Medium.ttf);
}
@font-face {
    font-display: swap;
    font-family: 'public_roman_regular';
    src: url(../fonts/public/PublicoBanner-Roman.ttf);
}
@font-face {
    font-display: swap;
    font-family: 'public_roman_light';
    src: url(../fonts/public/PublicoBanner-Light.ttf);
}
@font-face {
    font-display: swap;
    font-family: 'helvetica_regular';
    src: url(../fonts/helvetica/Helvetica.ttf);
}
@font-face {
    font-display: swap;
    font-family: 'helvetica_bold';
    src: url(../fonts/helvetica/Helvetica-Bold.ttf);
}
@font-face {
    font-display: swap;
    font-family: 'helvetica_light';
    src: url(../fonts/helvetica/helvetica-light.ttf);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "public_roman_regular";
}
body {
    font-family: "helvetica_regular" !important;
}
/* 
.header-2 .topheader {
    background: linear-gradient(90deg, #D3DE2B 0%, #ADD361 50%, #9DCF72 100%);
}
.header-2 .catering-nav a.nav-link {
    color: #000 !important;
}
.header-2 .menubtn {
    background: linear-gradient(90deg, #D3DE2B 0%, #ADD361 50%, #9DCF72 100%);
    width: max-content;
    border-radius: 100px;
    padding: 12px 15px;
} */


/* main head */
.ics-header {
      background: #fff;
      border-bottom: 1.5px solid rgba(0,0,0,0.07);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .ics-nav {
      display: flex;
      align-items: center;
      justify-content: end;
      max-width: 100%;
      margin: 0 auto;
      padding: 0 25px;
      height: 72px;
      gap: 24px;
    }

    /* ── LOGO ── */
    .ics-logo {
      position: absolute;
      padding: 8px 15px;
      /* display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      flex-shrink: 0; */
    }
    .social-icon{
      font-size: 32px;
    }
    .social-circle {
    width: 38px;
    height: 38px;
    background-color: #0A66C2; /* LinkedIn same color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-circle i {
    color: #fff;
    font-size: 22px;
}

/* Hover effect */
.social-circle:hover {
    background-color: #084a91;
    transform: scale(1.1);
}
    .ics-logo img {
      width: 90px;
      height: auto;
      display: block;
    }
    /* Fallback text logo when image fails */
    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
    .logo-text .brand {
      font-size: 28px;
      font-weight: 800;
      background: linear-gradient(90deg, #D3DE2B, #9DCF72);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -1px;
    }
    .logo-text .sub {
      font-size: 9px;
      color: #888;
      letter-spacing: 0.3px;
      font-weight: 400;
      margin-top: 2px;
    }

    /* ── DESKTOP NAV ── */
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 10px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-menu .nav-item {
      position: relative;
      padding: 5px 0;
    }

    .nav-menu .nav-link {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 9px 18px;
      border: 1.5px solid #c0c0c0;
      border-radius: 100px;
      color: #1a1a1a;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      white-space: nowrap;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
      cursor: pointer;
      background: transparent;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-item:hover > .nav-link {
      border-color: #9DCF72;
      background: rgba(173, 211, 97, 0.08);
    }

    .nav-menu .nav-link .caret {
      font-size: 11px;
      transition: transform 0.25s;
      display: inline-block;
    }
    .nav-menu .nav-item:hover > .nav-link .caret {
      transform: rotate(180deg);
    }

    /* ── DROPDOWN ── */
    .dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 0px);
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.10);
      border: 1px solid rgba(0,0,0,0.07);
      min-width: 180px;
      padding: 8px 0;
      list-style: none;
      z-index: 100;
      animation: dropIn 0.2s ease;
    }
    @keyframes dropIn {
      from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
      to   { opacity: 1; transform: translateX(-50%) translateY(0); }
    }
    .nav-item:hover .dropdown-menu {
      display: block;
    }
    .dropdown-menu li a {
      display: block;
      padding: 10px 20px;
      color: #1a1a1a;
      font-size: 13.5px;
      text-decoration: none;
      transition: background 0.15s, color 0.15s;
    }
    .dropdown-menu li a:hover {
      background: rgba(173, 211, 97, 0.12);
      color: #6a9a30;
    }

    /* ── CONTACT BUTTON ── */
    .btn-contact {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 11px 22px;
      border-radius: 100px;
      background: linear-gradient(90deg, #D3DE2B 0%, #ADD361 50%, #9DCF72 100%);
      color: #2d3800;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      border: none;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 3px 14px rgba(173, 211, 97, 0.45);
    }
    .btn-contact:hover {
      opacity: 0.92;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(173, 211, 97, 0.55);
    }
    .btn-contact i { font-size: 16px; }

    /* ── HAMBURGER ── */
    .mainheader .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none;
      z-index: 1100;
    }
    .mainheader .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #1a1a1a;
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .mainheader .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mainheader .hamburger.open span:nth-child(2) { opacity: 0; }
    .mainheader .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE OVERLAY ── */
    .mainheader .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.35);
      z-index: 990;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .mainheader .mobile-overlay.visible {
      opacity: 1;
    }

    /* ── MOBILE DRAWER (left → right) ── */
    .mainheader .mobile-drawer {
      position: fixed;
      top: 0;
      left: 0;
      width: 290px;
      height: 100%;
      background: #fff;
      z-index: 9999;
      transform: translateX(-100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      box-shadow: 4px 0 30px rgba(0,0,0,0.12);
    }
    .mainheader .mobile-drawer.open {
      transform: translateX(0);
    }
    .mainheader .mobile-drawer img {
        width: 90px;
    }
    .mainheader .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-bottom: 1px solid #f0f0f0;
    }
    .mainheader .drawer-close {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #555;
      line-height: 1;
      padding: 4px;
      border-radius: 50%;
      transition: background 0.2s;
    }
    .mainheader .drawer-close:hover { background: #f0f0f0; }

    .mainheader .drawer-menu {
      list-style: none;
      padding: 12px 0;
      flex: 1;
    }

    .mainheader .drawer-menu .d-nav-item { border-bottom: 1px solid #f5f5f5; }
    .mainheader .drawer-menu .d-nav-link a{ color: #1a1a1a; }
    .mainheader .drawer-menu .d-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 22px;
      color: #1a1a1a;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.15s;
    }
    .mainheader .drawer-menu .d-nav-link:hover { background: #f9f9f9; }

    .mainheader .drawer-menu .d-caret {
      font-size: 18px;
      transition: transform 0.25s;
      color: #999;
    }
    .mainheader .drawer-menu .d-nav-item.expanded .d-caret { transform: rotate(90deg); }

    .mainheader .drawer-submenu {
      list-style: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: #fafafa;
    }
    .mainheader .drawer-menu .d-nav-item.expanded .drawer-submenu {
      max-height: 200px;
    }
    .mainheader .drawer-submenu li a {
      display: block;
      padding: 11px 22px 11px 36px;
      color: #555;
      font-size: 14px;
      text-decoration: none;
      transition: color 0.15s;
      border-top: 1px solid #f0f0f0;
    }
    .mainheader .drawer-submenu li a:hover { color: #6a9a30; }

    .mainheader .drawer-footer {
      padding: 20px;
      border-top: 1px solid #f0f0f0;
    }
    .mainheader .drawer-footer .btn-contact {
      width: 100%;
      justify-content: center;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 991px) {
      .mainheader .nav-menu, .mainheader .btn-contact { display: none; }
      .mainheader .hamburger { display: flex; }
      .mainheader .mobile-overlay.visible { display: block; }
      section.ourStory { background-position: right;}
    }

    /* end */
section.ourStory {
    background: #efeae4;
}
.videosection{
    background: linear-gradient(90deg, #D3DE2B 0%, #ADD361 50%, #9DCF72 100%);;
}
.videosection a.videobtn {
    border-radius: 100px;
}
.section-ourSolution .solutionBox {
    background: #efeae4;
    border: 2px solid #000;
    border-radius: 20px;
    height: calc(100% - 20px);
    margin-bottom: 20px;
}
.home_getintouch .getintouchBox:before {
    display: none;
}
.home_getintouch{
    position: relative;
    background-size: cover;
}
.home_getintouch:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #0000007a;
    left: 0;
    top: 0;
    z-index: 0;
}
.getintouchCTA a{
    position: relative;
    background: linear-gradient(90deg, #D3DE2B 0%, #ADD361 50%, #9DCF72 100%);
    width: max-content;
    border-radius: 100px;
}
/* .header-2 .catering-nav li.nav-item {
    padding: 15px 0;
}
.header-2 .catering-nav a.nav-link {
    border: 1px solid #000;
    padding: 10px 15px ! IMPORTANT;
    border-radius: 100px;
} */



/* template 3 */
.template3 .darkbg {
    background-color: #121d23;
}

.template3 .testimonialBox{
    border-radius: 10px;
    box-shadow: inset 0 0 10px 0 rgb(255 255 255 / 20%);
}

.template3 header.header-2 {
    background: #ddd3cc;
}
.template3 a.videobtn {
    background: linear-gradient(90deg, #D3DE2B 0%, #ADD361 50%, #9DCF72 100%);
    color: black;
}

.template3 .faqssection .accordion-item {
    background: #121d23;
    border: 1px solid #fff;
    color: #fff;
    border-top: 1px solid #fff !important;
    margin-bottom: 20px;
}

.template3 .faqssection .accordion-item .accordion-header button {
    background: #121d23;
    color: #fff;
    font-size: 22px;
}
.template3 .faqssection .accordion-item .accordion-header button:after {
    filter: brightness(0) invert(1);
}
/* .template3 .pageContentArea {
    background-image: url(../img/vegetables-background.svg);
} */

    
.section-ourSolution, .videosection {
    background-image: url(../img/vegetables-background.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

section.ourStory {
    background-image: url(../img/aboutus.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-position: bottom;
}
