/*
 Theme Name:   SOLARIS Theme
 Theme URI:    https://solar.libraro.in
 Description:  A child theme of Twenty Twenty-One WordPress theme.
 Author:       KOTA Saraf
 Author URI:   https://solar.libraro.in
 Template:     twentytwentyone
 Version:      1.0.0
 License:      KOTA Saraf
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

* {
    transition: all 0.3s ease;
}

body {
    font-family: 'Outfit', sans-serif;
}

:root {
    --primary-color-1: #80B701;
    --primary-color-2: #B59D00;
    --primary-color-3: #002B88;
    --light-color-1: #e0ffcf;
    --light-color-2: #F0F5FF;
    --text-color: #2c3e50;
}

h3 {
    font-size: 40px !important;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700 !important;
}

h1 {
    font-size: 2.7rem !important;
}

h2 {
    font-size: 2.2rem !important;
}

h3 {
    font-size: 1.8rem !important;
}

h4 {
    font-size: 1.5rem !important;
}

h5 {
    font-size: 1.25rem !important;
}

h6 {
    font-size: 1.1rem !important;
}

p,
span,
a,
li,
th,
td {
    color: var(--text-color);
}


ul,
ol {
    padding: 0 1rem;
}

strong {
    font-weight: 600;
}

p,.accordion-body {
    line-height: 30px;
    font-size: 1rem;
}

input,
select,
textarea {
    padding: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-family: 'Arial', sans-serif;
}

.logo {
    position: absolute;
    top: 7%;
    left: 5%;
    z-index: 10560;
}

.layout {
    display: grid;
    height: 95vh;
    gap: 1.8rem;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 60px 120px 1fr 120px;
    grid-template-areas:
        "sidebar header header"
        "sidebar small-top right-box"
        "sidebar large-box right-box"
        "sidebar large-box small-bottom";
}

/* Assigning Areas */

.sidebar {
    grid-area: sidebar;
    background-size: contain;
    background-position: top;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    align-items: flex-start;
    justify-content: flex-end;
}

.sidebar h1 {
    color: #fff;
}

.sidebar p {
    font-size: 1.2rem;
    color: #868686;
}

.sidebar .button-div {
    display: flex;
    gap: 1rem;
}

.button1,
.button2 {
    padding: .8rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
}

.button1 {
    background: #fff !important;
    color: #000;
}

.button2 {
    background: var(--primary-color-1);
    color: #fff;
}


.sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(357deg, #000000 45%, #00000000);
    z-index: -1;
}

.header {
    grid-area: header;
}

.header ul.navbar-nav.ms-auto.mb-2.mb-lg-0 {
    gap: 2.5rem;
}

.small-top {
    grid-area: small-top;
}

.right-box {
    grid-area: right-box;
    background: url('../images/head-03.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    align-items: flex-start;
    justify-content: flex-end;

}

.right-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(357deg, #00000094 45%, #00000000);
    z-index: -1;
}

.right-box h4 {
    color: #fff;
}

.large-box {
    grid-area: large-box;
    background: url('../images/head-02.jpg') no-repeat;
    background-size: cover;
    background-position: bottom;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    align-items: flex-start;
    justify-content: flex-end;

}

.large-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(357deg, #00000094 45%, #00000000);
    z-index: -1;
}

.large-box h4 {
    color: #fff;
}

.small-bottom {
    display: flex;
    padding: 1.2rem 2.5rem;
    border-radius: 1.5rem;
    background: var(--primary-color-1);
    color: #fff;
}



/* head Bar */

.headBar {
    background: var(--primary-color-2);
    padding: 1rem 0;
}

.headBar .d-flex.justify-content-center,
.headBar .d-flex.justify-content-center * {
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}


/* Why Choose Us */
.why-choose-box {
    display: flex;
    gap: 1.5rem;
    background: var(--light-color-1);
    padding: 2rem;
    border-radius: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid #80b70145;

}

.why-choose-us .col-lg-4:nth-child(odd) .why-choose-box {
    background: var(--light-color-2);
    border: 1px solid #c6d8ff;
}

.why-choose-box img {
    width: 55px;
}

.why-choose-box p {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary-color-3);
    margin: 0;
    line-height: 30px;
}


