@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
  background-image: url('/assets/images/bg-lines.png');
  background-repeat: repeat-y;
  background-size: cover;
  background-position: top left;
  background-color: #ffffff;
font-family: "Raleway", sans-serif;
}

.hero{
    position: relative;
    height: 100vh;
}

.hero .hero-graphics{
    background-image: url('/assets/images/hero-graphics.jpeg');
    position: absolute;
    width: 100%;
    height: 70%;
    bottom: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.header-container{
    background-color: white;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.479);
    clip-path: polygon(0 0, 100% 0, 98% 51%, 3% 52%);
    height: 350px;
    border-radius: 0 0 0 10px;
    padding: 30px 80px;
}

.logo img{
   width: 90px;
}

.header-container h1{
    font-weight: 700;
    color: #414040;
}

.header-links{
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: end;
}

.header-links li a{
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 20px;
}
@media(min-width:769px){
    .header-links li a.active{
        padding-bottom: 2px;
        border-bottom: 4px solid #53e9f6;
    }
    .header-links li a:hover{
        font-weight: 600;
    }
}
@media(max-width:769px){
    .header-links li a.active{
        font-weight: 700;
        color: #07555c;
    }
}

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

.hero-content h1{
    font-size: 95px;
    letter-spacing: 10px;
    font-weight: 300;
    font-family: 'Outfit';
    opacity: 0; /* initial state */
    animation: headingLoadAnimation 1s ease-out forwards;
}
.hero-content .sub-title{
    font-size: 24px;
    letter-spacing: 15px;
    font-weight: 300;
}

@media(max-width:767px){
   .hero-content h1{
    font-size: 45px;
}
.hero-content .sub-title{
    font-size: 18px;
}
} 

@media(max-width:767px){
    header{
        position: relative;
        z-index: 5;
    }
    .logo img{
    width: 45px;
    }
    .hamburger {
        background:none !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        width: 30px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        padding: 0;
        border: none;
        background: transparent;
        z-index: 100;
        }

    .hamburger .bar {
        height: 3px;
        width: 100%;
        background-color: #07555c;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    /* When menu is active (open) */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .header-container{
        background-color: white;
        clip-path: none;
        height: auto;
        border-radius: 0;
        padding: 18px;
        margin: 0 -12px;
        box-shadow: none;
    }
    .header-container .d-flex.gap-5{
        gap: 20px !important;
        align-items: center;
        justify-content: space-between;
    }
    .header-container h1 {
        font-size: 20px;
    }
    .header-links{
        position: absolute;
        background: white;
        height: calc(100vh - 92px);
        flex-direction: column;
        align-items: start !important;
        justify-content: start !important;
        padding: 30px;
        z-index: 3;
        width: 80%;
        left: 0;
        top: 92px;
        gap: 10px !important;
        left: -100%;
        transition: left 0.3s ease;
    }
    .header-links.active{
        left: 0;
    }
    .header-links li{
        width: 100%;
        padding: 8px 0;
    }
    .header-links li:not(:last-child){
        border-bottom: 1px solid #e1e1e1;
    }
    .header-links a {
        font-size: 18px !important;
    }
    .hero{
        height: calc(60vh - 92px);
        min-height: 600px;
    }
    .hero .hero-graphics{
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 0 100%;
        height: 100%;
        mix-blend-mode: multiply;
    }
    .hero-content{
        z-index: 2;
        top: 50%;
        transform: translateY(-80%);
    }
    .headerSocialLinks ul{
        padding: 0;
        list-style: none;
        margin: 0 -30px;
    }
    .headerSocialLinks ul li{
        padding: 8px 30px;
        border: 0 !important;
    }
    .headerSocialLinks ul li i{
        font-size: 22px;
    }
    .headerSocialLinks ul li:not(:last-child){
        margin-bottom: 8px;
    }
    .headerSocialLinks ul li.whatsapp {
    background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(18,140,126,0.1));
    }
    .headerSocialLinks ul li.facebook {
        background: linear-gradient(135deg, rgba(24,119,242,0.1), rgba(20,93,191,0.1));
    }
    .headerSocialLinks ul li.youtube {
        background: linear-gradient(135deg, rgba(255,0,0,0.1), rgba(204,0,0,0.1));
    }
    .headerSocialLinks ul li.email {
        background: linear-gradient(135deg, rgba(212,70,56,0.1), rgba(166,27,20,0.1));
    }
    .headerSocialLinks ul li.instagram {
        background: linear-gradient(45deg, rgba(245,133,41,0.1), rgba(221,42,123,0.1), rgba(129,52,175,0.1));
    }
    .headerSocialLinks ul li.phone {
        background: linear-gradient(135deg, rgba(52,199,89,0.1), rgba(40,167,69,0.1));
    }

    .headerSocialLinks ul li {
        position: relative;
        overflow: hidden; /* hides the overflowing icon */
        height: 40px;
    }

    .headerSocialLinks ul li i {
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        transition: left 0.3s ease;
        touch-action: pan-y; /* ensures swipe works */
    }
}


