@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    background: #081521;
    color: #fff;
}

:root {
    --primary: #1fa8b9;
    --primary-dark: #13899a;
    --secondary: #e86524;
    --dark: #081521;
    --white: #ffffff;
    --text: #d3dbe4;
    --glass: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.12);
}

.container {
    width: 90%;
    max-width: 1600px;
    margin: auto;
    position: relative;
}

.swiper-pagination-bullet {
    background: #ffffff !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #fff  !important;
}


.min-height {
    min-height: 36vh !important;
}

.hero{
    position:relative;
    overflow:hidden;
}

.heroSlider{
    width: 100%;
    height: 100vh;

}

.swiper-slide{
    position:relative;
    display:flex;
    align-items:center;
}

.hero-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    transform:scale(1);
    transition:8s;
}

.swiper-slide-active .hero-bg{
    transform:scale(1.12);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:5;
    color:#fff;
}

.hero-content h1,
.hero-content p,
.hero-tag,
.btn-primary{
    opacity:0;
    transform:translateY(40px);
}

.swiper-slide-active .hero-tag{
    animation:fadeUp .6s forwards .2s;
}

.swiper-slide-active h1{
    animation:fadeUp .8s forwards .5s;
}

.swiper-slide-active p{
    animation:fadeUp .8s forwards .8s;
}

.swiper-slide-active .btn-primary{
    animation:fadeUp .8s forwards 1.1s;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.swiper-button-next,
.swiper-button-prev{
    color:#fff;
}

.swiper-pagination-bullet{
    background:#fff;
    opacity:.5;
}

.swiper-pagination-bullet-active{
    opacity:1;
    width:24px;
    border-radius:20px;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(5 20 33) 10%, rgb(5 20 33 / 63%) 45%, rgb(5 20 33 / 0%) 100%);
    z-index: 2;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.18;
    z-index: 2;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 38px;
    margin: 0;
    padding: 0;
}

.menu>li {
    position: relative;
}

.menu>li>a {
    display: flex;
    align-items: center;
    height: 80px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.menu>li>a:hover {
    color: var(--primary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 500px;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .35s;
    z-index: 999;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: .3s;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: var(--primary);
    padding-left: 28px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown>a svg {
    transition: .3s;
}

.dropdown:hover>a svg {
    transform: rotate(180deg);
}

.nav-btn {
    padding: 14px 28px;
    border-radius: 50px;
background: #11aab6;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.nav-btn:hover {
    transform: translateY(-3px);
}

.hero-style{
    margin-top: -23vh;
    padding: 0 0 84px 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 170px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 34px;
}

.hero-tag .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary);
}

.hero h1 {
    font-size: 76px;
line-height: 140%;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
}

.hero h1 span {
    display: block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 21px;
    color: #fff;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 42px;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 34px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    transition: 0.4s;
    box-shadow: 0 15px 35px rgba(31, 168, 185, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
}

.btn-outline {
    padding: 18px 34px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.06);
    transition: 0.4s;
}

.btn-outline:hover {
    background: #fff;

    color: #081521;
}

.hero-stats {
position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(18, 32, 47, 0.82);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    overflow: hidden;
    z-index: 99;
}

.stat-item {
    padding: 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h3 {
    font-size: 29px;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #b9c7d5;
}


.hero-stats2 {
    position: relative;
    margin-top: 40px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    overflow: hidden;
    z-index: 10;
}

.stat-item2 {
    padding: 34px;
    border-right: 1px solid rgb(0 0 0 / 8%);
}

.stat-item2:last-child {
    border-right: none;
}

.stat-item2 h3 {
    font-size: 29px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #000;
}

.stat-item2 p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c7b88;
}

.blur {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.22;
    z-index: 1;
}

.blur-left {
    background: var(--primary);
    left: -180px;
    top: 180px;
}

.blur-right {
    background: var(--secondary);
    right: -160px;
    bottom: 50px;
}

.hero-tag, .hero h1, .hero p, .hero-buttons, .hero-stats {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 0.9s forwards;
}

.hero-tag {
    animation-delay: 0.2s;
}

.hero h1 {
    animation-delay: 0.4s;
}

.hero p {
    animation-delay: 0.6s;
}

.hero-buttons {
    animation-delay: 0.8s;
}

.hero-stats {
    animation-delay: 1s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    position: relative;

    overflow: hidden;
}

.btn-primary::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);

    transform: skewX(-25deg);

    transition: 0.7s;
}

