
:root {
  font-family: 'Playfair Display', serif;
}

/* Footer Container Base */
.mega-footer {
  position: relative;
  background: #d84d02;
  color: #fff;
  padding: 0;
  font-family: 'Playfair Display', serif;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #dc6402 0%, #d85401 100%);
  opacity: 0.85;
  z-index: 1;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  margin: 0 auto;
  padding: 50px 24px 40px 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
  margin-bottom: 32px;
  min-width: 218px;
  max-width: 325px;
  z-index: 2;
}

.company-info {
  flex: 1.6 1 270px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 10px #00796b66);
}

.footer-column h3 {
  font-size: 1.50rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #f9b500;
  letter-spacing: .5px;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color .2s;
  font-weight: 200;
  font-size: 1rem;
  letter-spacing: .02em;
}

.footer-column ul li a:hover {
  color: #f9b500;
  text-decoration: underline;
}


.contact-info li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 12px;
}

.contact-info i {
  margin-right: 10px;
  color: #f9b500;
  font-size: 1.13rem;
}

/* Newsletter Styles */
.newsletter {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}

.newsletter label {
  font-size: .95rem;
  color: #f9b500;
  margin-bottom: 6px;
  font-weight: 500;
}

.newsletter-box {
  display: flex;
  align-items: center;
  gap: 0;
  background: #00363a;
  border-radius: 1px;
  overflow: hidden;
}

.newsletter-box input[type="email"] {
  border: none;
  outline: none;
  padding: 10px 12px;
  background: transparent;
  color: #fff;
  width: 100%;
  font-size: 1rem;
}

.newsletter-box button {
  background: #f9b500;
  color: #00363a;
  border: none;
  padding: 0 18px;
  height: 100%;
  font-size: 1.04rem;
  cursor: pointer;
  transition: background .2s, color .2s;
  border-radius: 0 1px 1px 0;
}

.newsletter-box button:hover {
  background: #00363a;
  color: #fff;
}

/* Bottom Bar */
.footer-bottom {
  background: #00363a;
  color: #fff;
  text-align: center;
  padding: 16px 0 10px 0;
  font-size: .98rem;
  position: relative;
  z-index: 2;
}

.footer-bottom strong {
  color: #f9b500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    gap: 24px;
    padding: 40px 12px 32px 12px;
  }
  .footer-column {
    min-width: 180px;
  }
  .company-info {
    min-width: 210px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 7vw 28px 7vw;
    gap: 30px;
  }
  .footer-column {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 22px;
    align-items: stretch;
  }
  .footer-logo {
    margin: 0 auto 10px auto;
    width: 124px;
  }
  
}

@media (max-width: 500px) {
  .footer-container {
    padding: 23px 4vw 18px 4vw;
    gap: 22px;
  }
  .footer-column {
    margin-bottom: 18px;
  }
  .footer-column h3 {
    font-size: 1.06rem;
    margin-bottom: 13px;
  }
  .footer-logo {
    width: 300px;
  }
  .footer-bottom {
    font-size: .73rem;
    padding: 12px 0 6px 0;
  }
}


/* ===== INSTALLATION TYPES SECTION ===== */
.installation-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #ffffff);
  padding: 100px 10%;
  overflow: hidden;
  text-align: center;
}

.installation-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 6, 0, 0.3), transparent);
  animation: floatGlow 8s infinite ease-in-out;
  z-index: 0;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #f6610a;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.installation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  z-index: 2;
  position: relative;
}

.install-card {
  background: #fff;
  border-radius: 1px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.install-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,0,0.15), rgba(255,255,0,0.2));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.install-card:hover::after {
  opacity: 1;
}

.install-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px #0e120e;
}

.install-icon {
  font-size: 3rem;
  color: #f6610a;
  background: linear-gradient(135deg, #040239, #11016d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  z-index: 2;
  position: relative;
  animation: iconBounce 3s infinite;
}

.install-card h3 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #09004d;
  margin-bottom: 15px;
  z-index: 2;
  position: relative;
}

.install-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  z-index: 2;
  position: relative;
}

.install-highlight {
  font-size: 0.7rem;
  font-weight: bold;
  color: #ffffff;
  background: #050157;
  padding: 4px 8px;
  border-radius: 1px;
  z-index: 2;
  position: relative;
}

/* ===== Animations ===== */
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(20px,20px); }
}


/* ===== MYTH & FACT SECTION ===== */
.myth-fact-section {
  background: linear-gradient(180deg, #ffffff, #ffffff);
  padding: 100px 10%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.myth-fact-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,0,0.2), transparent);
  animation: floatGlow 8s infinite ease-in-out;
}

