@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
    /* background-color: #F8F8FF; */
    font-family: "Montserrat", sans-serif;
}

html {
    overflow-x: hidden !important;

}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

:root {
    --primary: rgb(14, 54, 107);
    --primary-dark: rgb(0 30 68);
    --secondary: rgb(220 164 92);
    --secondary-dark: rgb(154, 97, 37);
    --margin: 3em;
    --padding: 3rem;
}

h2 {
    font-size: 45px;
    font-weight: 800;
    line-height: 0.99;


}

h2 span {
    background: linear-gradient(to right, var(--secondary), var(--secondary-dark));
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}


.primary_btn {
    font-size: 15px;
    background: var(--secondary);
    padding: 10px 30px;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
}


.primary_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.primary_btn:hover::before {
    z-index: -1;
    height: 100%;
}


/* HEADER START */
.navbar-toggler {
    box-shadow: unset !important;
    outline: none !important;
    border-radius: unset !important;
    background-color: var(--primary) !important;
    color: #fff !important;
}

header {
    position: static;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    /* Must add */
    transition: top 0.4s ease;

}


.topStrip {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    position: relative;
    z-index: 9;
    transition: top 0.4s ease;

}



.topStrip,
.topStrip a {
    color: #ffffff;
}

.topStrip i {
    margin-right: 0.3rem;
    font-size: 18px;
}

.topLeft {
    display: flex;
    gap: 10px;
    align-items: center;
    height: 100%;
}

.topLeft a:hover {
    text-decoration: underline;
}

.topLeft>div:first-child {
    border-right: 1px solid #ffffff;
    padding-right: 10px;
    padding-block: 8px;
}

.topRight {
    display: flex;
    align-items: center;
    height: 100%;
}

.topRight a {
    display: inline-block;
    height: 100%;
    transition: all 0.3s ease;
}

.topRight i {
    font-size: 22px;
    height: 100%;
    width: 50px;
    border-right: 1px solid #ffffff;
    border-color: #fff !important;
    text-align: center;
    /* border-radius: 50%;
    border: 1px solid #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.topRight a:hover {
    background-color: var(--secondary);
    color: #fff;
}


/* Navbar */

.navbar .collapse>ul {
    display: flex;
    align-items: center;
}


.navbar {
    padding: 0;
}

.navbar .navbar-brand img {
    width: 150px;
}


.nav-item>a {
    color: #000;
    font-weight: 500;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    padding: 0 !important;
    padding-bottom: 4px !important;
}

.navbar-nav {
    display: flex;
    gap: 30px;
}

.nav-item>a::before {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 0;
    width: 0%;
    height: 2.5px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-item>a:hover::before {
    width: 100%;
}

.homeLink::before {
    display: none;
}

.homeLink i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.homeLink.active i {
    background-color: var(--primary);
    color: #fff;
}

nav a.active::before,
nav a:focus::before {

    width: 100%;
    color: var(--primary);
}

nav a.active,
nav a:focus {
    color: var(--primary) !important;

}

.nav-item>a:hover {
    color: var(--primary);
}

nav .dropdown-menu {
    width: 300px;
    border-radius: unset;
    padding: 0;
}

nav .dropdown-menu a {
    padding: 10px;
    border-bottom: 1px dashed var(--primary);
    transition: all 0.3s ease;
    font-size: 15px;
}

nav .dropdown-menu a:hover {
    padding-left: 15px;
    background-color: var(--primary);
    color: #fff;
}

.subDropdown a {
    display: block;
}

/* CAROUSEL START*/

.carousel img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.carousel-caption {
    bottom: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
}

.carousel-caption h5 {
    font-size: 50px;
    font-weight: 700;
}

.carousel-caption p {
    margin-block: 5px 10px;
}

/* CAROUSEL END*/

/* WELCOME START */

.welcome_section {
    margin-block: var(--margin);
}


.welcome_section p {
    padding-block: 10px;
}


.ab_imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
}

.ab_imgs img {
    width: 100%;
    height: 100%;
}

.welcome_section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* WELCOME END */

/* VISION & MISSION */

.vis_mis_sec {
    margin-bottom: var(--margin);
}

.feature-card {
    border-radius: 1rem;
    padding: 30px;
    box-shadow: 0 0 10px #ccc
}

.th-ani {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}



.feature-card .box-icon i {
    font-size: 40px;
    color: var(--primary);
    transition: all 0.3s ease;


}


.feature-card .box-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-block: 5px;
    transition: all 0.3s ease;
    color: var(--primary);
}

