/* Modern Color Scheme */

:root {
    --primary-color: #28a745;
    --secondary-color: #218838;
    --accent-color: #1e7e34;
    --light-gray: #f8fafc;
    --dark-gray: #1e293b;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --primary-green: #2d5a27;
    --secondary-green: #4a7c59;
    --light-green: #8bc34a;
    --accent-green: #66bb6a;
    --dark-green: #1b5e20;
    --text-dark: #2e7d32;


    --primary-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --secondary-gradient: linear-gradient(135deg, #28a745 0%, #198754 100%);
    --success-gradient: linear-gradient(135deg, #20c997 0%, #0dcaf0 100%);
    --warning-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}


/* Global Styles */

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
    background: var(--light-gray);
}

.translate {
    top: 0 !important;
}


/* Glassmorphism Card */

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}


/* Hero Section */

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #000428, #004e92);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 0.5s ease;
    filter: brightness(0.6);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}


/* Floating Cards */

.floating-cards {
    position: relative;
    height: 600px;
    perspective: 2000px;
}

.card-item {
    position: absolute;
    width: 300px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-item:hover::before {
    opacity: 1;
}

.card-item:nth-child(1) {
    top: 0;
    left: 15%;
    transform: rotate(-15deg) translateZ(0);
}

.card-item:nth-child(2) {
    top: 50px;
    right: 5%;
    transform: rotate(5deg) translateZ(100px);
}

.card-item:nth-child(3) {
    bottom: 0;
    left: 25%;
    transform: rotate(10deg) translateZ(50px);
}

.card-item:hover {
    transform: rotate(0) scale(1.1) translateZ(150px) !important;
    z-index: 10;
}

.card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-item:hover img {
    transform: scale(1.2);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-item:hover .card-content {
    transform: translateY(0);
}

.card-content h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}


/* Navigation */

.navbar {
    transition: all 0.3s ease;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    /* backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); */
    background-color: transparent;
}


/* Logo Styles */

.logo-wrapper {
    text-align: left;
}

.logo-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 2px !important;
    background: linear-gradient(135deg, #4f46e5 0%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-sub {
    background: linear-gradient(135deg, #3730a3 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
    font-weight: 500;
}


/* Not scrolled state - white text */

.navbar:not(.scrolled) .logo-wrapper h2 {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar:not(.scrolled) .text-gradient-sub {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Scrolled state - gradient text */

.navbar.scrolled .logo-wrapper h2 {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar.scrolled .text-gradient-sub {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Hover effect */

.navbar-brand:hover .logo-wrapper h2 {
    transform: translateY(-1px);
    transition: transform 0.3s ease;
}

.navbar-brand:hover .text-gradient-sub {
    opacity: 1;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem !important;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}


/* Not scrolled state - white text */

.navbar:not(.scrolled) .nav-link {
    color: #ffffff !important;
}

.navbar:not(.scrolled) .navbar-brand {
    color: #ffffff !important;
}

.navbar:not(.scrolled) .navbar-toggler-icon {
    background-color: #ffffff;
}

.navbar:not(.scrolled) .navbar-toggler-icon::before,
.navbar:not(.scrolled) .navbar-toggler-icon::after {
    background-color: #ffffff;
}


/* Scrolled state - dark text */

.navbar.scrolled .nav-link {
    color: var(--dark-gray) !important;
}

.navbar.scrolled .navbar-brand {
    color: var(--dark-gray) !important;
}

.navbar.scrolled .navbar-toggler-icon {
    background-color: var(--dark-gray);
}

.navbar.scrolled .navbar-toggler-icon::before,
.navbar.scrolled .navbar-toggler-icon::after {
    background-color: var(--dark-gray);
}


/* Initial state - white text */

.navbar-brand,
.nav-link {
    color: #ffffff !important;
    transition: color 0.3s ease;
}


/* Hover effects */

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
    left: 10%;
}


/* Mobile navigation */

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    bottom: -6px;
}


/* Mobile menu color adjustments */

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .navbar:not(.scrolled) .navbar-collapse {
        background: rgba(0, 0, 0, 0.8);
    }

    .navbar.scrolled .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
    }

    .nav-link {
        padding: 0.5rem 1rem !important;
    }
}


/* Buttons */

.btn {
    position: relative;
    padding: 1rem 2.5rem;
    font-weight: 500;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 50px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}


/* Scroll Down Animation */

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-down a {
    width: 40px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    text-decoration: none;
}

.scroll-down span {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: scrollDown 1.5s infinite;
    margin-bottom: 8px;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}


/* About Section */

.about-section {
    background: #eaefeb;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover::before {
    opacity: 0.3;
}

.about-image img {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.about-image:hover img {
    transform: scale(1.1);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--gradient);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    transform: rotate(-15deg);
    transition: transform 0.3s ease;
}

.about-image:hover .experience-badge {
    transform: rotate(0);
}


/* Achievement Items */

.achievement-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.2);
}