.welcome-text h2 {
  font-size: 2.3rem;
  color: #f6610a;
  font-weight: 700;
  margin-bottom: 15px;
}

.welcome-text h2 span {
  color: #f6610a;
}

.welcome-text p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 60px;
}

.myth-fact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  z-index: 2;
  position: relative;
}

.myth-card, .fact-card {
  background: #fff;
  border-radius: 1px;
  padding: 40px 30px;
  width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
}

.myth-card:hover, .fact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 0, 0.2);
}

.myth-card h3, .fact-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.myth-card h3 {
  color: #f9b500;
}

.fact-card h3 {
  color: #f6610a;
}

.myth-card p {
  color: #444;
  font-size: 1rem;
}

.fact-card p {
  color: #222;
  font-size: 1rem;
  font-weight: 500;
}

.myth-card::after, .fact-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 0%;
  transition: width 0.4s ease;
}

.myth-card::after {
  background: #f9b500;
}

.fact-card::after {
  background: #f6610a;
}

.myth-card:hover::after, .fact-card:hover::after {
  width: 100%;
}

/* Animate entrance */
.animate-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===== NEW CLASSY ACHIEVEMENTS SECTION ===== */

.achievements-royal {
    position: relative;
    padding: 40px 10px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #b9c1c9, #003d73, #0074D9);
}

/* Animated Soft Gradient Background */
.achievements-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: #013701;
    
    z-index: 0;
}

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

/* Container */
.achievements-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .achievements-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 575px) {
    .achievements-container {
        grid-template-columns: 1fr;
    }
}

/* Card Style */
.achievement-card {
    background: rgb(1, 46, 27);
    backdrop-filter: blur(12px);
    padding: 40px 20px;
    border-radius: 1px;
    border: -1px solid rgb(1, 47, 28);
    transition: 0.4s ease;
    position: relative;
    cursor: pointer;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Floating Icon */
.icon-float {
    font-size: 45px;
    color: #f6610a;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 1px;
    background: #100138;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 3s infinite ease-in-out;
}

@keyframes floatIcon {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Counter Number */
.achievement-card h3 {
    font-size: 42px;
    color: #fff;
    margin: 10px 0;
    font-weight: 700;
}

/* Description */
.achievement-card p {
    color: #dfe9f9;
    font-size: 16px;
    margin-top: 5px;
}

/* our services */

.services {
  padding: 40px 0;
}

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

.services .section-title {
  font-size: 2.6rem;
  font-weight: 600;
  color: #f6610a;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

/* grid */

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

/* card */

.service-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #f9b500;
  box-shadow: 0 5px 10px rgba(169, 167, 167, 0.804);
   display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.9;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(245, 247, 246, 0.829);
  border-color: rgba(189, 189, 189, 0.934);
}

/* IMAGE AS PROPER SERVICE VISUAL */
.service-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* real photo style */
  transform: scale(1.03);
  transition: transform 0.4s ease;
}


/* CONTENT AREA */

.service-content {
  padding: 20px 22px 24px;
  text-align: left;
}

.service-card h3 {
  color: #f26c12;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  margin-bottom: 10px;
  line-height: 1.4;
}

.service-card p {
  color: #565657ff;
  line-height: 1.65;
  font-size: 0.95rem;
  margin-bottom: 18px;   
  
}

/* button */

.know-more-btn {
  display: inline-block;
  padding: 9px 22px;
  background: #01013f;
  color: white;
  text-decoration: none;
  border-radius: 1px;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  
  letter-spacing: 0.4px;
}

.know-more-btn:hover {
  transform: translateY(-2px);
  background: #f26c12;
  color: white;
  text-decoration: none;
}

/* Responsive */

@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .services {
    padding: 40px 0 60px;
  }

  .service-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .service-card {
    border-radius: 1px;
  }

  .service-image {
    height: 180px;
  }

  .service-content {
    padding: 18px 16px 20px;
  }
}

/* ===== WHY INSTALL SOLAR */
.why-install {
  padding: 90px 0;
  background: #f26c12;
  color: #f5f7fb;
  font-family: inherit;
}

.why-install-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;     
}

.why-install-header h2 {
  font-size: 2.6rem;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 10px;
}

.why-install-header p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #efeded;
}

/* Grid */
.why-install-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* Card */
.why-install-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 1px;
  background: linear-gradient(145deg, rgba(4, 1, 35, 0.94), rgba(6, 11, 25, 0.98));
  border: 1px solid rgba(134, 146, 255, 0.797);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
  overflow: hidden;
}

