@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --primary: #0090ff;
  --accent: #00c896;
  --muted: #ccc;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  color: #000;
  overflow-x: hidden;
}
header {
  position: sticky;
  top: 0;
  background: #fff;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.heading {
  font-family: Archivo; /* Heading */
  font-size: 48px; 
  line-height: 48px; 
  font-weight: 700; 
  color: #242524FF;
}

.subheading {
  color: #a7a4a4;
}

.logo {
display: flex;
align-items: center;
text-decoration: none;
}

.logo-text {
margin: 0 0  0 8px;

* {
	padding: 0;
	margin: 0;
	line-height: 100%;
	font-family: "Montserrat", sans-serif;
}

#frs {
	font-weight: 800;
	font-size: 20px;
	color: #cb9005;
}

#snd {
	font-weight: 800;
	font-size: 23px;
	color: #cb9005;
}

#trd {
	font-weight: 500;
	font-size: 12px;
	color: #44902d;
}
}

header img {
  height: 50px; /* Doubled logo size */
}
nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--primary);
  transition: width 0.3s;
}
nav a:hover {
  color: var(--primary);
}
nav a:hover::after {
  width: 100%;
}
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("../images/hero/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem;
  animation: fadeIn 1.5s ease;
  overflow: hidden;
}

.itservices {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("../images/hero/itservices.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem;
  animation: fadeIn 1.5s ease;
  overflow: hidden;
}

.solarservices {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url("../images/hero/solarservices.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem;
  animation: fadeIn 1.5s ease;
  overflow: hidden;
}

.hero::before, .itservices::before, .solarservices::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.05;
  animation: movePattern 60s linear infinite;
  z-index: 0;
}

.itserinner {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.5;
  background-color: #fff;
  animation: movePattern 60s linear infinite;
  z-index: 0;
}

.solarinner {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.17;
  background-color: #fff;
  animation: movePattern 60s linear infinite;
  z-index: 0;
}

.hero h1, .solarservices h1, .itservices h1 {
  font-size: 1.5rem;
  color: #888;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}


.hero-text {
  max-width: 60%;
  z-index: 1;
}
.hero-text h2 {
  font-family: Archivo; /* Heading */
  font-size: 60px; 
  line-height: 60px; 
  font-weight: 700; 
  color: #FFFFFFFF; /* white */
}
.hero-text p {
  font-family: Inter;
  font-size: 20px; 
  line-height: 110%; 
  font-weight: 400; 
  color: #FFFFFFFF; /* white */
}

.solarservices h2{
  font-family: Archivo; /* Heading */
  font-size: 60px; 
  line-height: 60px; 
  font-weight: 700; 
  color: #000; /* black */
}

.solarservices .hero-text p {
  font-family: Inter;
  font-size: 20px; 
  line-height: 110%; 
  font-weight: 400; 
  color: rgb(197, 191, 191); /* white */
}
.hero p, .solarservices p, .itservices p {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.button {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background: #cb9005;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.button:hover {
  background: var(--accent);
  transform: scale(1.05);
}

.solutions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.solution-card {
  width: 438px; 
  height: 280px;
  padding: 25px;
  margin: 0 10px 0 10px;
  text-align: left;
  background: #FFFFFFFF; /* white */
  border-radius: 8px; 
  border-width: 1px; 
  border-color: #EBEBEAFF; 
  border-style: solid; 
  box-shadow: 0px 0px 1px #171a1f12, 0px 0px 2px #171a1f1F; /* shadow-xs */
}

.sm {
  height: 200px;
}

.solution-card .icon {
  margin-left: -5px;
}

.card-text-head h3{
  font-family: Archivo; /* Heading */
  font-size: 20px; 
  line-height: 28px; 
  font-weight: 600;  
}

.solution-card .card-text p{
  line-height: 120%;
}

.solution-card .link a{
  text-decoration: none;
  color: #cb9005;
}

.solution-card .link a .bi{
  font-size: 15px;
  color: #cb9005;
}

.overview, .featuredProducts, .whyus, .testimonials, .contact, .trusted, .caseStudy, .it-testimonial {
  padding: 4rem 2rem;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.it-testimonial {
  background-color: #636AE80D;
}

.overview p {
  max-width: 700px;
  margin: auto;
  /* color: var(--muted); */
  line-height: 1.7;
}

.featuredProducts {
  background-color: #F7F7F7FF;
}

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 70px 0;
}

.product-card {
  max-width: 280px;
  height: 450px;
  /* margin: 0 10px 0 10px; */
  text-align: left;
  background: #FFFFFFFF; /* white */
  border-radius: 8px; 
  border-width: 1px; 
  border-color: #EBEBEAFF; 
  border-radius: 10px;
  border-style: solid; 
  box-shadow: 0px 0px 1px #171a1f12, 0px 0px 2px #171a1f1F; /* shadow-xs */
  position: relative;
}

.product-card .image {
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;

}

.product-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.card-text-head h3{
  font-family: Inter; /* Heading */
  font-size: 18px; 
  line-height: 28px; 
  font-weight: 600;  
}

.product-card .card-text p{
  line-height: 115%;
  font-size: 14px;
  font-weight: 400;
  color: #a7a4a4;
}

.product-card .card-text .cost{
  line-height: 115%;
  font-size: 20px;
  font-weight: 700;
  color: #E8618CFF;
}

.product-card .link{
  position: absolute;
  bottom: 15px;
  right: 1rem;
  left: 1rem;
}

.product-card .link .btn-primary {
  width: 100%;
  background-color: #cb9005;
  border: none;
}

.featuredProducts .more {
  text-align: center;
  margin-top: 2rem;
}

.featuredProducts .more .btn-secondary {
  background-color: #FFF;
  color: #000;
  padding: 0.75rem 3rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.us {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 70px 0;
}

.us-card {
  width: 320px; 
  height: 260px;
  padding: 25px;
  margin: 0 10px 0 10px;
  display: flex;
  flex-direction: column;
  background: #FFFFFFFF; /* white */
  border-radius: 8px; 
  border-width: 1px; 
  border-color: #EBEBEAFF; 
  border-style: solid; 
  box-shadow: 0px 0px 1px #171a1f12, 0px 0px 2px #171a1f1F; /* shadow-xs */
}

.core {
  width: 427px; 
  height: 362px;
  padding: 25px;
}

.partner {
  width: 400px; 
  height: 362px;
  padding: 25px;
}

.us-card .card-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #7e7c7c;
}

.core .icon, .partner .icon {
  background-color: #636AE81A;
  width: 80px;
  min-height: 80px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
}

.us-card .icon img {
  width: 40px;
}

.core .icon img, .partner .icon img {
  width: 55px;
}

.core h3, .partner{
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #242524FF;
}

.core .card-text p, .partner .card-text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #8C8D8BFF;
}

.testimonies {
  margin: 70px 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonies .testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #FFFFFF; /* white */
  border-radius: 12px;
  box-shadow: 0px 0px 1px #171a1f12, 0px 0px 2px #171a1f1F; /* shadow-xs */
}

.itcard {
  width: 400px;
  height: 280px;
  border: 3px solid #cb9005;
}

.itcard .text p{
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-align: left;
}

.testimonies .testimonial-card .text {
  color: #8C8D8BFF;
  font-family: Inter;
  font-size: 18px;
  line-height: 29px;
  font-weight: 400;
}

.testimonies .testimonial-card .profile {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonies .testimonial-card .profile .profile-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #cb9005;
}

.it-testimonial .itcard .profile .profile-image {
  width: 65px;
  height: 65px;
}

.testimonies .testimonial-card .profile .profile-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonies .testimonial-card .profile .profile-text {
  margin-left: 1rem;
  text-align: left;
}

.testimonies .testimonial-card .profile .profile-text *{
  margin: 0;
}

.testimonies .testimonial-card .profile .profile-text h6{
  font-size: 16px;
  color:  #242524FF;
  font-weight: 600;
  font-family: Inter;
}

.it-testimonial .itcard .profile .profile-text h6{
  font-size: 18px;
}

.it-testimonial .itcard .profile .profile-text span i{
  font-size: 12px;
  color: #cb9005;
}

.testimonies .testimonial-card .profile .profile-text p{
  font-size: 14px;
  color: #8C8D8BFF;
  font-weight: 400;
  font-family: Inter;
}

.contact {
  background: #cb9005;
  padding: 8rem 2rem;
}

.itserv {
  margin-top: 6rem;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
}

.contact .text{
  width: 40%;
  margin: 0 auto;
}

.contact h3, .contact p {
  color: #FFF;
}

.contact .book{
  margin: 2rem auto;
}

.contact .book .btn-secondary{
  background-color: #FFF;
  color: #000;
  border: none;
  padding: 0.75rem 3rem;
}

.companies {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 70px 0;
}

.company-card {
  width: 200px; 
  height: 100px;
}

.company-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.services-grid {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.service {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}
.service h4 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.footer {
  text-align: center;
  height: 488px;
  padding: 6rem 0;
  background: #F7F7F7FF;
}

.footer h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: Inter;
}

.footer .sub {
  width: 30rem;
  margin: 2rem auto;
}

.footer .sub p{
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #242524FF;
  font-family: Archivo;
}

.footer form .form-group {
  display: flex;
}

.footer form .form-group .form-control{
  height: 45px;
  margin-right: 10px;
}

.footer form .form-group button{
  height: 45px;
  padding: 10px 20px;
}

.footer .bottom {
  width: 70%;
  margin: 6rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #a7a4a4;
}

.footer .bottom .btn-outline-secondary {
  pointer-events: none;
}

.footer .bottom .socials i {
  font-size: 24px;
  color: #a7a4a4;
  margin: 0 10px;
  transition: color 0.3s;
}

.container {
  min-width: 1380px;
}

.caseStudy .subheading {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #8C8D8BFF;
  width: 50%;
}

.caseStudies {
  display: flex;
  flex-wrap: wrap !important;
  gap: 20px;
  justify-content: start;
  align-items: center;
  margin: 70px 0;
}

.solarcs {
  justify-content: center;
}

.caseStudies .caseStudy-card {
  max-width: 400px;
  height: 458px;
  /* margin: 0 10px 0 10px; */
  text-align: left;
  background: #FFFFFFFF; /* white */
  border-radius: 8px; 
  border-width: 1px; 
  border-color: #EBEBEAFF; 
  border-radius: 10px;
  border-style: solid; 
  box-shadow: 0px 0px 1px #171a1f12, 0px 0px 2px #171a1f1F; /* shadow-xs */
  position: relative;
}

.solarcs .caseStudy-card {
  max-width: 420px;
  height: 550px;
}

.caseStudy-card .image {
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;

}

.solarcs .caseStudy-card .image {
  height: 250px; 
}

.caseStudy-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.caseStudy-card .text{
  padding: 15px 30px;
}

.caseStudy-card .text h4{
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
}

.caseStudy-card .text p{
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: Inter;
  color: #8C8D8BFF;
}

.caseStudy-card span{
  padding: 5px 10px;
  margin: 0 10px;
  font-family: Inter;
  background-color: #F7F7F7FF;
  border-radius: 10px;
  font-size: 12px;
}

.caseStudy-card span:nth-child(1) {
  margin: 0;
}

.caseStudy-card .text .link{
  position: absolute;
  bottom: 10px;
}
.solarcs ul {
  font-size: 13.5px;
  word-spacing: 2px;
}

.solarcs .caseStudy-card .text .link{
  position: absolute;
  bottom: 10px;
  border: 1px solid #cb9005;
  border-radius: 10px;
  width: 85%;
  text-align: center;
  padding: .5rem;
  bottom: 20px;
}

.caseStudy-card .text .link a{
  text-decoration: none;
  color: #cb9005;
  font-size: 14px;
}

.caseStudy-card .text .link a .bi{
  font-size: 15px;
  color: #cb9005;
}

/* .breadcrumb {
  margin: 70px 20px;
}

.breadcrumb a {
  text-decoration: none;
  color: #8C8D8BFF;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .breadcrumbtxt {
  width: 50%;
  margin: 5rem auto;
  text-align: center;
}

.breadcrumb .breadcrumbtxt h2{
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  font-family: Archivo;
  color: #242524FF;
  margin-bottom: 2rem;
}

.breadcrumb .breadcrumbtxt p{
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-family: Inter;
  color: #8C8D8BFF;
} */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes movePattern {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 1000px; }
}