* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/* Navbar Start */

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1020;
  border-top: 2px solid #97c398;
  background-color: #fff;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  color: #000 !important;
  transition: all 0.3s ease;
  font-weight: 500;
}

.navbar-nav .nav-link.active {
  color: #000 !important;
}

.navbar-nav .nav-link.active::before {
  width: calc(100% - 2rem);
  background-color: #FF802B;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #000;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #FF802B;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item:not(.dropdown) .nav-link:hover::before {
  width: calc(100% - 2rem);
}

.nav-item.dropdown .nav-link:hover::before {
  width: 50%;
}

.nav-link.active {
  color: black;
}

.nav-link.active::before {
  width: calc(100% - 2rem);
  background-color: #FF802B;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  transition: all 0.3s ease;
  opacity: 0;
  display: block;
  visibility: hidden;
  transform: translateY(10px);
  background-color: white;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  color: #000 !important;
  background-color: white !important;
  position: relative;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: #FF802B !important;
  color: white !important;
}

#aboutDropdown.dropdown-toggle::after,
#solutionsDropdown.dropdown-toggle::after,
#awardsDropdown.dropdown-toggle::after {
  display: none !important;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (min-width: 992px) {
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 20px 0;
  }
}

.dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  display: none;
  position: static;
  float: none;
  width: auto;
  margin-top: 0;
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: none;
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: white !important;
    border: 0;
    box-shadow: none;
  }


  .dropdown-menu.show {
    display: block;
  }

  .dropdown-item {
    padding: 0.5rem 1rem !important;
    color: #000 !important;
    font-weight: 500 !important;
  }

  .dropdown-item:hover {
    background-color: transparent !important;
    color: #FF802B !important;
  }

  .nav-item.dropdown .nav-link::before {
    display: block;
  }
}

/* Navbar End */



/* Advanced Styling for Other Sections */
:root {
    --primary-color: #2c7873;
    --secondary-color: #6fb98f;
    --dark-color: #021c1e;
    --light-color: #f5f5f5;
    --accent-color: #FF802B;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(49, 48, 48, 0.197), rgba(64, 63, 63, 0.197)),
    url('https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
    background: linear-gradient(to right, #f83600 0%, #f9d423 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.hero-section .badge {
    font-size: 1.1rem;
    padding: 15px 30px;
    margin: 10px;
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: white;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-weight: 600;
    pointer-events: none;
}

.hero-section .badge i {
    font-size: 0.9rem;
}

/* Enhanced Projects Gallery */
.projects-gallery {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-color) 0%, #e8f0ef 100%);
}

/* Renamed classes to avoid conflicts */
.project-section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    padding: 10px 0;
    display: inline-block;
    width: 100%;
}

.project-heading-gradient {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 50%, #2c7873 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.project-heading-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 50%, #2c7873 100%);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .project-section-title {
        font-size: 2.2rem;
    }

    .project-heading-underline {
        width: 150px;
    }
}

.filter-buttons {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-item {
    display: flex;
    margin-bottom: 30px;
}

.project-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    width: 100%;
    min-height: 450px;
}

.project-item[data-category="transformer"] .project-img {
    height: 280px;
    width: 100%;
}

.project-item[data-category="transformer"] .project-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.project-img {
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.15);
}

.project-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-img::after {
    opacity: 1;
}

.project-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.project-category {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: background 0.3s ease;
}

.project-card:hover .project-category {
    background: var(--accent-color);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.project-description {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
}

.read-more:hover i {
    transform: translateX(8px);
}

/* Enhanced About Section */
.about-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1505236858219-8359eb29e859?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.pioneer-badge {
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

.about-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.about-section .feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-section .feature-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.about-section .feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-section .feature-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* What Our Client Say */
.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%);
    overflow: hidden;
    position: relative;
}

.solar-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%232c786c" stroke-width="0.5" stroke-dasharray="5,5"/><circle cx="50" cy="50" r="30" fill="none" stroke="%232c786c" stroke-width="0.5" stroke-dasharray="5,5"/><circle cx="50" cy="50" r="20" fill="none" stroke="%232c786c" stroke-width="0.5" stroke-dasharray="5,5"/><line x1="10" y1="50" x2="90" y2="50" stroke="%232c786c" stroke-width="0.5"/><line x1="50" y1="10" x2="50" y2="90" stroke="%232c786c" stroke-width="0.5"/><line x1="20" y1="20" x2="80" y2="80" stroke="%232c786c" stroke-width="0.5"/><line x1="80" y1="20" x2="20" y2="80" stroke="%232c786c" stroke-width="0.5"/></svg>');
    opacity: 0.05;
    top: 0;
    left: 0;
    z-index: 0;
}

.Oursection-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.Oursection-title h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.Oursection-title p {
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-group {
    display: none;
    transition: all 0.6s ease;
}

.testimonial-group.active {
    display: flex;
    animation: fadeIn 0.6s ease forwards;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    margin: 15px;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover::before {
    width: 8px;
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    order: 1;
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-img {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-details h5 {
    color: var(--primary-color);
    color: var(--primary-color);
}

.client-details p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 500;
}

.rating {
    margin-top: 5px;
}

.rating i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.quote {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
    font-style: italic;
    position: relative;
    order: 3;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 5s linear;
}

.carousel-dot.active {
    transform: scale(1.3);
}

.carousel-dot.active::after {
    width: 100%;
}

/* Footer Start */
.footer {
    background-color: #1e2b36;
    color: #ced4da;
    padding: 60px 0 30px;
    font-size: 15px;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer a {
    color: #ced4da;
    text-decoration: none;
}

.footer a:hover {
    color: #28c76f;
}

.footer .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #ced4da;
    border-radius: 50%;
    margin-right: 8px;
    color: #ced4da;
    transition: 0.3s;
}

.footer .social-icons a:hover {
    background-color: #28c76f;
    color: #fff;
    border-color: #28c76f;
}

.footer .gallery img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 4px;
    border-radius: 6px;
}

.footer-bottom {
    border-top: 1px solid #334756;
    padding-top: 20px;
    font-size: 14px;
}

/* Animations */
@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% {
        box-shadow: 0 0 0 0 rgba(255, 128, 43, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 128, 43, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 128, 43, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .project-card {
        min-height: 400px;
    }

    .project-img,
    .project-item[data-category="transformer"] .project-img {
        height: 200px;
    }

    .project-img img,
    .project-item[data-category="transformer"] .project-img img {
        height: 200px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .Oursection-title h2 {
        font-size: 2.2rem;
    }

    .testimonial-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .Oursection-title h2 {
        font-size: 2rem;
    }

    .testimonial-group {
        flex-wrap: wrap;
    }

    .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .Oursection-title h2 {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .client-img {
        width: 60px;
        height: 60px;
    }
}