/* Soft glow accent in corner */
.why-install-card::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle at top left, rgba(99, 179, 237, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.why-install-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  border-color: rgba(123, 201, 255, 0.5);
  background: linear-gradient(145deg, rgba(2, 3, 5, 0.98), rgb(3, 1, 41));
}

.why-install-card:hover::before {
  opacity: 1;
}

/* Title and subtle accent bar */
.why-install-card h3 {
  position: relative;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fdfefe;
  letter-spacing: 0.02em;
}

.why-install-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #f9b500, #f9b500);
  opacity: 0.9;
}

/* Text */
.why-install-card p {
  margin-top: 14px;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(222, 230, 245, 0.86);
}

/* Optional small icon circle (if you add icons later) */
.why-install-card .why-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: radial-gradient(circle at 30% 0, #f9b500, #f9b500);
  box-shadow: 0 0 18px #f9b500;
  color: #020309;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
  .why-install-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .why-install {
    padding: 70px 0;
  }

  .why-install-header h2 {
    font-size: 1.8rem;
  }

  .why-install-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-install-card {
    padding: 22px 20px 20px;
    border-radius: 16px;
  }
}



/* Our Projects – Text left, image right */
.our-projects {
  padding: 70px 0;
  background: #f8fafc;
 
}

.our-projects .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.projects-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.projects-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f6610a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.projects-header p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.project-item {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  background: #ffffff;
  border-radius: 1px;
  border: 1px solid #e2e8f0;
  padding: 2px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.project-item:hover {
  border-color: #cbd5f5;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  transform: translateY(-3px);
}

.project-info h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: #0f172a;
  margin: 0 0 8px;
}

.project-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.project-info li {
  font-size: 0.9rem;
  color: rgb(124 187 55);
  line-height: 1.5;
  margin-bottom: 2px;
}

.project-info li span {
  font-weight: 500;
  color: #111827;
}

.project-link {
  display: inline-block;
  font-size: 0.88rem;
  color: #ffb004;
  text-decoration: none;
  font-weight: 500;
  margin-top: 4px;
}

.project-link:hover {
  text-decoration: underline;
}

/* Right-side image */
.project-thumb {
  border-radius: 1px;
  overflow: hidden;
  background: #e5e7eb;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.project-item:hover .project-thumb img {
  transform: scale(1.03);
}

.projects-footer {
  text-align: center;
  margin-top: 28px;
}

.view-all-projects {
  display: inline-block;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #cbd5f5;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 400;
  background: #f9b500;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.view-all-projects:hover {
  background: #f26c12;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

/* Responsive */
@media (max-width: 768px) {
  .our-projects {
    padding: 55px 0;
  }

  .project-item {
    grid-template-columns: 1fr;
    padding: 12px 12px;
  }

  .project-thumb {
    height: 180px;
  }
}



/* ===== WHY CHOOSE US ===== */
.why-us {
  background: #e5e5e5;
  color: #014101;
  text-align: center;
  padding: 80px 50px;
}

.why-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.why-item {
  background: rgba(255, 255, 255, 0.879);
  border-radius: 10px;
  padding: 25px 20px;
  width: 200px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.why-item:hover {
  background: #f9b500;
  color: #f26c12;
  transform: scale(1.1);
}

.why-item i {
  font-size: 35px;
  margin-bottom: 10px;
}


/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(90%);
  z-index: 0;
}

/* ===== Slider Images ===== */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  z-index: 1;
}

.hero-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  filter: brightness(90%);
}

.hero-slider img.active {
  opacity: 1;
}

/* ===== Hero Content ===== */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeIn 2s ease;
}

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

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-primary {
  background: #000338;
  color: #ffffff;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #000338;
  transform: scale(1.05);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}
body {
  font-family: 'Playfair Display', sans-serif;
  margin: 0;
  padding: 0;
}

header.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  box-shadow: 0 3px 12px rgba(3, 3, 1, 0.493);
  transition: all 0.3s ease;
}

/* ===== TOP BAR ===== */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 5%;
  color: #fff;
}

.top-bar .logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.top-bar .logo img:hover {
  transform: scale(1.05);
}



/* ===== CALL BUTTON ===== */
.call-btn {
  background: #01013f;
  color: #feffff;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 1px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  
}

.call-btn:hover {
  transform: translateY(-2px) scale(1);
  background: #d66b01;
  
}

/* ===== NAVBAR ===== */
nav.navbar {
  background: #f26c12;
  backdrop-filter: blur(10px);
}

nav.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

