/* ==================== VARIABLES ==================== */
:root {
    --primary: #00c853;
    --primary-dark: #00b248;
    --primary-light: #69f0ae;
    --secondary: #1a237e;
    --secondary-light: #534bae;
    --accent: #ff4081;
    --dark: #121212;
    --dark-light: #1e1e1e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --gray-dark: #495057;
    --white: #ffffff;
    --black: #000000;
    --gradient-primary: linear-gradient(135deg, #00c853 0%, #00b248 100%);
    --gradient-secondary: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    --gradient-dark: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.3);
    --shadow-primary: 0 10px 30px rgba(0, 200, 83, 0.3);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-circle: 50px;
}

/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-circle);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-description {
    font-size: 1.1rem;
    color: black;
    max-width: 700px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
}

.top-bar {
    background: var(--dark-light);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.social-icons a:hover {
    color: var(--primary);
}

.top-quote-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-circle);
    font-weight: 600;
    font-size: 0.9rem;
}

.top-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.8rem;
    color: var(--white);
    margin: 0;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 1px;
    margin: 0;
}

.nav-menu {
    flex: 1;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(0, 200, 83, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-slow);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-light);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding-left: 25px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 30px;
    height: 24px;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-link {
    color: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 1.1rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    background: rgba(0, 200, 83, 0.1);
}

.mobile-dropdown-btn {
    width: 100%;
    text-align: left;
    color: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 1.1rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 20px;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
}

.mobile-dropdown-content a {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: var(--radius-md);
}

.mobile-dropdown-content a:hover {
    color: var(--primary);
    background: rgba(0, 200, 83, 0.1);
    padding-left: 25px;
}

/* ==================== HERO SECTION ==================== */
.anand-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top:88px;
}

.anand-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.anand-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anand-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
}

.anand-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #fff;
    margin-top: 0;
}