/* find-right-solor-for-your-home */


h2 span {
    color: var(--primary-color-1);
    font-size: inherit;
}

.how-it-works .steps {
    border: 1px solid #dedede;
    border-radius: 1.5rem;
    padding: 5rem 3.2rem;
}

.how-it-works .steps:hover {
    background: linear-gradient(185deg, var(--primary-color-1), rgb(18, 74, 0));
    border: none;
}

.how-it-works .steps p {
    font-size: 2.5rem;
    line-height: 45px;
    font-weight: 700;
    margin: 0;
}

.how-it-works .steps:hover p {
    color: #fff;
}


.find-right-solor-for-your-home img {
    border-radius: 1.5rem;
}

.find-right-solor-for-your-home .row {
    align-items: center;
}

.govt-subsidy {
    background: var(--light-color-2);
}


.people-may-also-search a {
    color: #858585;
    font-size: .9rem;
}


.testimonial-item {
    background: var(--light-color-1);
    padding: 1.5rem;
    border-radius: 1.5rem;
}

.testimonial-item .d-flex {
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-item .profile {
    width: 62px !important;
}

.information h4 {
    margin: 0;
    color: var(--primary-color-3);
}

p.message {
    line-height: 30px !important;
    margin-bottom: 1.5rem;
}

.owl-stage-outer .owl-item:nth-child(odd) .testimonial-item {
    background: var(--light-color-2) !important;
}

.information p.message {
    line-height: 30px;
    margin-bottom: 1.5rem;
    color: #070707;
}

footer.py-5 {
    background: #000;
}

footer.py-5 h4 {
    color: #fff;
    font-weight: 600 !IMPORTANT;
}

footer.py-5 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer.py-5 ul li a {
    color: #fff;
    font-size: .8rem;
}

footer.py-5 ul li+li {
    margin-top: .5rem;
}



/* Inner Page header */
.page-header {
    background-image: url(http://localhost/new-theme/wp-content/uploads/2026/03/head-1-1.jpg);
    background-size: cover;
    position: relative;
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(357deg, #000000d8 45%, #0000005c);
    z-index: -1;
}

.page-header h2 {
    padding: 10rem;
    text-align: center !important;
    position: relative;
    z-index: 1;
    color: #fff;
}


/* Bootstrap Modified */
.header ul.navbar-nav.ms-auto.mb-2.mb-lg-0 {
    gap: 2.5rem;
    align-items: center;
}

.accordion-button:not(.collapsed) {
    color: #001570;
    background-color: #f1ffec;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    font-weight: 600;
}

.accordion-item {
    border: 1px solid #dddddd ! IMPORTANT;
    margin-bottom: 1rem;
    border-radius: .5rem ! IMPORTANT;
    overflow: hidden;
}

div#mainNavbar ul li:last-child {
    background: var(--primary-color-1);
    padding: .5rem 1.5rem;
    border-radius: 1.5rem;
    color: #fff !important;
}

div#mainNavbar ul li:last-child a {
    color: #fff !important;
}

.accordion-item h2 {
    margin: 0;
}

@media screen and (max-width:480px) {
    .layout {
        display: flex;
        height: 95vh;
        gap: 1rem;
        flex-direction: column;
    }

    .layout .header {
        order: 1;
    }

    .layout .small-top {
        order: 2;
    }

    .layout .small-bottom {
        order: 6;
        display: none;
    }

    .layout .sidebar {
        order: 3;
    }

    .layout .right-box {
        order: 5;
        display: none;
    }

    .layout .large-box {
        order: 4;
        display: none;
    }

}