@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --blue:#00b8b8;
    --black:#333;
    --white:#fff;
    --light-color:#666;
    --light-bg:#eee;
    --border:.2rem solid rgba(0,0,0,.1);
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-decoration: none !important;
    text-transform: capitalize;
    transition: all 0.2s linear;
}

*::-webkit-scrollbar{
    height: .5rem;
    width: 1rem;
}

*::-webkit-scrollbar-track{
    background: transparent;
}

*::-webkit-scrollbar-thumb{
    background: var(--blue);
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
}

section{
    padding: 7rem 2rem;
}

.heading{
    text-align: center;
    font-size: 4rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 3rem;

}

.link-btn{
    display: inline-block;
    padding: .7rem 1.5rem;
    border-radius: 3rem;
    background-color: var(--blue);
    cursor: pointer;
    font-size: 1.9rem;
    color: var(--white);    
}

.link-btn:hover{
    background-color: #2A47E8;
    color: var(--white);
}

.glass-header {
    position: fixed; 
    top: 15px;
    left: 15px;
    right: 15px;
    width: auto;
    height: 75px;
    padding: 15px 15px;
    
    background: rgba(127, 180, 240, 0.15); 
    backdrop-filter: blur(20px);         
    -webkit-backdrop-filter: blur(10px); 

    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 25px; 
    border: 1px solid rgba(255, 255, 255, 0.5); 
    
    z-index: 10;
}

.glass-header.active{
    background-color: var(--white);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: 0;
}

.glass-header .logo img {
    height: 60px;       
    width: auto;       
    display: block;    
  }
  
.glass-header .nav a{
    margin: 0 1rem;
    font-size: 2.2rem;
    color: #000000;
}

.glass-header .nav a:hover{
    color: var(--blue);
}

#menu-btn{
    font-size: 2.2rem;
    color: #000000;
    cursor: pointer;
    display: none;
}


.home{
   padding: 0;
}

.home .box-containerr {
  width: 100%;
  height: 85vh;
  position: relative;
}

.home .box .swiper-slide {
  position: relative;
  width: 100%;
  height: 85vh;
}

.home .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.home .box-containerr .content {
  position: absolute;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 600px;
  color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home .box-containerr .content h3 {
  font-size: 3.5rem;
  font-weight: 700;
  animation: fadeUp 1s ease-out forwards;
}

.home .box-containerr .content p {
  font-size: 1.6rem;
  margin: 1rem 0 2rem;
  animation: fadeUp 1.2s ease-out forwards;
}

.home .swiper-pagination-bullets{
    bottom: 4rem;
}

.home .swiper-pagination-bullet{
    background-color: var(--light-color);
    transition: opacity .4s;
}

.home .swiper-button-prev{
    left: calc(50% - 3rem);
   
}


.home .swiper-button-next{
    right: calc(50% - 3rem);
}

.home .swiper-button-prev::after,
.home .swiper-button-next::after{
    content: '';
}

.home :is(.swiper-button-prev, .swiper-button-next){
    top: initial;
    bottom: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    background: rgba(127, 180, 240, 0.15); 
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5); 
}

.home :is(.swiper-button-prev, .swiper-button-next):hover {
    color: var(--blue);
    transform: scale(1.08);     
    transition: 0.3s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media screen and (max-width: 450px) {
    .home .box{
        width: 100%;
    }
    
}

@media screen and (max-width: 768px) {
    .home .box-containerr{
         width: 100%;
        max-width: 100% !important;
    }
    
}

@media screen and (max-width:991px) {
    .home .box-containerr{
        width: 100%;
        max-width: 100% !important;
    }
}

.about .container img{
    border-radius: 2rem;
}

.about .content span{
    font-size: 2.4rem;
    color: var(--blue);
}

.about .content h3{
    font-size: 3rem;
    color: var(--black);
    margin-top: 1rem;
}

.about .content p{
    padding: 1rem 0;
    font-size: 1.7rem;
    color: var(--light-color);
    line-height: 1.5;
}

.services{
    background-color: var(--light-bg);
}

.services .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    gap: 2rem;
}

.services .box-container .box{
    text-align: center;    
    padding: 2rem;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: .8rem;
}

.services .box-container .box img{
    margin: 1rem 0;
    height: 5rem;
}

.services .box-container .box h3{
    font-size: 2rem;
    padding: 1rem 0;
    color: var(--black);
}

.services .box-container .box p{
    font-size: 1.3rem;
    color: var(--light-color);
    line-height: 1.5;
}

.process .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}

