/* ============================================
   TABLE OF CONTENTS
   1. Reset & Base Styles
   2. Navbar Styles
   3. Hero Section Styles
   4. Footer Styles (Priority - Latest)
   5. About Section
   6. Clients/Brands Section
   7. Call to Action
   8. Responsive Styles
============================================ */

/* --------------------------------------------
   1. RESET & BASE STYLES
-------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #74b9ff 0%, #b7faff 40%, #ffeaa7 100%);
}

.main-logo {
    height: 42px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------
   2. NAVBAR STYLES
-------------------------------------------- */
.main-navbar {
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar {
    background: #fff !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08) !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.2px;
    transition: color 0.2s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-links a:hover {
    color: #fff;
}

.nav-item .nav-link {
    font-weight: bold;
}

.active {
    border-bottom: 2px solid #4B7DBD;
}

/* --------------------------------------------
   3. HERO SECTION STYLES
-------------------------------------------- */
.main-hero {
    position: relative;
    min-height: 610px;
    height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background-image: url('../img/hero/hero-5/ChatGPT Image Mar 27, 2026, 12_09_45 PM.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Video styling */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Content above video */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 100%;
    text-align: center;
}

/* Optional dark overlay */
.main-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-text {
    font-size: 25px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1a3a6b;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s;
    text-align: center;
}

.hero-btn:hover {
    background: #0f2a52;
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 480px;
}

/* Hero Gradient highlight */
.hero-title span {
    background: linear-gradient(90deg, #ffd700, #ff9900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Background */
.hero-bg {
    background-image: url('../img/hero/hero-5/ChatGPT Image Mar 27, 2026, 12_09_45 PM.png');
    background-size: cover;
    background-position: center;
    min-height: 420px;
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.enquire-btn {
    display: inline-block;
    padding: 11px 28px;
    background: #1a3a6b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
}

.enquire-btn:hover {
    background: #0f2a52;
}

/* --------------------------------------------
   4. FOOTER STYLES (PRIORITY - LATEST)
-------------------------------------------- */
.footer-contact {
    background-image: url("../img/Golden hour .png");
    background-size: cover;
    background-position: center;
}

.footer-overlay {
    width: 100%;
    height: 100%;
    background: #002244;
    text-align: center;
    padding-top: 30px;
    margin: 0 auto;
}

.footer-overlay h2 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 30px;
}

/* NEW FOOTER STYLES - PRIORITY */
.footer-title {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Inputs - Same width and centered */
.footer-form .form-control {
    height: 50px;
    border-radius: 10px;
    border: none;
    padding: 0 15px;
    font-size: 14px;
    width: 100%;
}

/* Focus effect */
.footer-form .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ff9800;
    border: none;
}

/* CAPTCHA ROW - Desktop: One line */
.captcha-row {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
}

/* CAPTCHA Image Group */
.captcha-image-group {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

/* CAPTCHA Image */
.captcha-image {
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    background: #fff;
    width: auto;
}

/* Refresh Button */
.btn-refresh-captcha {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-refresh-captcha:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(15deg);
}

/* CAPTCHA Input */
.captcha-input {
   /* flex: 1;*/
    height: 50px;
    border-radius: 10px;
    border: none;
    padding: 0 15px;
    font-size: 14px;
    background: white;
    min-width: 150px;
}

.captcha-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ff9800;
}

/* Submit Button */
.request-btn {
    background: #1a3a6b;
    color: white;
    padding: 0 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

.request-btn:hover {
    background: #0f2a52;
    transform: translateY(-2px);
}

/* Alert Messages */
.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 12px 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 14px;
}

.alert-error div {
    margin: 5px 0;
}

/* Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #0f2a52;
    transform: translateY(-3px);
    color: white;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.footer-form-fields {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-form input {
    width: 260px;
    height: 42px;
    border: none;
    border-radius: 8px;
    padding-left: 15px;
    background: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 10px;
    background: rgb(43 49 55);
    border-radius: 6px;
    padding: 10px 20px;
}

.footer-links {
    color: white;
    font-size: 14px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 8px;
}

.footer-social i {
    width: 26px;
    height: 26px;
    background: white;
    color: #2c3e50;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
}

/* --------------------------------------------
   5. ABOUT SECTION
-------------------------------------------- */
.about .content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    
}

.about .content h1 {
    font-size: 1.5rem;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    display: flex;
    align-items: flex-start;
    margin-top: 35px;
}

.about .content ul i {
    flex-shrink: 0;
    font-size: 28px;
    color: #537EBA;
    margin-right: 20px;
}

.about .content ul h5 {
    font-size: 18px;
    font-weight: 700;
}

.about .content ul p {
    font-size: 15px;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

.about2 .content ul li {
    margin-top: 25px !important;
}

.textsection {
    text-align: center;
    margin: 20px;
}

.themecolor {
    background: linear-gradient(135deg, rgb(22, 53, 99), rgb(31, 122, 255)) !important;
}

.padding-top-0 {
    padding-top: 0 !important;
}

.subsections ul {
    list-style-type: disc !important;
    line-height: 2;
}

.subsections p {
    margin-top: 20px !important;
    margin-bottom: 10px !important;
}

/* Hero Section */
.heros {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 180px 0 40px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.heros .hero-bg img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.heros .hero-bg::before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 15%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.heros .container {
    position: relative;
    z-index: 3;
}

.heros h3 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

.heros h1 span {
    color: var(--accent-color);
}

.heros p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.heros .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.heros .btn-get-started:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------
   6. CLIENTS/BRANDS SECTION
-------------------------------------------- */
.clients .clients-wrap {
    border-top: 1px solid color-mix(in srgb, #444444, transparent 85%);
    border-left: 1px solid color-mix(in srgb, #444444, transparent 85%);
}

.clients .client-logo {
    background-color: var(--surface-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid color-mix(in srgb, #444444, transparent 85%);
    border-bottom: 1px solid color-mix(in srgb, #444444, transparent 85%);
    overflow: hidden;
	padding: .2rem !important;
}


.clients .client-logo:hover img {
    transform: scale(1.1);
}

.brands-box {
    border-radius: 32px;
    padding: 36px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 32px;
}
/* Desktop & Laptop Only */
@media only screen and (min-width: 992px) {

    .client-logo-img.img-fluid {
        width: 75% !important;
      
    }

}

.brands-wrapper {
    overflow: hidden;
    width: 100%;
}

.brands-track {
    display: flex;
    padding-left: 50px;
    width: max-content;
    gap: 60px;
    animation: scrollBrands 25s linear infinite;
    align-items: center;
}

.brand {
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.25s;
}

.brand:hover {
    transform: scale(1.08);
    color: #ffcc88;
    text-shadow: 0 0 10px rgba(255, 200, 100, 0.5);
}

.brand img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

.brand.longi {
    color: #ffc285;
}

.brand.rec {
    color: #ffd4a3;
}

.brand.solar {
    color: #ffcf99;
}

.brand.fronius {
    color: #ffc68a;
    font-style: italic;
}

.luminous-badge {
    background: linear-gradient(135deg, #ff9f4a, #ff6b00);
    border-radius: 35px;
    padding: 10px 22px;
    display: inline-block;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.4);
}

/* --------------------------------------------
   7. CALL TO ACTION
-------------------------------------------- */
.call-to-action {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
/*
.call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}
*/

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.call-to-action p {
    color: #fff;
	    font-size: 18px;
}

.call-to-action .cta-btn {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: #fff;
	background:      linear-gradient(135deg, rgb(22, 53, 99), rgb(31, 122, 255));
	font-weight: bold;
	font-size: 18px;
	text-decoration:none;
}

.call-to-action .cta-btn:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

/* --------------------------------------------
   8. RESPONSIVE STYLES
-------------------------------------------- */
/* Tablet Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-text {
        font-size: 16px;
    }

    .captcha-row {
        gap: 12px;
    }

    .captcha-image {
        height: 45px;
    }

    .btn-refresh-captcha {
        width: 45px;
        height: 45px;
    }

    .captcha-input {
        height: 45px;
        min-width: 120px;
    }

    .request-btn {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .heros .hero-img {
        max-width: 600px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content-wrapper {
        text-align: center;
        margin: 0 auto;
    }

    .hero-title {
        font-size:35px;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-btn {
       /* width: 100%;*/
        text-align: center;
    }

    .footer-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .footer-form .form-control {
        height: 45px;
        font-size: 13px;
    }

    /* Stack on mobile */
    .captcha-row {
        flex-direction: column;
        gap: 12px;
    }

    .captcha-image-group {
        width: 100%;
        justify-content: center;
    }

    .captcha-image {
        height: 45px;
        flex: 1;
    }

    .btn-refresh-captcha {
        width: 45px;
        height: 45px;
    }

    .captcha-input {
        width: 100%;
        min-width: auto;
    }

    .request-btn {
        width: 100%;
        padding: 0 20px;
    }

    .footer-form-fields {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .footer-overlay h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .heros h3 {
        font-size: 28px;
        line-height: 36px;
    }

    .heros p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .heros .btn-get-started,
    .heros .btn-watch-video {
        font-size: 13px;
    }

}

/* Small Mobile */
@media (max-width: 576px) {
    .footer-contact {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-overlay h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .captcha-image {
        height: 40px;
    }

    .btn-refresh-captcha {
        width: 40px;
        height: 40px;
    }

    .btn-refresh-captcha i {
        font-size: 12px;
    }

    .footer-form .form-control {
        height: 42px;
    }

    .captcha-input {
        height: 42px;
    }

    .request-btn {
        height: 42px;
        font-size: 13px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-form-fields input {
        padding: 0.7rem 0.875rem;
        font-size: 0.9rem;
    }

    .alert-success,
    .alert-error {
        font-size: 0.85rem;
        padding: 0.6rem 0.875rem;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .footer-overlay h2 {
        font-size: 1.35rem;
    }

    .footer-form-fields input {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }

    .request-btn {
        padding: 0.6rem 0.875rem;
        font-size: 0.85rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .footer-form-fields {
        gap: 1.5rem;
    }

    .footer-form-fields input {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Custom Navbar */
.custom-navbar {
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Phone Field */
.phone-field {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding-left: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.phone-field input {
    border: none;
    width: 230px;
    outline: none;
}

.phone-field i {
    margin-right: 8px;
    color: #333;
}

p .head {
    font-size: 42px !important;
}
.leftblue
{
	color: #ffffff !important;
}
.rightblue
{
	color: #ffffff !important;
}
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #163563, #1f7aff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.scroll-top:hover {
    background: #d89c1f;
    transform: translateY(0) scale(1.1);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.value-point p 
{
	margin-bottom: 0 !important;
}
.btn-theme
{
	background: linear-gradient(135deg, rgb(22, 53, 99), rgb(31, 122, 255)) !important;
	color:#ffffff !important;
	    font-weight: bold !important;
	  border-radius: .65rem !important;

}

.section-title {
    font-size: 30px !important;
}

@media (max-width: 768px) {
    
    .section-title {
    font-size: 24px !important;
}

.pad30{
    padding:30px !important;
}

.mbottom30{
   margin-bottom: 30px !important; 
}
    
}

.product-image img{
    min-height:180px !important;
    
}

.product-title{
    min-height:80px !important;
    
}

.margin40{
    margin-top: 40px !important;
}

.feature-card.lime {
    border-bottom: 4px solid #174180 !important;
}

.linkwhite a{
    color:#fff !important;
}
.linkwhite a:hover{
    color:#fff !important;
}

.block{
    display:block !important;
}