/*
Theme Name: Child Hello Elementor
Author: 
Description: Your description goes here
Version: 1.0
Template: hello-elementor

This is the child theme for Hello Elementor theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #ff0000;
    --secondary-color: #4ecdc4;
    --accent-blue: #4dabf7;
    --orange-accent: #ffa726;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --gray-light: #f8f9fa;
    --white: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --primary-blue: #1e2a5a;
    --accent-yellow: #ffd43b;
    --coral-accent: #ff6b6b;
    --dark-bg: #2b2d31;
    --darker-bg: #1e1f22;
    --text-muted: #adb5bd;
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --benefit-bg-1: #ffd43b;
    --benefit-bg-2: #495057;
    --benefit-bg-3: #6c757d;
    --benefit-bg-4: #495057;
    --gradient-orange: linear-gradient(135deg, #ffd43b, #ff922b);
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

.site-header {
    background: var(--primary-blue);
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}
.site-navigation ul.menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 8px 15px;
}

.main-padd {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
    align-items: center;
}

.site-navigation ul.menu {
    align-items: center;
        gap: 1rem;
}

.contactBtn {
    background: var(--primary-color);
        border-radius: 10px;
}

.contactBtn:hover {
    background: var(--secondary-color);
}

.site-footer {
    background: var(--primary-blue);
    padding: 1rem 0;
    color: var(--white);
}
.copyright.show p {
    margin: 0;
}
.main-padd .site-navigation-toggle-holder .site-navigation-toggle {
    color: var(--white);
}

/* Hero Section */
.hero {
    background: var(--gray-light);
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 0.8rem 1.8rem;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Image Section */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--secondary-color));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: url('https://paravision.co.in/wp-content/uploads/2025/08/rooms-bg.jpg') center/cover;
    position: relative;
    z-index: 2;
}


/* Partners Section */
.partners {
    padding: 3rem 0;
    background: var(--white);
}

.partners-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.partners-carousel.owl-carousel .owl-item .item img {
    max-width: 120px;
    max-height: 160px;
    object-fit: cover;
}

.partners-carousel.owl-carousel .owl-item .item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
}


/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--gray-light);
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.features-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 90%;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s ease;
    border: 1px solid #f1f3f4;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gray-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-icon.event {
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
    color: #1976d2;
}