.process .box-container .box{
    background-color: var(--white);
    padding: 2rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.process .box-container .box img{
   display: block;
    margin: 0 auto;
    width: 80%;        
    height: auto;
    border-radius: 2rem;
}

.process .box-container .box h3{
    font-size: 2rem;
    margin: 1.5rem 0;
}

.process .box-container .box p{
    font-size: 1.5rem;
    line-height: 1.4;
}

.reviews{
    background-color: var(--light-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box-containerr .container .swiper{
    overflow: hidden !important;
}

.reviews .box-containerr{
    padding: 1rem 0 7rem 0;
}

.reviews .box-containerr .box {
    background-color: var(--white);
    width: 40rem;
    min-height: 38rem;      
    max-height: 38rem;     
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;  
    border-radius: 1.5rem;     /* Prevent long text from pushing height */
}

.reviews .box-containerr .box img{
    padding: 2rem 0 0 0;
    height: 10rem;
    width: 8rem;
    border-radius: 50%;
}

/* FIX GALLERY IMAGES — Override Review CSS */
.gallery .box {
    width: 35rem !important;
    height: 35rem !important;
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--box-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
}

/* Make the image fill the box */
.gallery .box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;   /* REMOVE CIRCLE */
    padding: 0 !important;
}


.reviews .box-containerr .box p{
    padding: 2rem;
    line-height: 1.5;
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0;
}

.reviews .box-containerr .box .stars{
    padding: .5rem 1rem;
    border-radius: 2rem;
    background-color: var(--black);
    margin-bottom: 2rem;
    display: inline-block;
}

.stars {
    font-size: 1.5rem;
    color: rgb(255, 217, 0);
    margin: .5rem 0;
}

.reviews .box-containerr .box h3{
    font-size: 2rem;
    color: var(--black);
}

.reviews .box-containerr .box span{
    color: var(--light-color);
    font-size: 1.5rem;

}

.reviews .swiper-pagination-bullets{
    bottom: 4rem;
}

.reviews .swiper-pagination-bullet{
    background-color: var(--light-color);
    transition: opacity .4s;
}

.reviews .swiper-button-prev{
    left: calc(50% - 3rem);
}


.reviews .swiper-button-next{
    right: calc(50% - 3rem);
}

.reviews .swiper-button-prev::after,
.reviews .swiper-button-next::after{
    content: '';
}

.reviews :is(.swiper-button-prev, .swiper-button-next){
    top: initial;
    bottom: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 30%;
    font-size: 2rem;
}

.reviews :is(.swiper-button-prev, .swiper-button-next):hover {
    background-color: #2A47E8;   /* darker shade of teal */
    color: #fff;
    transform: scale(1.08);      /* slight zoom on hover */
    transition: 0.3s ease;
}


@media screen and (max-width: 450px) {
    .reviews .box{
        width: 240px;
        padding-inline: 1rem;
    }
    
}

@media screen and (max-width: 768px) {
    .box-containerr{
        max-width: 768px;
    }
    
}

@media screen and (max-width:991px) {
    .box-containerr{
        max-width: 681px;
    }
}

.appointment form{
    border-radius: 1rem;
    background-color: var(--light-bg);
    padding: 2rem;
    margin: 0 auto;
    max-width: 50rem;
}

.appointment form .message{
    margin-bottom: 2rem;
    border-radius: .5rem;
    background-color: var(--blue);
    padding: 1.5rem 1rem;
    font-size: 1.7rem;
    color: var(--white);
    text-align: center;
}

.appointment form .box{
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    background-color: var(--white);
    padding: 1.2rem 1.4rem;
    font-size: 1.5rem;
    color: var(--black);
    text-transform: none;
}

.appointment form span{
    font-size: 1.7rem;
    color: var(--black);
}

.footer-contact {
    background: var(--light-bg);
    padding: 4rem 2rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2.5rem;
}

.footer-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: .2s;
    text-decoration: none;
}

.footer-box:hover {
    transform: translateY(-5px);
}

.footer-box i {
    font-size: 2.8rem;
    height: 6rem;
    width: 6rem;
    line-height: 6rem;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    margin-bottom: 1rem;
}

.footer-box h3 {
    font-size: 1.9rem;
    margin-bottom: .5rem;
    color: var(--black);
}

.footer-box p {
    font-size: 1.4rem;
    color: var(--light-color);
    text-transform: none;
    margin: 0;
}

.footer-credit {
    text-align: center;
    padding-top: 2rem;
    font-size: 1.4rem;
    color: var(--light-color);
}
.email-btn {
    cursor: pointer;
}

.page-offset {
    height: 11rem;
}

@media (max-width: 991px) {
    .page-offset {
        height: 11rem;
    }
}

@media (max-width: 768px) {
    .page-offset {
        height: 13rem;
    }
}








/* media queries*/


@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .glass-header .link-btn{
        display: none;
    }

    section{
        padding: 5rem 2rem;
    }

}

@media (max-width:768px){

    section{
        padding: 3rem 1rem;
    }

    #menu-btn{
        display: inline-block;
        transition: .2s linear;
        padding: 2rem;
    }
    
    #menu-btn.fa-times{
        transform: rotate(180deg);
    }

    .glass-header .nav{
        position: absolute;
        top: 99%; left:0; right:0;
        background-color: var(--white);
        border-top: var(--border);
        border-bottom: var(--border);
        border-radius: 25px;
        padding: 1rem 0;
        text-align: center;
        flex-flow: column;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .glass-header .nav.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .glass-header .nav a{
        margin: 1rem 0;
        font-size: 2rem;
    }

}

@media (max-width:450px){

    html{
        font-size: 50%;
    }
    
    .heading{
        font-size: 3rem;
    }

}