nav.navbar ul li {
  position: relative;
  margin: 0 18px;
}

nav.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  padding: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

nav.navbar ul li a:hover {
  color: #1a029f; 
}

nav.navbar ul li a.active {
  color: #f9b500;
  border-bottom: 2px solid #f9b500;
}

/* ===== MODERN CLEAN DROPDOWN SUBMENU (COMPLETE & FIXED) ===== */

/* Base dropdown structure */
.dropdown {
  position: relative;
}

.dropbtn {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dropbtn i {
  margin-left: 8px;
  font-size: 0.8em;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Desktop Dropdown - HIDDEN BY DEFAULT */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #c94f03;
  backdrop-filter: blur(12px);
  min-width: 60px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(249, 181, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  padding: 12px 0;
  margin: 2px 0 0 -8px;
  border-radius: 2px;
  z-index: 1000;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  color: #ffffff !important;
  font-weight: 400;
  font-size: 0.95em;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.dropdown-menu a:hover {
  background: rgba(249, 181, 0, 0.12);
  color: #fff !important;
  border-left-color: #031779;
  padding-left: 28px;
  box-shadow: inset 4px 0 0 rgba(249, 181, 0, 0.2);
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  color: #f9b500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ===== DESKTOP HOVER (992px+) ===== */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  
  .dropdown:hover .dropbtn i {
    transform: rotate(180deg);
  }
}

/* ===== MOBILE RESPONSIVE (991px and below) ===== */
@media (max-width: 991px) {
  .social-icons {
    display: flex !important;
  }

  /* ❌ Remove this – it blocks dropdown on mobile */
  /* .dropdown:hover .dropdown-menu {
    display: none !important;
  } */

  /* MOBILE MAIN MENU - HIDDEN BY DEFAULT */
  nav.navbar ul {
    display: none;
    position: absolute;
    top: 100%;              /* was 50% – now sits just under navbar */
    left: 0;
    right: 0;
    flex-direction: column;
    background: #bf6600;
    backdrop-filter: blur(20px);
    margin: 0;
    padding: 2px 2%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 0 0 2px 2px;
    z-index: 999;
  }

  nav.navbar ul.show {
    display: flex;
  }

  nav.navbar ul li {
    width: 100%;
    margin: 2px 20px;
    border-bottom: 1px solid #797874;
    padding: 0;
  }

  nav.navbar ul li a:not(.dropbtn) {
    padding: 12px 3px !important;
    font-size: 1rem;
  }

  /* MOBILE DROPDOWN - COLLAPSED BY DEFAULT */
  .dropdown-menu {
    position: static !important;
    margin: 1px 0 0 30px !important;
    background: rgba(249, 181, 0, 0.1) !important;
    border: none !important;
    border-left: 3px solid #f9b500 !important;
    border-radius: 0 !important;
    min-width: auto !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease !important;
  }

  /* MOBILE: EXPANDED STATE */
  .dropdown-menu.show {
    max-height: 200px !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 1px 0 !important;
  }

  .dropbtn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }

  /* SHOW HAMBURGER */
  .hamburger {
    display: block;
  }

  .call-btn {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}



/* ===== ABOUT PAGE STYLING ===== */
.about-page {
  background: linear-gradient(135deg, #f26c12 0%, #00251f 50%, #00251f 100%);
  color: #fff;
  overflow: hidden;
}

.about-intro {
  text-align: center;
  padding: 50px 20px 60px;
}
.about-intro h1 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 30px;
}
.about-intro h1 span {
  color: #fff;
}
.about-intro p {
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.1rem;
}


/* Section container and grid layout */
.mission-section {
  padding: 80px 20px;
  background: #f0f8f4;
}

.mission-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left: Text content */
.mission-text {
  flex: 1 1 45%;
  font-family: 'Playfair Display', serif;
  color: #333;
}

.mission-text h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #053001;
}

.mission-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.mission-points {
  list-style: none;
  padding: 0;
}
.mission-points li {
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #053001;
}
.mission-points li i {
  color: #f9b500;
  font-size: 1.2rem;
}

/* Right: Image */
.mission-image {
  flex: 1 1 45%;
  text-align: center;
}
.mission-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 5px;
  box-shadow: 0 14px 40px rgba(46, 125, 50, 0.15);
  transition: transform 0.3s ease;
}

/* Animate classes for fade-in effect if needed (optional) */

@media(max-width: 992px) {
  .mission-grid {
    flex-direction: column;
  }
  .mission-text, .mission-image {
    flex: 1 1 100%;
  }
}

.journey-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

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

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

.journey-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #053001;
  margin-bottom: 24px;
  font-weight: 600;
}

