/* ==========================
   HERO SECTION
=========================== */

.hero {
    position: relative;
    overflow: hidden;
}

.hero .carousel-item {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.hero .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 8s ease-in-out infinite alternate;
    transition: all 0.5s ease;
}

/* Dark Teal Overlay */
.hero .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 79, 90, 0.65);
    z-index: 1;
}

/* Content */
.hero .carousel-container {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 700px;
}

.hero .carousel-container h2 {
    color: #FFFFFF;
    font-size: 65px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeUp 1s ease;
    text-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.hero .carousel-container p {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeUp 1.3s ease;
}

/* Hero Premium Button */
.hero-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    margin-top: 20px;
    background: #F3920F;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 60px;
    overflow: hidden;
    transition: all .4s ease;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(243,146,15,.35);
}

/* Sliding Background Effect */
.hero-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0D4F5A;
    transition: .2s;
    z-index: -1;
}

.hero-btn:hover::before{
    left: 0;
}

.hero-btn:hover{
    color: #FFFFFF;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(13,79,90,.4);
}

.hero-btn span{
    font-size: 20px;
    transition: .4s;
}

.hero-btn:hover span{
    transform: translateX(8px);
}

/* Pulse Ring */
.hero-btn::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid rgba(243,146,15,.5);
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing{
    0%{
        transform: scale(1);
        opacity: 1;
    }
    100%{
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Image Zoom Effect */
@keyframes zoomEffect {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.12);
    }
}

/* Text Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {

    .hero .carousel-item {
        height: 80vh;
        min-height: 500px;
    }

    .hero .carousel-container {
        left: 20px;
        right: 20px;
        text-align: center;
    }

    .hero .carousel-container h2 {
        font-size: 36px;
    }

    .hero .carousel-container p {
        font-size: 15px;
    }

    .hero .btn-get-started {
        padding: 12px 28px;
    }
}


/*--------------------------------
# Featured Services Section
---------------------------------*/
.featured-services {
  --cyan-color: #0dcaf0;
  --orange-color: #fd7e14;
  --teal-color: #20c997;
  --red-color: #df1529;
}

.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
  border: 1px solid transparent;
}

.featured-services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.featured-services .service-item .icon i {
  font-size: 28px;
  transition: 0.5s;
  position: relative;
}

.featured-services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.featured-services .service-item.item-cyan .icon {
  background-color: color-mix(in srgb, var(--cyan-color) 10%, white 95%);
}

.featured-services .service-item.item-cyan .icon i {
  color: var(--cyan-color);
}

.featured-services .service-item.item-cyan:hover {
  border-color: var(--cyan-color);
}

.featured-services .service-item.item-cyan:hover .icon {
  background-color: var(--cyan-color);
}

.featured-services .service-item.item-cyan:hover .icon i {
  color: var(--contrast-color);
}

.featured-services .service-item.item-orange .icon {
  background-color: color-mix(in srgb, var(--orange-color) 10%, white 95%);
}

.featured-services .service-item.item-orange .icon i {
  color: var(--orange-color);
}

.featured-services .service-item.item-orange:hover {
  border-color: var(--orange-color);
}

.featured-services .service-item.item-orange:hover .icon {
  background-color: var(--orange-color);
}

.featured-services .service-item.item-orange:hover .icon i {
  color: var(--contrast-color);
}

.featured-services .service-item.item-teal .icon {
  background-color: color-mix(in srgb, var(--teal-color) 10%, white 95%);
}

.featured-services .service-item.item-teal .icon i {
  color: var(--teal-color);
}

.featured-services .service-item.item-teal:hover {
  border-color: var(--teal-color);
}

.featured-services .service-item.item-teal:hover .icon {
  background-color: var(--teal-color);
}

.featured-services .service-item.item-teal:hover .icon i {
  color: var(--contrast-color);
}

.featured-services .service-item.item-red .icon {
  background-color: color-mix(in srgb, var(--red-color) 10%, white 95%);
}

.featured-services .service-item.item-red .icon i {
  color: var(--red-color);
}

.featured-services .service-item.item-red:hover {
  border-color: var(--red-color);
}

