*{
        font-family: initial;
        color: #ffffff;
}
p{
    font-size: 1.1rem !important;
}



.solar-highlights-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.solar-highlight-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 111, 0, 0.1);
}

.solar-highlight-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 111, 0, 0.2);
  border-color: rgba(255, 111, 0, 0.3);
}

.highlight-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.highlight-image img {
  width: 100%;
  height: 134%;
  /*object-fit: cover;*/
  transition: transform 0.5s ease;
}

.solar-highlight-card:hover .highlight-image img {
  transform: scale(1.1);
}

.highlight-content {
  padding: 30px;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.8), rgba(43, 43, 43, 0.9));
}

.solar-highlight-title {
  font-size: 1.8rem;
  color: #ff6f00;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.solar-highlight-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff6f00, #ff8c00);
  border-radius: 2px;
}

.highlight-text {
  color: #ffffff;
  opacity: 0.9;
}

.solar-highlight-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.solar-highlight-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.solar-highlight-list li::before {
  content: '•';
  color: #ff6f00;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
}

.solar-highlight-list li strong {
  color: #ff8c00;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .solar-highlights-container {
    grid-template-columns: 1fr;
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .solar-highlight-card {
    margin: 0 15px;
  }

  .highlight-image {
    height: 200px;
  }

  .solar-highlight-title {
    font-size: 1.5rem;
  }

  .highlight-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .solar-highlight-title {
    font-size: 1.3rem;
  }

  .solar-highlight-list li {
    font-size: 0.9rem;
  }
}

/* styles.css */
/* Main container for social icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

/* Main container for the location info */
.location-info {
    display: flex;
    align-items: flex-start;
}

/* THIS IS THE FIX FOR THE ORANGE BAR.
  It finds and hides the pseudo-element creating the line.
*/
.footer-left::before {
    display: none !important;
}

/* THIS IS THE FIX FOR THE ICONS.
  Step 1: Style ALL icons with a default, non-orange background.
*/
.footer-left .icon {
    display: inline-block;
    background-color: #333; /* A neutral dark background */
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Step 2: Apply the orange background and scale effect ONLY on hover.
  This now works for the location icon AND the social icons.
*/
.footer-left .icon:hover {
    background-color: #ff8c00; /* Orange background ON HOVER */
    transform: scale(1.1);
}

/* Styling for the address text */
.location-info p {
    margin: 0 0 0 12px; /* Adds space to the left of the text */
    color: #c4b4b4;
    font-size: 0.9rem;
    line-height: 1.5;
}

  
  .gsc-news {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #111;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .gsc-news-header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .gsc-news-title {
    font-size: 2rem;
    margin: 0;
  }
  
  .gsc-news-subtitle {
    color: #555;
  }
  
  .gsc-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .gsc-news-item {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
    background: #111;
  }
  
  .gsc-news-meta {
    margin-bottom: 10px;
  }
  
  .gsc-news-date {
    color: #007bff;
    font-weight: bold;
    margin: 0;
  }
  
  .gsc-news-type {
    color: #333;
    font-size: 0.9rem;
    margin: 5px 0;
  }
  
  .gsc-news-headline {
    font-size: 1.1rem;
    margin: 10px 0;
    line-height: 1.4;
  }
  
  .gsc-news-image img {
    width: 100%;
    height: auto;
  }
  
  .gsc-news-footer {
    text-align: center;
    margin-top: 20px;
  }
  
  .gsc-news-btn {
    text-decoration: none;
    color: #fff;
    background-color: #007bff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
  }
  
  .gsc-news-btn:hover {
    background-color: #0056b3;
  }
  
  /* Responsive Styles */
  @media (max-width: 600px) {
    .gsc-news-title {
      font-size: 1.5rem;
    }
  
    .gsc-news-headline {
      font-size: 1rem;
    }
  }


/* Solar Section Styling */
.solar-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
  position: relative;
  overflow: hidden;
}

.solar-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 111, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.solar-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.solar-header {
  margin-bottom: 40px;
  position: relative;
}

.solar-main-title {
  font-size: 2rem;
  color: #ff6f00;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 10px rgba(255, 111, 0, 0.3);
  animation: titleGlow 2s infinite alternate;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 10px rgba(255, 111, 0, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 111, 0, 0.5), 0 0 30px rgba(255, 111, 0, 0.3);
  }
}

