/* topbar start */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

/* Topbar (Smaller Height) */
.topbar {
    background: #f74b00;
    color: #fff;
    font-size: 13px;
}

.topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left Contact */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tb-contact {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 16px;
    transition: 0.25s ease;
}

.tb-contact i {
    font-size: 13px;
    color: #fff;
}

.tb-contact:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* Right Social Icons */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-btn {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: 0.25s ease;
}

.fb {
    background: #1877f2;
}

.ig {
    background: linear-gradient(45deg,
            #feda75,
            #fa7e1e,
            #d62976,
            #962fbf);
}

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 640px) {

    /* Email Hide on Mobile */
    .topbar-left a:first-child {
        display: none;
        /* Hides email */
    }

    .topbar-inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 6px 14px;
    }

    .topbar-left {
        gap: 0;
    }

    .tb-contact {
        padding: 0;
        font-size: 15px;
    }
}

/* topbar end */

/* navbar start */
.navbar {
    background: #ffffff !important;
    padding: 16px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.navbar-nav .nav-link {
    color: #f74b00 !important;
    font-weight: 700;
    font-size: 18px;
    padding: 8px 8px !important;
    /* Reduced horizontal padding */
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}


.navbar-nav .nav-link:hover {
    color: #000 !important;
    transform: translateY(-3px);
}

/* Button */
.quote-btn {
    background: linear-gradient(45deg, #f74b00, #ff7a32);
    color: #fff !important;
    padding: 12px 25px;
    /* Reduced horizontal padding */
    margin-left: 6px;
    /* Reduced space from nav links */
    font-size: 18px;
    font-weight: 700;
    border-radius: 40px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s ease-in-out;
    box-shadow: 0 4px 12px rgba(247, 75, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.quote-btn i {
    font-size: 20px;
}

.quote-btn:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(45deg, #000, #333);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.quote-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-45deg);
    transition: 0.5s;
}

.quote-btn:hover::after {
    left: 100%;
}

.dropdown-menu {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.dropdown-item {
    padding: 12px 22px;
    font-weight: 600;
    font-size: 16px;
    color: #f74b00;
    transition: 0.3s ease;
}

.dropdown-item:hover {
    background: #f74b0020;
    color: #000;
}

.navbar-brand img {
    height: 55px;
}

.navbar-toggler {
    border-color: #f74b00;
}

.navbar-toggler i {
    color: #f74b00;
    font-size: 26px;
}

/* navbar end */

/* video banner start */


/* video banner end */

/* welcome start */
.energy-animated-heading {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #f74b00;
    text-align: center;
    letter-spacing: 2px;
    margin: 20px 0;
    text-transform: uppercase;

    /* Animation */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease-out forwards,
        glow 2s infinite alternate ease-in-out 1.2s;
}

/* Fade-up animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Soft glowing animation */
@keyframes glow {
    from {
        text-shadow: 0 0 0px #f74b00;
    }

    to {
        text-shadow: 0 0 18px #f74b00;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .energy-animated-heading {
        font-size: 13px;
    }
}

/* welcome end */


/* about start */
/* NEW ABOUT SECTION */
.energy-info-area {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5ee, #ffe2d5);
    position: relative;
    overflow: hidden;
}

.energy-info-area::before,
.energy-info-area::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(247, 75, 0, 0.15);
    z-index: 0;
}

.energy-info-area::before {
    width: 280px;
    height: 280px;
    top: -80px;
    left: -80px;
}

.energy-info-area::after {
    width: 350px;
    height: 350px;
    bottom: -100px;
    right: -100px;
}

.energy-wrapper {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    z-index: 2;
    position: relative;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.energy-text-box {
    flex: 1 1 450px;
    animation: slideLeftAnim 1.2s ease-out forwards;
    opacity: 0;
    text-align: center;
}

@media (min-width: 992px) {
    .energy-text-box {
        text-align: left;
    }
}

.energy-small-title {
    font-size: 22px;
    font-weight: 700;
    color: #f74b00;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.energy-main-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #0a1a3c;
    margin-bottom: 20px;
}

.energy-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.energy-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #f74b00;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(247, 75, 0, 0.35);
    transition: 0.3s;
}

.energy-btn:hover {
    background: #d63f00;
    transform: translateY(-4px);
}

/* RIGHT IMAGE */
.energy-image-box {
    flex: 1 1 450px;
    text-align: center;
    animation: slideRightAnim 1.2s ease-out forwards;
    opacity: 0;
}

.energy-photo {
    width: 75%;
    max-width: 380px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
    transition: 0.4s;
}

.energy-photo:hover {
    transform: scale(1.04);
}

/* ANIMATIONS */
@keyframes slideLeftAnim {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRightAnim {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .energy-main-title {
        font-size: 36px;
    }

    .energy-photo {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .energy-info-area {
        padding: 60px 0;
    }

    .energy-main-title {
        font-size: 30px;
    }

    .energy-description {
        font-size: 16px;
    }

    .energy-photo {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .energy-main-title {
        font-size: 26px;
    }

    .energy-small-title {
        font-size: 18px;
    }

    .energy-btn {
        padding: 12px 28px;
        font-size: 16px;
    }
}

/* about end */

/* why choose us start */
.advantage-section {
    padding: 80px 5%;
    background: #fff;
    text-align: center;
}

.advantage-subtitle {
    color: #f74b00;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.advantage-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0a1a3c;
}

.advantage-text {
    font-size: 16px;
    margin-bottom: 50px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.advantage-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.advantage-card {
    background: linear-gradient(145deg, #fce8df, #fff0e5);
    flex: 0 1 280px;
    padding: 30px 25px;
    border-radius: 25px;
    text-align: left;
    transition: all 0.5s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    animation: cardFade 0.7s forwards;
}

.advantage-card:nth-child(1) {
    animation-delay: 0.1s;
}

.advantage-card:nth-child(2) {
    animation-delay: 0.3s;
}

.advantage-card:nth-child(3) {
    animation-delay: 0.5s;
}

.advantage-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.advantage-card::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: rgba(247, 75, 0, 0.03);
    transform: rotate(45deg);
    top: -10%;
    left: -10%;
    border-radius: 50%;
    z-index: 0;
    transition: all 0.5s ease;
}

.advantage-card:hover::before {
    transform: rotate(0deg) scale(1.1);
    background: rgba(247, 75, 0, 0.06);
}

.advantage-card i {
    font-size: 42px;
    color: #f74b00;
    background: #fff;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    animation: iconJump 1.2s infinite alternate;
}

.advantage-card:hover i {
    transform: scale(1.3) rotate(10deg);
}

.advantage-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a1a3c;
}

.advantage-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@keyframes cardFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconJump {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .advantage-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* why choose us end */

/* product section start */


/* PRODUCTS SECTION */
.products-section {
    padding: 80px 5%;
    background: #fff8f5;
    text-align: center;
}

.products-section h3 {
    color: #f74b00;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.products-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0a1a3c;
}

.products-section p {
    font-size: 16px;
    margin-bottom: 50px;
    color: #555;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.product-card {
    background: linear-gradient(145deg, #fff0e5, #fce8df);
    border-radius: 25px;
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(40px);
    animation: productFade 0.7s forwards;
}

.product-card img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.product-card h5 {
    font-weight: 700;
    color: #0a1a3c;
}

.products-section .btn-view {
    display: inline-block;
    padding: 12px 30px;
    background: #f74b00;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.products-section .btn-view:hover {
    background: #e63e00;
    transform: scale(1.05);
}

@keyframes productFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* product section end */

/* services start */
/* ===================== SERVICES SECTION ====================== */
.services-section {
    background: linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
    padding: 80px 5%;
    font-family: "Poppins", sans-serif;
    color: #333;
    position: relative;
    overflow: hidden;
}

.services-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(247, 75, 0, 0.05);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 0;
}

.services-subtitle {
    color: #f74b00;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 16px;
}

.services-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0a1a3c;
}

.services-text {
    font-size: 17px;
    color: #555;
    max-width: 750px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.service-card {
    background: linear-gradient(145deg, #fff0e5, #fce8df);
    border-radius: 25px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(50px);
    animation: serviceFade 0.7s forwards;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05) rotate(-1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.service-card i {
    color: #f74b00;
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: iconBounce 1.5s infinite alternate;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.3) rotate(15deg);
}

.service-card h5 {
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 12px;
    font-size: 20px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

@keyframes serviceFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconBounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 20px;
    }
}

/* services end */

/* testimonial start */
/* ===================== TESTIMONIAL SECTION ====================== */
.testimonial-section {
    position: relative;
    background: linear-gradient(135deg, #fff0e5, #fce8df);
    padding: 100px 5%;
    font-family: "Poppins", sans-serif;
    text-align: center;
    overflow: hidden;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(247, 75, 0, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.testimonial-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(0, 26, 60, 0.05);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    z-index: 0;
}

.testimonial-subtitle {
    position: relative;
    color: #f74b00;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    z-index: 1;
    font-size: 16px;
}

.testimonial-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #0a1a3c;
    z-index: 1;
    position: relative;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px 25px;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s forwards;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    border: 3px solid #f74b00;
}

.testimonial-card h5 {
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    position: relative;
}

.testimonial-card p::before {
    content: "“";
    font-size: 40px;
    color: #f74b00;
    position: absolute;
    left: -20px;
    top: -10px;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* testimonial end */

/* banner start */
/* ===================== CTA SECTION ====================== */
.cta-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    padding: 100px 5%;
    width: 100%;
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #f74b00, #ff9a56);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

/* Animated Gradient Background */
.cta-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #f74b00, #ff9a56, #fcd3b6, #f74b00);
    background-size: 400% 400%;
    animation: bgShift 15s ease infinite;
    border-radius: 25px;
    opacity: 0.3;
    z-index: 0;
}

@keyframes bgShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Subtitle and Title */
.cta-sub {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 8px rgba(255, 255, 255, 0.4);
}

.cta-head {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 12px rgba(255, 255, 255, 0.3);
}

.cta-desc {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Neon Glowing Button */
.cta-action {
    display: inline-block;
    background: #fff;
    color: #f74b00;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.cta-action:hover {
    background: #fff4eb;
    color: #f74b00;
    transform: scale(1.1) rotate(-1deg);
    box-shadow: 0 10px 35px rgba(247, 75, 0, 0.6),
        0 0 40px rgba(255, 154, 86, 0.8),
        0 0 60px rgba(255, 200, 150, 0.6);
}

/* Decorative Floating Shapes */
.float-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
    animation: floatAnim 8s ease-in-out infinite;
}

.float1 {
    width: 100px;
    height: 100px;
    top: -30px;
    left: -50px;
}

.float2 {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 50px;
}

.float3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 90%;
    transform: translate(-50%, -50%);
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

/* Sparkles */
.cta-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    z-index: 1;
    animation: sparkleAnim 2s infinite;
}

.spark1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.spark2 {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.spark3 {
    top: 40%;
    left: 50%;
    animation-delay: 0.5s;
}

@keyframes sparkleAnim {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .cta-head {
        font-size: 28px;
    }

    .cta-desc {
        font-size: 15px;
    }

    .cta-action {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* banner end */


/* blog start */
.blog-wrapper {
    padding: 80px 5%;
    font-family: "Poppins", sans-serif;
    background: #f8f8f8;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #f74b00;
    margin-bottom: 15px;
    position: relative;
}

.blog-header p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.blog-cards .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
    background: #fff;
}

.blog-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(247, 75, 0, 0.2);
}

.blog-cards .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-cards .card:hover img {
    transform: scale(1.1);
}

.card-body {
    padding: 25px;
    text-align: left;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #23435c;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.card-title:hover {
    color: #f74b00;
}

.card-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.read-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #f74b00;
    color: #fff;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.read-btn:hover {
    background: #ff9a56;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .blog-header h2 {
        font-size: 28px;
    }

    .card-body {
        padding: 20px;
    }
}

/*blog end  */

/* client start */
/* ===================== CLIENTS SECTION ====================== */
.clients-section {
    position: relative;
    background: linear-gradient(135deg, #fff0e5, #fce8df);
    padding: 140px 5%;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
    text-align: center;
    transition: background 3s ease;
}

/* Animated gradient background */
@keyframes bgGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.clients-section {
    background: linear-gradient(135deg, #fff0e5, #fce8df, #ffe6d5, #fce8df);
    background-size: 400% 400%;
    animation: bgGradient 20s ease infinite;
}

/* Heading */
.clients-subtitle {
    position: relative;
    color: #f74b00;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
    z-index: 1;
}

.clients-title {
    position: relative;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #0a1a3c;
    z-index: 1;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}

/* Logos */
.clients-logos {
    position: relative;
    z-index: 1;
}

.clients-logos img {
    height: 100px;
    width: auto;
    transition: all 0.5s ease;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.clients-logos img:hover {
    transform: scale(1.2) rotate(-2deg);
    box-shadow: 0 20px 40px rgba(247, 75, 0, 0.4);
    filter: drop-shadow(0 0 10px rgba(247, 75, 0, 0.5));
}

/* Decorative floating shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
    animation: floatShape 10s ease-in-out infinite;
    filter: blur(3px);
}

.shape1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation-duration: 12s;
}

.shape2 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    right: 20%;
    animation-duration: 8s;
}

.shape3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 80%;
    animation-duration: 10s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(45deg);
    }
}

/* Sparkles */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 1;
    animation: sparkleAnim 2s infinite;
    filter: blur(1px);
}

.sparkle1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle2 {
    top: 60%;
    left: 75%;
    animation-delay: 1s;
}

.sparkle3 {
    top: 40%;
    left: 50%;
    animation-delay: 0.5s;
}

@keyframes sparkleAnim {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .clients-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .clients-logos img {
        height: 60px;
    }
}

/* cleint end */

/* banner start */
/* ================= SOLAR LITHIUM BANNER ================= */
.sl-banner {
    position: relative;
    background-image: url("images/bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 20px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
    border-radius: 20px;
    text-align: center;

}

/* Dark overlay for text readability */
.sl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(247, 75, 0, 0.4);
    border-radius: 20px;
    z-index: 0;
}

.sl-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.sl-text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.sl-buttons .sl-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    margin: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.sl-btn-enquire {
    background: #f74b00;
    color: #fff;
    box-shadow: 0 5px 15px rgba(247, 75, 0, 0.4);
}

.sl-btn-enquire:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(247, 75, 0, 0.6);
}

.sl-btn-quote {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.sl-btn-quote:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Floating shapes */
.sl-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
    animation: sl-float 8s ease-in-out infinite;
}

.sl-shape1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
}

.sl-shape2 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    right: 15%;
}

.sl-shape3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 10%;
}

@keyframes sl-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

@media (max-width: 768px) {
    .sl-title {
        font-size: 28px;
    }

    .sl-text {
        font-size: 16px;
    }

    .sl-buttons .sl-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* banner end */

/* footer start */
/* ================= FOOTER START ================= */

.pv-footer {
    background: #f74b00;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

/* Links */
.pv-footer-links li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
    font-size: 15px;
}

.pv-footer-links li a:hover {
    color: #ffffff;
    margin-left: 5px;
}

/* Contact List */
.pv-footer-contact li {
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 15px;
}

/* =============== 3D SOCIAL ICONS =============== */
.pv-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    text-decoration: none;
    font-size: 20px;

    background: linear-gradient(145deg, #f74b00, #d44200);
    color: #ffffff;

    /* 3D Shadow */
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.5),
        -6px -6px 12px rgba(255, 180, 120, 0.2);

    transition: 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Gloss Effect */
.pv-social-icon::after {
    content: "";
    position: absolute;
    width: 130%;
    height: 130%;
    background: rgba(255, 255, 255, 0.35);
    top: -120%;
    left: -120%;
    transform: rotate(45deg);
    transition: 0.6s;
}

.pv-social-icon:hover::after {
    top: 120%;
    left: 120%;
}

/* Hover Pop */
.pv-social-icon:hover {
    transform: translateY(-6px) scale(1.12);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.55),
        -10px -10px 20px rgba(255, 200, 150, 0.25);

    background: linear-gradient(145deg, #ffffff, #ffe6d4);
    color: #222;
}

/* Responsive */
@media (max-width: 767px) {

    .pv-footer .col-md-4,
    .pv-footer .col-md-2,
    .pv-footer .col-md-3 {
        text-align: center;
    }

    .pv-footer p,
    .pv-footer-contact li,
    .pv-footer-links li a {
        font-size: 14px;
    }

    .pv-footer-social {
        justify-content: center !important;
        margin-top: 15px;
    }

    .pv-social-icon {
        margin-right: 8px;
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    h3,
    h5 {
        font-size: 18px;
    }
}

@media (max-width: 991px) {

    .pv-footer .col-md-4,
    .pv-footer .col-md-2,
    .pv-footer .col-md-3 {
        margin-bottom: 25px;
    }
}

/* ================= FOOTER END ================= */
/* footer end */

/* about page start */
/* ABOUT SECTION */
.pvtek-about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f0f4f9);
}

/* IMAGE */
.pvtek-about-image img {
    border-radius: 15px;
    border: 4px solid rgba(247, 75, 0, 0.4);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.pvtek-about-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
}

/* TITLES */
.pvtek-small-title {
    font-size: 20px;
    font-weight: 700;
    color: #f74b00;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pvtek-main-title {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.3;
    color: #0a1a3c;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.pvtek-description {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 30px;
}

/* FEATURE LIST */
.pvtek-features li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pvtek-features i {
    color: #f74b00;
    font-size: 22px;
}

/* ANIMATION */
.pvtek-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: pvtekFadeIn 1s ease-out forwards;
}

@keyframes pvtekFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pvtek-main-title {
        font-size: 25px;
    }
}

/* FEATURES SECTION */
.pvtek-features-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.pvtek-features-small-title {
    font-size: 20px;
    font-weight: 700;
    color: #f74b00;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pvtek-features-main-title {
    font-size: 35px;
    font-weight: 800;
    color: #0a1a3c;
    margin-bottom: 15px;
}

.pvtek-features-description {
    font-size: 16px;
    color: #222;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.pvtek-feature-icon {
    font-size: 40px;
    color: #f74b00;
}

.pvtek-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a1a3c;
}

.pvtek-feature-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.pvtek-feature-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

.pvtek-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: pvtekFadeIn 1s ease-out forwards;
}

@keyframes pvtekFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* about page end */

/* process start */

/* ================= PROCESS SECTION ================= */
.pvtek-process-section {
    padding: 80px 0;
    background: #eef3f9;
}

.pvtek-process-small-title {
    font-size: 20px;
    font-weight: 700;
    color: #f74b00;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pvtek-process-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a1a3c;
    margin-bottom: 15px;
}

.pvtek-process-description {
    font-size: 16px;
    color: #222;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.pvtek-step-card {
    border-radius: 15px;
    padding: 40px 20px 30px 20px;
    background: linear-gradient(135deg, #ffffff, #fdfdfd);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.pvtek-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pvtek-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #f74b00;
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pvtek-process-icon {
    font-size: 42px;
    color: #f74b00;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.pvtek-step-card:hover .pvtek-process-icon {
    transform: rotate(15deg) scale(1.2);
}

.pvtek-process-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 8px;
}

.pvtek-process-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Fade-in animation */
.pvtek-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: pvtekFadeIn 1s ease-out forwards;
}

/* Animation delays using nth-child */
.pvtek-fade-in:nth-child(1) {
    animation-delay: 0s;
}

.pvtek-fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.pvtek-fade-in:nth-child(3) {
    animation-delay: 0.4s;
}

.pvtek-fade-in:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes pvtekFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* process end */

/* banner start */
/* ================= CTA SECTION ================= */
.pvtek-cta-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(135deg, #f74b00, #ff944d);
    color: #fff;
    text-align: center;
}

/* Animated background circles */
.pvtek-cta-section::before,
.pvtek-cta-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: float 10s infinite alternate;
    z-index: 0;
}

