body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.container blockquote {
    text-align: justify;
    font-size: 20px;
    margin: 60px;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    line-height: 1.4;
    padding: 0 !important;
    text-align: center;
}
body {
    height: 200vh; 
    margin: 0;
    font-family: Arial, sans-serif;
}

.line-container {
    position: relative;
    width: 100%;
    height: 4px;
    background: transparent;
    margin-top: 20px;
}

.line {
    width: 0%;
    height: 100%;
    background: rgb(53, 10, 96);
    transition: width 0.05s ease-out;
}

.container h1 img {
    height: 70px;
    width: 450px;
}

.container h2 {
    background: #999191;
    padding: 15px;
    border-radius: 8px;
    font-size: 35px;
    color: rgb(32, 30, 30);
    font-style: italic;
}
.servicesss {
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    font-size: 30px;
    font-style: oblique;
    color: rgb(37, 33, 33);
    font: bold;
    font-stretch: extra-expanded;
    border-radius: 5px;
    background-color: #94d1c0;
    padding: 5px;
} 
.service { 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px;
}
 
.service h2 {
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    font-size: 40px;
    color: white;
    font: bold;
    border-radius: 8px;
    background-color: #040404;
    padding: 5px;
    margin: 1px; 
}

.service-item {
    background: rgb(231, 193, 124);
    padding: 20px;
    border-radius: 17px;
    box-shadow: 0 0 10px rgba(16, 0, 0, 0.1);
    width: 260px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}  /* Adjust font size here */

.service-item h3 {
    font-size: 24px;
    text-align: center;
}

.service-item p {
    font-size: 10px;
    text-align: center;
}

.service-item button {
    background: #28044b; 
    color: rgb(250, 247, 247); 
    padding: 10px 15px; 
    border: none; 
    border-radius: 5px; 
    font-size: 11px; 
    cursor: pointer; 
    margin-top: 20px;
}

.service-item {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(201, 4, 211, 0.2);
}
.about{
    display: flex;
    flex-direction: column;
    gap: 5px; 
}
.about p {
    text-align: justify;
    font-size: 20px;
    margin: 60px;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    line-height: 1.4;
    padding: 0 !important;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
}
.about-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out; 
}

.about-text.show {
    opacity: 1;
    transform: translateY(0);
}

.about h2 {
    background: #999191;
    padding: 15px;
    border-radius: 8px;
    font-size: 35px;
    color: rgb(32, 30, 30);
    font-style: italic;
}

#contact {
   text-align: center;
}
.contact-box {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #d2c4b3;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width:300px;
    height:400px;
    cursor: grab;
}
.contact-header {
    cursor: grab;
    padding: 10px;
    background-color: #b89b84;
    border-radius: 10px 10px 0 0;
    text-align: center;
    font-weight: bold;
}
.contact-box button {
    background: rgb(209, 48, 48);
    color: white;
    padding: 5px 10px;
}
.contact-form button {
    background: #201623; 
    color: rgb(244, 243, 243); 
    padding: 10px 20px;
    border: none; 
    font-stretch: expanded;
    border-radius: 5px; 
    font-size: 20px; 
    cursor: pointer; 
    margin-top: 20px;
}

/* Close button (X) */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    background: none;
    color: #333;
}

.close-btn:hover {
    color: red;
}


header {
    background-color: #86c6e6;
    color: rgb(24, 2, 47);
    padding: 1px;
    font-size: 15px;
}

header h1 img {
    float: left;
} 
.navbar {
    display: flex;
    justify-content: center;
    padding: 15px;
    z-index: 1000;
    position: relative;
}
.nav-item {
    position: relative;
    margin: 0 10px;
    cursor: pointer;
    font-size: 20px;
    color: rgb(11, 1, 1);
    padding: 10px;
    transition: 0.3s;
}
.nav-item:hover {
    color: rgb(231, 109, 21);
}
.dropdown {
    position: absolute; 
    top: 100%; 
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: black;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translate(-50%, 10px);
    z-index: 9999;
}
.dropdown a {
    display: block;
    padding: 20px;
    text-decoration: none;
    background-color: #8566db;
    color: rgb(249, 249, 249);
    transition: 0.3s;
}
.dropdown a:hover {
    background-color: rgb(63, 4, 83);
    color: rgb(251, 251, 251);
}
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0px);
}
.hero {
    position: relative;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    background-image: url('jbuhh.PNG'); 
    background-size: cover;
    background-position: center;
    opacity: 0.95; 
    z-index:-1;
}
.hero h2 { 
     font-size: 65px;
     text-shadow: 
        -2px -2px 0 rgb(38, 9, 200),  
         2px -2px 0 rgb(67, 8, 216),
        -2px  2px 0 rgb(162, 9, 213),
         2px  2px 0 rgb(117, 11, 224);
     z-index: 1;
} 