.btn-primary:hover::before {
    left: 140%;
}

.btn-primary:hover {
    box-shadow: 0 20px 45px rgba(31, 168, 185, 0.4);
}

.btn-outline:hover {
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.12);
}

.hero-stats {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

.stat-item {
    transition: 0.35s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.stat-item h3 {
    transition: 0.35s;
}

.stat-item:hover h3 {
    color: var(--primary);
}

nav a {
    position: relative;
}

nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;

    height: 2px;

    background: linear-gradient(90deg, var(--primary), var(--secondary));

    transition: 0.35s;
}

nav a:hover::after {
    width: 100%;
}

.logo img {
    transition: 0.35s;
}

.logo:hover img {
    transform: scale(1.05);
}


.blur {
    animation: floatBlur 9s ease-in-out infinite;
}

.blur-right {
    animation-delay: 2s;
}

@keyframes floatBlur {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0);
    }
}


.grid-pattern {
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 40px 40px;
    }
}

.hero-bg {
    animation: bgZoom 20s linear infinite alternate;
}

@keyframes bgZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.mobile-toggle {
    display: none;
}



/* Active Nav */
nav a.active {
    color: var(--primary);
}

/* Reveal */
.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Floating Particles */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particles span {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(31, 168, 185, 0.45);
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(-220px) scale(0);
        opacity: 0;
    }
}

.pharma-section {
    padding: 60px 0;

    background: #f8fbfc;
}

.section-title {
    text-align: center;
    margin: auto;
    margin-bottom: 70px;
}

.section-title span {
    color: #1fa8b9;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    font-size: 14px;
}

.section-title h2 {
    font-size: 46px;

    color: #081521;

    margin: 15px 0 25px;

    font-weight: 800;
}

.section-title p {
    color: #6d7b86;

    line-height: 1.9;

    font-size: 17px;
}

.solution-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

.solution-card {
    background: #fff;

    border-radius: 18px;

    padding: 40px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);

    transition: 0.35s;

    border: 1px solid #eef3f5;
}

.solution-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(31, 168, 185, 0.15);

    border-color: #1fa8b9;
}

.icon {
    width: 70px;

    height: 70px;

    border-radius: 18px;

    background: #11aab6;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 25px;
}

.icon i {
    color: #fff;

    font-size: 28px;
}

.solution-card h3 {
    font-size: 25px;

    color: #081521;

    margin-bottom: 18px;

    line-height: 1.4;
}

.solution-card p {
    color: #6d7b86;

    line-height: 1.9;

    font-size: 16px;
}

.full-width {
    grid-column: span 2;
}


.crop-protection {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.crop-protection::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    background: radial-gradient(circle, rgba(31, 168, 185, 0.08), transparent 70%);

    top: -220px;
    right: -180px;
}

.section-header {
    text-align: center;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;

    color: #1fa8b9;

    font-size: 13px;

    letter-spacing: 3px;

    text-transform: uppercase;

    font-weight: 700;

    margin-bottom: 18px;
}

.section-header h2 {
    font-size: 52px;

    line-height: 1.15;

    color: #081521;

    font-weight: 800;

    margin-bottom: 22px;
}

.section-header h2 span {
    color: #1fa8b9;
}

.section-header p {
    color: #6c7b88;

    line-height: 1.9;

    font-size: 18px;
}


.section-header-api h2 {
    font-size: 52px;
    line-height: 1.15;
    color: #081521;
    font-weight: 800;
    margin-bottom: 22px;
}

.section-header-api h2 span {
    color: #1fa8b9;
}

.section-header-api p {
    color: #6c7b88;

    line-height: 1.9;

    font-size: 18px;
}
.crop-image-api {
    position: relative;

    overflow: hidden;

    border-radius: 28px;

    /*height: 900px;*/

    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.12);
}

.crop-image-api img {
    width: 100%;

    /*height: 100%;*/

    object-fit: cover;

    transition: 0.8s;
}

.crop-image-api:hover img {
    transform: scale(1.08);
}







.box-shadwo{
    border-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}










/*======================*/

.crop-layout {
    display: grid;

    grid-template-columns: 42% 58%;

    gap: 41px;

    align-items: center;
}

/*======================*/

.crop-image {
    position: relative;

    overflow: hidden;

    border-radius: 28px;

    height: 900px;

    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.12);
}

