/* ==========================================================================
   RESPONSIVE WEATHER SOLUTIONS CSS
   ========================================================================== */

/* Base Styles */
* {
  box-sizing: border-box;
}

/* body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
} */

/* Header Responsive Styles */
/* header {
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
  font-size: 18px;
}

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

.get-quotes {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
}

.get-quotes a {
  color: white;
  text-decoration: none;
}

#darkmode-button {
  width: 40px;
  height: 40px;
  margin-left: 10px;
}

/* Service Hero Section */
.service-hero {
  background: linear-gradient(135deg, #09cdcd 0%, #21c9c6 100%);;
 
  background-size: cover;
  padding: 120px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.service-icon:hover {
  transform: scale(1.1);
}

.service-icon i {
  font-size: 40px;
  color: white;
}

.service-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-hero .lead {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.7;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
  height: 100%;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #09cdcd 0%, #21c9c6 100%);;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 24px;
  color: white;
}

.feature-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #09cdcd 0%, #21c9c6 100%);;
  border-radius: 2px;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* Equipment Grid */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.equipment-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.equipment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.equipment-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #09cdcd 0%, #21c9c6 100%);;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.equipment-item:hover .equipment-icon {
  transform: scale(1.1);
}

.equipment-icon i {
  font-size: 20px;
  color: white;
}

.equipment-item h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.equipment-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Project Cards */
.project-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-image {
  height: 350px;
  background: linear-gradient(135deg, #09cdcd 0%, #21c9c6 100%);;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.project-image img {
  font-size: 60px;
  color: white;
  opacity: 0.8;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  
}

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

.project-content {
  padding: 30px;
}

.project-content h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.project-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.project-content .badge {
  font-size: 0.75rem;
  padding: 5px 10px;
  font-weight: 500;
}

/* Partner Logos */
.partner-logo {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border: 1px solid #f0f0f0;

}

.partner-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.partner-logo h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.partner-logo small {
  font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #09cdcd 0%, #21c9c6 100%);;
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item p {
  font-size: 1.1rem;
  margin-bottom: 0;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.cta-card {
  background: white;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.cta-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.cta-card .lead {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.btn-gradient {
  background: linear-gradient(135deg, #09cdcd 0%, #21c9c6 100%);;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
  color: white;
  text-decoration: none;
}

.btn-outline-primary {
  border: 2px solid #11dab5;
  color: #11dab5;
  padding: 13px 38px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-primary:hover {
  background: #11dab5;
  color: white;
  transform: translateY(-2px);
}




/* Responsive Design */

/* Extra Large Screens */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  
  .service-hero h1 {
    font-size: 4rem;
  }
  
  .section-title h2 {
    font-size: 3rem;
  }
}

/* Large Screens */
@media (max-width: 1199px) {
  .service-hero {
    padding: 100px 0 60px;
  }
  
  .service-hero h1 {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .equipment-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

/* Medium Screens */
@media (max-width: 991px) {
  .service-hero {
    padding: 80px 0 50px;
    min-height: 60vh;
  }
  
  .service-hero h1 {
    font-size: 2.5rem;
  }
  
  .service-hero .lead {
    font-size: 1.1rem;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
  }
  
  .service-icon i {
    font-size: 35px;
  }
  
  .feature-card {
    padding: 30px 25px;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .equipment-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  
  .equipment-item {
    padding: 25px;
  }
  
  .project-content {
    padding: 25px;
  }
  
  .partner-logo {
    padding: 25px;
    min-height: 100px;
  }
  
  .stats-section {
    padding: 60px 0;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .cta-card {
    padding: 40px 30px;
  }
  
  .cta-card h2 {
    font-size: 2rem;
  }
  
  .navbar-nav {
    text-align: center;
    margin-top: 20px;
  }
  
  .navbar-nav .nav-link {
    padding: 10px 20px;
    font-size: 1.1rem;
  }
  
  .get-quotes {
    margin: 20px 0 10px;
  }
}

/* Small Screens */
@media (max-width: 767px) {
  .service-hero {
    padding: 60px 0 40px;
    min-height: 50vh;
  }
  
  .service-hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .service-hero .lead {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .service-icon i {
    font-size: 30px;
  }
  
  .feature-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
  
  .feature-card h4 {
    font-size: 1.3rem;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .equipment-item {
    padding: 20px;
  }
  
  .equipment-icon {
    width: 45px;
    height: 45px;
  }
  
  .equipment-icon i {
    font-size: 18px;
  }
  
  .project-image {
    height: 150px;
  }
  
  .project-image i {
    font-size: 40px;
  }
  
  .project-content {
    padding: 20px;
  }
  
  .project-content h5 {
    font-size: 1.2rem;
  }
  
  .partner-logo {
    padding: 20px;
    min-height: 80px;
  }
  
  .partner-logo h5 {
    font-size: 1rem;
  }
  
  .stats-section {
    padding: 50px 0;
  }
  
  .stat-item {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-item p {
    font-size: 1rem;
  }
  
  .cta-card {
    padding: 30px 20px;
  }
  
  .cta-card h2 {
    font-size: 1.8rem;
  }
  
  .cta-card .lead {
    font-size: 1rem;
  }
  
  .btn-gradient,
  .btn-outline-primary {
    padding: 12px 30px;
    font-size: 0.9rem;
    margin: 5px;
    display: block;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .navbar-brand img {
    height: 35px;
  }
  
  .navbar-toggler {
    padding: 6px 10px;
  }
  
  #darkmode-button {
    width: 35px;
    height: 35px;
  }
}

/* Extra Small Screens */
@media (max-width: 575px) {
  .service-hero {
    padding: 50px 0 30px;
  }
  
  .service-hero h1 {
    font-size: 1.8rem;
  }
  
  .service-hero .lead {
    font-size: 0.95rem;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
  }
  
  .service-icon i {
    font-size: 25px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 18px;
  }
  
  .feature-card h4 {
    font-size: 1.2rem;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .section-title p {
    font-size: 0.95rem;
  }
  
  .equipment-item {
    padding: 18px;
  }
  
  .equipment-icon {
    width: 40px;
    height: 40px;
  }
  
  .equipment-icon i {
    font-size: 16px;
  }
  
  .equipment-item h5 {
    font-size: 1.1rem;
  }
  
  .project-image {
    height: 120px;
  }
  
  .project-image i {
    font-size: 35px;
  }
  
  .project-content {
    padding: 18px;
  }
  
  .project-content h5 {
    font-size: 1.1rem;
  }
  
  .partner-logo {
    padding: 18px;
    min-height: 70px;
  }
  
  .partner-logo h5 {
    font-size: 0.95rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-item p {
    font-size: 0.95rem;
  }
  
  .cta-card {
    padding: 25px 15px;
  }
  
  .cta-card h2 {
    font-size: 1.6rem;
  }
  
  .cta-card .lead {
    font-size: 0.95rem;
  }
  
  .btn-gradient,
  .btn-outline-primary {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
  
  .navbar-brand img {
    height: 30px;
  }
  
  .navbar-nav .nav-link {
    padding: 8px 15px;
    font-size: 1rem;
  }
  
  .get-quotes {
    padding: 6px 15px;
    font-size: 0.85rem;
  }
  
  #darkmode-button {
    width: 30px;
    height: 30px;
  }
}

/* Animations and Transitions */
.feature-card,
.equipment-item,
.project-card,
.partner-logo {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.navbar-toggler:focus,
a:focus {
  outline: 2px solid #11dab5;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .service-hero,
  .stats-section {
    background: white !important;
    color: black !important;
  }
  
  .feature-card,
  .equipment-item,
  .project-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
  
  .btn-gradient,
  .btn-outline-primary {
    background: white !important;
    color: black !important;
    border: 1px solid black !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .feature-card,
  .equipment-item,
  .project-card,
  .partner-logo,
  .cta-card {
    border: 2px solid #333;
  }
  
  .btn-gradient {
    background: #333;
    border: 2px solid #333;
  }
  
  .btn-outline-primary {
    border: 2px solid #333;
    color: #333;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}