.pvtek-cta-section::before {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

.pvtek-cta-section::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
    animation-duration: 12s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(45deg);
    }
}

/* Text animation */
.pvtek-cta-small-title,
.pvtek-cta-main-title,
.pvtek-cta-description,
.pvtek-cta-btn {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: pvtekFadeIn 1s forwards;
}

.pvtek-cta-small-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    animation-delay: 0s;
}

.pvtek-cta-main-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    animation-delay: 0.2s;
}

.pvtek-cta-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
    animation-delay: 0.4s;
}

.pvtek-cta-btn {
    display: inline-block;
    background-color: #fff;
    color: #f74b00;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease, box-shadow 0.3s ease;
    animation-delay: 0.6s;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.pvtek-cta-btn:hover {
    background-color: #ffe6d1;
    color: #f74b00;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes pvtekFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* banner end */

/* breadcrumb start */

/* ===== Breadcrumb Banner ===== */
.contact-banner {
    position: relative;
    background: url("images/bg.jpg") center/cover no-repeat;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeIn 1s ease forwards;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    animation: fadeIn 1.2s ease forwards;
}

.banner-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 10px 0;
    letter-spacing: 1px;
    color: #fff;
}

.banner-overlay h1 span {
    color: #fff;
}

.breadcrumb {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    margin: 0 6px;
    color: #fff;
}

/* breadcrumb end */

/* testimonial start */
/* ================= Testimonial Section ================= */
.pvtek-testimonial-section {
    padding: 100px 0;
    text-align: center;
    font-family: "Poppins", sans-serif;
    background: #f7f9fc;
    color: #0a1a3c;
}

.pvtek-testimonial-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pvtek-testimonial-section p.pvtek-testimonial-subtitle {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #555;
}

/* Text Testimonial Cards */
.pvtek-testimonial-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 15px;
    height: 100%;
}