.achievement-item h3 {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Services Section */

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i {
    color: var(--primary-color);
}


/* Contact Section */

.form-control {
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #dee2e6;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-info i {
    color: var(--primary-color);
}


/* Footer */

.social-links a {
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    opacity: 0.8;
}


/* Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .row>div,
.services .card,
.contact-info {
    animation: fadeIn 1s ease-out forwards;
}


/* Responsive Adjustments */

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 5rem;
    }

    .hero-section img {
        margin-top: 2rem;
    }

    .contact-info {
        margin-top: 3rem;
    }
}


/* Scroll to Top Button */

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
}


/* Services Section Styles */

.services-section {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, var(--light-gray) 100%);
}

.services-section .row {
    display: flex;
    flex-wrap: wrap;
}

.services-section .col-lg-4 {
    display: flex;
    margin-bottom: 30px;
}

.service-card {
    perspective: 1000px;
    cursor: pointer;
    width: 100%;
    display: flex;
}

.service-item {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    padding: 2rem 1.5rem;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.service-card .card-body {
    padding: 2.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card:hover .service-item {
    transform: translateY(-10px) rotateX(4deg) rotateY(4deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -25px;
    left: 25px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(0deg) scale(1.1);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-title {
    margin-top: 2.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.service-features li i {
    font-size: 0.8rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}


/* Card Hover Animation */

@keyframes cardFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.service-card:hover {
    animation: cardFloat 3s ease-in-out infinite;
}


/* Enhanced Badge Styles */

.badge {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}


/* Portfolio Section */

.portfolio-section {
    background: var(--light-gray);
    position: relative;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(54, 165, 72, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.portfolio-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-item .btn-light {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    transition: all 0.3s ease;
}

.portfolio-item .btn-light:hover {
    background: white;
    transform: translateY(-2px);
}


/* Contact Section Styles */

.contact-form-card,
.contact-info-card,
.map-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover,
.contact-info-card:hover,
.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.contact-info-item .icon-box {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-info-item .icon-box i {
    color: white;
}

.contact-info-item:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-item h5 {
    font-size: 1rem;
    color: var(--dark-gray);
}

.contact-info-item p {
    color: #6b7280;
}

.contact-info-item a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--secondary-color);
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--primary-color);
    opacity: 0.8;
}

.form-floating>.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.1);
}

.contact-section .btn-primary {
    text-transform: uppercase;
    font-weight: 500;
}

.contact-section .btn-primary i {
    transition: transform 0.3s ease;
}

.contact-section .btn-primary:hover i {
    transform: translateX(5px);
}


/* Map styles */

.map-card iframe {
    filter: grayscale(1) contrast(1.2);
    transition: filter 0.3s ease;
}

.map-card:hover iframe {
    filter: grayscale(0) contrast(1);
}


/* Contact Section Styles */

.contact-form-card,
.contact-info-card {
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.contact-form-card form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-card .row {
    flex: 1;
}

.contact-info-items {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-item {
    padding: 1rem 0;
}


/* Enhanced Footer Styles */

.footer-widget h4 {
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    margin-top: 5px;
    color: var(--accent-color);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-widget h4 {
        margin-top: 1.5rem;
    }
}


/* Common styles for authentication pages */

.forgot-section,
.login-section,
.signup-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #006994, #00a8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.forgot-card,
.login-card,
.signup-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    padding: 3rem;
    position: relative;
}

.login-card::before,
.signup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #006994, #00a8e8);
}

.login-header,
.signup-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header h2,
.signup-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #006994, #00a8e8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-floating .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem 0.75rem;
    height: calc(3.5rem + 2px);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-floating .form-control:focus {
    border-color: #006994;
    box-shadow: 0 0 0 0.25rem rgba(0, 105, 148, 0.1);
}

.form-floating label {
    padding: 1rem 0.75rem;
}

.login-options,
.signup-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #006994, #00a8e8);
    border: none;
    padding: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 105, 148, 0.4);
}

.form-check-input:checked {
    background-color: #006994;
    border-color: #006994;
}

.text-decoration-none {
    color: #006994;
    font-weight: 500;
    transition: all 0.3s ease;
}

.text-decoration-none:hover {
    color: #005a7a;
}


/* Text gradient effect */

.text-gradient {
    background: var(--accent-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Link colors */

a {
    color: #006994;
}

a:hover {
    color: #005a7a;
}

.inner_header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 30px;
    text-align: center;
    min-height: 500px;
}

.about_banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about_banner.jpg');
}

.plan_banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/plan_banner.jpg');
}

