

/* Banner section */

/* Banner Section */
.ceiling-fans-section {
width: 100%;
height: 59vh;
background-image: url('./assets/op.jpg');
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: flex-start;
padding-left: 50px;
}

.ceiling-fans-section1 {
width: 100%;
height: 59vh;
background-image: url('./assets/op.jpg');
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: flex-start;
padding-left: 50px;
}

.content {
text-align: left;
color: black;
max-width: 500px;
}

.aboutus {
font-family: "Squada One", sans-serif;
font-weight: 400;
font-style: normal;
color: #1a3965;
font-size: 6.3rem;
text-shadow: 5px 1px 2px rgba(0, 0, 0, 0.6);
}

p {
font-size: 1.2rem;
margin-bottom: 20px;
line-height: 1.5;
}

.choose-style-btn {
background-color: #003366;
color: white;
padding: 10px 20px;
text-decoration: none;
font-size: 1rem;
border-radius: 5px;
transition: background-color 0.3s ease;
}

.choose-style-btn:hover {
background-color: #0055a3;
}

/* Mobile Styles */
@media (max-width: 768px) {
.ceiling-fans-section,
.ceiling-fans-section1 {
    height: auto;
    min-height: 100vh;
    padding: 30px 20px;
    justify-content: center;
}

.content {
    text-align: center;
    max-width: 100%;
}

.aboutus {
    font-size: 4.5rem;
    text-shadow: 3px 1px 2px rgba(0, 0, 0, 0.6);
}

p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.choose-style-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 10px;
}
}
/** feature */
   

/* Key Features Container */
.key-features-container {
display: flex;
justify-content: space-between;
align-items: center;
margin: 40px auto;
padding: 0 20px;
max-width: 1200px;
}

/* Features on Left and Right */
.features-left, .features-right {
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 20px;
flex: 1;
}

/* Centered Logo */
.feature-logo {
display: flex;
justify-content: center;
align-items: center;
flex: 0.3; /* Take up smaller space than the text sections */
}

.feature-logo img {
max-width: 100%;
height: auto;
}

/* Feature Box Styles */

/* Main Container with Background Image */
.section-with-bg {
padding: 60px 40px; /* Add padding for spacing */
background-color:#030421;
background-size: cover; /* Ensure the image covers the whole container */
background-position: center; /* Center the background image */
background-repeat: no-repeat; /* Avoid repeating the image */
color: #ffffff; /* Set text color to white to contrast with background */
}

/* Heading Styles */
.OP {
text-align: center;
margin-bottom: 40px;
font-size: 3.5rem;
color: inherit; /* Use inherited color to ensure contrast with background */
border-bottom: 2px solid white;
font-family: "Squada One", sans-serif;
}

/* Key Features Container */
.key-features-container {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 auto;
padding: 20px;
max-width: 1200px;
border-radius: 20px;
}

/* Features on Left and Right */
.features-left, .features-right {
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 20px;
flex: 1;
}