.feature-card:hover .box-title,
.feature-card:hover i {
    color: var(--secondary);
}

.th-ani:hover {
    -webkit-transform: translate(0, -15px);
    transform: translate(0, -15px);
}

.feature-card:hover .box-icon img {
    -webkit-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}

.th-ani:hover a {
    color: #4aab3d;
}

/* OUR PRODUCTS START */

.otherServices>div p {
    width: 55%;
    margin: 0 auto
}

.box-area {
    width: 100%;
    height: 300px;
    padding: .3rem;
    box-shadow: 0 0 25px #ccc;
    cursor: pointer;
    margin: 0 auto;
    margin-block: 1rem;
    background-color: #ffffff80;
    border-radius: 1rem
}

.otherSeervicesBoxes {
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    position: relative
}

.otherSeervicesBoxes img {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    object-fit: cover
}

.otherSeervicesBoxes::before {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(14, 54, 107, 0.7);
    z-index: 1;
    transition: all .5s ease;
    border-radius: 1rem
}

.service_name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 99
}

.service_name h5 {
    margin-right: -200%;
    transition: all .6s linear;
    color: #fff
}

.service_name a {
    color: #fff;
    font-size: 18px
}

.service_name a:hover {
    text-decoration: underline
}

.serv_img {
    transition: all .8s ease
}

.box-area:hover .serv_img {
    transform: scale(1.2) rotate(10deg)
}

.box-area:hover .otherSeervicesBoxes::before {
    width: 100%
}

.box-area:hover .slide_h {
    margin-right: 0
}

.owl-nav {
    width: 100%;
    position: absolute;
    top: 40%;
    transform: translateY(-50%)
}

.owl-prev,
.owl-next {
    background-color: var(--primary);
    padding: .5rem;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute
}

.owl-prev:hover,
.owl-next:hover {
    background-color: var(--secondary)
}

.owl-prev {
    left: -5%
}

.owl-next {
    right: -5%
}

/* OUR PRODUCTS END */

/* TAGLINE START */

.tagline {
    margin-top: var(--margin);
    background: linear-gradient(to right, rgba(14, 54, 107, 0.8), rgba(14, 54, 107, 0.8)), url('../banners/abour-banner.jpg') no-repeat center center/cover fixed;
    color: #fff;
    padding: var(--padding) 0;
    text-align: center;
}

.tagline_content {
    width: 70%;
    text-align: center;
    margin: 0 auto;
}

.tagline_content p {
    margin-block: 10px
}

.tagline_content a::before {
    background: #fff;
}

.tagline_content a:hover {
    color: var(--primary);

}

/* TAGLINE END */


/* WHY SAAK START */
.why_choose {
    margin-block: var(--margin);
}

.why_choose_holder {
    display: grid;
    grid-template-columns: 40% 20% 40%;
    gap: 20px;
    margin-top: 2rem;
}

.why_choose img {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    object-fit: cover;
    transition: all 0.4s ease;
}

.why_choose_holder:hover img {
    transform: scale(1.05);
}

.why_choose_box {
    padding: 15px;
    border-radius: 10px;
    height: 120px;
    box-shadow: 0 0 10px #ccc;
    border: 1px solid #ccc;
    color: #fff;
}

.why_choose_box h5 {
    /* color: var(--primary); */
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
}

.why_choose_box1 {
    background: linear-gradient(to right bottom, var(--primary), var(--primary-dark));
}

.why_choose_box2 {
    background: linear-gradient(to right bottom, var(--secondary), var(--secondary-dark));

}

.why_choose_box p {
    max-height: 72px;
    overflow: hidden;
}

/* WHY CHOOSE END */


/* FOOTER START */


footer {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    padding-block: var(--padding);
    color: #fff;
}

footer li {
    margin-bottom: 0.5rem;
}

footer ul {
    padding-left: 0;
}