.featured-services .service-item.item-red:hover .icon {
  background-color: var(--red-color);
}

.featured-services .service-item.item-red:hover .icon i {
  color: var(--contrast-color);
}
.solar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #F3920F, #FFD54A);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(243, 146, 15, 0.35);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solar-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.solar-btn:hover::before {
    left: 120%;
}

.solar-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(243, 146, 15, 0.5);
    color: #fff;
}

.solar-btn i {
    transition: transform 0.3s ease;
}

.solar-btn:hover i {
    transform: translateX(6px);
}


/*------------------------------
# About Section
------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}
.about-tag{
  display:inline-block;
  background:rgba(243,146,15,0.12);
  color:#F3920F;
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:15px;
}

.about-title{
  font-size:42px;
  font-weight:800;
  line-height:1.3;
  margin-bottom:20px;
  color:#163300;
}

.about-title span{
  color:#F3920F;
  position:relative;
}

.about-intro{
  color:#666;
  font-size:17px;
  line-height:1.8;
}

.about-img{
  transition:0.5s;
}

.about-img:hover{
  transform:scale(1.05);
}

.about-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 34px;
  background:linear-gradient(135deg,#F3920F,#ffb84d);
  color:#fff;
  text-decoration:none;
  border-radius:50px;
  font-weight:700;
  transition:0.4s;
  box-shadow:0 10px 25px rgba(243,146,15,.35);
}

.about-btn:hover{
  color:#fff;
  transform:translateY(-4px);
}

.about-btn i{
  transition:.3s;
}

.about-btn:hover i{
  transform:translateX(6px);
}

.about ul li{
  margin-bottom:15px;
  transition:.3s;
}

.about ul li:hover{
  transform:translateX(8px);
}

.about ul li i{
  color:#F3920F;
}
.about-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.8s;
  z-index: -1;
}

.about-btn:hover::before {
  transform: translateX(100%);
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(243, 146, 15, 0.4);
}

.about-btn i {
  transition: transform 0.4s ease;
}

.about-btn:hover i {
  transform: translateX(6px);
}
.about-btn {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(243,146,15,0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(243,146,15,0.7);
  }
  100% {
    box-shadow: 0 0 0 rgba(243,146,15,0.5);
  }
}
/* --------------------------------
# Project
---------------------------------- */
/* Projects Section */

.project-card{
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  height: 350px;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition:0.5s ease;
}


.project-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.7s ease;
}


/* Image Zoom Effect */

.project-card:hover img{
  transform:scale(1.15);
}


/* Overlay */

.project-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
  180deg,
  rgba(0,0,0,0.1),
  rgba(243,146,15,0.95)
  );

  display:flex;
  align-items:flex-end;
  padding:30px;
  opacity:0;
  transform:translateY(50px);
  transition:0.5s ease;
}


.project-card:hover .project-overlay{
  opacity:1;
  transform:translateY(0);
}


.project-overlay i{
  font-size:45px;
  color:white;
  margin-bottom:15px;
}


.project-overlay h3{
  color:white;
  font-size:25px;
  font-weight:700;
}


.project-overlay p{
  color:white;
  font-size:15px;
  line-height:1.6;
}


/* Card Hover Glow */

.project-card:hover{
  transform:translateY(-12px);
  box-shadow:
  0 20px 50px rgba(243,146,15,0.45);
}


/* Button */

.project-btn{
  display:inline-flex;
  align-items:center;
  gap:15px;
  padding:15px 35px;
  border-radius:50px;
  background:#F3920F;
  color:white;
  font-weight:600;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  transition:0.4s;
}


.project-btn span{
  font-size:22px;
  transition:0.4s;
}


.project-btn:hover{
  background:#0D4F5A;
  transform:translateY(-5px);
}


.project-btn:hover span{
  transform:translateX(8px);
}
/* Projects Section Title */

.projects .section-title {
  text-align: center;
  padding-bottom: 50px;
}


.projects .section-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #F3920F;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 1px;
}


.projects .section-title:hover h2::after {
  width: 140px;
}


/* Description */

.projects .section-title p {
  max-width: 750px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  font-weight: 400;
}


