:root {
    --primary: #ff3131;
    --secondary: #000000;
    --white: #ffffff;
    --dark-gray: #1a1a1a;
    --light-gray: #f4f4f4;
    --text-main: #333333;
    --text-light: #777777;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(255, 49, 49, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    overflow-x: hidden !important;
}


body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    font-family: "Poppins", sans-serif;
    font-family: "Jost", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    font-family: "Jost", sans-serif;
}

a {
    text-decoration: none !important;
    color: inherit !important;
    font-family: "Poppins", sans-serif;
    transition: var(--transition);
    list-style: none !important;
}

ul {
    list-style: none;
    font-family: "Poppins", sans-serif;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.vendor-space{
    padding-top: 80px;
    padding-bottom: 80px;
}


.section {
    padding: 80px 0;
    position: relative;
}

.center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.bold {
    font-weight: 700;
}

p {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 49, 49, 0.4);
}

.btn-primary:hover {
    background-color: #e60000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 49, 49, 0.6);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    /* backdrop-filter: blur(5px); */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--white);
    margin-left: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background-color: var(--primary);
    padding: 8px 20px;
    border-radius: 4px;
}

.btn-nav:hover {
    background-color: #cc0000;
}

.btn-nav::after {
    display: none;
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px auto;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    padding-top: 80px;
    /* Navbar height */
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 990px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    color: #e0e0e0;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
}