.crop-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.8s;
}

.crop-image:hover img {
    transform: scale(1.08);
}

/*======================*/

.image-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(to top,
            rgba(8, 21, 33, 0.85),
            rgba(8, 21, 33, 0.05));

    display: flex;

    align-items: flex-end;

    padding: 45px;
}

.experience {
    color: #fff;
}

.experience h3 {
    font-size: 52px;

    font-weight: 800;

    margin-bottom: 5px;
}

.experience span {
    font-size: 18px;

    color: #ffffffdd;
}

/*======================*/

.crop-services {
    display: flex;

    flex-direction: column;
}

/*======================*/

.service-row {
    display: grid;

    grid-template-columns: 90px auto;

    gap: 25px;

    padding: 38px 0;

    border-bottom: 1px solid #e8edf2;

    transition: 0.4s;
}

.service-row:last-child {
    border-bottom: none;
}

.service-row:hover {
    transform: translateX(12px);
}

/*======================*/

.number {
    font-size: 46px;

    font-weight: 800;

    color: #d6dde4;

    transition: 0.4s;

    line-height: 1;
}

.service-row:hover .number {
    color: #1fa8b9;
}

/*======================*/

.service-content h3 {
    font-size: 29px;

    color: #081521;

    margin-bottom: 16px;

    font-weight: 700;
}

.service-content p {
    color: #6c7b88;

    line-height: 1.9;

    font-size: 16px;
}




/*innner banner*/

.inner-banner{
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
        margin-top: 78px;
}

.banner-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0,0,0,0.5);*/

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-content{
    color: #fff;
}

.banner-content h1{
    font-size: 48px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-content p{
    font-size: 20px;
    font-weight: 500;
}

.banner-content p a{
    color: #fff;
    text-decoration: none;
}

@media(max-width:768px){

    .inner-banner{
        height: 250px;
    }

    .banner-content h1{
        font-size: 30px;
    }

    .banner-content p{
        font-size: 15px;
    }
}

.clear{
    clear: both;
}

.col_sm2 {
  width: 48%;
  float: left;
  margin: 1%;
}

.col_sm3 {
  width: 31%;
  float: left;
  margin: 1%;
}

.col_sm88 {
    width: 55% ;
    margin: 1%;
    float: left;
}

.col_sm8 {
    width: 40%;
    margin: 1%;
    float: left;
}

.top {
  width: 90%;
  margin: 0 auto;
  max-width: 1600px;
}

.background{
    background: #fff;
}

.background-2{
    background: #f8fbfc;
}

.inner-title h2 {
    font-family: "Manrope", sans-serif;
    font-size: 46px;
    color: #081521;
    font-weight: 800;
    margin: 1%;
}

.inner-title h2 span {
    color: #1fa8b9;
}

.inner-title p {
    font-family: "Manrope", sans-serif;
    color: #000;
    line-height: 140%;
    font-size: 18px;
    text-align: justify;
    margin: 1%;
}

.inner-title p a{
    font-family: "Manrope", sans-serif;
    color: #000;
    text-decoration: none;
    line-height: 140%;
    font-size: 18px;
    text-align: justify;

}


.img{
  width: 100%;
  display: block;
}

.pdg{
    padding: 40px 0 40px 0;
}

.table-wrapper{
    width:100%;
    overflow-x:auto;
}

.product-table{
    width:100%;
    border-collapse:collapse;
    font-family:"Poppins", sans-serif;
    border:1px solid #d9d9d9;
}

.product-table thead th{
    background:#11aab6;
    color:#fff;
    padding:14px 18px;
    font-size:22px;
    font-weight:600;
    text-align:left;
    border:1px solid #d9d9d9;
}

.product-table tbody td{
    padding:12px 18px;
    font-size:18px;
    color:#222;
    border:1px solid #d9d9d9;
}

/* Alternate Row Color */
.product-table tbody tr:nth-child(even){
    background:#efefef;
}

.product-table tbody tr:nth-child(odd){
    background:#ffffff;
}

/* Hover */
.product-table tbody tr:hover{
    background:#f7f7f7;
}

/* Column Width */
.product-table th:first-child,
.product-table td:first-child{
    width:80%;
}

.product-table th:last-child,
.product-table td:last-child{
    width:20%;
    white-space:nowrap;
}

/* Responsive */
@media(max-width:768px){

    .product-table thead th,
    .product-table tbody td{
        padding:10px 12px;
        font-size:15px;
    }

    .product-table th:first-child,
    .product-table td:first-child{
        width:70%;
    }

    .product-table th:last-child,
    .product-table td:last-child{
        width:30%;
    }
}


/*contact*/
.commmon-head-left h5 {
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    color: #11aab6;
    font-weight: 600;
    text-align: left;
    margin-bottom: 15px;
}

.commmon-head-left h1 {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    color: #11a9b5;
    font-weight: 600;
    text-align: left;
    margin-bottom: 20px;
    line-height: 110%;
}


.cont-text p {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    color: #6d7b86;
    font-weight: 500;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 140%;
}

.cont-text p a {
    font-family: "Manrope", sans-serif;
    text-decoration: none;
    font-size: 18px;
    color: #6d7b86;
    font-weight: 500;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 140%;
}

.social-icons-cont a {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #11a6b1;
    border-color: #11a6b1;
    font-size: 18px;
    transition: 0.4s ease;
}

.social-icons-cont {
    display: flex;
    gap: 12px;
}

.facility-list{
    list-style:none;
    margin:0;
    padding:0;
}

.facility-list li{
    position:relative;
    padding:12px 0 12px 38px;
    font-size:17px;
    font-weight:500;
    color:#333;
    border-bottom:1px solid #e8e8e8;
    transition:.3s;
}

.facility-list li:last-child{
    border-bottom:none;
}

.facility-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:24px;
    height:24px;
    background:#f9733d;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
}

