.cities-section {
    margin-top: 30px;
    text-align: center;
  }
  
  .cities-section img {
    width: 100%;
    height: 500px;
    max-width: 100%;
  }
  .solar-atta-section {
    background: linear-gradient(to right, #fdfdfd, #f0f8ff);
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    position: relative;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
    animation: fadeInDown 1s ease-in-out;
}

.atta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-in-out;
}

.atta-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: scale(1);
    transition: transform 0.4s ease;
}

.atta-image img:hover {
    transform: scale(1.05);
}

.atta-description {
    max-width: 600px;
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    color: #34495e;
    font-size: 16px;
    line-height: 1.7;
    animation: fadeInRight 1s ease-in-out;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.solar-working-section {
    background: linear-gradient(to right, #e0f7fa, #ffffff);
    padding: 50px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.working-heading {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #004d40;
    border-bottom: 2px solid #004d40;
    display: inline-block;
    padding-bottom: 10px;
}

.working-box {
    max-width: 900px;
    margin: auto;
    background-color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 8px 20px rgba(0, 77, 64, 0.15);
    border-radius: 10px;
    color: #333;
    line-height: 1.7;
    font-size: 16px;
}
.benefits-section {
    background: #f5fefc;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.benefits-heading {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #00695c;
    position: relative;
    animation: fadeInDown 1s ease-in-out;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.benefit-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0, 105, 92, 0.15);
    text-align: center;
    transition: transform 0.3s ease;
    animation: fadeInUp 1.2s ease-in-out;
}

.benefit-box:hover {
    transform: translateY(-8px);
}

.benefit-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.benefit-box p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.installation-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.installation-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.installation-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    position: relative;
}

.installation-list {
    list-style-type: none;
    padding-left: 0;
}

.installation-list li {
    background: #ffffff;
    border-left: 5px solid #ff9900;
    margin-bottom: 15px;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 6px;
    
}

.installation-list li:hover {
    background-color: #fff3e6;
}
