/* =========================================================
   GROWSUN HERO SECTION
========================================================= */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #0f5b6a;
}


/* =========================================================
   BOOTSTRAP CAROUSEL
========================================================= */

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    width: 100%;
    height: 100%;
}


.hero-section .carousel-inner {
    position: relative;
    overflow: hidden;
}


/*
   IMPORTANT:
   Bootstrap needs carousel-item display rules.
*/

.hero-section .carousel-item {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-section .hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;
    object-position: center center;

    display: block;

    transform: scale(1);
}


/* Active image zoom */

.hero-section .carousel-item.active .hero-image {
    animation: growsunHeroZoom 5s ease-out forwards;
}


/* =========================================================
   IMAGE ZOOM
========================================================= */

@keyframes growsunHeroZoom {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.07);
    }

}


/* =========================================================
   DARK OVERLAY
========================================================= */

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.40) 45%,
            rgba(0, 0, 0, 0.20) 100%
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-section .hero-content {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 5;

    width: min(900px, 90%);

    text-align: center;

    color: #ffffff;
}


/* =========================================================
   HEADING
========================================================= */

.hero-section .hero-content h1 {

    margin: 0 0 22px;

    color: #ffffff;

    font-size: clamp(38px, 5.2vw, 68px);

    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -1.5px;

    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.35);
}


/* Orange highlight */

.hero-section .hero-content h1 span {

    display: inline-block;

    color: #F3920F;

    text-shadow:
        0 3px 18px rgba(243, 146, 15, 0.25);
}


/* =========================================================
   PARAGRAPH
========================================================= */

.hero-section .hero-content p {

    width: min(720px, 100%);

    margin: 0 auto 32px;

    color: rgba(255, 255, 255, 0.94);

    font-size: 19px;

    line-height: 1.75;

    font-weight: 400;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   HERO BUTTON
========================================================= */

.hero-section .hero-btn {

    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    padding: 15px 30px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #F3920F,
            #ffb84d
        );

    border: 0;

    border-radius: 50px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    overflow: hidden;

    box-shadow:
        0 12px 30px rgba(243, 146, 15, 0.35);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.hero-section .hero-btn span,
.hero-section .hero-btn b {
    position: relative;

    z-index: 2;
}


.hero-section .hero-btn b {

    font-size: 20px;

    line-height: 1;

    font-weight: 500;

    transition:
        transform 0.35s ease;
}


/* =========================================================
   BUTTON SHINE
========================================================= */

.hero-section .hero-btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -130%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.45),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left 0.7s ease;
}


.hero-section .hero-btn:hover::before {
    left: 130%;
}


.hero-section .hero-btn:hover {

    color: #ffffff;

    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(243, 146, 15, 0.5);
}


.hero-section .hero-btn:hover b {
    transform: translateX(5px);
}


/* =========================================================
   CONTENT ANIMATION
========================================================= */

/* Bootstrap fade ke saath conflict na ho isliye
   animation sirf active slide par hai.
*/

.hero-section .carousel-item.active .hero-content h1 {

    animation:
        heroContentUp 0.8s ease both;
}


.hero-section .carousel-item.active .hero-content p {

    animation:
        heroContentUp 0.8s 0.15s ease both;
}


.hero-section .carousel-item.active .hero-btn {

    animation:
        heroContentUp 0.8s 0.3s ease both;
}


@keyframes heroContentUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   BOOTSTRAP CAROUSEL FADE FIX
========================================================= */

/*
   Bootstrap carousel-fade ke default transition ko
   disturb nahi karna.
*/

.hero-section .carousel-fade .carousel-item {

    opacity: 0;

    transition:
        opacity 0.9s ease-in-out;
}


.hero-section .carousel-fade .carousel-item.active {

    opacity: 1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .hero-section {
        min-height: 580px;
    }


    .hero-section .carousel-item {
        min-height: 580px;
    }


    .hero-section .hero-content {
        width: 90%;
    }


    .hero-section .hero-content h1 {
        font-size: 50px;
    }


    .hero-section .hero-content p {
        font-size: 17px;

        max-width: 650px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero-section {

        height: 85vh;

        min-height: 550px;
    }


    .hero-section .carousel-item {

        min-height: 550px;
    }


    .hero-section .hero-image {

        object-position: center center;
    }


    .hero-section .hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.48),
                rgba(0, 0, 0, 0.65)
            );
    }


    .hero-section .hero-content {

        width: 90%;
    }


    .hero-section .hero-content h1 {

        font-size: 34px;

        line-height: 1.22;

        letter-spacing: -0.5px;

        margin-bottom: 16px;
    }


    .hero-section .hero-content p {

        font-size: 15px;

        line-height: 1.65;

        margin-bottom: 25px;
    }


    .hero-section .hero-btn {

        padding: 13px 25px;

        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-section {

        height: 82vh;

        min-height: 520px;
    }


    .hero-section .carousel-item {

        min-height: 520px;
    }


    .hero-section .hero-content h1 {

        font-size: 27px;

        line-height: 1.25;
    }


    .hero-section .hero-content p {

        font-size: 14px;

        line-height: 1.6;
    }


    .hero-section .hero-btn {

        padding: 11px 21px;

        font-size: 13px;
    }


    .hero-section .hero-btn b {

        font-size: 17px;
    }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .hero-section .hero-content h1 {
        font-size: 24px;
    }


    .hero-section .hero-content p {
        font-size: 13px;
    }

}
/*--------------------------------
# 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:#0e4e5b;
}

.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);
}


/* =========================================================
   PROJECT BUTTON
========================================================= */