.facility-list li:hover{
    color:#f9733d;
    padding-left:45px;
}

.facility-box{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    transition:all .3s ease;
    text-align:center;
    margin-bottom:30px;
}

.facility-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.18);
}

.facility-img{
    width:100%;
    /*height:250px;*/
    object-fit:cover;
    display:block;
}

.facility-content{
    padding:20px;
}

.facility-content h3{
        font-family: "Manrope", sans-serif;
    font-size:20px;
    color:#222;
    font-weight:600;
    margin:0;
    line-height:1.4;
}


































/*======================*/

.service-row::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -1px;

    width: 0;

    height: 2px;

    background: linear-gradient(90deg, #1fa8b9, #e86524);

    transition: 0.45s;
}

.service-row {
    position: relative;
}

.service-row:hover::after {
    width: 100%;
}

.service-row {
    opacity: 0;

    transform: translateY(40px);

    transition: 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-row.show {
    opacity: 1;

    transform: translateY(0);
}


.crop-image img {
    transition: transform 0.8s ease;
}


.number {
    transition: 0.4s;
}


.section-header {
    animation: fadeDown 0.9s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-content h3 {
    position: relative;
    display: inline-block;
}

.service-content h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 45px;
    height: 3px;

    background: linear-gradient(90deg, #1fa8b9, #e86524);

    border-radius: 10px;

    transition: 0.4s;
}

.service-row:hover h3::after {
    width: 100%;
}

.crop-image::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.28),
            transparent);

    transform: skewX(-25deg);

    z-index: 2;

    transition: 1s;
}

.crop-image:hover::before {
    left: 160%;
}

.experience {
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.ng-why-section {
    padding: 60px 0;
    background: #f8fbfc;
    position: relative;
    overflow: hidden;
}

.ng-why-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: url(images/world-map.png) center/contain no-repeat;
    opacity: 0.05;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ng-container {
    max-width: 1600px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.ng-heading {
    margin: 0 auto 70px;
    text-align: center;
}

.ng-subtitle {
    color: #1fa8b9;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.ng-heading h2 {
    font-size: 48px;
    color: #081521;
    margin: 18px 0;
    font-weight: 800;
}

.ng-heading p {
    font-size: 17px;
    color: #6c7b88;
    line-height: 1.9;
}

.ng-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ng-why-card {
    background: #fff;
    padding: 45px;
    border-radius: 22px;
    border: 1px solid #e8eef3;
    position: relative;
    overflow: hidden;
    transition: 0.35s;
}

.ng-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1fa8b9, #e86524);
}

.ng-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.ng-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #11aab6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.ng-icon-box i {
    color: #fff;
    font-size: 29px;
}

.ng-card-number {
    position: absolute;
    right: 30px;
    top: 25px;
    font-size: 52px;
    font-weight: 800;
    color: #edf2f5;
}