.journey-text p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #202020;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.stats-grid {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.stat-card {
  background: #e0f0d9;
  box-shadow: 0 10px 28px rgba(42, 97, 13, 0.12);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  flex: 1 1 150px;
  color: #2f5815;
  font-family: 'Playfair Display', sans-serif;
  transition: transform 0.3s ease;
  cursor: default;
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(42, 97, 13, 0.25);
}

.stat-card h3 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 1rem;
  font-weight: 600;
}

.journey-image {
  text-align: center;
}

.journey-image img {
  width: 100%;
  max-width: 540px;
  border-radius: 5px;
  box-shadow: 0 14px 48px rgba(41, 97, 14, 0.2);
  transition: transform 0.3s ease;
}



/* Responsive adjustments */
@media (max-width: 992px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }
  .journey-image {
    margin-top: 40px;
  }
}


.technology-section {
  padding: 80px 20px;
  background-color: #f9fbf8;
}

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

.tech-grid {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

/* Image styling */
.tech-image {
  flex: 1 1 45%;
  text-align: center;
}
.tech-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(44, 124, 22, 0.18);
  transition: transform 0.3s ease;
}
.tech-image img:hover {
  transform: scale(1.03);
}

/* Text styling */
.tech-text {
  flex: 1 1 50%;
  font-family: 'Playfair Display', serif;
  color: #264d0b;
}

.tech-text h2 {
  font-weight: 600;
  font-size: 2.6rem;
  margin-bottom: 24px;
  color: #053001;
}

.tech-text p {
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 32px;
  color: #111211;
}

.certifications {
  display: flex;
  gap: 28px;
  font-weight: 600;
  color: #053001;
  font-size: 1.1rem;
}

.certifications span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.certifications i {
  color: #f9b500;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .tech-grid {
    flex-direction: column-reverse;
  }
  .tech-image,
  .tech-text {
    flex: 1 1 100%;
  }
  .tech-text {
    margin-bottom: 48px;
    text-align: center;
  }
  .certifications {
    justify-content: center;
    flex-wrap: wrap;
  }
}


.testimonial-cards {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: nowrap; /* Prevent wrapping to multiple rows */
  overflow-x: auto; /* Enable horizontal scrolling if needed */
  padding-bottom: 12px; /* For scrollbar space */
  scroll-behavior: smooth;
}

/* Optional: hide default scrollbar in Webkit browsers */
.testimonial-cards::-webkit-scrollbar {
  height: 6px;
}
.testimonial-cards::-webkit-scrollbar-track {
  background: transparent;
}
.testimonial-cards::-webkit-scrollbar-thumb {
  background-color: rgba(44, 124, 22, 0.5);
  border-radius: 3px;
}

/* Set fixed width for cards to maintain uniformity */
.testimonial-card {
  min-width: 320px; /* or desirable fixed width */
  max-width: 320px;
  flex-shrink: 0; /* Don't shrink smaller */
}


