/*!
Theme Name: Supriyo Crop Science Pvt Ltd
Theme URI: https://supriyocropscience.com/
Author: Sagar Shirsat
Author URI: https://searchgetindia.com/
Description: Custom WordPress Theme for Supriyo Crop Science Pvt Ltd
Version: 1.1.0
*/

/*--------------------------------------------------------------
# Google Font Import
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/*--------------------------------------------------------------
# Reset & Base
--------------------------------------------------------------*/
:root {
    --sup-primary: #6B8E23;    /* Leaf Green */
    --sup-dark: #2D5A27;       /* Dark Green for Headings */
    --sup-orange: #F3A712;     /* Accent Orange */
    --sup-text: #4A4A4A;
    --sup-font: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--sup-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--sup-text);
    background-color: #ffffff;
	/* Background Image Code */
 background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), 
                url('https://supriyocropscience.com/wp-content/uploads/2026/01/uu.png');
    

    background-repeat: repeat;           /* Texture ko baar-baar repeat karega */
    background-position: top left;       /* Starting point */
    background-attachment: fixed;        /* Scroll karne par background wahin rahega */
    background-size: auto;               /* Texture ka original size rakhega */
    
    -webkit-font-smoothing: antialiased;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-family: var(--sup-font) !important;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--sup-dark); /* Updated to Dark Green */
}

h1 { font-size: 44px; line-height: 1.2; }
h2 { font-size: 32px; }
h3 { font-size: 26px; }

a {
    color: var(--sup-primary);
    text-decoration: none;
    transition: 0.3s ease;
}

/*--------------------------------------------------------------
# Custom Figma Design Components
--------------------------------------------------------------*/

/* Stats Bar Section */
.sup-stats-bar {
    background-color: var(--sup-dark);
    color: #ffffff;
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.sup-stat-item h2 {
    color: #ffffff !important;
    font-size: 36px;
    margin: 0;
}

.sup-stat-item p {
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
}

/* Mission & Vision Cards */
.sup-card-grid {
    display: flex;
    gap: 30px;
    padding: 60px 10%;
    background-color: #f9fbf7;
}

.sup-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    flex: 1;
    border-bottom: 5px solid var(--sup-primary);
}

/* Core Values List */
.sup-values-section {
    padding: 60px 20px;
    text-align: center;
}

.sup-values-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.sup-value-item {
    font-weight: 600;
    color: var(--sup-dark);
}

/*--------------------------------------------------------------
# Forms & Buttons
--------------------------------------------------------------*/
button, 
input[type="submit"],
.btn-green {
    background-color: var(--sup-primary);
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-orange {
    background-color: var(--sup-orange);
    color: #fff;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

button:hover, .btn-green:hover, .btn-orange:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Hero Section (Preserving your Video logic)
--------------------------------------------------------------*/
.productHero {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjustment for better visibility */
    overflow: hidden;
    z-index: 1;
}

.heroOverlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text readability */
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.heroText h1 {
    color: #ffffff;
    max-width: 600px;
}


/* Hero Section Container */
.productHero {
    position: relative;
    width: 100%;
    height: 50vh; /* Screen ki 70% height cover karega, ise aap 100vh bhi kar sakte hain */
    overflow: hidden;
    z-index: 1;
}

/* Video Styling - Full Width & Cover */
.heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%; 
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Video piche rahega */
    transform: translate(-50%, -50%); /* Video ko center karega */
    object-fit: cover; /* Video stretch nahi hoga, box fill karega */
}

/* Overlay covering the video */
.heroOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(255, 153, 51, 0.25) 0%,   /* Saffron Tint */
        rgba(255, 255, 255, 0.1) 45%,  /* White Tint */
        rgba(19, 136, 8, 0.25) 100%    /* Green Tint */
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Content Layout */
.heroContent {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
}

/* Responsive - Mobile par video aur content adjust karein */
@media (max-width: 768px) {
    .productHero {
        height: 50vh; /* Mobile par height thodi kam */
    }
    .heroContent {
        flex-direction: column-reverse; /* Pehle title fir image mobile par */
        text-align: center;
    }
    .heroProduct img {
        max-width: 120px;
        margin-bottom: 20px;
    }
}
/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
    .sup-stats-bar, .sup-card-grid, .sup-values-flex {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .heroText h1 { font-size: 28px; }
    h1 { font-size: 32px; }
}