.ng-why-card h3 {
    font-size: 29px;
    color: #081521;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.ng-why-card p {
    color: #6c7b88;
    font-size: 16px;
    line-height: 1.9;
}

.feature-list {
    display: flex;
    gap: 25px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.4s;
    width: 48%;
}

.feature-item>div:last-child {
    width: 79%;
    flex: 0 0 79%;
}

.feature-item:hover {
    transform: translateX(8px);
}

.feature-item .icon {
    width: 52px;
    height: 52px;
}

.feature-item h4 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    color: #6c7b88;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 4%;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 38px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.35s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary {
    color: #fff;
    background: #e16328;
    box-shadow: 0 18px 35px rgba(31, 168, 185, 0.28);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 45px rgba(31, 168, 185, 0.35);
}

.btn-secondary {
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.ng-image-box {
    cursor: pointer;
}

.ng-image-box::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0),
            rgba(31, 168, 185, 0.08));

    opacity: 0;

    transition: 0.6s;
}

.ng-image-box:hover::after {
    opacity: 1;
}

.ng-image-box:hover img {
    transform: scale(1.08);
}

.ng-about {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: radial-gradient(circle at top,
            #ffffff 0%,
            #f7fbfd 65%,
            #eef5f9 100%);
}

.ng-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-1 {
    width: 700px;
    height: 700px;
    border: 1px solid rgba(31, 168, 185, 0.08);
    top: -300px;
    left: -250px;
}

.shape-2 {
    width: 480px;
    height: 480px;
    border: 1px solid rgba(31, 168, 185, 0.08);
    right: -120px;
    bottom: -120px;
}

.shape-3 {
    width: 260px;
    height: 260px;
    background: rgba(31, 168, 185, 0.05);
    filter: blur(80px);
    top: 120px;
    right: 10%;
}

.ng-about-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 35px;
    padding: 70px;
    box-shadow: 0 20px 80px rgba(15, 23, 42, 0.06),
        0 5px 20px rgba(15, 23, 42, 0.05);
}

.ng-left {
    flex: 0 0 42%;
    position: relative;
}

.ng-image-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    background: #11aab6;
}

.ng-image-box img {
    height: 620px;
    object-fit: cover;
    transition: 0.8s;
}

.ng-about-card:hover img {
    transform: scale(1.05);
}

