/* 
   Aarksol Renewable Pvt. Ltd. - Main Stylesheet
   Colors: 
   - Green Light: #8bce09
   - Green Dark: #029b40
   - Blue: #043e84
*/

/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --green-light: #8bce09;
    --green-dark: #029b40;
    --blue: #043e84;
    --blue-light: #0a5cb5;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --text-color: #222222;
    --text-light: #666666;
    --gradient-primary: linear-gradient(135deg, var(--green-light), var(--green-dark));
    --gradient-secondary: linear-gradient(135deg, var(--blue), var(--blue-light));
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--blue);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: var(--blue);
    transition: var(--transition);
}

a:hover {
    color: var(--green-dark);
}

ul {
    list-style: none;
}

.text-gradient-primary {
    color: var(--gradient-primary) !important;
}

.text-blue {
    color: var(--blue);
}

.text-green-dark {
    color: var(--green-dark);
}

.text-dark-grey {
    color: var(--text-color) !important;
}

.fs-18{
    font-size: 18px !important;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    position: relative;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--blue);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    /* padding: 14px 32px; */
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* New modern hover with gradient sweep and scale */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 0;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.btn:hover::before {
    left: 0;
    width: 130%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 10px 28px rgba(2, 155, 64, 0.35);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    box-shadow: 0 10px 28px rgba(7, 2, 155, 0.35);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 10px 28px rgba(4, 62, 132, 0.25);
}

.btn-icon i {
    transition: var(--transition);
}

.btn-icon:hover i {
    transform: translateX(6px);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 0;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: saturate(180%) blur(12px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition);
}

header.scrolled .header-content {
    height: 70px;
}

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

.logo img {
    height: 50px;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 45px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    margin: 0;
}

.main-nav ul li {
    margin-left: 40px;
    position: relative;
}

.main-nav ul li a {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 15px;
    padding: 35px 0;
    display: block;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    opacity: 0;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
    opacity: 1;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--green-dark);
}

.header-buttons {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.header-buttons .btn {
    padding: 10px 20px;
    font-size: 13px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--blue);
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: rgba(4, 62, 132, 0.05);
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background-color: rgba(4, 62, 132, 0.12);
    transform: translateY(-2px);
}

/* Overlay for mobile navigation */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Prevent body scroll when mobile nav is open */
body.no-scroll {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(4, 62, 132, 0.03) 0%, rgba(139, 206, 9, 0.07) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 206, 9, 0.1) 0%, rgba(4, 62, 132, 0.05) 70%);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(4, 62, 132, 0.08) 0%, rgba(139, 206, 9, 0.03) 70%);
    z-index: 0;
}

/* .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
} */

.hero-text {
    flex: 1;
    padding-right: 70px;
}

/* Hero Section */
.hero-text h1 {
    font-size: 54px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
}

.hero-text h1 span {
    background: linear-gradient(transparent 65%, rgba(139, 206, 9, 0.35) 65%);
    padding: 0 4px;
    border-radius: 2px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--green-light);
    border-radius: 20px;
    z-index: 0;
}

.hero-stats {
    display: flex;
    margin-top: 60px;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.hero-stat-text {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/pattern-bg.svg') no-repeat;
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 30px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-size: 20px;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--blue);
}

.about-feature-text p {
    font-size: 15px;
    margin-bottom: 0;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--blue);
    border-radius: 20px;
    z-index: 0;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    z-index: 2;
}

.about-experience-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.about-experience-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 206, 9, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--green-dark);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--green-dark);
    font-size: 32px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(139, 206, 9, 0.3);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--blue);
    transition: var(--transition);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
}

.feature-card .btn {
    margin-top: auto;
}

/* Technology Section */
.technology-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.technology-content {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.technology-image {
    flex: 1;
    position: relative;
}

.technology-image img {
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.technology-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    opacity: 0.2;
    border-radius: 10px;
    z-index: 0;
}

.technology-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    opacity: 0.2;
    border-radius: 10px;
    z-index: 0;
}

.technology-text {
    flex: 1;
}

.technology-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.technology-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.technology-text p {
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.technology-benefits {
    margin-bottom: 40px;
}

.technology-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.technology-benefits li i {
    color: var(--green-dark);
    background-color: rgba(139, 206, 9, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.technology-benefits li span {
    font-weight: 500;
    color: var(--text-color);
}

/* Blog Section */
.blog-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.blog-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-date i {
    color: var(--green-dark);
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
}

.blog-footer {
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.blog-author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author-name {
    font-size: 14px;
    font-weight: 600;
}

.blog-read-more {
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.blog-read-more i {
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--green-dark);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--blue);
}

.blog-date {
    font-size: 14px;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.blog-excerpt {
    margin-bottom: 15px;
    font-size: 15px;
}

.read-more {
    color: var(--blue);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--green-light), var(--green-dark));
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 25px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background-color: #0a1f3d;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/pattern-bg.svg') no-repeat;
    background-size: cover;
    opacity: 0.02;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--green-light), var(--green-dark));
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover {
    color: var(--green-light);
    padding-left: 5px;
}

.footer-links ul li a i {
    font-size: 12px;
    color: var(--green-light);
}

.footer-contact ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact ul li i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--green-light);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Footer Newsletter Form */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: 12px;
}