/* Heading Hover Effect */

.projects .section-title h2:hover {
  color: #0D4F5A;
  transition: 0.4s ease;
}


/* Mobile Responsive */

@media(max-width:768px){

  .projects .section-title h2{
    font-size:30px;
  }

  .projects .section-title p{
    font-size:15px;
    padding:0 15px;
  }

}

.footer{

background:#0D4F5A;
color:#ffffff;
padding-top:70px;
font-size:15px;

}


.footer h4{

font-size:22px;
font-weight:700;
margin-bottom:30px;
color:#ffffff;

}


.footer-contact p{

display:flex;
gap:15px;
align-items:flex-start;
line-height:1.8;
color:#c8d6d8;

}


.footer-contact i{

color:#F3920F;
font-size:18px;
margin-top:5px;

}



.footer-links ul{

padding:0;
list-style:none;

}


.footer-links li{

margin-bottom:15px;
display:flex;
align-items:center;

}


.footer-links i{

color:#F3920F;
margin-right:10px;
font-size:14px;

}


.footer-links a{

color:#c8d6d8;
text-decoration:none;
font-size:18px;
transition:.3s;

}


.footer-links a:hover{

color:#F3920F;
padding-left:5px;

}



/* Social */

.social-links a{

width:42px;
height:42px;
border-radius:50%;
border:1px solid rgba(255,255,255,.4);
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:18px;
margin-right:12px;
transition:.4s;

}


.social-links a:hover{

background:#F3920F;
border-color:#F3920F;
transform:translateY(-5px);

}



/* Bottom */

.copyright{

margin-top:60px;
padding:25px 0;
border-top:1px solid rgba(255,255,255,.15);

color:#c8d6d8;

}


.copyright a{

color:#ffffff;
text-decoration:none;
font-weight:600;

}


.copyright a:hover{

color:#F3920F;

}

/* =========================
   Why Choose Us Section
=========================== */

.why-us {
  padding: 80px 0;
  background: #f8faf7;
}


/* Section Heading */

.why-us .section-title h2 {

  font-size:36px;

  font-weight:800;

  color:#F3920F;

  position:relative;

  display:inline-block;

  letter-spacing:0.5px;

}


.why-us .section-title p {

  margin-top:20px;

  color:#666;

  font-size:16px;

}



/* Cards */

.why-box {

  background:#ffffff;

  padding:35px 25px;

  text-align:center;

  border-radius:18px;

  height:100%;

  border:1px solid #e8eee8;

  box-shadow:
  0 8px 25px rgba(13,79,90,0.08);

  transition:0.4s ease;

  position:relative;

  overflow:hidden;

}



/* Icon */

.why-box .icon {

 width:70px;

 height:70px;

 margin:0 auto 20px;

 border-radius:50%;

 display:flex;

 align-items:center;

 justify-content:center;

 background:#0D4F5A;

 color:#ffffff;

 font-size:32px;

 transition:0.4s ease;

 box-shadow:
 0 8px 20px rgba(13,79,90,0.25);

}



.why-box:hover .icon {

 background:#F3920F;

 color:#0D4F5A;

 transform:translateY(-8px) rotate(8deg);

}



/* Title */

.why-box h4 {

 font-size:22px;

 font-weight:700;

 color:#0D4F5A;

 margin-bottom:15px;

}



/* Text */

.why-box p {

 color:#666;

 line-height:1.7;

}



/* Hover Effect */

.why-box:hover {

 transform:translateY(-10px);

 border-color:#F3920F;

 box-shadow:

 0 18px 40px rgba(13,79,90,0.20);

}



/* Smooth Animation */

.why-box,
.why-box .icon {

 transition:all .4s ease;

}
/* ============================
   Home Contact Section
============================= */

.home-contact{

  padding:90px 0;
  background:#f7faf8;

}



/* Heading */

.home-contact .section-title h2{

  font-size:38px;
  font-weight:800;
  color:#0D4F5A;
  margin-bottom:15px;
  position:relative;

}


.home-contact .section-title h2::after{

  content:"";
  width:70px;
  height:4px;
  background:#F3920F;
  display:block;
  margin:15px auto;
  border-radius:10px;

}