section{
    padding: 60px 0;
}
.section-title{
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 60px;
    opacity: 0;
    animation: slideDownFadeIn 0.8s ease-out forwards;
}

section.introduction{
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
.introImgDeco{
    position: absolute;
    height: 100%;
    inset: 0 0 auto auto;
    transform: scale(1.2);
    z-index: -1;
}
@media(max-width:769px){
    .introImgDeco{
        opacity:0.1;
    }
}
@media(max-width:767px){
   .section-title{
    font-size: 40px;
   }
} 

.card,.widget{
    border-radius: 8px;
    background-color: white;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.171);
    padding: 30px;
    border: none;
    overflow: hidden;
}

.widget{
    background-color: rgba(255, 255, 255, 0.034);
}

.card-title{
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.card-icon{
    opacity: 0.2;
    color: #9daede;
    /* position: absolute; */
    /* z-index: -1; */
}

.card-icon i{
    font-size: 50px;
}
.card-title img{
    width: 50px;
    transition: transform 0.3s ease;

} 
.card:hover .card-title img {
    transform: rotate(6deg) scale(1.2);
}

ul:not(.header-links,.headerSocialLinks ul){
    margin: 0;
    padding: 0;
}

ul:not(.header-links,.headerSocialLinks ul) li{
    list-style: none;
    position: relative;
    font-weight: 600;
    padding-left: 15px;
}
ul:not(.header-links,.headerSocialLinks ul) li::before{
    content: '';
    position: absolute;
    background-color: black;
    width: 5px;
    height: 5px;
    left: 0;
    top: 9px;
    /* transform: translateY(-50%); */
}

@media(max-width:767px){
    .card-icon img{
        width: 45px;
    }
}

.widget-title{
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.card p{
    font-weight: 600;
}
.widget p{
    font-weight: 500;
    font-size: 20px;
    line-height: 50px;
}

@media(max-width:767px){
   .card-title{
    font-size: 24px;
    }

    .widget-title{
        font-size: 30px;
    }

    .card p{
        font-weight: 600;
        font-size: 15pxx;
    }
    .widget p{
        font-size: 18px;
        line-height: 30px;
    }
}

.footer{
    padding: 120px 0 60px 0;
}

.footer h2{
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
}

@media(max-width:767px){
   .footer h2{
    font-size: 30px;
}
} 


.footer h3{
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 20px;
    color: #d3d3d3;
    margin-bottom: 80px;
}

@media(max-width:767px){
   .footer h3{
    font-size: 30px;
}
} 
.footer .footer-logo img{
    max-width: 100px;
}

.footer .social-icons{
    display: flex;
    gap: 5px;
}
.footer .social-icons .icon{
    text-decoration: none;
    width: 35px;
    height: 35px;
    display: block;
    background-color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.footer .social-icons .icon i{
    color: white;
    font-size: 24px;
}

.address p{
    font-size: 28px;
    font-weight: 600;
     font-family: 'Outfit';
}
.mobEmail p{
    font-weight: 300;
    font-family: 'Outfit';
    font-size: 22px;
    letter-spacing: 2px;
}
hr{
    border-width: 3px;
}

.footer-bottom{
    display: flex;
    align-items: end;
    justify-content: space-between;
}

@media(max-width:769px){
    .footer .footer-logo img{
        max-width: 80px;
    }
    .footer-bottom{
        flex-direction: column-reverse;
        align-items: start;
        justify-content: start;
    }
    .address p{
        font-size: 22px;
    }
    .mobEmail p{
        font-size: 18px;
    }
    hr{
        display: none;
    }
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  70% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideFadeIn2 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pulse-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
}

.pulse-wrapper::before {
    content: "";
    position: absolute;
    top: 60%;
    left: 60%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse-ring 1.5s infinite;
    z-index: 0;
}

@media(max-width:769px){
    .pulse-wrapper::before {
        top: 50%;
        left: 50%;
    }
}

.pulse-wrapper.whatsapp::before {
  background-color: rgba(37, 211, 102, 0.4); /* WhatsApp green pulse */
}

.pulse-wrapper.instagram::before {
  background: radial-gradient(circle at center, 
    rgba(253, 244, 151, 0.3) 0%, 
    rgba(214, 36, 159, 0.3) 60%, 
    rgba(40, 90, 235, 0.3) 100%);
}
.footerFixedIcons {
  position: fixed;
  inset: auto 80px 80px auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 99;
}

.footerFixedIcons .fixedIcon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border: none !important;
  box-shadow: none !important;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footerFixedIcons .fixedIcon.whatsapp {
  background-color: #25D366;
}

.footerFixedIcons .fixedIcon.instagram {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, 
    #fdf497 5%, 
    #fd5949 45%, 
    #d6249f 60%, 
    #285AEB 90%);
}

@media(max-width:769px){
    .footerFixedIcons {
        inset: auto 30px 30px auto;
        gap: 20px;
    }
    .footerFixedIcons .fixedIcon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}


.animateRight i {
  opacity: 0;
  transform: translateX(0);
  animation: chevronSwipe 1.2s ease-in-out infinite;
  display: inline-block;
}

.animateRight i:first-child {
  animation-delay: 0s;
}

.animateRight i:last-child {
  animation-delay: 0.3s;
}

@keyframes chevronSwipe {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  30% {
    opacity: 1;
    transform: translateX(5px);
  }
  60% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}

@keyframes headingLoadAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDownFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDownUp {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.7;
    transform: translateY(20px);
  }
}
.scrollToTop{
    background: #000000;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    animation: slideDownUp 2.5s ease-in-out infinite;
    position: fixed;
    inset: auto auto 40px auto;
}

.card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  background: #fff;
  padding: 30px;
  cursor: pointer; /* hint for tap */
  user-select: none;
}

/* When visible after scroll */
.card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover and tap effect */
.card:hover,
.card:focus,
.card:active {
  transform: scale(1.03);
  box-shadow: 0 10px 20px #c7faffb7;
  outline: none;
}
.subpage-heading{
    font-size: 80px;
    text-align: center;
    transform: translateY(80px);
    animation: slideFadeIn2 1.2s ease-out forwards;
}
.hero.subpagebanner{
    height: 50vh;
    min-height: 600px;
    background-color: #c7faff40;
}

.subpage-section-title{
    font-size: 40px;
    font-weight: 600;
    transform: translateY(20px);
     animation: slideFadeIn 1.2s ease-out forwards;
}

@media(min-width:1200px){
    .max-80{
        max-width: 80%;
        min-width: 1040px;
        margin: 0 auto;
    }
}

@media(max-width:1200px){
    .subpage-heading{
        font-size: 40px;
        text-align: center;
    }
    .hero.subpagebanner{
        height: 40vh;
        min-height: 300px;
        background-color: #c7faff40;
    }
}



@media(max-width:991px){
    p{
    font-size: 16px;
}

}
.imageRow{
    margin: 80px 0;
    img{
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease-in-out;
    }
    img:hover{
        transform: scale(1.1);
    }
}

.cardsRow{
    margin: 80px 0;
    p{
        font-size: 16px;
        font-weight: 500;
    }
}
.cardsRow .card{
    padding: 0;
}
.cardsRow .card .card-body{
    padding: 20px;
}

.cardsRow .card-image{
    background: #ecf9fb;
    text-align: center;
}

.cardsRow .card-image img{
    /* width: 100%; */
    height: 100px;
    object-fit: cover;
    margin: 15px;
    transition: transform 0.3s ease;
}

.cardsRow .card:hover .card-image img{
    transform: rotate(6deg) scale(1.01);
} 

.contactRow{
    margin-top: 80px;

}

@media(min-width:991px){
    .contactRow{
        --bs-gutter-x: 100px;

    }
}

.btn-primary{
    background-color: #000000;
    border-color: #000000;
    color: white;
    font-size: 18px;
    padding: 8px 28px;
}
.btn i{
      animation: chevronSwipe 1.2s ease-in-out infinite;
}
.btn-primary:hover{
    background-color: #53e9f6;
    border-color: #53e9f6;
    color: black;
    font-size: 18px;
    padding: 8px 28px;
}

.contact-item h2{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}
.contact-item p:not(:last-child){
    margin-bottom: 8px;
}

.footerFixedIcons a{

    text-decoration: none;
}