.hero h4 {
    font-size: 27px;
    text-shadow: 
        -2px -2px 0 rgb(1, 24, 7),  
         2px -2px 0 rgb(26, 28, 1),
        -2px  2px 0 rgb(1, 3, 62),
         2px  2px 0 rgb(36, 24, 2);
     z-index: 1;
}
.fade {
    opacity: 0;
}
.hero button { 
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.5em;
    font-style: inherit; 
    color: white;
    background-color: #16002b; /* Dark background */
    border: 2px solid;
    border-style: outset;
    border-width: 5px; 
    border-radius: 30px;
    border-color: #11b9f1;
    box-shadow: 0 0 10px rgba(236, 5, 5, 0.1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
}

.hero button:hover {
    padding-right: 40px; 
    text-align: left; 
}
.hero button::after {
    content: " →"; 
    size: 5px;
    position: absolute;
    opacity: 0;
    right: 15px;
    transition: opacity 0.3s ease-in-out;
}
.hero button:hover::after {
    opacity: 1;
}

section {
    padding: 20px 0;
}

.service-item {
    margin: 20px 0;
}

.service-item h3 {
 text-align: justify;
}

.service-item p {
    font-family: 'Segoe UI', Tahoma,  Verdana, sans-serif;
    font-size: medium;
    text-align: center;
    font-stretch: condensed;
}


.faq-title {
    font-size: 44px;
    font-weight: bold;
    color: #2e2e7c;
    margin-bottom: 20px;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: white;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(4, 4, 234, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    padding: 15px;
    outline: none;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 15px;
    font-size: 16px;
    color: #333;
    border-top: 1px solid #ddd;
}

/* Styling for the dropdown arrow */
.icon {
    transition: transform 0.3s ease-in-out;
    font-size: 18px;
}

/* Rotating class for active dropdown */
.rotate {
    transform: rotate(180deg);
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 10px;
}

.footer {
    background-color: #030838;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    text-align: center; /* Centers text horizontally */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content horizontally */
    justify-content: center; /* Centers content vertically */
    padding: 10px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    width: 22%;
    height: 10%;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column p,
.footer-column ul {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    display: flex;
    align-items: center;
}

.footer-column ul li i {
    margin-right: 8px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    margin-right: 10px;
    text-decoration: none;
}

.footer-bottom {
    background: #040404;
    padding: 35px;
    width: 1450px;
    height: 70px;
    display: flex;
    justify-content: center; /* Aligns items in the center */
    align-items: center;
    flex-wrap: wrap;
    gap: 9px; /* Adds space between elements */
    margin-top: 10px;
    margin-bottom: -5.5px;
}

.footer-bottom a {
    color: white;
    margin: 0 10px; /* Adds space between links */
    text-decoration: none; /* Optional: Removes underline */
}

.footer-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
}

.footer-icons a {
    background-color: #003366;
    color: white;
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
}

.footer-icons a i {
    font-size: 18px;
}

.scroll-top {
    background-color: #0055cc;
}
/* Ensure the chat icon is above all sections */
.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2867F0;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999; /* Ensures it's above all elements */
}

/* Ensure the comment box is also above all sections */
.comment-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    display: block;
    z-index: 9999; /* Ensures it stays above the hero section */
    border: 1px solid #ccc;
    color: #040404;
}

/* Styling for close button */
.close-btn {
    position: absolute;
    top: 2px;
    right: 1px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: red;
}
.raise button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.5em;
    font-style: inherit; 
    color: white;
    background-color: #16002b; /* Dark background */
    border: 2px solid;
    border-style: outset;
    border-width: 5px; 
    border-radius: 30px;
    border-color: #11b9f1;
    box-shadow: 0 0 10px rgba(236, 5, 5, 0.1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
    margin-bottom: 30px;
}
.raise button:hover {
    padding-right: 40px; 
    text-align: left; 
}
.raise button::after {
    content: "→"; 
    size: 5px;
    position: absolute;
    opacity: 0;
    right: 15px;
    transition: opacity 0.3s ease-in-out;
}
.raise button:hover::after {
    opacity: 1;
}