.footer-newsletter h3 {
    color: var(--white);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

.newsletter-form input[type="email"],
.newsletter-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder,
.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form input:focus,
.newsletter-form .form-control:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 4px rgba(139, 206, 9, 0.18);
    background: rgba(255, 255, 255, 0.18);
}

.newsletter-form .btn {
    padding: 12px 18px;
    border-radius: 30px;
}

.newsletter-form .btn.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px) scale(1.02);
}

/* Newsletter section on blog page */
.newsletter-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.newsletter-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

.newsletter-content h2 {
    color: var(--blue);
}

.newsletter-content p {
    color: var(--text-light);
}

/* Overlay decorative retained */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 10%, rgba(139, 206, 9, 0.15), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(4, 62, 132, 0.12), transparent 50%);
    opacity: 0.08;
    z-index: 0;
}

/* About Page - Modern Hero */
.about-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(4, 62, 132, 0.06) 0%, rgba(2, 155, 64, 0.05) 50%, rgba(139, 206, 9, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(4, 62, 132, 0.12) 0%, rgba(4, 62, 132, 0.0) 60%);
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 206, 9, 0.12) 0%, rgba(139, 206, 9, 0.0) 60%);
    z-index: 0;
}

.about-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h1 {
    font-size: 54px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 20px;
}

.about-hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.about-hero-image {
    flex: 1;
    position: relative;
}

.about-hero-image img {
    border-radius: 22px;
    box-shadow: var(--box-shadow);
}

.about-hero-image::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--green-light);
    border-radius: 22px;
    z-index: 0;
}

/* Vision & Goals Grid */
.vision-goals {
    background-color: var(--white);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.goal-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.goal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(4, 62, 132, 0.12);
}

.goal-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 62, 132, 0.08);
    color: var(--blue);
    font-size: 22px;
    margin-bottom: 14px;
}

.goal-card h3 {
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 10px;
}

.goal-card p {
    color: var(--text-light);
}

/* Team Cards refinement (minimal) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-member {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-6px);
}

.member-image img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.member-info {
    padding: 18px;
}

.member-info .designation {
    color: var(--green-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.member-info .bio {
    color: var(--text-light);
}

/* Responsive tweaks for About page */
@media only screen and (max-width: 991px) {
    .about-hero {
        padding: 140px 0 60px;
    }

    .about-hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-hero-text h1 {
        font-size: 42px;
        text-align: center;
    }

    .about-hero-text p {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .about-hero-text h1 {
        font-size: 36px;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}



/* About Company */
.about-company-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-company-image {
    flex: 1;
    position: relative;
}

.about-company-image img {
    border-radius: 22px;
    box-shadow: var(--box-shadow);
}

.about-company-image::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--green-light);
    border-radius: 22px;
    z-index: 0;
}

.about-company-text {
    flex: 1;
}

.about-company-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 20px;
}

.about-company-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.company-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Core Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 206, 9, 0.12);
    color: var(--green);
    font-size: 26px;
    margin: 0 auto 14px;
}

.value-card h3 {
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
}

/* Manufacturing Process */
.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 10px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--medium-gray);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 16px;
    color: var(--text-light);
}

/* Certifications */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.certification-item {
    background: var(--white);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.certification-item img {
    max-width: 100px;
    height: auto;
    margin-bottom: 12px;
}

.certification-item h3 {
    font-size: 18px;
    color: var(--blue);
    margin-bottom: 6px;
}

.certification-item p {
    font-size: 14px;
    color: var(--text-light);
}



.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.hero-stat-text {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/pattern-bg.svg') no-repeat;
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 30px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-size: 20px;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--blue);
}

.about-feature-text p {
    font-size: 15px;
    margin-bottom: 0;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--blue);
    border-radius: 20px;
    z-index: 0;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    z-index: 2;
}

.about-experience-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.about-experience-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 206, 9, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--green-dark);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--green-dark);
    font-size: 32px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(139, 206, 9, 0.3);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--blue);
    transition: var(--transition);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
}

.feature-card .btn {
    margin-top: auto;
}

/* Technology Section */
.technology-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.technology-content {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.technology-image {
    flex: 1;
    position: relative;
}

.technology-image img {
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.technology-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    opacity: 0.2;
    border-radius: 10px;
    z-index: 0;
}

.technology-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    opacity: 0.2;
    border-radius: 10px;
    z-index: 0;
}

.technology-text {
    flex: 1;
}

.technology-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.technology-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.technology-text p {
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.technology-benefits {
    margin-bottom: 40px;
}

.technology-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.technology-benefits li i {
    color: var(--green-dark);
    background-color: rgba(139, 206, 9, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.technology-benefits li span {
    font-weight: 500;
    color: var(--text-color);
}

/* Blog Section */
.blog-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.blog-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-date i {
    color: var(--green-dark);
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author-name {
    font-size: 14px;
    font-weight: 600;
}

.blog-read-more {
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.blog-read-more i {
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--green-dark);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--blue);
}

.blog-date {
    font-size: 14px;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.blog-excerpt {
    margin-bottom: 15px;
    font-size: 15px;
}

.read-more {
    color: var(--blue);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 25px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background-color: #0a1f3d;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/pattern-bg.svg') no-repeat;
    background-size: cover;
    opacity: 0.02;
    z-index: 0;
}