    /* for register here button */

    .popup {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.5);
    }
    
    .popup-content {
        margin: 20% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 100%;
        max-width: 50%;
        text-align: center;
        position: relative;
    }
    
    .close-btn {
        position: absolute;
        top: 0px;
        right: 25px;
        font-size: 30px;
        font-weight: bold;
        cursor: pointer;
        color: #fff;
    }
    
    #register-btn {
        padding: 10px 50px;
        font-size: 20px;
        cursor: pointer;
        background-color: #358F39;
        border: 1px solid black;
        border-radius: 5px;
    }
    
    .popup-content p {
        font-size: 2vw;
        color: #fff;
        font-weight: bold;
        padding: 2vw;
    }
    
    .permanent-register-btn {
        display: block;  /* Ensure it is visible initially */
        position: fixed;
        right: 0px;
        bottom: 34%;    /*position of register button*/
        padding: 5px 10px;
        font-size: 13px;
        cursor: pointer;
        background-color: #007BFF;  /* Adjust color as needed */
        color: white;
        border: none;
        border-radius: 2px;
    }
    
    /* Responsive adjustments */
    @media (max-width: 600px) {
    
        .popup-content {
            margin: 20% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 100%;
            max-width: 80%;
            text-align: center;
            position: relative;
            margin-top: 40%;
        }
    
        .close-btn {
            right: 10px;
            font-size: 30px;
        }
    
        #register-btn {
            padding: 10px 50px;
            font-size: 16px;
        }
    
        .popup-content p {
            font-size: 4vw;
        }
    
        .permanent-register-btn {
            display: block;  /* Ensure it is visible initially */
            position: fixed;
            right: 0px;
            bottom: 35%;    /*position of register button*/
            padding: 5px 10px;
            font-size: 13px;
            cursor: pointer;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 2px;
        }
    }
    /* for back to top  button*/
.back-to-top {
    position: fixed;

    right: 30px;
    bottom: 30px;
    z-index: 99;
}


    /*people page  */

    /* for photos border */
body.modal-open {
    overflow: hidden;
    /* This is default for Bootstrap modals */
}

.orange-border {
    border: 3px solid #b1563a;
    /* Adds an orange border with a width of 3px */
}

    /*testimonial page */
    /* card structure */
.card {
    border-radius: .7rem;
  }

        /* to control the carousal button */
  /* prvious icon */
    .carousel-control-prev:hover {
      color: blue;
      /* Change background color to blue on hover */
      border-color: blue;
      /* Optionally, change border color if there's a border */
    }

    .carousel-control-prev:hover .carousel-control-prev-icon {
      filter: invert(1);
      /* Optional: Invert icon color for better visibility on blue background */
    }

    /* next icon */
    .carousel-control-next:hover {
      color: blue;
      /* Change background color to blue on hover */
      border-color: blue;
      /* Optionally, change border color if there's a border */
    }

    .carousel-control-next:hover .carousel-control-next-icon {
      filter: invert(1);
      /* Optional: Invert icon color for better visibility on blue background */
    }



    /* Gallery page */

    /* for boxes for gallery */
    .lightbox-gallery {
        background-image: linear-gradient(#063860, #4A148C);
        background-repeat: no-repeat;
        color: #000;
        overflow-x: hidden;
    }

    .lightbox-gallery p {
        color: #fff;
    }

    .lightbox-gallery h2 {
        font-weight: bold;
        margin-bottom: 40px;
        padding-top: 40px;
        color: #fff;
    }

    @media (max-width: 767px) {
        .lightbox-gallery h2 {
            margin-bottom: 25px;
            padding-top: 25px;
            font-size: 24px;
        }
    }

    .lightbox-gallery .intro {
        font-size: 16px;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .lightbox-gallery .intro p {
        margin-bottom: 0;
    }

    .lightbox-gallery .photos {
        padding-bottom: 20px;
    }

    .lightbox-gallery .item {
        padding-bottom: 30px;
    }


    /* Blog page */

    .card {
        border-radius: .7rem;
    }
    .whatsapp-chat-button {
            position: fixed;
            bottom: 170px;
            right: 10px;
            background-color: #25D366; /* WhatsApp green color */
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            padding: 8px !important;
            text-align: center;
            z-index: 1000;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 25px !important;
            text-decoration: none;
        }
        .whatsapp-chat-button img {
            width: 60px; /* Adjust size as needed */
            height: 50px;
        }
 .social-icon { 
            color: black; /* White color for icons */
            background-color: #fff; /* Background color (black) */
     
            display: inline-flex; /* Aligns icon in the center of the background */
            justify-content: center; /* Centers icon horizontally */
            align-items: center; /* Centers icon vertically */
        }
.row.mt-5 .btn {
            color: white !important; /* Change text color to white */
        }