.commanHeading {
    font-size: 20px;
    margin-bottom: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

footer i {
    margin-right: 0.3rem;
    font-size: 1.2rem;
}

footer a {
    color: #fff;
    transition: all 0.3s ease;
}

footer li i {
    font-size: 16px;
    margin-right: 5px;
}

footer a:hover {
    text-decoration: none;
    color: var(--secondary);
    text-decoration: underline;
}

.ft_contact a:hover {
    padding-left: unset;
}

.copywrite {
    border-top: 2px solid #fff;
    padding-block: 10px;
    background: linear-gradient(to right, var(--secondary), var(--secondary-dark));
    display: flex;
    align-items: center;
    text-align: center;
}

.copywrite p {
    color: #fff;
    margin: 0;
}

.ft_media i {
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 0.5rem;
    margin-right: 0;
    transition: all 0.3s;
    display: none;
}

.ft_media i:hover {
    color: #000;
    background-color: #fff;
    transform: rotate(360deg);
}

.ft_media img {
    width: 150px;
    background-color: #fff;
    box-sizing: unset;
    padding: 1rem;
    border-radius: 1rem;
}

.ft_media li {
    text-align: right;
}

.ft_media li p {
    font-size: 14px;
}

.footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* FOOTER END */

/* COMMON BANNER START*/


/* Comman Banner */
.banner-area {
    width: 100%;
    text-align: center;
    height: auto;
    position: relative;
}

.banner-area img {
    display: block;
    width: 100%;
    margin: auto;
    height: 400px;
    object-fit: cover;
}

/* Comman Heading */

.abou-hed {
    width: 100%;
    height: 41px;
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.abou-hed h1 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 37px;
    font-weight: 400;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 5px 22px;
}

/* Comman Strip */
.breadcrumb_bg {
    background: linear-gradient(to right bottom, var(--secondary), var(--secondary-dark));
}

.breadcrumb {
    margin: 0;
    font-size: 16px;
    color: #fff;
    background: none;
    padding: 6px 0px;
    font-weight: 400;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.breadcrumb a,
.breadcrumb a:visited,
.breadcrumb a:hover {
    font-weight: 500;
    color: #fff;
}

.breadcrumb li.active {
    color: #fff;
}

/* COMMON BANNER END*/

/* ABOUT PAGE START */

/* Vision, Mission & Values */

.vis_mis_val {
    padding-bottom: var(--padding);
}

.vis_mis_val_box {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.vis_mis_val_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.vis_mis_val_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vis_mis_val_box>h5 {
    position: absolute;
    bottom: 8%;
    left: 10%;
    color: #fff;
    width: 70%;
    font-size: 22px;
    font-weight: 600;
}

.vis_mis_val_content {
    background-color: #fff;
    padding: 20px;
    position: absolute;
    bottom: 0%;
    width: 90%;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    transition: all 0.3s ease;
    border-radius: 10px;

}


.vis_mis_val_content h5 {
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.vis_mis_val_box:hover .vis_mis_val_content {
    transform: translateX(-50%) translateY(0%);
    bottom: 5%;
}


.why_choose_us {
    padding-block: var(--padding);
    background-color: #eee;
}

.why_box {
    height: 100%;
    background-color: #fff;
    background: linear-gradient(to left, var(--primary), var(--primary-dark));
    color: #000;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    transition: all 0.3s ease;
}

.why_box:hover {
    background: linear-gradient(to left, var(--secondary), var(--secondary-dark));

}

.why_box i {
    font-size: 45px;
    transition: all 0.3s ease;
}

.why_box h5 {
    font-weight: 600;
    transition: all 0.3s ease;
}

.why_box p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 90%;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;

}

.why_box:hover * {
    opacity: 0;
}

.why_box:hover p {
    opacity: 1;
}

/* ABOUT PAGE END */

/* CONTACT PAGE START */

.contact_address_boxs {
    margin-top: var(--margin);

}

.address_box {
    background: linear-gradient(var(--primary), var(--primary-dark));
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    outline: 3px solid var(--primary);
    border: 3px solid #fff;
    border-radius: 1rem;
}

.address_box a {
    color: #fff;
}

.address_box a:hover {
    text-decoration: underline;
}

.address_box i {
    font-size: 30px;
    margin-bottom: 0.5rem;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.address_box:hover i {
    transform: scale(1.05);
}

.contact_deatils {
    margin-block: var(--margin);
}


.contact_deatils .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: rgb(245, 245, 245);
    padding: 30px;
    border-radius: 1rem;
}

.contact_deatils .form-row {
    display: flex;
    gap: 20px;
}

.contact_deatils .form-row.single {
    flex-direction: column;
}

.contact_deatils .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact_deatils label {
    margin-bottom: 5px;
    font-weight: 500;
}

.contact_deatils label span {
    color: red;
}

.contact_deatils input,
.contact_deatils select,
.contact_deatils textarea {
    padding: 10px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #f5f5f5;
}

.contact_deatils .form-group option {
    font-size: 15px;
    width: max-content;
}

.contact_deatils label::after {
    content: ' *';
    color: red;
}

.contact_deatils button {

    border: none;

    width: fit-content;
    transition: all 0.3s ease;
    font-weight: 500;
}

.map {
    border-radius: 1rem;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 600px) {
    .contact_deatils .form-row {
        flex-direction: column;
    }
}

/* CONTACT PAGE END */

/* CAREER PAGE START */

.career_form_deatils {
    margin-block: var(--margin);
}

.career_form_deatils .form-row {
    margin-bottom: 10px;
}

.career-contact-card {
    background-color: #ffffff;
    border: 1px solid #e1e4e8;
    padding: 25px;
    width: 100%;
    /* Matches the previous form width */
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.career-contact-card h5 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: var(--primary);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    line-height: 1.5;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.career-contact-card .icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    fill: #666;
    flex-shrink: 0;
    margin-top: 2px;
}

.details {
    color: #333;
}

.label {
    display: block;
    font-weight: bold;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.career-contact-card {
    height: 90%;
}

.career-contact-card a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
    text-transform: lowercase;
}

.career-contact-card a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* CAREER PAGE END */

/* PRODUCT PAGE START */

.prod_pg {
    margin-block: var(--margin);
}

#sub-heading {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    border-radius: 0 0 1rem 1rem;
    position: relative;
    z-index: 9;
    margin-inline: auto;
}

.prod_pg .prod-name {
    margin-top: 10px;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
}

#prod-img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
    color: var(--secondary);
}

/* PRODUCT PAGE END */

/* SITEMAP */

.sitemap {
    margin-block: var(--margin);
}

.sitemap_links h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 2rem;
}