.home-contact .section-title p{

  max-width:650px;
  margin:auto;
  color:#666;
  font-size:16px;
  line-height:1.8;

}



/* Cards */

.contact-card{

  background:#ffffff;
  padding:40px 30px;
  text-align:center;
  border-radius:20px;
  height:100%;
  position:relative;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:0.4s ease;
  border:1px solid rgba(13,79,90,0.08);

}



/* Top Orange Line */

.contact-card::before{

  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:#F3920F;
  transform:scaleX(0);
  transition:0.4s ease;

}


.contact-card:hover::before{

  transform:scaleX(1);

}



.contact-card:hover{

  transform:translateY(-12px);
  box-shadow:0 20px 45px rgba(0,0,0,0.15);

}




/* Icon */

.contact-icon{

  width:80px;
  height:80px;
  margin:0 auto 25px;
  background:#0D4F5A;
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  transition:0.4s ease;

}


.contact-card:hover .contact-icon{

  background:#F3920F;
  transform:rotateY(360deg);

}



/* Text */

.contact-card h3{

  font-size:23px;
  font-weight:700;
  color:#0D4F5A;
  margin-bottom:15px;

}


.contact-card p{

  color:#555;
  font-size:15px;
  line-height:1.8;
  min-height:70px;

}



/* Link */

.contact-link{

  margin-top:20px;
  color:#F3920F;
  font-weight:700;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  transition:0.3s;

}


.contact-link i{

  transition:0.3s;

}


.contact-card:hover .contact-link i{

  transform:translateX(6px);

}


.home-contact a{

  text-decoration:none;

}

/* ================================
   Unique Contact Box Design
   Transparent Background
================================= */

.home-contact{
  padding:90px 0;
  background:transparent;
}


.contact-card{

  position:relative;
  background:#ffffff;
  padding:45px 30px 35px;
  text-align:center;
  border-radius:25px;
  overflow:hidden;
  height:100%;
  border:1px solid rgba(13,79,90,0.12);
  transition:0.5s ease;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);

}


/* Corner Effect */

.contact-card::before{

  content:"";
  position:absolute;
  width:130px;
  height:130px;
  background:#F3920F;
  top:-70px;
  right:-70px;
  border-radius:50%;
  opacity:0.12;
  transition:0.5s;

}


.contact-card::after{

  content:"";
  position:absolute;
  width:90px;
  height:90px;
  background:#0D4F5A;
  bottom:-45px;
  left:-45px;
  border-radius:50%;
  opacity:0.06;

}



/* Hover */

.contact-card:hover{

  transform:translateY(-12px);
  border-color:#F3920F;
  box-shadow:0 25px 50px rgba(13,79,90,0.15);

}


.contact-card:hover::before{

  transform:scale(1.8);

}



/* Icon */

.contact-icon{

  width:90px;
  height:90px;
  margin:0 auto 25px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:25px;
  background:#0D4F5A;
  color:#ffffff;
  font-size:38px;
  position:relative;
  z-index:2;
  transition:0.5s;

}


.contact-card:hover .contact-icon{

  background:#F3920F;
  border-radius:50%;
  transform:scale(1.1) rotate(8deg);

}



/* Heading */

.contact-card h3{

  color:#0D4F5A;
  font-size:24px;
  font-weight:800;
  margin-bottom:15px;
  position:relative;
  z-index:2;

}



/* Text */

.contact-card p{

  color:#555;
  font-size:15px;
  line-height:1.8;
  min-height:70px;
  position:relative;
  z-index:2;

}



/* Bottom Button */

.contact-link{

  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:20px;
  padding:11px 24px;
  border-radius:30px;
  background:#0D4F5A;
  color:#fff;
  font-size:14px;
  font-weight:600;
  transition:0.4s;
  position:relative;
  z-index:2;

}


.contact-card:hover .contact-link{

  background:#F3920F;

}


.contact-link i{

  transition:0.3s;

}


.contact-card:hover .contact-link i{

  transform:translateX(6px);

}


/* Remove link underline */

.home-contact a{

  text-decoration:none;

}

