/*
Theme Name: Pramukh International
Theme URI: 
Author: the OpenXcode team
Author URI: https://openxcode.com/
Description: A simple starter WordPress theme built for Pramukh International.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pramukh-international
*/

/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #0356A4;
}

/* Layout components */
.container {
    width: 100%;
    max-width: 1226px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-between {
    justify-content: space-between;
}

.flex-start {
    justify-content: flex-start;
}

.flex-1 {
    flex: 1;
}

/* Header styles */
.header-top {
    background-color: #ffffff;
    border-bottom: 1px solid #75757533;
    padding: 14px 0;
}

.header-main {
    background-color: #ffffff;
    box-shadow: 0px 4px 35px #0000000c;
    padding: 10px 0;
}

.header-contact {
    font-size: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #0356a4;
    line-height: 24px;
}

.header-contact .bold {
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links img {
    width: 30px;
    height: 30px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-main {
    width: 112px;
    height: 80px;
}

.logo-text {
    width: 112px;
    height: 30px;
    margin-left: -8px;
}

.nav-menu {
    display: none;
    gap: 44px;
    align-items: center;
}

.nav-item {
    font-size: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    line-height: 22px;
}

.nav-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown img {
    width: 24px;
    height: 24px;
}

.btn-primary {
    background-color: #de651c;
    color: #ffffff;
    padding: 14px;
    border-radius: 4px;
    border: none;
    font-size: 16px;
    font-family: 'Geist', Arial, sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    line-height: 21px;
}

.btn-secondary {
    background-color: transparent;
    color: #de651c;
    padding: 14px;
    border-radius: 4px;
    border: 1px solid #de651c;
    font-size: 16px;
    font-family: 'Geist', Arial, sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    line-height: 21px;
}

.hamburger {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.close-icon {
    display: none;
}

/* When menu is active */
.menu-open .hamburger-icon {
    display: none;
}

.menu-open .close-icon {
    display: inline;
}


/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-duration: 0.4s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

.fade-in-up {
    animation-name: fadeInUp;
}

.fade-in {
    animation-name: fadeIn;
}

.slide-in-left {
    animation-name: slideInLeft;
}

.slide-in-right {
    animation-name: slideInRight;
}

.scale-in {
    animation-name: scaleIn;
}

.bounce-in {
    animation-name: bounceIn;
}

/* Stagger delays for multiple items */
.stagger-1 {
    animation-delay: 0.05s;
}

.stagger-2 {
    animation-delay: 0.1s;
}

.stagger-3 {
    animation-delay: 0.15s;
}

.stagger-4 {
    animation-delay: 0.2s;
}

/* Hero section */

.make-in-india-logo {
    background: #E76A2A;
    padding: 5px;
}

.pagination .screen-reader-text {
    display: none !important;
}

.certifications-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.hero-section {
    background-image: url('assets/images/hero.png');
    background-size: cover;
    background-position: bottom center;
    min-height: 440px;
    height: auto;
    display: flex;
    align-items: flex-start;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    padding: 0 16px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 16px 40px !important;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .make-in-india {
        width: fit-content !important;
    }

}

.hero-title {
    font-size: clamp(23px, 4.5vw, 52px);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 12px;
}

.hero-description {
    font-size: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #444;
    margin-bottom: 15px;
    max-width: 700px;
}


.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}


.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 66px;
    background: linear-gradient(180deg, #ffffff00 0%, #ffffff 100%);
}

/* About section */
.about-section {
    padding: 80px 0px 40px;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0px 30px;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}


.about-image {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-text .section-title {
    text-align: left;
}

.section-title {
    font-size: 28px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    line-height: 36px;
    color: #000000;
    margin-bottom: 22px;
}

.section-description {
    font-size: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    line-height: 19px;
    color: #757575;
    margin-bottom: 22px;
}

/* Feature cards */
.features-section {
    padding: 48px 0;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    border: 2px dashed #0356a4;
    border-radius: 4px;
    padding: 28px 20px;
    text-align: center;
    background-color: #ffffff;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: #0356a433;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-size: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    line-height: 22px;
    color: #000000;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 12px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    line-height: 16px;
    color: #757575;
}

/* Products section */
/* =========================
   PRODUCTS SECTION
========================= */

.products-section {
    background: #fff4ec;
    padding: 80px 0;
}

.products-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* CARD */
.product-card {
    background: transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-link,
.featured-product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.product-card-link:hover .product-title,
.featured-product-link:hover .featured-product-title {
    color: var(--primary-color, #ff6b00);
}

.product-card-link:hover img,
.featured-product-link:hover img {
    transform: scale(1.05);
}

.product-image-wrap img,
.featured-product-image img {
    transition: transform 0.3s ease;
}

/* IMAGE BOX */
.product-image-wrap {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .product-image-wrap {
        height: 180px;
        padding: 15px;
    }
}


.product-image-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* TITLE */
.product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 16px 0 14px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ACTIONS */
.product-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 10px;
}

.product-actions .btn-primary {
    padding: 8px 14px;
    font-size: 13px;
    flex-shrink: 0;
}

.inquiry-link {
    font-size: 13px;
    color: #0a58a6;
    text-decoration: underline;
    font-weight: 500;
}

@media (max-width: 576px) {
    .product-actions {
        flex-direction: column;
        gap: 8px;
    }

    .product-actions .btn-primary {
        width: 100%;
    }
}

.why-choose-section .section-title {
    margin-bottom: 45px;
}

.process-section {
    padding: 80px 0;
    background: #fff4ec;
    text-align: center;
}

.process-grid {
    display: flex;
    /*     grid-template-columns: repeat(3, 1fr); */
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.process-card {
    max-width: 320px;
    margin: auto;
}

.process-card3 {
    margin-right: 0px;
}

.process-card4 {
    margin-left: 0px;
}

.process-icon {
    width: 70px;
    height: 70px;
    border: 1px solid #0a58a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-icon img {
    width: 40px;
}

.process-icon .dashicons {
    font-size: 30px;
    color: #f26b21;
}

.process-card h4 {
    font-size: 16px;
    font-weight: 600;
}

.process-card p {
    font-size: 13px;
    color: #777;
    margin-top: 6px;
}

/* Responsive */
@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        max-width: 100% !important;
    }
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   FEATURED PRODUCTS
========================= */

.featured-products-section {
    padding: 80px 0;
    background: #ffffff;
}

.featured-products-section .section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* GRID */
.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .featured-products-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}


/* CARD */
.featured-product-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* IMAGE BOX */
.featured-product-image {
    border: 1.5px solid #f26b21;
    border-radius: 12px;
    padding: 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .featured-product-image {
        height: 160px;
        padding: 10px;
    }
}


.featured-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* TITLE */
.featured-product-title {
    font-size: 16px;
    font-weight: 600;
    color: #0a58a6;
    margin: 16px 0 6px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* INQUIRY LINK */
.featured-inquiry-link {
    font-size: 13px;
    color: #f26b21;
    text-decoration: underline;
    font-weight: 500;
    margin-top: auto;
    display: inline-block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .featured-products-grid {
        grid-template-columns: 1fr;
    }
}


/* Testimonials */
/* Section Layout */
.testimonial-section {
    padding: 80px 0;
    position: relative;
    background: #fff;
}

/* Quote Icon Left Side */
.quote-icon {
    position: absolute;
    left: 70px !important;
    top: 120px !important;
    z-index: 1;
}

.quote-icon img {
    width: 180px !important;
    height: auto;
}

/* Header Row (title + arrows) */
.testimonial-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.testimonial-header-row .section-title {
    margin-bottom: 40px;
}

/* Arrows Top Right */
.testimonial-arrows {
    position: absolute;
    right: 170px !important;
    top: 150px;
}

.arrow {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    padding: 8px 10px;
    color: #000;
    transition: 0.2s ease;
}

.arrow:hover {
    color: #e46a2b;
}

/* Slider Cards */
.testimonial-slider {
    margin-top: 20px;
    position: relative;
    z-index: 2;
    padding: 30px 0;
}

.testimonial-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 10px;
    text-align: left;
    height: 100%;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
        margin: 5px;
    }
}


/* Avatar + Name Row */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.testimonial-designation {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* =========================
   FOOTER BASE
========================= */

.footer {
    background: #ffffff;
    border-top: 1px solid #0356A4;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 380px;
    height: 79.3%;
    background: url('assets/images/footer-left-new.png') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

/* RIGHT background image */
.footer::after {
    content: "";
    position: absolute;
    right: -8%;
    top: 0px;
    width: 340px;
    height: 70%;
    background: url('assets/images/footer-right-new.png') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.footer .copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* =========================
   FOOTER GRID
========================= */

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer .social-links {
        justify-content: center;
    }
}

/* =========================
   FOOTER LOGO & CONTACT
========================= */

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-contact {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.footer-contact-label {
    font-weight: 600;
    color: #111;
    margin-right: 6px;
}

.footer-contact-item {
    margin-bottom: 10px;
}

/* =========================
   FOOTER HEADINGS
========================= */

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

/* =========================
   FOOTER LINKS
========================= */
ul.footer-links {
    list-style-type: none;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link,
.footer-links a {
    text-decoration: none;
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
}

.footer-link:hover,
.footer-links a:hover {
    color: #e66a1f;
}

/* =========================
   NEWSLETTER
========================= */

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.newsletter-input {
    flex: 1;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 8px 4px;
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-form .btn-primary {
    padding: 8px 16px;
    font-size: 14px;
    background: #e66a1f;
    color: #fff;
    border-radius: 3px;
}

/* =========================
   SOCIAL ICONS
========================= */

.footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer .social-links img {
    width: 28px;
    height: 28px;
}

/* =========================
   FOOTER MARQUEE BAR
========================= */

.footer-bottom {
    background: #0a58a6;
    color: #fff;
    font-size: 14px;
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.footer-bottom-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.footer-bottom-marquee-inner {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    gap: 0;
    align-items: center;
}

.marquee-item {
    font-size: 22px;
    font-weight: 500;
    padding: 0 15px;
    display: inline-block;
}

.marquee-separator {
    font-size: 20px;
    opacity: 0.6;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

.footer-bottom-text {
    font-weight: 400;
    font-size: 24px;
}

/* =========================
   COPYRIGHT BAR
========================= */

.footer .copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .footer .copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


.copyright-links a {
    margin-left: 15px;
    color: #777;
    text-decoration: none;
}

.copyright-links a:hover {
    color: #e66a1f;
}

/* =========================
   FOOTER CATALOGUE BAR
========================= */

.footer-catalogue {
    padding: 0px 0 40px;
    text-align: center;
}

.footer-catalogue-inner {
    display: block;
}


.footer-catalogue h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a58a6;
    margin: 0;
    position: relative;
}

/* small arrow effect */
.footer-catalogue h2::after {
    content: '';
    width: 70px;
    height: 30px;
    background: url('assets/images/arrow.svg') no-repeat;
    background-size: contain;
    position: absolute;
    left: 32%;
    top: 115%;
    transform: translateY(-50%);
}

.footer-catalogue .btn-primary {
    padding: 10px 26px;
    font-size: 14px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-catalogue-inner {
        flex-direction: column;
    }

    .footer-catalogue h2::after {
        display: none;
    }

    .header-main a.btn-primary,
    .footer::before,
    .footer::after {
        display: none;
    }



    .trusted-wrapper {
        display: grid !important;
    }

    .trusted-left img {
        width: 100%;
    }
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer .copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/* Interactive states */
.btn-primary:hover {
    background-color: #c55a18;
    transform: scale(1.02);
}

.btn-secondary:hover {
    background-color: #de651c;
    color: #ffffff;
}

.nav-item:hover {
    color: #de651c;
}

.product-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.1); */
}

.feature-card:hover {
    box-shadow: 0 8px 25px rgba(3, 86, 164, 0.15);
}

/* =========================
   PRIMARY MENU – DESKTOP
========================= */

.nav-menu {
    display: flex;
    justify-content: center;
}

/* UL */
.nav-menu .menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 36px;
}

/* LI */
.nav-menu .menu-items>li {
    position: relative;
}

/* Main menu links */
.nav-menu .menu-items>li>a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #111;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
}

/* Hover & active */
.nav-menu .menu-items>li:hover>a,
.nav-menu .menu-items>li.current-menu-item>a,
.nav-menu .menu-items>li.current-menu-ancestor>a {
    color: #e66a1f;
    border-bottom-color: #e66a1f;
}

/* Dropdown caret
.nav-menu .menu-items > li.menu-item-has-children > a::after {
    content: "▾";
    font-size: 11px;
    margin-left: 6px;
}*/
.nav-menu .menu-items>li.menu-item-has-children>a::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 6px;

    background-image: url("https://pramukhinternational.net/wp-content/uploads/2025/12/arrow-down.svg");
    /* change path */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}


/* =========================
   DROPDOWN – DESKTOP
========================= */

.nav-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 190px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 999;
}

.nav-menu .menu-items>li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: 100%;
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 8px 18px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.nav-menu .sub-menu li a:hover {
    background: #f7f7f7;
    color: #e66a1f;
}

/* -----------------------------
   WHY CHOOSE US SECTION
--------------------------------*/
.why-choose-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
}

/* GRID LAYOUT */
.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT IMAGE */
.choose-left img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* RIGHT SIDE BOXES */
.choose-right .choose-box {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.choose-right .choose-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* ICON */
.choose-right .choose-box .choose-icon {
    border-radius: 100%;
    padding: 10px;
    margin-right: 15px;
    background-color: #0356A433;
}

.choose-right .choose-box .choose-icon img {
    width: 62px;
}

/* TEXT INSIDE BOX */
.choose-right .choose-box h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.choose-right .choose-box p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* CENTER BUTTON */
.choose-button {
    text-align: center;
    margin-top: 40px;
}

.choose-button .btn-primary {
    background-color: #ff7a21;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease;
}

.choose-button .btn-primary:hover {
    background-color: #e9680f;
}

.certifications-section {
    padding: 80px 0;
    background: #fdf2e9;
    text-align: left;
}

.cert-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cert-desc {
    font-size: 15px;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.cert-btn {
    background: #ff7a21;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 40px;
}

.cert-logos {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cert-logo img {
    width: 150px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.certifications-section .container {
    display: flex;
    gap: 15px;
}

.quality-section {
    padding: 80px 0;
    text-align: center;
}

.quality-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.quality-card img {
    width: 100%;
    border-radius: 10px;
}

.quality-video-link {
    position: relative;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    color: black;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.quality-btn {
    background: #ff7a21;
    padding: 10px 22px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.export-section {
    padding: 70px 0;
}

.export-grid {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    gap: 40px;
    align-items: center;
}

.export-left-text {
    font-size: 32px;
    font-weight: 800;
    color: #ff6b1a;
    line-height: 1.2;
}

.export-left-text p {
    font-size: 32px;
    font-weight: 800;
    color: #ff6b1a;
    line-height: 1.2;
}

.export-left-text span {
    color: #000;
}

.export-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.flags-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px;
}

.flag-card img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 40 / 26;
    object-fit: cover;
}

.flag-card p {
    text-align: center;
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
}

.trusted-buyers-section {
    background: #FCEFE6;
    padding: 60px 0;
}

.trusted-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.trusted-left img {
    /*     width: 100%; */
    border-radius: 10px;
    max-width: unset;
}

.trusted-right .trusted-small-title {
    font-size: 14px;
    text-transform: uppercase;
    color: #555;
}

.trusted-main-title {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 20px;
}

.trusted-description {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.trusted-highlight {
    font-weight: 600;
    margin-bottom: 25px;
}

.trusted-buttons {
    display: flex;
    gap: 12px;
}

.btn-primary {
    background: #E76A2A;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 4px;
}

.btn-outline {
    border: 1px solid #E76A2A;
    padding: 10px 20px;
    border-radius: 4px;
    color: #E76A2A !important;
}



/* -----------------------------
    RESPONSIVE
--------------------------------*/
@media (max-width: 992px) {
    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .choose-left {
        order: 2;
    }

    .choose-right {
        order: 1;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 28px;
    }

    .choose-right .choose-box {
        padding: 15px;
    }

    .choose-right .choose-box .choose-icon {
        margin-bottom: 15px;
    }

}


/* =========================
   RESPONSIVE – MOBILE
========================= */

@media (max-width: 991px) {

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background: #fff;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1002;
        overflow-y: auto;
        padding-top: 60px;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    }

    /* show menu */
    .menu-open .nav-menu {
        transform: translateX(0);
    }


    /* =========================
       OVERLAY (20%)
    ========================= */

    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 999;
    }

    .menu-open .menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    /* show menu when active */
    .nav-menu.active {
        display: block;
    }

    .nav-menu .menu-items {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu .menu-items>li {
        width: 100%;
    }

    .nav-menu .menu-items>li>a {
        padding: 14px 20px;
        border-bottom: 1px solid #eee;
        width: 100%;
        display: block;
    }

    /* dropdown mobile */
    .nav-menu .sub-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: #f9f9f9;
        display: none;
    }

    /* show sub-menu when parent active */
    .nav-menu .menu-items>li.menu-item-has-children.active>.sub-menu {
        display: block;
    }

    .nav-menu .sub-menu li a {
        padding-left: 36px;
    }

    /* hide underline */
    .nav-menu .menu-items>li>a {
        border-bottom-color: transparent;
    }
}


/* Transitions */
/* transitions removed from universal selector for performance */


/* Responsive media queries */
@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 20px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .features-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }

    .feature-card {
        flex: 1;
        min-width: 280px;
    }

    .product-card {
        flex: 1;
        min-width: 250px;
    }

    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .nav-item {
        font-size: 18px;
    }

    .hero-title {
        font-size: 50px;
        line-height: 60px;
    }

    .about-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .about-image {
        width: 40%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    .about-text {
        width: 60%;
        text-align: left;
        padding-left: 24px;
    }

    .section-title {
        font-size: 42px;
        line-height: 52px;
    }

    .section-description {
        font-size: 16px;
        line-height: 19px;
    }

    .features-grid {
        flex-wrap: nowrap;
    }

    .feature-title {
        font-size: 18px;
        line-height: 22px;
    }

    .feature-description {
        font-size: 14px;
        line-height: 19px;
    }

    .product-title {
        font-size: 20px;
        line-height: 30px;
    }

    .inquiry-link {
        font-size: 16px;
        line-height: 20px;
    }

    .flags-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-section {
        background-size: contain;
        background-position: bottom center;
        background-repeat: no-repeat;
        height: auto;
        min-height: 440px;
        align-items: flex-start;
        padding-top: 100px;
    }

    .hero-content {
        padding-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .header-contact {
        font-size: 16px;
    }

    .hero-content {
        max-width: 940px;
    }

    .testimonials-slider {
        justify-content: center;
    }

    .testimonial-card {
        min-width: 400px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1226px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.nav-menu .btn-primary.mobile-btn {
    display: none;
}

@media (max-width: 991px) {
    .nav-menu {
        display: block;
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .nav-menu .btn-primary {
        display: block !important;
        max-width: 120px;
        text-align: center;
        margin-left: 20px;
        margin-top: 10px;
    }

    /* slide-in when open */
    body.menu-open .nav-menu {
        transform: translateX(0);
    }

    /* overlay fade */
    .menu-overlay {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }

    body.menu-open .menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    /* hamburger animation */
    body.menu-open .hamburger .hamburger-icon {
        display: none;
    }

    body.menu-open .hamburger .close-icon {
        display: inline;
        position: absolute;
        top: -120px;
        right: -5px;
    }
}

.section-description h2 {
    padding-bottom: 20px;
}

.section-description p {
    padding-bottom: 15px;
    line-height: 26px;
}

.about-header-bar {
    background-color: #E76A2A;
    padding: 45px 0;
    text-align: center;
    color: #fff;
    /* change if you want white text */
}

.about-header-bar .header-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-header-bar .header-subtitle {
    font-size: 18px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .testimonial-arrows {
        right: 15px !important;
    }

    .quote-icon {
        left: 20px !important;
        top: 135px !important;
    }

    .quote-icon img {
        width: 120px !important;
    }

    .export-grid {
        display: block !important;
    }

    .export-left {
        margin-bottom: 30px !important;
    }

    .hero-section {
        align-items: flex-start;
        padding-top: 30px;
        height: auto;
        min-height: 530px;
    }

    .nav-menu .btn-primary {
        max-width: 150px
    }

    body.menu-open .hamburger .close-icon {
        top: -60px;
    }
}

/* Main Categories Section */
.main-categories-section {
    padding: 0 20px;
    /* Added padding to prevent edge-to-edge if gap is used, or can be removed if full bleed is desired but with gap */
    width: 100%;
    margin-bottom: 50px;
    max-width: 1266px;
    /* Match standard container max-width usually, or keep full if desired. Using 1266px to align with site content usually */
    margin-left: auto;
    margin-right: auto;
}

.main-categories-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 500px;
    gap: 30px;
    /* Separation between items */
}

.main-category-card {
    flex: 1;
    min-width: 300px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-radius: 12px;
    /* Rounded corners for distinct separation */
}

.main-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.main-category-card:hover .main-category-overlay {
    background: rgba(0, 0, 0, 0.25);
}

.main-category-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
    max-width: 500px;
}

.main-category-content h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.main-category-content .btn-primary {
    display: inline-block;
    background-color: #de651c;
    color: #fff;
    padding: 14px 34px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #de651c;
}

.main-category-content .btn-primary:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .main-categories-grid {
        flex-direction: column;
        gap: 20px;
    }

    .main-category-card {
        min-height: 350px;
        width: 100%;
    }

    .main-category-content h2 {
        font-size: 28px;
    }
}