.contact_banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact_banner.jpg');
}

.benefits_banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/benefits_banner.jpg');
}

.term_banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/term_banner.jpg');
}

.section-title {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 30px;
    display: inline-block;
}

.feature-box {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
    height: 100%;
}

.feature-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.specs-table th {
    background-color: var(--light-color);
}

.price-badge {
    font-size: 1.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

.benefit-item {
    margin-bottom: 15px;
}

.benefit-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

.system-image {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}


/* Google Translate */

body>.skiptranslate,
.goog-logo-link,
.gskiptranslate,
.goog-te-gadget span,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt- {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0px;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

#google_translate_element select {
    background: #28a745;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    padding: 10px 12px
}

.play_store_logo {
    max-width: 100%;
    max-height: 50px;
}


/*New plan*/
.btn-custom {
    background: linear-gradient(135deg, var(--light-green), var(--accent-green));
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.system-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.system-price {
    background: linear-gradient(135deg, var(--primary-color), var(--light-green));
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.price-original {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1rem;
}

.price-subsidized {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffeb3b;
}

#systems .card-header {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.spec-table {
    margin: 0;
}

.spec-table th {
    background: #5da033;
    color: white;
    font-weight: 600;
    padding: 9px 10px;
    font-size: 14px;
    border: none;
}

.spec-table td {
    padding: 5px 8px;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.spec-table td:first-child {
    font-weight: 700;
}

.spec-table tr:nth-child(even) {
    background: #f8f9fa;
}

.benefits-section {
    background: white;
    padding: 80px 0;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e8f5e8);
    margin-bottom: 30px;
    height: 100%;
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.footer {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-link {
    color: #c8e6c9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.highlight-box {
    background: linear-gradient(135deg, var(--light-green), var(--accent-green));
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.highlight-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.fact-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--accent-green);
}

.subsidy-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff5722);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0;
}


/* Features Section */

.features {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #2d3436;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
    /* background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
}

.feature-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #2d3436;
    font-weight: 600;
}

.feature-card p {
    color: #636e72;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}


/*
11111*/

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: table;
    margin: 50px auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.benefit-item,
.drawback-item {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.gradient-text {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    ;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.highlight-text {
    color: #667eea;
    font-weight: bold;
}

.cost-alert {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.capacity-alert {
    background: linear-gradient(45deg, #ffd93d, #ff9ff3);
    color: #333;
    border: none;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.main-heading {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.sub-heading {
    font-size: 1.2rem;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #667eea;
    margin-right: 10px;
}

.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 40px 0;
    margin-top: 50px;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.sub-heading {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-container {
    padding: 80px 0;
    background: #f8f9fa;
}

.fact-card {
    background: white;
    border-radius: 25px;
    padding: 25px;
    margin: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.fact-card:hover::before {
    left: 100%;
}

.fact-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fact-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.fact-label {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.calculation-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 25px;
    padding: 50px;
    margin: 40px 0;
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.calculation-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d, #4ecdc4, #45b7d1);
    border-radius: 25px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.calc-step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.calc-step:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.calc-formula {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd93d;
    margin-bottom: 10px;
}

.calc-result {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ecdc4;
}

.warranty-section {
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
    color: white;
    position: relative;
}

.warranty-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 20px;
    padding: 40px;
    margin: 20px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.warranty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.warranty-years {
    font-size: 2rem;
    font-weight: 800;
    color: #4ecdc4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.warranty-type {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    margin-top: 10px;
}

.highlight-box {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
}

.highlight-number {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 60px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #4ecdc4, #45b7d1);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }

    .fact-number {
        font-size: 2rem;
    }

    .warranty-years {
        font-size: 3rem;
    }
}


/*Jyoti*/

.solar-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.solar-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-header {
    background: linear-gradient(135deg, #ff6b6b, #ffa726, #42a5f5);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-header h1 {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    padding: 3rem 2rem;
    position: relative;
}

.example-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 25px;
    padding: 2rem;
    margin: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(79, 172, 254, 0.4);
}

.example-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #ffa726, #42a5f5, #4facfe);
    border-radius: 25px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.example-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.energy-flow-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.energy-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.energy-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.3);
}

.energy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.energy-item:hover::before {
    left: 100%;
}

.energy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.energy-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.energy-value {
    color: #FFD700;
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.explanation-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #FFD700;
}

.scheme-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.scheme-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(180deg);
    }
}

.scheme-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.scheme-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.scheme-feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.scheme-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.feature-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
}

.highlight-amount {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.tracking-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 25px;
    padding: 1rem;
    margin: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(240, 147, 251, 0.3);
}

.tracking-icon {
    font-size: 4rem;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.tracking-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.tracking-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.cta-section {
    text-align: center;
    margin: 2rem 0 0;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    border: none;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
    color: white;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@media (max-width: 768px) {
    .hero-header h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .energy-flow-container {
        grid-template-columns: 1fr;
    }

    .scheme-features {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 2rem 1rem;
    }

    .example-card,
    .scheme-card,
    .tracking-section {
        padding: 2rem;
    }
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

.process-step {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 15px 0;
    border-left: 5px solid #ff6b6b;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: #f8f9fa;
    transform: translateX(10px);
}

.solar-section {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.solar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f39c12, #e74c3c, #9b59b6, #3498db, #2ecc71);
    animation: rainbow 3s linear infinite;
}

@keyframes rainbow {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '☀️';
    position: absolute;
    font-size: 120px;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.header .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.content {
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.price-highlight {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.price-highlight .amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.price-highlight .unit {
    font-size: 1.1rem;
    opacity: 0.9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 10px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.5rem;
    margin-right: 12px;
    color: #3498db;
}

.cta-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
}

.cta-button {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.highlight-stats {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    text-align: center;
}

.stat-item {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    min-width: 150px;
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .highlight-stats {
        flex-direction: column;
        gap: 15px;
    }
}

.pricing-container {
    padding: 80px 0;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 12px;
    z-index: 10;
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 30px;
    border-radius: 20px 20px 0 0;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.plan-subtitle {
    opacity: 0.9;
    margin-top: 5px;
}

.price-section {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
}

.price-unit {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 500;
}

.solar-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.features-list {
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.1);
}

.feature-icon {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0 30px 30px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.main-title {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.title-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.watt-badge {
    position: absolute;
    top: 10px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}


/*Pricing Plan*/
.plan-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-header {
    background: var(--gradient);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.plan-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid var(--accent-color);
}

.plan-power {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.plan-body {
    padding: 2rem;
    text-align: center;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.discounted-price {
    font-size: 2rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 1rem;
}

.discount-badge {
    background: var(--light-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.savings-amount {
   background: #fff;
    color: var(--accent-color);
    padding: 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    font-weight: bold;
    border: solid 1px var(--accent-color);;
}

.btn-solar {
    background: var(--warning-gradient);
    border: none;
    color: white;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
}

.btn-solar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 233, 123, 0.4);
    color: white;
}

.solar-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.features-list {
    text-align: left;
    margin: 0;
}

.features-list li {
    padding: 0 0 20px 0;
    color: #495057;
}

.features-list i {
    color: #28a745;
    margin-right: 0.5rem;
}

.best-value {
    position: absolute;
    top: -5px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.contact-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .plan-power {
        font-size: 2rem;
    }

    .discounted-price {
        font-size: 1.5rem;
    }
}