.pvtek-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pvtek-testimonial-card .pvtek-client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.pvtek-testimonial-card .pvtek-client-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.pvtek-testimonial-card .pvtek-client-position {
    font-size: 14px;
    color: #f74b00;
    margin-bottom: 15px;
}

.pvtek-testimonial-card .pvtek-testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Section CTA */
.pvtek-testimonial-cta {
    margin-top: 50px;
}

.pvtek-testimonial-cta a {
    display: inline-block;
    background-color: #f74b00;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pvtek-testimonial-cta a:hover {
    background-color: #ff944d;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .pvtek-testimonial-card {
        margin: 20px auto;
    }
}

/* testimonial end */

/* client start */
/* TESTIMONIAL HEADING */
.testimonial-subtitle {
    position: relative;
    color: #f74b00;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    z-index: 1;
    font-size: 16px;
}

.testimonial-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #0a1a3c;
    z-index: 1;
    position: relative;
}

/* HEADER */
.oc-head-wrap {
    text-align: center;
    padding: 100px 20px 40px;
    animation: fadeIn 1.2s ease;
}

.oc-head-wrap h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, #ff5f00, #ff9d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.oc-head-wrap p {
    font-size: 17px;
    max-width: 700px;
    margin: auto;
    color: #444;
}

/* CLIENT CARD */
.oc-card-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 25px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
    text-align: center;
    transition: 0.4s ease;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oc-card-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.oc-card-box img {
    height: 110px;
    width: 100%;
    object-fit: contain;
    transition: 0.35s ease;
}