.solar-title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.solar-title-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff6f00, transparent);
  position: relative;
  animation: lineGrow 1s ease-out forwards;
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.solar-title-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 111, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconPulse 2s infinite;
}

.solar-title-icon i {
  font-size: 1.5rem;
  color: #ff6f00;
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.4);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(255, 111, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 111, 0, 0);
  }
}

.solar-description {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .solar-section {
    padding: 60px 20px;
  }

  .solar-main-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .solar-title-line {
    width: 60px;
  }

  .solar-title-icon {
    width: 40px;
    height: 40px;
  }

  .solar-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .solar-main-title {
    font-size: 2rem;
  }

  .solar-title-line {
    width: 40px;
  }

  .solar-title-icon {
    width: 30px;
    height: 30px;
  }

  .solar-description {
    font-size: 1rem;
  }
}


 .solar-stats-container {
         display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 20px;
    justify-items: center;
    padding: 20px 50px;
    width: 100%;
    max-width: 100%;
        margin-bottom: 100px;
    }
  
 .solar-box-ptag {
    font-size: 20px;
    padding: 10px 50px;
}
    .solar-stat-number {
     animation: solarFadeIn 1.5s ease-in-out;
    align-items: center;
    display: flex;
    flex-direction: column;
    font-weight: bold;
 font-size: 26px;
    justify-content: center;
    height: 10rem;
    line-height: 1;
    background: radial-gradient(circle at 50% 50%, black  0%, hsl(21, 84%, 62%) 50%);
    width: 10rem;
    /* -webkit-border-radius: 163px 163px 163px 163px; */
    border: 1px solid #ff6550;
    }
    .solar-stat-description {
      font-size: 1.1rem;
      margin-top: 10px;
    }


    /* Keyframes for animations */
    @keyframes solarFadeIn {
      0% { opacity: 0; transform: translateY(10px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes solarBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .solar-stat-number {
        font-size: 2rem;
      }
     
    }
  .solar-highlights-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
         gap: 40px;
    width: 100%;
    max-width: 100%;
    padding: 20px 50px;
    }

    
    .solar-highlight-title {
      font-size: 1.5rem;
      color: #ff6f00;
      animation: highlightFadeIn 1s ease-in-out;
    }
    .solar-highlight-text {
      font-size: 1rem;
      line-height: 1.9;
      margin-top: 10px;
      animation: highlightSlideIn 1.5s ease-in-out;
    }
    .solar-highlight-icon {
      font-size: 3rem;
      color: #ffcc00;
      margin-bottom: 10px;
      animation: highlightBounce 2s infinite;
    }

    /* Keyframes for animations */
    @keyframes highlightFadeIn {
      0% { opacity: 0; transform: translateY(-20px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes highlightSlideIn {
      0% { opacity: 0; transform: translateX(-20px); }
      100% { opacity: 1; transform: translateX(0); }
    }
    @keyframes highlightBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .solar-highlights-container {
        grid-template-columns: 1fr;
                padding: 20px 20px;
      }
      .solar-highlight-title {
        font-size: 1.3rem;
      }
      .solar-highlight-icon {
        font-size: 2.5rem;
      }
    }
    
    
    
    .solar-content-wrapper {
    display: grid
;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
    padding: 40px 50px;
    margin: 0 auto;
    }

    .solar-card {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      padding: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

 

    .solar-img-wrapper {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
    }

    .solar-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .solar-text-content {
      flex-grow: 1;
    }

    .solar-heading {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 5px;
          color: #ff6f00;
    }

    .solar-description {
      font-size: 1rem;
    }
    
    h1 {
      font-size: 2rem;
      text-align: left;
      margin-bottom: 20px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
    

      h1 {
        font-size: 1.8rem;
      }

      .solar-heading {
        font-size: 1rem;
      }

      .solar-description {
        font-size: 0.9rem;
      }

      .solar-card {
        flex-direction: column;
        text-align: center;
      }

      .solar-img-wrapper {
        margin-bottom: 10px;
        width: 100px;
        height: 100px;
      }
    }
    
    
    
/* Contact Form Section */
.contact-form-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: #2b2b2b;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
  flex: 1 1 300px;
  /* padding: 20px; */
}

.contact-info h2 {
  font-size: 4rem;
  color: #ff6f00;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}



.contact-info p {
  font-size: 7rem;
  color: #ffffff;
  margin-bottom: 70px;
  line-height: 2;
}

.contact-list {
  list-style: none;
  padding: 0;
  /* font-size: 1.1rem;              */
}

.contact-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list li i {
  color: #ff6f00;
  font-size: 1.2rem;
}

.contact-list li a {
  color: #ff6f00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-list li a:hover {
  color: #00c6ff;
}

.form-container {
  flex: 2 1 600px;
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ff8c00;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  background: #fff;
}

.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  min-height: 150px;
  resize: vertical;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  background: #fff;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #007bff;
}

.form-checkbox label {
  color: #555;
  font-size: 0.9rem;
}

.form-submit-button {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
  margin-top: 20px;
}

.form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 20px;
  }

  .form-group {
    flex: 1 1 100%;
  }

  .form-submit-button {
    max-width: 100%;
  }
}
    
    
    
/* Key Solar Facts Section */
.solar-facts-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
  position: relative;
  overflow: hidden;
}

