.Main {
    height: 100vh;
}

.intro-text {
    border: 2px solid blue;
    background: linear-gradient(135deg, #bdc3c7, #2c3e50);
    color: #2c3e50;
    font-weight: bolder;
    padding: 40px 20px;
    /* Increased padding to accommodate bolts */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.2) inset;
    text-align: center;
    background-clip: padding-box;
    position: relative;
}

.bolt {
    position: absolute;
    width: 20px;
    height: 18px;
    background: linear-gradient(145deg, #2c3e50, #6d96b1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4), 0 -2px 4px rgba(255, 255, 255, 0.3) inset;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: 1;
}

.bolt::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    background: #bdc3c7;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) inset, 0 -2px 2px rgba(255, 255, 255, 0.3) inset;
}

.bolt-1 {
    top: 8px;
    left: 10px;
}

.bolt-2 {
    top: 8px;
    right: 10px;
}

.bolt-3 {
    bottom: 10px;
    left: 10px;
}

.bolt-4 {
    bottom: 10px;
    right: 10px;
}

#RequestModal .page-body {
    max-width: 300px;
    background-color: #FFFFFF;
    margin: 10% auto;
}

#RequestModal .page-body .head {
    text-align: center;
}

#RequestModal .close {
    opacity: 1;
    position: absolute;
    right: 0px;
    font-size: 30px;
    padding: 3px 15px;
    margin-bottom: 10px;
}

#RequestModal .checkmark-circle {
    width: 150px;
    height: 150px;
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.checkmark-circle .background {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #1ab394;
    position: absolute;
}

#RequestModal .checkmark-circle .checkmark {
    border-radius: 5px;
}

#RequestModal .checkmark-circle .checkmark.draw:after {
    -webkit-animation-delay: 300ms;
    -moz-animation-delay: 300ms;
    animation-delay: 300ms;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-name: checkmark;
    -moz-animation-name: checkmark;
    animation-name: checkmark;
    -webkit-transform: scaleX(-1) rotate(135deg);
    -moz-transform: scaleX(-1) rotate(135deg);
    -ms-transform: scaleX(-1) rotate(135deg);
    -o-transform: scaleX(-1) rotate(135deg);
    transform: scaleX(-1) rotate(135deg);
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

#RequestModal .checkmark-circle .checkmark:after {
    opacity: 1;
    height: 75px;
    width: 37.5px;
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top;
    border-right: 15px solid #fff;
    border-top: 15px solid #fff;
    border-radius: 2.5px !important;
    content: '';
    left: 35px;
    top: 80px;
    position: absolute;
}

@-webkit-keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }

    20% {
        height: 0;
        width: 37.5px;
        opacity: 1;
    }

    40% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }

    100% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
}

@-moz-keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }

    20% {
        height: 0;
        width: 37.5px;
        opacity: 1;
    }

    40% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }

    100% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
}

@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }

    20% {
        height: 0;
        width: 37.5px;
        opacity: 1;
    }

    40% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }

    100% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
}

.sticky-note {
    position: relative;
    background: #ffeb3b;
    /* Yellow color for sticky note */
    border-radius: 5px;
    /* Slightly rounded corners */
    font-weight: bolder;
    padding: 20px;
    width: 200px;
    height: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    color: #333;
    /* Darker text for contrast */
    overflow: hidden;
    /* Hide the overflow to fix the extra part sticking out */
}

.sticky-note:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: #ffeb3b;
    /* Same yellow color */
    bottom: -10px;
    /* Adjusted to hide the extra part */
    right: 30px;
    /* Adjusted to hide the extra part */
    box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.1);
    transform: rotate(70deg);
    transform-origin: 100% 100%;
}

.thumbtack {
    position: absolute;
    top: 0px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: red;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.thumbtack::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 15px;
    background: red;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.dark-yellow-button {
    background-color: #f5c71a;
    /* Darker yellow */
    border: none;
    color: #333;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.dark-yellow-button:hover {
    background-color: #e0b716;
    /* Slightly darker on hover */
}

.about {
    margin-top: 6vh;
}

.row>.col-md-4:first-child {
    padding-left: 0;
}

.row>.col-md-4:last-child {
    padding-right: 0;
}

.card-img-top {
    max-width: 30%;
    /* Adjust the percentage as needed */
    height: auto;
    /* Maintain aspect ratio */
}

.card-text {
    letter-spacing: 1px;
    /* Adjust the value as needed */
}

.card {
    perspective: 1000px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    /* Adjust spacing between cards */
    border: 1px solid #ccc;
    /* Add a border to the card */
    border-radius: 10px;
    /* Add border radius for rounded corners */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    /* Add box shadow for 3D effect */
    transition: transform 0.5s, box-shadow 0.5s;
    /* Add transition for smooth animation */
}

.card-inner {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.front,
.back {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* .front {}
      Front face styling */


.back {
    transform: rotateY(180deg);
    position: absolute;
    top: 0%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.card-body {
    padding: 20px;
    /* Adjust as needed */
}

.about h1.text-primary {
    font-size: 3.5rem;
    /* Adjust the value as needed */
}

.about p.text-dark {
    font-size: 1.25rem;
    /* Adjust the value as needed */
}

.dark-bg {
    background-color: #333;
    /* Dark grey background color */
    padding: 50px 0;
    /* Adjust padding as needed */
}
.big-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.big-card h2 {
    font-size: 2rem;
    color: #343a40;
}

.big-card p {
    font-size: 1.1rem;
    color: #6c757d;
}

.big-card .btn {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
}



.gallery-section {
    background: #e9ecef;
    padding: 40px 0;
}

.gallery-section h2 {
    font-size: 2.5rem;
    color: #6c757d;
}

.gallery-section p {
    font-size: 1.2rem;
    color: #343a40;
}

.gallery-section .btn {
    background: #6c757d;
    color: #fff;
}

.where-we-serve-section {
    background: #fff3cd;
    padding: 40px 0;
}

.where-we-serve-section h2 {
    font-size: 2.5rem;
    color: #856404;
}

.where-we-serve-section p {
    font-size: 1.2rem;
    color: #856404;
}

.where-we-serve-section .btn {
    background: #856404;
    color: #fff;
}