.sitemap_links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 0;
    justify-content: start;
    align-items: center;
    margin-top: 0.5rem;
}

.sitemap_links ul li {
    width: calc(33% - 20px);
}

.sitemap_links a {
    display: block;
    background: linear-gradient(to right bottom, var(--secondary), var(--secondary-dark));
    padding: 10px 15px;
    font-weight: 500;
    border-radius: 6px;
    color: #fff;
    transition: all 0.3s ease;
}


.sitemap_links a:hover {
    background: linear-gradient(to right bottom, var(--primary), var(--primary-dark));

}

/* PRODUCTS PAGES START */

/* Agro & Meat */
.agro_pg img {
    width: 100%;
    height: 100%;
}

.section h3 {
    color: var(--primary);
}

/* Green Energy */

.green_energy {
    margin-block: var(--margin);
}

.green_energy ul {
    padding-left: 1rem;
}

.green_energy li {
    list-style: disc;
}

.top_cont {
    padding: 30px;
    box-shadow: 0 0 20px #ccc;
}

.green_energy h3 {
    font-weight: 700;
    color: var(--primary);
    text-transform: capitalize;
}

.green_box,
.presence_box {
    padding: 20px;
    box-shadow: 0 0 10px #ccc;
    height: 100%;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.green_box:hover,
.presence_box:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.green_box h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.green_box strong {
    color: var(--primary);

}

/* Metal */
.metal_pg {
    margin-block: var(--margin);
}

.metal_pg ul li,
.presence_box ul li {
    list-style-type: disc;
}

.metal_pg h3 {
    font-weight: 700;
    margin-top: 20px;
    color: var(--primary);
    text-transform: capitalize;

}

.presence_box h4 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
    text-transform: capitalize;

}

.presence_box h5 {
    font-weight: 700;
    margin-block: 10px 5px;
    color: var(--primary);
}

.product-table {
    width: 100%;
    border-collapse: collapse;

    margin-block: 20px;
}

/* Header */
.product-table thead {
    background: #1c3d5a;
    color: #fff;
}

.product-table th {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

/* Body */
.product-table td {
    padding: 10px;
    border: 1px solid #ddd;
}

/* Zebra rows */
.product-table tbody tr:nth-child(even) {
    background: #f5f7fa;
}

/* Hover effect */
.product-table tbody tr:hover {
    background: #e6f2ff;
}

/* PRODUCTS PAGES END */