/* Simple Animations */
.animate-fade {
  animation: fadeIn 1.5s ease forwards;
}
.animate-up {
  animation: slideUp 1.5s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== COLORS ===== */
:root {
  --royal-blue: #050506;
  --royal-green: #1b8a4a;
  --royal-yellow: #f9b500;
  --text-dark: #222;
  --text-light: #fff;
  --bg-light: #f9fafc;
  --card-bg: #ffffff;
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(120deg, var(--royal-blue), var(--royal-green));
  color: var(--text-light);
  padding: 120px 20px;
  text-align: center;
}
.hero-title {
  font-size: 3.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.hero-subtitle {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
}
.hero-btn {
  background: var(--royal-yellow);
  color: var(--text-dark);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.hero-btn:hover {
  background: var(--text-light);
  color: var(--royal-blue);
}

/* ===== INTRO ===== */
.intro-section {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-light);
}
.section-title {
  font-size: 2rem;
  color: #f6610a;
  margin-bottom: 15px;
}
.section-desc {
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== FONT & COLORS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@600;700&display=swap');


:root {
  --royal-blue: #004aad;
  --royal-green: #0d9f59;
  --royal-yellow: #f9b500;
  --text-dark: #1c1c1c;
  --bg-light: #f9fafc;
}

/* ===== GENERAL ===== */
body {
  font-family: 'Playfair Display', sans-serif;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

/* ===== HERO ===== */
.hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-slider{
    position:absolute;
    inset:0;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    opacity:1;
}

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

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:800px;
    padding:20px;
    color:#fff;
}

.hero-content h1{
    font-size:clamp(40px,6vw,72px);
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.slider-dots{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    z-index:3;
    display:flex;
    gap:10px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
}

.dot.active{
    background:#ffb400;
}


.hero-slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
}

.slide.active{
    opacity:1;
}

.slide img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}
/* Info Section */


.social-links a {
  background: #f9b500;
  color: #fff; margin-right: 10px;
  padding: 10px 14px;
  border-radius: 30%;
  transition: all 0.3s ease;
}
.social-links a:hover { background: var(--royal-yellow); color: #333; }

/* Multi-step Form */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}
.form-step { display: none; animation: fadeIn 0.5s ease; }
.form-step.active { display: block; }
.form-step h2 { color: var(--royal-green); margin-bottom: 20px; }
input, textarea {
  width: 100%; padding: 15px; margin: 10px 0;
  border: 1px solid #ddd; border-radius: 8px;
  font-size: 1rem;
}
textarea { height: 120px; resize: none; }

.btn-next, .btn-prev, .btn-send {
  background: var(--royal-blue);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}
.btn-next:hover, .btn-send:hover { background: var(--royal-green); }
.btn-prev { background: var(--royal-yellow); color: #333; }

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


.cta-banner {
  background: linear-gradient(120deg, #f95300, #120269);
  padding: 60px 20px;
  text-align: center;
  border-radius: 1px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  margin: 60px auto;
  max-width: 1000px;
}

.cta-banner h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.cta-banner h2.animate-up {
  opacity: 1;
  transform: translateY(0);
}

.btn-glow {
  display: inline-block;
  background: #01013f;
  color: #f6610a;
  font-size: 1.2rem;
  font-weight: 300;
  padding: 12px 30px;
  border-radius: 1px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}



.btn-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s;
  pointer-events: none;
}

.btn-glow:hover::before {
  transform: translate(-50%, -50%) scale(1);
}


body {
  font-family: 'Playfair Display', serif;
  background: #fff;
  color: #253522;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.hero-global {
  background: linear-gradient(135deg, #f26c12 0%, #08013b 50%, #080025 100%);
  color: white;
  text-align: center;
  padding: 3rem 2rem 5rem;
  border-radius: 1px;
  box-shadow: 0 12px 40px rgb(255, 255, 255);
  margin-bottom: 70px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 200;
  opacity: 0.85;
  max-width: 740px;
  margin: 0 auto 2.5rem;
}
.btn-primary {
  background: #03001e;
  border: none;
  padding: 14px 40px;
  border-radius: 1px;
  font-weight: 600;
  font-size: 1rem;
  color: #1b3a0b;
  cursor: pointer;
 
  transition: background 0.3s ease;
  text-decoration: none;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #d84d02;
}

/* Product List: two column layout */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
}

.product-item {
  display: flex;
  gap: 36px;
  align-items: center;
  background-color: white;
  border-radius: 1px;
  box-shadow: 0 8px 24px rgb(255, 255, 255);
  overflow: hidden;
  padding: 20px 32px;
  transition: box-shadow 0.3s ease;
}
.product-item:hover {
  box-shadow: 0 20px 45px rgb(255, 255, 255);
}

.product-image-wrapper {
  position: relative;
  flex: 0 0 45%;
}
.product-image {
  width: 100%;
  height: auto;
  border-radius: 1px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.badge.eco {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #070156;
  color: white;
  padding: 6px 14px;
  border-radius: 1px;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 3px 8px rgba(124, 187, 55, 0.7);
  user-select: none;
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: #f6610a;
  margin-bottom: 14px;
}

.product-content p {
  font-size: 1rem;
  color: #131312;
  margin-bottom: 24px;
  line-height: 1.65;
}

.product-benefits {
  list-style: disc inside;
  color: #f26c12;
  margin-bottom: 30px;
}
.product-benefits li {
  margin-bottom: 8px;
  font-weight: 600;
}

.btn-secondary {
  padding: 12px 36px;
  border-radius: 1px;
  background-color: #f9b500;
  color: #e6f4dc;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  max-width: max-content;
  box-shadow: 0 4px 15px #030700cc;
  transition: background-color 0.3s ease;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #000000;
}

/* Responsive */
@media (max-width: 910px) {
  .product-item {
    flex-direction: column;
  }
  .product-image-wrapper {
    width: 100%;
    flex: none;
  }
  .product-content h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}
/* Page base - Dark backdrop for solar energy premium feel */
.gallery-page {
  background: #ffffff;
  color: #000000;
  padding-bottom: 80px;
  min-height: 100vh;
}

/* Hero - Your specified green */
.gallery-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #f26c12 0%, #00251f 50%, #00251f 100%);
  position: relative;
  overflow: hidden;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
}

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

.gallery-hero .hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #ffffff; /* Pure white text */
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(249, 181, 0, 0.3); /* Keep gold glow */
}


.gallery-hero .hero-subtitle {
  max-width: 680px;
  margin: 0 auto 32px;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.7;
}

.gallery-hero .header-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}
/* Blog Grid Section - Solar Energy Theme */
.blog-grid-wrapper {
    padding: 60px 0 10px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(36px, 1fr));
    gap: 40px;
    max-width: 140px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center;
}

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