.anand-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.anand-hero-desc {
    max-width: 700px;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.anand-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.anand-btn-primary,
.anand-btn-secondary {
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.anand-btn-primary {
    /* background: #ff6a00; */
    background: var(--gradient-primary);
    color: #fff;
}

.anand-btn-primary:hover {
    background: #ff8800;
}

.anand-btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

.anand-btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* ==================== MARQUEE SECTION ==================== */
.marquee-section {
    background: var(--gradient-primary);
    padding: 20px 0;
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    color: var(--white);
    white-space: nowrap;
    font-weight: 500;
    font-size: 1rem;
}

.marquee-item i {
    font-size: 1.2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ==================== ABOUT SECTION ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-story h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-story p {
    margin-bottom: 15px;
    color: black;
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mission-card h4,
.vision-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.mission-card p,
.vision-card p {
    color: black;
    line-height: 1.7;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 30px;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 200, 83, 0.7);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    z-index: 2;
}

.founder-note {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
}

.founder-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
}

.founder-message h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.founder-message p {
    color: black;
    margin-bottom: 10px;
    font-style: italic;
    line-height: 1.7;
}

.founder-message span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==================== PRODUCTS SECTION ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.view-details:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-content>p {
    color: black;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-actions {
    display: flex;
    gap: 10px;
}

/* Continuous Slider */
.continuous-slider {
    width: 100%;
    overflow: hidden;
    background: #f8f8f8;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    width: calc(250px * 24);
    animation: scroll 20s linear infinite;
}

.slide {
    width: 250px;
    flex-shrink: 0;
    margin-right: 20px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==================== PROCESS SECTION ==================== */
.np-process-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.np-process-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.np-process-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 70px;
}

.np-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.np-process-card {
    background: #ffffff;
    text-align: center;
    padding: 0 25px 40px;
    border-radius: 2px solid green;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.np-process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.np-process-img {
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: 180px 180px 0 0;
    margin-bottom: 30px;
    position: relative;
}

.np-process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.np-process-card:hover .np-process-img img {
    transform: scale(1.1);
}

.np-process-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.3;
}

.np-process-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

/* ==================== CERTIFICATIONS SECTION ==================== */
.ccs-wrapper {
    padding: 90px 0;
    background: #f8f9fa;
}

.ccs-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.ccs-header {
    text-align: center;
    margin-bottom: 50px;
}

.ccs-header h2 {
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 12px;
}

.ccs-header p {
    max-width: 650px;
    margin: auto;
    color: #6c757d;
    font-size: 16px;
}

.ccs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ccs-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.ccs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ccs-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.ccs-card span {
    display: block;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    background: var(--gradient-primary);
    color: #fff;
}

.ccs-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.ccs-modal img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    animation: zoomIn 0.4s ease;
}

.ccs-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ==================== PARALLAX SECTION ==================== */
.data-hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.video-background-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.data-hero-content-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.main-content-block h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.main-content-block p {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 30px;
}

.content-badge {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.cta-primary-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stats-grid-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.stats-grid-wrap .stat-item h3 {
    font-size: 3em;
    margin-bottom: 5px;
    color: var(--primary);
}

/* ==================== GALLERY SECTION ==================== */
.ng-gallery-section {
    padding: 100px 0;
    background: var(--light);
}

.ng-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.ng-gallery-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ng-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 13px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.ng-gallery-head h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.ng-gallery-head p {
    color: black;
    font-size: 16px;
}

.ng-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.ng-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.ng-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ng-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.4s ease;
}

.ng-gallery-overlay span {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}

.ng-gallery-item:hover img {
    transform: scale(1.12);
}

.ng-gallery-item:hover .ng-gallery-overlay {
    opacity: 1;
}

.ng-gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.ng-gallery-lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.ng-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.nitpol-testimonial-sec {
    padding: 80px 0;
    background: var(--light);
}

.nitpol-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.nitpol-head {
    text-align: center;
    margin-bottom: 50px;
}

.nitpol-head span {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nitpol-head h2 {
    font-size: 36px;
    color: var(--dark);
    margin-top: 10px;
}

.nitpol-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.nitpol-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

.nitpol-card {
    min-width: calc(33.333% - 20px);
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.nitpol-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.nitpol-quote {
    font-size: 60px;
    color: var(--primary-light);
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: Georgia, serif;
}

.nitpol-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.nitpol-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nitpol-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.nitpol-user h5 {
    margin: 0;
    color: var(--dark);
    font-size: 16px;
}

.nitpol-user span {
    font-size: 14px;
    color: black;
}

.nitpol-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-primary);
    z-index: 10;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nitpol-prev {
    left: 20px;
}

.nitpol-next {
    right: 20px;
}

.nitpol-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

/* ==================== CONTACT SECTION ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-header {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
    margin-left: 0;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-item p {
    color: black;
    line-height: 1.6;
}

.social-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.social-contact .social-icons {
    display: flex;
    gap: 15px;
}

.social-contact .social-icons a {
    width: 40px;
    height: 40px;
    background: var(--gray-light);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
}

.social-contact .social-icons a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==================== LOCATION SECTION ==================== */
.loc-section {
    padding: 80px 0;
    background: var(--light);
}

.loc-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.loc-head {
    text-align: center;
    margin-bottom: 50px;
}

.loc-head h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.loc-head p {
    color: black;
    font-size: 16px;
}

.loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.loc-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.loc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.loc-card h3 {
    padding: 20px;
    font-size: 20px;
    color: var(--white);
    background: var(--gradient-secondary);
    text-align: center;
}

.loc-map {
    height: 260px;
    width: 100%;
}

.loc-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.loc-info {
    padding: 20px;
    text-align: center;
}

.loc-info p {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.loc-btn {
    display: inline-block;
    padding: 12px 26px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.loc-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.footer-col>p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 50px;
    background: var(--primary);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ==================== NO SCROLL ==================== */
.no-scroll {
    overflow: hidden;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    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);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }

    .anand-hero-title {
        font-size: 40px;
    }

    .np-process-grid,
    .products-grid,
    .ccs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nitpol-card {
        min-width: calc(50% - 15px);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .anand-hero-section {
        margin-top: 100px;
        height: 80vh;
    }

    .anand-hero-title {
        font-size: 36px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-info {
        justify-content: center;
        flex-wrap: wrap;
    }

    .np-growth-container {
        grid-template-columns: 1fr;
    }

    .loc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .anand-hero-section {
        height: 70vh;
    }

    .anand-hero-title {
        font-size: 30px;
    }

    .anand-hero-desc {
        font-size: 15px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .marquee-item {
        padding: 0 20px;
        font-size: 0.9rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .np-process-grid,
    .products-grid,
    .ccs-grid {
        grid-template-columns: 1fr;
    }

    .np-process-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .nitpol-card {
        min-width: 100%;
    }

    .nitpol-btn {
        display: none;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .main-content-block h2 {
        font-size: 28px;
    }

    .main-content-block p {
        font-size: 16px;
    }

    .stats-grid-wrap {
        gap: 20px;
    }

    .stats-grid-wrap .stat-item h3 {
        font-size: 2.5em;
    }

    .loc-head h2 {
        font-size: 28px;
    }

    .loc-map {
        height: 220px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: var(--radius-md);
        margin-bottom: 10px;
    }

    .newsletter-form button {
        width: 100%;
        border-radius: var(--radius-md);
        padding: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .anand-hero-section {
        height: 60vh;
    }

    .anand-hero-title {
        font-size: 24px;
    }

    .anand-hero-desc {
        font-size: 14px;
    }

    .anand-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .anand-btn-primary,
    .anand-btn-secondary {
        width: 200px;
        text-align: center;
    }

    .section-description {
        font-size: 1rem;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}