.hero-features i {
    color: var(--primary);
    margin-right: 10px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

/* Search Widget in Hero */
.search-widget {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-box {
    align-items: center;
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
}

.search-icon {
    padding: 0 15px;
    color: var(--text-light);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 10px 20px;
    outline: none;
    font-size: 1rem;
    border: 1px solid #cc0000;
}


.form-control:focus {
    color: var(--bs-body-color);
    background-color: transparent;
    border-color: #86b6fe00;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 109, 253, 0) !important;
}

.btn-search {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-search:hover {
    background: #cc0000;
}

/* Decorative Curve */
.custom-shape-divider-bottom-1689 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1689 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-shape-divider-bottom-1689 .shape-fill {
    fill: #ffffff;
}

/* Section Header Styles */
.section-header {
    margin-bottom: 30px;
}

.branches-section {
    background-image: url(../img/shapes/our-branches.png);
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    bottom: -10px;
    left: 0;
    display: none;
}

.section-header.center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.all-span-tile-before {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background-color: var(--primary);
    padding: 5px 25px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    align-items: center;

}

.all-span-tile-before img {
    width: 20px;
}

.section-title.white {
    color: var(--white);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
}

.section-desc.white {
    color: #e0e0e0;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

/* .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
} */


.about-img img {
    width: 90%;
}

.col-text {
    flex: 1;
    min-width: 300px;
}

.col-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-decoration {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1074&q=80') no-repeat center center/cover;
    /* Placeholder visual */
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    z-index: 10;
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-choose-section {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-card p {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Products Section */
.products-section {
    background-color: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 49, 49, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.8rem;
    transition: var(--transition);
}

.product-card:hover .card-icon {
    background: var(--primary);
    color: var(--white);
}

.product-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Services Section */
.services-section {
    background-color: var(--white);
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background: var(--white);
    border: 1px solid #000;
    border-radius: 20px;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-item img {
    padding: 15px;
}

.service-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}


.service-item h4 {
    padding: 10px 5px;
    font-size: 20px;
}

.service-item img {
    width: 100%;
}

.service-item:hover {
    background: var(--secondary);
    color: var(--white) !important;
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.service-item i {
    color: var(--primary);
    margin-right: 10px;
}

.service-item:hover i {
    color: var(--primary);
    /* Keep icon red even on hover */
}

.service-item:hover h4 {
    color: #fff;
    /* Keep icon red even on hover */
}

/* Help Section */
.help-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1593941707882-a5bba14938c7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1172&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

#oru-process-sec {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/shapes/process-bg.png') !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.reverse {
    flex-direction: row-reverse;
}

.white-text {
    color: #f0f0f0;
}

#services {
    background-image: url(../img/shapes/services-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

.analysis-list {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
}

.analysis-list h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.analysis-list ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.analysis-list ul li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.help-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.big-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Brands Section */
.brands-section {
    background-color: var(--white);
    text-align: center;
}

.brands-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.brand-item {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ccc;
    border: 2px dashed #ccc;
    padding: 20px 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    /* Placeholder for actual logos */
    min-width: 200px;
    min-height: 100px;
}

/* Solutions Section */
.solutions-section {
    background-color: var(--light-gray);
}

.solutions-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.solution-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.solution-card.featured {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.05);
    z-index: 10;
    border: 2px solid var(--primary);
}

.solution-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.solution-card ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.solution-card.featured ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Process Section */
.process-section {
    background-color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #eee;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step:hover .step-number {
    background: var(--primary);
    color: var(--white);
}

.step h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Branches Section */
.branches-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #ddd;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #888;
    position: relative;
    overflow: hidden;
}

.map-placeholder i.fa-map-marked-alt {
    font-size: 5rem;
    margin-bottom: 20px;
}

.branch-search-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 10px;
    width: 80%;
}

.branch-search-card input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 5px;
}

.btn-sm {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 80px 0 20px;
    background-image: url(../img/shapes/process-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: #ffffff;
    margin-top: 15px;
    font-size: 16px;
    text-align: start;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: bold;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-contact p {
    margin-bottom: 15px;
    align-items: center;
    color: #ccc;
}
.footer-loc{
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.vendor-logo img:hover{
    border: 1px solid #e51010;
    border-radius: 12px;
    padding: 10px;
}
.vendor-logo img{
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 12px;
}


.our-prodcuts-imgs img {
    width: 100%;
}

.about-us-content h2 {
    text-align: start;
}

.about-us-content {
    text-align: start !important;
}

.flex-why-choose {
    display: flex;
    justify-content: end;
    gap: 20px;
    align-items: baseline;
}

#rigth-side-only h4 {
    text-align: end;
}

#left-side-only h4 {
    text-align: start;
}

.why-choose-content-icon img {
    width: 60px;
}

#flex-side-reverse {
    flex-direction: row-reverse;
}

.how-we-help-sec-content {
    text-align: start;
}

.red-color-shape {
    position: relative;
}

.red-color-shape img {
    position: absolute;
    top: -145px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 390px;
}

.how-we-help .container {
    max-width: 1450px !important;
    padding: 50px 50px 0px 50px;
    border-radius: 20px;
}

.how-we-help-we-analyze {
    background: #fff;
    padding: 15px 10px;
    border-radius: 10px;
    color: #000;
}

#flex-side-reverse {
    flex-direction: row-reverse;
    justify-content: start !important;
}



.how-we-help-we-analyze p {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    padding-top: 20px;
}

.residential-commercial-solutions-content {
    text-align: start;
}

.residential-commercial-solutions-content h2 {
    text-align: start;
}

.residential-commercial-solutions-content h2 {
    font-size: 36px;
}

.tabs-flex {
    display: flex;
}

.banner-hero-section {
    background: url(../img/banner/banner-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 0px 60px;
}
.contact-page{
    background: url(../img/contact-us/contact-new.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 0px 60px;
}

.product-page{
    background: url(../img/banner/brand-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 0px 60px;
}

.residential-commercial-solutions-list-items li {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.residential-commercial-solutions-inside-img img {
    border-radius: 20px;
    width: 190px;
    border: 2px solid #ffffff;
}

.footer-sec-logo {
    background-color: #ffffff;
    padding: 15px;
    width: 190px;
    border-radius: 20px;
}

.footer-links ul {
    padding-left: 0px;
}



.footer-links a {
    color: #ffffff;
    text-transform: none;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
    text-decoration: none;
}

.footer-bottom p {
    padding-bottom: 0px;
}

.flex-services-sec {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: baseline;
}

.services-section .container {
    max-width: 1305px;
}

.banner-hero-section {
    color: #ffffff;
}
.contact-space{
    padding-top: 80px;
    padding-bottom: 80px;
    color: white;
}
.contact-space a{
    color: inherit;
}
.contact-border{
    border-radius: 10px;
    background-color: white;
    color: black;
}
.contact-flex{
    display: flex;
    justify-content: center;
    padding: 10px;
    align-items: center;
    gap: 10px;
}


/* .banner-hero-section h1,
h3 {
    color: #ffffff !important;
} */

.hero-content {
    text-align: center !important;
    padding: 100px 0px 0px 0px;
}

.navbar-brand .img {
    width: 200px;
}

.banner-flex-point p {
    text-align: start;
    font-size: 16px;
}

.banner-flex-points {
    display: flex;
    gap: 34px;
    justify-content: space-evenly;
}

.banner-flex-point {
    text-align: center;
    text-align: center;
    display: flex;
    align-items: start;
    justify-content: center;
    background: #000;
    padding: 15px 15px 0px 15px;
    border-radius: 20px;
    gap: 15px;
    backdrop-filter: blur(1px) saturate(155%);
    -webkit-backdrop-filter: blur(1px) saturate(155%);
    background-color: #ffffff59;
    border-radius: 12px;
    border: 1px solid rgba(209, 213, 219, 0.3);
}

.products-section {
    background-image: url(../img/shapes/our-products-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.main-product-sec {
    background-color: #000000;
    padding: 30px 10px 20px 20px;
    border-radius: 20px;
    text-align: start;
    backdrop-filter: blur(1px) saturate(155%);
    -webkit-backdrop-filter: blur(1px) saturate(155%);
    background-color: #ffffff26;
    border-radius: 12px;
    border: 1px solid rgba(209, 213, 219, 0.3);
    width: 100%;
}



.navbar-nav li a {
    color: #fff !important;
}

.navbar {
    background-color: transparent !important;
    box-shadow: none !important;
}

.img-bottom-size {
    width: 300px;
    height: 2px;
    color: #fff;
}


.main-product-sec h3 {
    margin: 20px 0px;
    font-size: 24px;
    text-align: start;
    color: #ffffff;
    font-weight: 600;
}

.main-product-sec img {
    width: 250px;
}

.main-product-sec p {
    margin-bottom: 20px;
    color: #f1f1f1;
    margin-bottom: 20px;
    color: #f1f1f1;
    text-align: start;
    font-size: 16px;
}


.our-products-flex {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
}

#products-sec .container {
    max-width: 1450px !important;
    border-radius: 20px;

}

.banner-section .container {
    max-width: 1450px !important;
    border-radius: 20px;
}

.navbar-expand-lg .navbar-collapse {
    display: flex !important;
    justify-content: center !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
}

.section-main-title span {
    font-size: 20px;
    font-weight: 700;
    color: #fc2f2f;
    align-items: center;
    display: flex;
    gap: 10px;
}


.finding-button {
    border: none;
    font-size: 16px;
}

.finding-button {
    height: 46px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;

}

.brands-box img {
    width: 150px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 1px solid #ff3131;

}

.branchs-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 1px solid #ff3131;
}

.branchs-card-img img {
    width: 100%;
    border-radius: 20px;
}

.branchs-card-content {
    text-align: start;
    position: relative;
}

.branchs-card-content h4 {
    position: absolute;
    padding: 10px;
    color: #fff;
    border-radius: 10px 0px 0px 10px;
    background: #ff3131;
    top: -92px;
    left: 206px;
}
.branchs-card-contents h4 {
    position: absolute;
    padding: 10px;
    color: #fff;
    border-radius: 10px 0px 0px 10px;
    background: #ff3131;
    top: 286px;
    left: 258px;
}



.branchs-card-title {
    font-size: 18px;
}

.branchs-card-desc {
    font-size: 16px;
}

.process-section-card {
    background-color: #f1f1f1;
    padding: 30px 10px 5px 10px;
    border-radius: 12px;
    position: relative;
    z-index: 100;
}

.process-flex {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    margin-top: 150px !important;
}


.process-section-card-img {
    position: relative;
}

.process-section-card-img img {
    position: absolute;
    width: 100%;
    bottom: -59px;
    left: 0px;
    z-index: 1;
}

.process-section-card-img img {
    border-radius: 1000px;
    width: 220px;
}

.process-section-card h4 {
    font-size: 22px;
}

#why-choose .container {
    max-width: 1360px !important;
    border-radius: 20px;
    background-color: #000000;
    padding: 80px 0;
    background-image: url(../img/shapes/why-choose-bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.group-of-battery {
    position: relative;
}

.group-of-battery img {
    position: absolute;
    width: 446px;
    top: -120px;
    right: -66px;
}

.oru-process-strigth-content {
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(187deg, rgba(194, 31, 36, 1) 0%, rgba(117, 16, 18, 1) 80%, rgba(44, 14, 15, 1) 100%);
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.oru-process-strigth-contents h4 {
    font-size: 22px;
}

.oru-process-strigth-content-icon img {
    width: 50px;
}

.process-number span {
    font-size: 25px;
    font-weight: 700;
    color: #cc0000;
    background-color: #fff;
    padding: 11px 15px;
    border-radius: 2000px;
    font-family: "Poppins", sans-serif;

}

/* .footer-sec-logo img{
    width: 100px;
} */

.btn-danger {
    font-family: "Poppins", sans-serif !important;
}

.our-process-img {
    position: relative;
}

.our-process-img img {
    position: absolute;
    width: 442px;
}

#inverter-battery-brands-line {
    border-right: 2px solid #fc2f2f;
}

#inverter-battery-brands-line-top {
    border-bottom: 2px solid #fc2f2f;
}

.contact-form label {
  font-size: 16px;
  font-weight: 500;
}

.contact-form .form-control {
  height: auto;
}

.contact-form textarea {
  height: auto;
}
.contact-text{
    text-align: start;
}

.contact-card {
  background:black;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
}
.contact-forms{
    padding-bottom: 80px;
}

.contact-box {
  background: linear-gradient(187deg, rgba(194, 31, 36, 1) 0%, rgba(117, 16, 18, 1) 80%, rgba(44, 14, 15, 1) 100%);
  color: #000;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border-radius: 8px;
  margin-top: 15px;
}
.content-alignment{
    display: flex;
    align-items: start;
    flex-direction: column;
}

.contact-box i {
  font-size: 20px;
  color: white;
}

.contact-box p {
  margin: 0;
  font-size: 15px;
  color: white;
  font-weight: 600;
}

.contact-box a {
  
  color:white !important;
  text-decoration: none;
  text-align: start;
}

.social-icons i {
  background: #c01f24;
  color:white !important ;
  padding: 8px;
  border-radius: 50%;
  margin-right: 8px;
  cursor: pointer;
}
.btn-color{
    background-color: #c01f24;
    border-radius: 7px;
    padding: 10px;
}
.border-btn{
    color: white !important;
}

.flex-content{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 6px;
}
.form-color{
    background-color: #f1f1f1;
    border-radius: 12px;
    padding: 30px;
}
.contact-head{
    margin-bottom: 0px;
}
.title-space-btm{
    padding-bottom: 20px;
    font-size: 38px;
}


.footer-links ul{
    text-align: start;

}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: bold;
    text-align: start;
}

.footer-contact p {
    margin-bottom: 15px;
    align-items: center;
    color: #ffffff;
    text-align: start;
    font-size: 15px;
    font-weight: 600;
}

.footer-bottom p {
    padding-bottom: 0px;
    font-size: 18px;
}



.uparrow{
    background-color: #c01f24;
    color: #fff;
    position: fixed;
    padding: 6px 11px;
    border-radius: 100%;
    right: 20px;
    bottom: 20px;
    z-index: 99;
}