/* Premium Solar Blog Post Cards */
.blog-post {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 77, 64, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 181, 0, 0.1);
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f9b500, #fbbf24, #f59e0b);
    transform: scaleX(0);
    transition: transform 300ms ease;
}



.blog-post:hover::before {
    transform: scaleX(1);
}

/* Post Image */
.post-image-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: linear-gradient(135deg, #f26c12 0%, #00251f 100%);
}

.post-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post:hover .post-image-wrap img {
    transform: scale(1.1);
}

.post-image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0, 77, 64, 0.9));
    z-index: 2;
}

/* Post Content */
.post-content {
    padding: 32px;
    position: relative;
    z-index: 3;
}

.post-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(249, 181, 0, 0.15), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(249, 181, 0, 0.3);
    color: #f9b500;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(249, 181, 0, 0.15);
}

.post-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a202c;
    line-height: 1.3;
    transition: color 300ms ease;
}

.blog-post:hover .post-title {
    color: #f26c12;
}

.post-meta {
    color: #718096;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.post-meta::before {
    content: '🕒 ';
}

.post-excerpt {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Button */
.post-content .btn {
    font-size: 0.9rem;
    padding: 10px 24px;
}

.btn-secondary {
    background: transparent;
    color: #f26c12;
    
    font-weight: 600;
    transition: all 300ms ease;
}

.btn-secondary:hover {
    background: #f26c12;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 77, 64, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .blog-grid-wrapper {
        padding: 40px 0 80px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 15px;
    }
    
    .blog-post {
        max-width: 100%;
    }
    
    .post-content {
        padding: 28px 24px;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 480px) {
    .post-image-wrap {
        height: 200px;
    }
    
    .post-content {
        padding: 24px 20px;
    }
    
    .post-title {
        font-size: 1.25rem;
    }
}

/* Loading animation for images */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-post {
    animation: fadeInUp 600ms ease-out;
}

.blog-post:nth-child(2) { animation-delay: 100ms; }
.blog-post:nth-child(3) { animation-delay: 200ms; }
.blog-post:nth-child(4) { animation-delay: 300ms; }



/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 0;
  background: rgb(255, 255, 255);
  border-top: 1px solid rgba(249, 181, 0, 0.2);
}

.cta-section h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #f9b500 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p {
  color: #0a0a0a;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #d84d02;
  color: #ffffff;
  font-weight: 300;
  border-radius: 1px;
  text-decoration: none;
 
  transition: all 250ms ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  
}

.btn-secondary {
  padding: 12px 28px;
  background: #d84d02;
  color: #ffffff;
  
  border-radius: 50px; /* Sharp rectangle corners */
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  transition: all 250ms ease;
  backdrop-filter: blur(10px);
 
  letter-spacing: 0.05em;
}

.btn-secondary:hover {
  background: #f26c12;
  border-color: #f9b500;
  transform: translateY(-2px);
  
}


/* Responsive */
@media (max-width: 768px) {
  .gallery-hero .hero-title {
    font-size: 2.2rem;
  }
  
  
}

@media (max-width: 480px) {
  .gallery-hero {
    padding: 80px 0 50px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}






/* Leadership Metrics Section */
.metrics-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff, #ffffff);
}

.metrics-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
  gap: 40px;
  align-items: center;
}

.metrics-header h2 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: #f96a04;
}

.metrics-header p {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 24px;
}

.metrics-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 1px;
  background: #020441;
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
 
  transition: all 0.3s ease;
}