.solar-facts-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 111, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  color: #ff6f00;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ff6f00;
  border-radius: 2px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6f00, #ff8c00);
  margin: 0 auto;
  border-radius: 2px;
  transform-origin: left;
  animation: dividerGrow 1s ease-out forwards;
}

@keyframes dividerGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.facts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.fact-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 111, 0, 0.1);
}

.fact-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 111, 0, 0.2);
  border-color: rgba(255, 111, 0, 0.3);
}

.fact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 111, 0, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.fact-card:hover::before {
  transform: translateX(100%);
}

.fact-icon {
  font-size: 2.5rem;
  color: #ff6f00;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  display: inline-block;
}

.fact-card:hover .fact-icon {
  transform: scale(1.2) rotate(5deg);
  color: #ff8c00;
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.fact-year {
  color: #ff8c00;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 500;
  opacity: 0.9;
}

.fact-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6f00;
  margin: 15px 0;
  position: relative;
  display: inline-block;
}

.fact-number::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ff6f00, #ff8c00);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.fact-card:hover .fact-number::after {
  width: 60px;
}

.fact-description {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 15px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .facts-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solar-facts-section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  .facts-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .fact-card {
    padding: 25px;
  }

  .fact-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .solar-facts-section {
    padding: 40px 10px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .fact-card {
    padding: 20px;
  }

  .fact-number {
    font-size: 2rem;
  }

  .fact-description {
    font-size: 1rem;
  }
}
    
    
    
/* SFA's Areas of Focus Section */
.sfa-focus-section {
  padding: 30px 30px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
  position: relative;
  overflow: hidden;
}

.sfa-focus-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 111, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  color: #ff6f00;
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 10px rgba(255, 111, 0, 0.3);
}

.section-subtitle {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 500;
  opacity: 0.9;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6f00, #ff8c00);
  margin: 0 auto;
  border-radius: 2px;
  transform-origin: left;
  animation: dividerGrow 1s ease-out forwards;
}

.focus-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.focus-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 111, 0, 0.1);
}

.focus-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 111, 0, 0.2);
  border-color: rgba(255, 111, 0, 0.3);
}

.focus-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.focus-image img {
  width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.focus-card:hover .focus-image img {
  transform: scale(1.1);
}

.focus-content {
  padding: 25px;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.8), rgba(43, 43, 43, 0.9));
}

.focus-title {
  font-size: 1.5rem;
  color: #ff6f00;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

/*.focus-title::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  width: 40px;*/
/*  height: 3px;*/
/*  background: linear-gradient(90deg, #ff6f00, #ff8c00);*/
/*  border-radius: 2px;*/
/*  transition: width 0.3s ease;*/
/*}*/

.focus-card:hover .focus-title::after {
  width: 60px;
}

.focus-description {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 15px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .focus-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sfa-focus-section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.5rem;
  }

  .focus-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .focus-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .sfa-focus-section {
    padding: 40px 10px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1.3rem;
  }

  .focus-image {
    height: 160px;
  }

  .focus-title {
    font-size: 1.2rem;
  }

  .focus-description {
    font-size: 1rem;
  }
}
    
    
    