/* Global Styles */
:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --accent-color: #ffc107;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    margin: 0;
    padding: 0;
    padding-top: 120px; /* Reduced from 140px since we removed hero section */
}

a {
  text-decoration: none;
  color: var(--dark-color);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  width: 100%;
}

.btn {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background: #0069d9;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

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

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  position: relative;
  color: var(--primary-color);
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo {
    position: relative;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.logo a:hover {
    transform: translateY(-2px);
}

/* Logo Image Styling */
.logo img {
    height: 60px;
    width: auto;
    margin-right: 15px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo a:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Logo Text Styling */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .company-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-text .company-tagline {
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary-color);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Animated Icon Alternative */
.logo-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-right: 12px;
    animation: logoGlow 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

@keyframes logoGlow {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
    }
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo img {
        height: 45px;
        margin-right: 10px;
    }
    
    .logo-text .company-name {
        font-size: 18px;
    }
    
    .logo-text .company-tagline {
        font-size: 10px;
    }
    
    .logo-icon {
        font-size: 30px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
        margin-right: 8px;
    }
    
    .logo-text .company-name {
        font-size: 16px;
    }
    
    .logo-text .company-tagline {
        display: none; /* Hide tagline on very small screens */
    }
}

/* Alternative Icon-Only Logo Option */
/* To use this instead of logo.png, replace the img tag with: */
/* <i class="logo-icon fas fa-solar-panel"></i> */
/* or <i class="logo-icon fas fa-leaf"></i> for sustainability */
/* or <i class="logo-icon fas fa-building"></i> for infrastructure */

.logo-icon-alt {
    font-size: 40px;
    color: var(--primary-color);
    margin-right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoRotate 4s ease-in-out infinite;
}

.logo a:hover .logo-icon-alt {
    animation: logoSpin 0.6s ease-in-out;
}

@keyframes logoRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.05); }
    75% { transform: rotate(-5deg) scale(1.05); }
}

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

/* Professional Badge Style Logo */
.logo-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    padding: 8px 20px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.logo-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.logo-badge .company-name {
    color: #fff !important;
    text-shadow: none !important;
}

.logo-badge .company-tagline {
    color: rgba(255, 255, 255, 0.9) !important;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  font-weight: 600;
  padding: 10px;
  transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
}

/* Navigation Dropdowns */
nav ul li.dropdown {
    position: relative;
}

nav ul li.dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: var(--box-shadow);
    border-radius: 0 0 5px 5px;
    z-index: 101;
}

nav ul li.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 15px;
    color: var(--dark-color);
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

nav ul li a i {
    font-size: 12px;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}


/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.feature-card i {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* CTA Section */
.cta {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta .btn-outline {
  border-color: #fff;
  color: #fff;
}

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

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
}

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

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 80px;
  position: absolute;
  top: -20px;
  left: 20px;
  color: rgba(0, 123, 255, 0.1);
  font-family: sans-serif;
}

.testimonial-card p {
  margin-bottom: 20px;
  font-style: italic;
}

.client-info h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.testimonial-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 30px;
  border-radius: 15px;
  min-width: 200px;
  flex: 1;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 123, 255, 0.4);
}

.stat-item i {
  font-size: 36px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.stat-item h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.stat-item h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
}

.stat-item p {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .testimonial-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    width: 80%;
  }
}