/* Centered Logo */
.feature-logo {
display: flex;
justify-content: center;

align-items: center;
flex: 0.3; /* Take up smaller space than the text sections */
margin: 0 40px; /* Add consistent space on left and right sides of the logo */
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.feature-logo img {
max-width: 100%;
height: auto;
animation: rotate 5s linear infinite;
}

/* Feature Box Styles */
.feature {
background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent background */
padding: 15px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
text-align: center;
font-size: 1rem;
color: #333;
}

.green-feature {
background-color: rgba(212, 237, 218, 0.8); /* Slight transparency for the green feature boxes */
color: #155724;
}

/* Responsive Design */
@media (max-width: 768px) {
.key-features-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.features-left, .features-right {
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.feature-logo {
    margin: 20px 0;
    width: 100%;
}

.feature-logo img {
    max-width: 150px; /* Adjust logo size for smaller screens */
}
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
.feature {
    font-size: 0.9rem;
    padding: 10px;
}

.feature-logo img {
    max-width: 120px; /* Further reduce logo size on small screens */
}
}

.bldc-section {
background-color: #f8f9fa;
}

.bldc-section h2 {
color: #343a40;
}

.bldc-section p {
color: black;
}
/* table section */
.savings-table-container {
        width: 100%;
        margin: auto;
        max-width: 1000px;
        background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent background */
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow-x: auto; /* Add horizontal scroll for small devices */
    }

    table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px; /* Min width for better readability */
    }

    th, td {
        padding: 15px;
        text-align: center;
        border: 1px solid #ddd;
        font-size: 16px;
    }

    th {
        background-color: green; /* Dark Blue for headers */
        color: white;
    }

    td {
        background-color: #e1e8e3;
        color: #333;
    }

    .highlight {
        background-color: #28a745; /* Green for savings */
        color: white;
        font-weight: bold;
    }

    /* Mobile Responsiveness */
    @media screen and (max-width: 768px) {
        th, td {
            font-size: 14px;
            padding: 10px;
        }

        table {
            min-width: unset; /* Allow auto adjustment for smaller screens */
        }
    }

    .about-us {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
       
    }
    .about-us h1 {
        color: #006400;
        text-align: left;
        margin-bottom: 30px;
        animation: fadeInDown 1s ease-out;
        font-weight: 1000;
    }
    .about-us-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        
    }
    .about-us-text {
padding-top: 30px;
        flex: 1;
        min-width: 300px;
        padding-right: 40px;
        animation: fadeInUp 1s ease-out 0.5s both;
    }
    .about-us-image {
        flex: 1;
        min-width: 300px;
        text-align: center;
        animation: fadeInUp 1s ease-out 0.8s both;
    }
    .about-us-image img {
        max-width: 100%;
        height: 600px;
        object-fit: cover;
        border-radius: 10px;
      
    }
    .about-us p {
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .cta-button {
        display: inline-block;
        background-color: #1A3965;
        color: white;
        padding: 12px 24px;
        text-decoration: none;
        border-radius: 5px;
       
    }
    .cta-button:hover {
        background-color: #157347;
        animation: none;
    }
    @media (max-width: 768px) {
        .about-us-content {
            flex-direction: column;
        }
        .about-us-text {
            padding-right: 0;
            margin-bottom: 30px;
        }
    }
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
        100% {
            transform: scale(1);
        }
    }

    /* our story  */
    .story-section {
        padding: 4rem 2rem;
        background: linear-gradient(135deg, #f5f9ff 0%, #e6f7f2 100%);
        font-family: 'Arial', sans-serif;
        position: relative;
        overflow: hidden;
      }
    
      .container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }
    
      .story-title {
        text-align: center;
        color: #1a5f7a;
        font-size: 2.5rem;
        margin-bottom: 2rem;
        position: relative;
        animation: slideDown 1s ease-out;
      }
    
      .story-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: #2ecc71;
        margin: 15px auto;
        border-radius: 2px;
      }
    
      .story-content {
        display: flex;
        align-items: center;
        gap: 4rem;
        animation: fadeIn 1.5s ease-out;
      }
    
      .story-text {
        flex: 1;
        color: #333;
        font-size: 1.1rem;
        line-height: 1.8;
      }
    
      .shapes {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
      }
    
      .shape {
        position: absolute;
        border-radius: 50%;
        opacity: 0.1;
      }
    
      .shape-1 {
        width: 200px;
        height: 200px;
        background: #3498db;
        top: -100px;
        left: -100px;
        animation: float 6s infinite;
      }
    
      .shape-2 {
        width: 150px;
        height: 150px;
        background: #2ecc71;
        bottom: -75px;
        right: -75px;
        animation: float 8s infinite;
      }
    
      .shape-3 {
        width: 100px;
        height: 100px;
        background: #3498db;
        top: 50%;
        right: 10%;
        animation: float 7s infinite;
      }
    
      @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
      }
    
      @keyframes slideDown {
        from { transform: translateY(-50px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
      }
    
      @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
      }
    
      @media (max-width: 768px) {
        .story-content {
          flex-direction: column;
          gap: 2rem;
        }
    
        .story-title {
          font-size: 2rem;
        }
    
        .story-text {
          font-size: 1rem;
        }
    
        .shapes {
          display: none;
        }
      }

      /* mission vision  */
      
  .mission-vision-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f4 100%);
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .section-title {
    text-align: center;
    color: #2c5738;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    animation: slideDown 1s ease-out;
  }

  .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #4CAF50;
    margin: 15px auto;
    border-radius: 2px;
  }

  .cards-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeIn 1.5s ease-out;
  }

  .card {
    flex: 1;
    max-width: 500px;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .card:hover {
    transform: translateY(-10px);
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #4CAF50;
  }

  .card-title {
    font-size: 1.8rem;
    color: #2c5738;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fan-icon {
    width: 24px;
    height: 24px;
    animation: spin 10s linear infinite;
  }

  .card-text {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
  }

  .shape {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
  }

  .shape-1 {
    width: 200px;
    height: 200px;
    background: #4CAF50;
    border-radius: 50%;
    top: -100px;
    right: 10%;
    animation: float 8s infinite;
  }

  .shape-2 {
    width: 150px;
    height: 150px;
    background: #81C784;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -75px;
    left: 15%;
    animation: float 6s infinite, rotate 10s linear infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }

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

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

  @keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

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

  @media (max-width: 768px) {
    .cards-container {
      flex-direction: column;
      align-items: center;
    }

    .card {
      max-width: 100%;
    }

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

    .card-title {
      font-size: 1.5rem;
    }

    .card-text {
      font-size: 1rem;
    }
  }

       .sustainability-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h1 {
            color: #2c5282;
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        .intro-text {
            font-size: 1.1em;
            color: #2d3748;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

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

        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2em;
            margin-bottom: 20px;
        }

        .energy-efficiency .feature-icon {
            color: #38a169;
        }

        .carbon-footprint .feature-icon {
            color: #2b6cb0;
        }

        .eco-friendly .feature-icon {
            color: #38a169;
        }

        .sustainable-lifestyle .feature-icon {
            color: #2b6cb0;
        }

        .csr .feature-icon {
            color: #38a169;
        }

        .continuous-improvement .feature-icon {
            color: #2b6cb0;
        }

        .feature-title {
            font-size: 1.5em;
            margin-bottom: 15px;
            color: #2d3748;
        }

        .feature-description {
            color: #4a5568;
        }

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

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

            .feature-card {
                padding: 20px;
            }
        }