.feature-icon.internet {
    background: linear-gradient(45deg, #f3e5f5, #ce93d8);
    color: #7b1fa2;
}

.feature-icon.meeting {
    background: linear-gradient(45deg, #fff3e0, #ffcc02);
    color: #f57c00;
}

.feature-icon.projector {
    background: linear-gradient(45deg, #e8f5e8, #a5d6a7);
    color: #388e3c;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}




/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-circle {
        width: 300px;
        height: 300px;
    }

    .hero-image {
        width: 280px;
        height: 280px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .partners-grid {
        gap: 2rem;
    }

    .features-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1{
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .partners-grid {
        gap: 1rem;
    }

    .partner-logo {
        height: 25px;
    }
    
    .hero-circle {
        width: 250px;
        height: 250px;
    }

    .hero-image {
        width: 230px;
        height: 230px;
    }
}


/* Workspace */

.workspace-section {
    background: var(--dark-bg);
    padding: 5rem 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.workspace-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Side - Visual Elements */
.visual-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}

.main-circle {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 4px solid var(--primary-blue);
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-dark);
    z-index: 2;
}

.visual-section .main-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secondary-circle {
    position: absolute;
    bottom: 50px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid var(--accent-yellow);
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 15px 30px var(--shadow-dark);
    z-index: 3;
}

.visual-section .secondary-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-card {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 15px 30px var(--shadow-dark);
    z-index: 4;
    text-align: center;
    max-width: 200px;
}

.cta-card h4 {
    color: var(--darker-bg);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.book-btn {
    background: var(--coral-accent);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.book-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Right Side - Content */
.content-section {
    padding-left: 2rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.section-title .highlight {
    color: var(--accent-yellow);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.benefit-item {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: var(--benefit-bg-1);
    color: var(--darker-bg);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.benefit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.main-circle {
    animation: pulse 4s ease-in-out infinite;
}

.secondary-circle {
    animation: float 4s ease-in-out infinite reverse;
}

/* Responsive Design */
@media (max-width: 768px) {
    .workspace-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .visual-section {
        height: 400px;
        order: 2;
    }

    .content-section {
        padding-left: 0;
        order: 1;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .main-circle {
        width: 250px;
        height: 250px;
    }

    .secondary-circle {
        width: 120px;
        height: 120px;
    }

    .cta-card {
        position: static;
        margin: 2rem auto 0;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .workspace-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .main-circle {
        width: 200px;
        height: 200px;
    }

    .secondary-circle {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: -20px;
    }

    .benefits-list {
        gap: 0.6rem;
    }

    .benefit-item {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* Loading Animation */
.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}




.workspace-showcase {
    padding: 5rem 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-titles {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-description {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.workspace-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* Workspace Card */
.workspace-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.workspace-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.workspace-image {
    width: 100%;
    height: 450px;
    position: relative;
}

/* Responsive Design */

@media (max-width: 768px) {
    .workspace-showcase {
        padding: 3rem 0;
    }

    .section-titles {
        font-size: 2.2rem;
    }

    .workspace-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-titles {
        font-size: 1.8rem;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.workspace-card {
    animation: fadeInUp 0.6s ease-out;
}

.workspace-card:nth-child(1) {
    animation-delay: 0.1s;
}

.workspace-card:nth-child(2) {
    animation-delay: 0.2s;
}

.workspace-card:nth-child(3) {
    animation-delay: 0.3s;
}

.workspace-card:nth-child(4) {
    animation-delay: 0.4s;
}

.workspace-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* Background decorative elements */
.workspace-showcase::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: var(--gradient-blue);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.workspace-showcase::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: var(--coral-accent);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

/* Hero Section with Contact Form */

.hero-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgb(255 0 0 / 10%);
    border-radius: 50%;
    z-index: 1;
}

.hero-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-texts h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-texts p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.form-row label, .form-group label {
    width: 100%;
}
.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit:hover {
    background: #339af0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 171, 247, 0.4);
}

#contactForm .wpcf7-submit {
    color: var(--primary-color);
    border-color: var(--primary-color);
    display: block;
    width: 100%;
}

#contactForm .wpcf7-submit:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-texts h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-texts h1 {
        font-size: 1.8rem;
    }
}


.sustainable-section {
    background: var(--gradient-orange);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Main Content Layout */
.benefits-layout {
    display: flex;
    gap: 3rem;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
}

/* Benefit Cards */

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 30px var(--text-light);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    width: 30%;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--orange-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-title a{
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    display: block;
    color: var(--text-dark);
}

@keyframes rotate {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card {
    animation: fadeInUp 0.8s ease-out;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.5s;
}

@media (max-width: 768px) {
    .benefit-card {
        width: 90%;
    }
}



.solar-value-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 5rem;
}

/* Right Side - Content */
.content-section {
    padding-left: 2rem;
}

.main-description {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.benefit-section {
    padding-left: 1.5rem;
}
ul.benefit-section li {
    font-weight: 500;
    list-style: circle;
    font-size: 1.2rem;
}
/* Responsive Design */

@media (max-width: 768px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .content-section {
        padding-left: 0;
    }

    .solar-value-section {
        padding: 3rem 0;
    }
    .hero-contact::before {
        right: 0;
        width: 100px;
        height: 100px;
    }
}

.case_studies_slider.owl-carousel img {
    height: 200px;
    object-fit: cover;
}

.hero-contact {
    padding-bottom: 40px;
}

.grecaptcha-badge {
    display: none !important;
}