/* Footer */
footer {
  background: var(--dark-color);
  color: #fff;
  padding: 50px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

.footer-section p {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ddd;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

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

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }

  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    background: #fff;
    width: 100%;
    height: calc(100vh - 80px);
    transition: var(--transition);
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
  }

  nav ul li {
    margin: 10px 0;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

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

/* Page Header */
.page-header {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

/* About Page Styles */
.about-intro {
  padding: 80px 0;
}

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

.about-content h2 {
  color: var(--primary-color);
  font-size: 32px;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.mission-vision {
  background-color: var(--light-color);
  padding: 80px 0;
}

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

.mission-box, .vision-box, .values-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.mission-box:hover, .vision-box:hover, .values-box:hover {
  transform: translateY(-10px);
}

.mission-box .icon, .vision-box .icon, .values-box .icon {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mission-box h3, .vision-box h3, .values-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.team {
  padding: 80px 0;
}

.team .team-header {
    margin-bottom: 50px;
}

.team .team-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

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

.team-member {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.member-image {
  height: 300px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.member-info {
  padding: 20px;
}

.member-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.member-info .position {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--light-color);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--primary-color);
  transition: var(--transition);
}

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

.achievements {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  padding: 80px 0;
}

.achievements .section-title {
  color: #fff;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.achievement-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  transition: var(--transition);
}

.achievement-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.achievement-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.achievement-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}

.achievement-text {
  font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .team-grid, .mission-vision-grid, .achievement-grid {
    grid-template-columns: 1fr;
  }
}

/* Services Page Styles */
.services-intro {
  padding: 60px 0;
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  color: var(--primary-color);
  font-size: 32px;
  margin-bottom: 20px;
}

.intro-content p {
  font-size: 18px;
  line-height: 1.8;
}

.service-grid {
  padding: 60px 0;
  background-color: var(--light-color);
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark-color);
  text-align: center;
}

.service-card p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 30px;
  flex-grow: 1;
}

.service-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.service-features li i {
  color: var(--success-color);
  position: absolute;
  left: 0;
  top: 5px;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Process Section */
.process {
  padding: 80px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  counter-reset: step-counter;
}

.step {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

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

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.step p {
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .service-card {
    padding: 20px;
  }
}

/* Contact Page Styles */
.contact-info {
  padding: 60px 0;
  background-color: var(--light-color);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.info-card .icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.info-card p {
  margin-bottom: 5px;
  color: #666;
}

.contact-main {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form h2, .contact-map h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-form p {
  margin-bottom: 30px;
  line-height: 1.6;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.form-group button {
  width: auto;
  padding: 12px 30px;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--light-color);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-question {
  padding: 20px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(0, 123, 255, 0.05);
}

.faq-question h3 {
  font-size: 18px;
  margin: 0;
  color: var(--dark-color);
}

.faq-icon {
  color: var(--primary-color);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 20px;
  max-height: 1000px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Contact Page Responsive Styles */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-map {
    order: -1;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Add JavaScript function to handle FAQ toggling */
/* Include this in script.js */
/*
document.addEventListener('DOMContentLoaded', function() {
  const faqItems = document.querySelectorAll('.faq-item');
  
  faqItems.forEach(item => {
    const question = item.querySelector('.faq-question');
    
    question.addEventListener('click', () => {
      item.classList.toggle('active');
    });
  });
});
*/

/* Form Validation Styles */
.error-message {
  color: var(--danger-color);
  font-size: 14px;
  margin-top: 5px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--danger-color);
}

.success-message {
  background-color: var(--success-color);
  color: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
}

/* Mobile Menu Styles */
.mobile-menu {
  cursor: pointer;
  font-size: 24px;
  transition: var(--transition);
}

.mobile-menu.active i {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  /* ... existing code ... */
  
  /* Mobile menu animation */
  header .container {
    position: relative;
  }
  
  nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  nav.active {
    max-height: 500px;
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  nav ul li {
    margin: 10px 0;
  }
}

/* Projects Page Styles */
.projects-intro {
  padding: 60px 0;
  text-align: center;
}

.projects-intro .intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.featured-projects {
  padding: 80px 0;
  background-color: var(--light-color);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid #e0e0e0;
}

.project-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.project-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.project-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.project-details {
  padding: 25px;
}

.project-details h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.project-meta span {
  display: flex;
  align-items: center;
}

.project-meta span i {
  margin-right: 6px;
  color: var(--primary-color);
}

.project-details p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-link i {
  margin-left: 6px;
  transition: var(--transition);
}

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

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

/* Project Stats Section */
.project-stats {
  padding: 80px 0;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-box {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
}

/* Project Process Timeline */
.project-process {
  padding: 80px 0;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 4px;
  background: var(--primary-color);
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}

.timeline-dot {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 4px solid #fff;
  box-shadow: var(--box-shadow);
  z-index: 1;
  transform: translateX(2px);
}

.timeline-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.timeline-content h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.timeline-content p {
  line-height: 1.6;
}

/* Responsive Styles for Projects Page */
@media (max-width: 992px) {
  .project-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .project-process {
    padding: 60px 0;
  }
  
  .process-timeline::before {
    left: 15px;
  }
  
  .timeline-item {
    padding-left: 40px;
  }
  
  .timeline-dot {
    width: 16px;
    height: 16px;
  }
  
  .timeline-content {
    padding: 20px;
  }
} 

/* Clients Section */
.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 0;
}

.client-logos .client-logo {
    height: 120px;
    width: auto;
    max-width: 280px;
    padding: 25px 35px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.client-logos .client-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
    filter: grayscale(0%);
}

/* Add a subtle animation */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.client-logos .client-logo:nth-child(odd) {
    animation: logoFloat 3s ease-in-out infinite;
}

.client-logos .client-logo:nth-child(even) {
    animation: logoFloat 3s ease-in-out infinite 1.5s;
}

/* Services Overview Section */
.services-overview {
    background-color: #fff;
}

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

.service-overview-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: var(--transition);
}

.service-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: transparent;
}

.service-overview-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-overview-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-overview-card .btn-link {
    margin-top: 20px;
    font-weight: bold;
} 

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    margin-right: 8px;
    color: var(--primary-color);
}

.top-bar-right a {
    color: #fff;
    margin-left: 15px;
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--primary-color);
}

.btn-sm {
    padding: 5px 15px;
    font-size: 14px;
}

/* About Overview Section */
.about-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-overview-content .subtitle {
    font-size: 16px;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-overview-content h2 {
    font-size: 36px;
    margin: 10px 0 20px;
}

.about-overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item-alt {
    background-color: var(--light-color);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.stat-item-alt h3 {
    font-size: 32px;
    color: var(--primary-color);
}

/* Project Card Enhancements */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.project-card .project-image {
    height: 350px;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project-overlay p {
    margin-bottom: 20px;
}

/* Homepage FAQ */
.faq-homepage .faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
/* Video Gallery Styles */
.video-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-gallery .gallery-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.video-gallery .gallery-item:hover {
    transform: translateY(-10px);
}

.video-gallery .gallery-item video {
    width: 100%;
    height: auto;
}

.video-gallery .gallery-item h3 {
    padding: 20px;
    font-size: 20px;
    text-align: center;
}

/* Banner Slider Styles - Inspired by naturalpower.in */
.banner-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 123, 255, 0.2));
    display: flex;
    align-items: center;
    z-index: 3;
}

.banner-content {
    text-align: left;
    color: #fff;
    max-width: 700px;
    margin: 0;
    padding: 0 50px;
    animation: slideInFromLeft 1.5s ease-out;
}

.banner-content h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.banner-content p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    font-weight: 300;
}

.banner-content .btn {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    transition: all 0.4s ease;
}

.banner-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
    background: linear-gradient(45deg, #0056b3, var(--primary-color));
}

/* Banner Navigation - Modern Style */
.banner-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 4;
}

.banner-prev,
.banner-next {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 20px;
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Banner Dots - Elegant Style */
.banner-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.banner-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.banner-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.banner-dot.active::before {
    border-color: rgba(255, 255, 255, 0.5);
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .banner-slider {
        height: 500px;
    }
    
    .banner-content {
        padding: 0 30px;
        text-align: center;
    }
    
    .banner-content h2 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
    
    .banner-prev,
    .banner-next {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .banner-nav {
        padding: 0 20px;
    }
    
    .banner-dots {
        bottom: 30px;
    }
    
    .banner-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 450px;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .banner-content .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}