.metrics-btn:hover {
  background: #f26c12;
  transform: translateY(-2px);
  
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.metric-card {
  background: #ffffff;
  border-radius: 1px;
  padding: 22px 18px;
  text-align: left;
  box-shadow: 0 14px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
  border-color: #060138;
}

.metric-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #f6610a;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 0.95rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* Responsive */
@media (max-width: 992px) {
  .metrics-container,
  .customer-stories-inner {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .metrics-section,
  .customer-stories {
    padding: 60px 0;
  }

  .metrics-header h2,
  .customer-stories-text h2 {
    font-size: 2rem;
  }

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


/* customer story*/

/* Customer Stories - 3 Column Sharp Design */
.customer-stories {
  padding: 90px 0;
  background: #347559;
  position: relative;
  overflow: hidden;
}

.customer-stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(3, 39, 15, 0.945) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, #f9b500 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.customer-stories .container {
  position: relative;
  z-index: 2;
}

.stories-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.eyebrow {
  font-size: 1.1rem;
  font-weight: 500;
  color: #f9b500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.stories-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f8fafc 0%, #fbfbfc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.lead-text {
  font-size: 1.2rem;
  color: rgba(248, 250, 252, 0.85);
  line-height: 1.7;
  font-weight: 400;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.video-tile {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(17, 227, 6, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(34, 197, 94, 0.4);
}

.video-frame {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-title {
  font-size: 1rem;
  font-weight: 600;
  color: #f8fafc;
  margin: 0.75rem 1rem 1rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .customer-stories {
    padding: 70px 0;
  }
  
  .stories-header {
    margin-bottom: 50px;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .video-frame {
    height: 200px;
  }
  
  .video-title {
    margin: 0.75rem 0.875rem 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .customer-stories {
    padding: 60px 0;
  }
  
  .video-frame {
    height: 180px;
  }
}

/* Login Page Base */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #013701 0%, #152f12 50%, #0a1408 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 20px 0;
}

/* Animated background shine */
.login-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(249, 181, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(249, 181, 0, 0.08) 0%, transparent 50%);
  animation: bgShine 8s ease-in-out infinite;
}

@keyframes bgShine {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.bg-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(249, 181, 0, 0.06) 90deg, transparent 180deg);
  animation: rotate 20s linear infinite;
}

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

/* Centered container */
.login-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.login-container {
  width: 100%;
  max-width: 420px;
}

/* Premium glass card */
.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow: 
    0 35px 100px rgba(1, 55, 1, 0.5),
    0 0 0 1px rgba(249, 181, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(249, 181, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f9b500, #fbbf24, #f9b500);
  box-shadow: 0 2px 8px rgba(249, 181, 0, 0.4);
}

/* Header */
.login-header {
  text-align: center;
  margin-bottom: 36px;
}

.logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f9b500, #fbbf24);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 32px rgba(249, 181, 0, 0.4);
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #013701, #196602);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.login-title {
  font-size: 2rem;
  font-weight: 700;
  color: #013701;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.login-subtitle {
  color: #666;
  font-size: 0.98rem;
  margin: 0;
}

/* Form styling */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-weight: 600;
  color: #013701;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  color: #999;
  z-index: 2;
}

.login-form input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border: 2px solid rgba(1, 55, 1, 0.1);
  border-radius: 16px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 300ms ease;
  color: #013701;
}

.login-form input:focus {
  outline: none;
  border-color: #f9b500;
  box-shadow: 0 0 0 4px rgba(249, 181, 0, 0.1);
  background: #fff;
  transform: translateY(-1px);
}

/* Premium login button */
.login-btn {
  position: relative;
  padding: 18px 32px;
  background: linear-gradient(135deg, #f9b500 0%, #fbbf24 100%);
  color: #013701;
  border: none;
  border-radius: 20px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 35px rgba(249, 181, 0, 0.4);
  overflow: hidden;
  margin-top: 8px;
}

.login-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(249, 181, 0, 0.6);
}

.login-btn:active {
  transform: translateY(-1px);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 300ms ease;
}

.login-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Footer */

footer a {
    color: #f9b500;
    text-decoration: none;
    
    transition: all 0.3s ease;
}

footer a:hover {
    border-bottom-color: #66b8a7;
    color: #66b8a7;
}

.login-footer {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(1, 55, 1, 0.1);
}

.forgot-link {
  color: #f9b500;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 12px;
  transition: color 250ms ease;
}

.forgot-link:hover {
  color: #fbbf24;
}

.support-text {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

.support-text a {
  color: #013701;
  text-decoration: none;
  font-weight: 600;
}

.support-text a:hover {
  color: #f9b500;
}

/* Responsive */
@media (max-width: 480px) {
  .login-card {
    padding: 36px 28px;
    margin: 10px;
  }
  
  .login-title {
    font-size: 1.7rem;
  }
  
  .brand-name {
    font-size: 1.4rem;
  }
}

/* our team*/