.experience-card {
    position: absolute;
    left: -30px;
    bottom: 30px;
    background: #fff;
    width: 170px;
    border-radius: 25px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.experience-card h2 {
    font-size: 54px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
}

.experience-card span {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
}

.floating-circle {
    position: absolute;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1fa8b9, #55d7d2);
    border-radius: 50%;
    right: -35px;
    top: 70px;
    box-shadow: 0 15px 40px rgba(31, 168, 185, 0.35);
    animation: floatCircle 4s ease-in-out infinite;
}

@keyframes floatCircle {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}


.dots-pattern {
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    top: -40px;
    background-image: radial-gradient(#c9d9e5 1.6px, transparent 1.6px);
    background-size: 10px 10px;
    opacity: 0.6;
}

.ng-right {
    flex: 1;
}

.sub-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 15px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sub-title::before {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.ng-right h2 {
    font-size: 48px;
    color: #081521;
    margin: 0 0;
    font-weight: 800;
}

.ng-right h2 span {
    color: var(--primary);
}

.ng-right>p {
    color: #6c7b88;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 4%;
}



@media only screen and (max-width : 1500px) {

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1.2fr;
    gap: 60px;
}
}



@media (max-width:1200px) {

    .hero h1 {
        font-size: 62px;
    }

    .hero p {
        font-size: 19px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .ng-about-card {
        gap: 50px;
        padding: 50px;
    }

    .ng-right h2 {
        font-size: 42px;
    }

    .ng-image-box img {
        height: 540px;
    }
}

@media (max-width:1100px) {

    .col_sm8 {
    width: 100%;
}

    .col_sm88 {
    width: 100%;
}



    .crop-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .crop-image {
        height: 550px;
    }
}

@media (max-width:991px) {

    /* Navbar */
    .nav-wrapper {
        flex-wrap: wrap;
    }


    .mobile-toggle {
        display: block;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-content {
        padding-top: 150px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-stats {
        margin-top: 60px;
    }

    /* Pharma */
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    .section-title h2 {
        font-size: 38px;
    }

    /* Crop */
    .ng-why-grid {
        grid-template-columns: 1fr;
    }

    .ng-heading h2 {
        font-size: 38px;
    }

    /* About */
    .ng-about {
        padding: 90px 0;
    }

    .ng-about-card {
        flex-direction: column;
        padding: 40px;
    }

    .ng-left,
    .ng-right {
        width: 100%;
    }

    .ng-image-box img {
        height: 500px;
    }

    .experience-card {
        left: 20px;
        bottom: 20px;
    }

    .ng-right {
        margin-top: 25px;
    }

    .ng-right h2 {
        font-size: 38px;
    }
}
@media (max-width:767px) {

    .col_sm3 {
    width: 98%;
}

.hero-stats2 {
    grid-template-columns: repeat(1, 1fr);
}


.inner-title h2 {
    font-size: 34px;
}

.col_sm2 {
    width: 98%;
}


    /* Hero */
    .hero-content {
        text-align: center;
        margin: auto;
    }

    .hero-tag {
        justify-content: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    /* Crop */
    .crop-protection {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 38px;
    }

    .crop-image {
        height: 380px;
    }

    .service-row {
        grid-template-columns: 60px auto;
        padding: 28px 0;
    }

    .number {
        font-size: 32px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 16px;
    }

    /* About */
    .ng-about {
        padding: 70px 0;
    }

    .container {
        width: 94%;
    }

    .ng-about-card {
        border-radius: 25px;
        padding: 25px;
    }

    .ng-image-box {
        border-radius: 22px;
    }

    .ng-image-box img {
        height: 380px;
    }

    .experience-card {
        width: 130px;
        padding: 18px;
    }

    .experience-card h2 {
        font-size: 38px;
    }

    .experience-card span {
        font-size: 13px;
    }

    .sub-title {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .ng-right h2 {
        font-size: 30px;
    }

    .ng-right>p {
        font-size: 16px;
    }

    .feature-item {
        gap: 15px;
    }

    .feature-item .icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .feature-item h4 {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 15px;
    }

    .button-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .shape-1 {
        width: 350px;
        height: 350px;
    }

    .shape-2 {
        width: 250px;
        height: 250px;
    }

    .shape-3 {
        display: none;
    }
}

@media (max-width:576px) {

    .container {
        width: 92%;
    }

    /* Hero */
    .hero-content {
        padding-top: 130px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.15;
    }

    .hero-tag {
        font-size: 11px;
        padding: 10px 18px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .stat-item {
        padding: 24px;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .stat-item p {
        font-size: 14px;
    }

    /* Pharma */
    .pharma-section {
        padding: 70px 0;
    }

    .solution-card {
        padding: 30px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    /* Crop */
    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 16px;
    }

    .crop-image {
        height: 300px;
        border-radius: 18px;
    }

    .experience h3 {
        font-size: 36px;
    }

    .experience span {
        font-size: 15px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .number {
        font-size: 28px;
    }

    /* Why */
    .ng-why-section {
        padding: 70px 0;
    }

    .ng-why-card {
        padding: 30px;
    }

    .ng-heading h2 {
        font-size: 30px;
    }

    .ng-card-number {
        font-size: 36px;
        top: 20px;
        right: 20px;
    }

    .ng-icon-box {
        width: 60px;
        height: 60px;
    }

    .ng-icon-box i {
        font-size: 24px;
    }

    .ng-why-card h3 {
        font-size: 22px;
    }
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
background-color: #fff;
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .2);
    animation: slideDown .35s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.footer {
    background: #000;
    color: #d9d9d9;
    padding: 80px 0 25px;
}

/*.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1.3fr 1.3fr;
    gap: 60px;
}*/


.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.6fr 1.3fr;
    gap: 50px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 25px;
}

.footer p {
    line-height: 1.9;
color: #d2d2d9;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: "";
    width: 45px;
    height: 3px;
    background: #11aab6;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #d2d2d9;
    text-decoration: none;
    transition: .35s;
}

.footer-col ul li a:hover {
    color: #11aab6;
    padding-left: 8px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.8;
}

.contact-info i {
    color: #11aab6;
    margin-top: 5px;
    width: 18px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .35s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #11aab6;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 20px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links a {
    color: #b9c2cf;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #11aab6;
}

@media(max-width:991px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}

@media(max-width:767px) {

    .footer {
        padding: 60px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

}