.project-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 12px 28px;

    background: linear-gradient(
        135deg,
        #F3920F,
        #ffb84d
    );

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    overflow: hidden;
    z-index: 1;

    box-shadow:
        0 8px 22px rgba(243,146,15,0.3);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* PROJECT SHINE */

.project-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.55),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.8s ease;

    z-index: -1;
}


.project-btn:hover::before {
    left: 140%;
}


.project-btn:hover {
    color: #fff;

    transform: translateY(-4px);

    box-shadow:
        0 14px 30px rgba(243,146,15,0.45);
}


.project-btn i {
    transition: transform 0.35s ease;
}


.project-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   PROJECT CARD HOVER
========================================================= */

.project-card {
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}


.project-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(15,91,106,0.15);
}


/* PROJECT IMAGE */

.project-card img {
    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}


.project-card:hover img {
    transform: scale(1.06);
}


/* =========================================================
   PROJECT LINK / VIEW PROJECT
========================================================= */

.project-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #F3920F;

    text-decoration: none;

    font-weight: 700;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}


.project-link:hover {
    color: #0F5B6A;

    gap: 13px;
}


.project-link i {
    transition: transform 0.3s ease;
}


.project-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .hero-btn {
        padding: 13px 27px;
        font-size: 14px;
    }

    .project-btn {
        padding: 11px 24px;
        font-size: 13px;
    }

}


/* 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: #0e4e5b;
  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:#0e4e5b;
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:#0e4e5b;

 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:#0e4e5b;

 transform:translateY(-8px) rotate(8deg);

}



/* Title */

.why-box h4 {

 font-size:22px;

 font-weight:700;

 color:#0e4e5b;

 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:#0e4e5b;
  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:#0e4e5b;
  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:#0e4e5b;
  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:#0e4e5b;
  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:#0e4e5b;
  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;

}
/* =========================================================
   GLOBAL HEADING STYLE
   ALL HEADINGS SAME COLOR + SAME ANIMATION
========================================================= */

h1,
h2{
    color: #0F5B6A !important;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -0.5px;

    margin-top: 0;

    text-shadow:
        0 3px 15px rgba(15, 91, 106, 0.12);

    animation: globalHeadingReveal 0.9s ease both;

    transition:
        color 0.3s ease,
        text-shadow 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   SAME ANIMATION FOR EVERY HEADING
========================================================= */

@keyframes globalHeadingReveal {

    0% {
        opacity: 0;
        transform: translateY(25px);
        filter: blur(5px);
    }

    60% {
        opacity: 0.8;
        filter: blur(1px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

}


/* =========================================================
   HOVER EFFECT — SAME FOR ALL HEADINGS
========================================================= */

h1:hover,
h2:hover {

    color: #F3920F !important;

    text-shadow:
        0 5px 20px rgba(243, 146, 15, 0.25);

    transform: translateY(-2px);
}


/* =========================================================
   HERO HEADING
   HERO NEEDS WHITE COLOR
========================================================= */

.hero-section h1,
.hero-section h2 {

    color: #ffffff !important;

    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.35);
}


/* Hero heading hover */

.hero-section h1:hover,
.hero-section h2:hover {

    color: #ffffff !important;

    text-shadow:
        0 5px 25px rgba(243, 146, 15, 0.45);

    transform: translateY(-2px);
}


/* =========================================================
   HERO ORANGE HIGHLIGHT
========================================================= */

.hero-section h1 span,
.hero-section h2 span {

    color: #F3920F !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    h1,
    h2
   {

        animation-duration: 0.7s;

    }

}

/* =========================================================
   GLOBAL FLOATING MESSAGE BUTTON
========================================================= */

.global-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 90px;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    text-decoration: none;

    z-index: 99999;

    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.30);

    transition: all 0.35s ease;
}


/* ICON */

.global-whatsapp svg {
    width: 25px;
    height: 25px;

    fill: currentColor;

    transition: transform 0.35s ease;
}


/* HOVER */

.global-whatsapp:hover {
    color: #fff;

    transform: translateY(-5px) scale(1.05);

    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
}

.global-whatsapp:hover svg {
    transform: scale(1.12);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .global-whatsapp {
        right: 16px;
        bottom: 80px;

        width: 50px;
        height: 50px;
    }

    .global-whatsapp svg {
        width: 23px;
        height: 23px;
    }
}