.oc-card-box:hover img {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* client end */


/* contact start */
/* HEADER */
.contact-header {
    text-align: center;
    padding: 80px 20px 30px;
    animation: fadeDown 1s ease;
}

.contact-header h5 {
    color: #f74b00;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0a1a3c;
}

/* CONTACT INFO CARDS */
.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

.contact-card:hover {
    background: #f74b00;
    color: #fff;
    transform: translateY(-10px);
}

.contact-card i {
    font-size: 40px;
    color: #f74b00;
    transition: 0.3s;
}

.contact-card:hover i {
    color: #fff;
}

.contact-card h4 {
    margin-top: 15px;
    font-weight: 700;
}

/* FORM */
.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
}

.form-control {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #f74b00;
    box-shadow: 0 0 8px rgba(247, 75, 0, 0.3);
}

.submit-btn {
    background: #f74b00;
    color: #fff;
    font-size: 18px;
    padding: 12px 28px;
    border-radius: 10px;
    border: none;
    transition: 0.3s;
    font-weight: 600;
}

.submit-btn:hover {
    background: #d54300;
}

/* ANIMATIONS */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* contact end */

/* solar panel start */
/* PRODUCT DETAILS */
.product-detail {
    padding: 60px 20px;
}

.product-detail .main-img {
    border-radius: 20px;
    width: 100%;
    object-fit: contain;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
}

.product-detail .main-img:hover {
    transform: scale(1.05);
}

.product-info h2 {
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 20px;
}

.product-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.product-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.product-info ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    color: #444;
}

.product-info ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #f74b00;
}

.quote-btn {
    background: #f74b00;
    color: #fff;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.quote-btn:hover {
    background: #d54300;
    transform: scale(1.05);
}

/* PRODUCT SPECIFICATIONS TABLE */
.product-specs {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    font-family: "Poppins", sans-serif;
}

.product-specs th,
.product-specs td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}

.product-specs th {
    background: #f74b00;
    color: #fff;
    font-weight: 700;
}

.product-specs tr:nth-child(even) {
    background: #f9f9f9;
}

.product-specs tr:hover {
    background: #ffe8dc;
}

.product-specs td[colspan="2"] {
    background: #f2f2f2;
    font-weight: 700;
}

/* solar panel end */


/* fixed buton start */
.fixed-buttons {
    position: fixed;
    left: 20px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.fixed-buttons a img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
    transition: 0.3s ease;
}

.fixed-buttons a img:hover {
    transform: scale(1.1);
}

/* fixed button end */