* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Navbar Overlay */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background-color: transparent;
}
.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
}
.navbar-nav {
    list-style: none;
    display: flex;
    gap: 30px;
}
.navbar-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s;
}
.navbar-nav a:hover {
    color: #8B0000;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-top: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    background-color: #ffffff; /* Solid background behind text to ensure contrast */
    padding: 30px 50px;
    border: 2px solid #8B0000;
}
.hero-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    text-transform: uppercase;
}
.hero-content p {
    color: #8B0000;
    font-size: 20px;
    margin-top: 10px;
}

/* Select Bar */
.select-bar-wrapper {
    background-color: #ffffff;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #b30000;
}
.select-bar {
    background-color: #f0f0f0;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    border: 2px solid #8B0000;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.25);
    max-width: 800px;
    width: 100%;
}
.select-icon {
    font-size: 24px;
    padding-left: 15px;
}
.select-bar select {
    padding: 15px 20px;
    font-size: 18px;
    border: none;
    background-color: transparent;
    color: #1a1a1a;
    outline: none;
    cursor: pointer;
    flex: 1;
    min-width: 200px;
}
.select-bar select option {
    background-color: #ffffff;
    color: #1a1a1a;
}
.btn-search {
    padding: 15px 40px;
    font-size: 18px;
    border: none;
    background-color: #8B0000;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-search:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Sections */
.section {
    padding: 50px 0%;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 36px;
    color: #8B0000;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.profile-card {
    background-color: #ffffff;
    border: 2px solid #b30000;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}
.profile-card:hover {
    transform: translateY(-10px);
    border-color: #8B0000;
}
.profile-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-bottom: 2px solid #b30000;
}
.profile-info {
    padding: 10px;
    text-align: center;
    background-color: #ffffff;
}
.profile-info .h3 {
    color: #1a1a1a;
    font-size: 24px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.profile-info p {
    color: #8B0000;
    font-size: 16px;
    font-weight: bold;
}

/* Content Box */
.content-box {
    background-color: #b30000;
    padding: 60px 5%;
    text-align: center;
}
.content-box h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.content-box p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    max-width: 1200px;
    margin: 20px auto;
}


.content-box2 p { 
    font-size: 18px;
    line-height: 1.6;
    max-width: 1200px;
    margin: 20px auto;
}

/* Table */
.table-container {
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border: 2px solid #b30000;
}
table th, table td {
    padding: 20px;
    text-align: center;
    border: 1px solid #b30000;
}
table th {
    background-color: #8B0000;
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
}
table td {
    color: #1a1a1a;
    font-size: 16px;
}
table tr:nth-child(even) {
    background-color: #fce4e4;
}

/* Split Section */
.split-section {
    /* max-width: 1200px; */
    /* margin: auto; */
    display: flex; 
    background-color: #ffffff;
    border-top: 2px solid #b30000;
    border-bottom: 2px solid #b30000;
}
.split-img {
    flex: 1;
}
.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}
.split-content {
    flex: 1;
    padding: 20px 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #b30000;
}
.split-content h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.split-content p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
}
.split-content.faq-bg {
    max-width: 1200px;
    margin: auto;
    background-color: #ffffff; 
}
.split-content.faq-bg h3 {
    color: #8B0000;
    font-size: 1.5rem;
    margin-bottom: 1%;
    text-align: center;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background-color: #fce4e4;
    padding: 25px;
    border: 2px solid #8B0000;
}
.faq-item h4 {
    color: #8B0000;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.faq-item p {
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.5;
}

/* Tags */
.tags-section {
    padding: 60px 5%;
    text-align: center;
    background-color: #ffffff;
}
.tag-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.tag {
    display: inline-block;
    padding: 10px 20px;
    background-color: #b30000;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border: 2px solid #b30000;
    transition: all 0.3s;
}
.tag:hover {
    background-color: #ffffff;
    border-color: #8B0000;
    color: #8B0000;
}

/* Footer */
footer {
    background-color: #8B0000;
    border-top: 4px solid #8B0000;
    padding: 80px 5% 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}
.footer-col .h3 {
    color: #f9f4f4;
    font-size: 24px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.footer-col p {
    color: #e0e0e0;
    line-height: 1.6;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 15px;
    color: #e0e0e0;
}
.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}
.footer-col ul li a:hover {
    color: #8B0000;
}
.disclaimer {
    border-top: 2px solid #ee7e7e;
    padding-top: 30px;
    text-align: center;
}
.disclaimer p {
    font-size: 14px;
    color: #e2d5d5;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1200px) {
    .profile-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .profile-grid { grid-template-columns: repeat(2, 1fr); }
    .split-section { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px;}
    .hero-content h1 { font-size: 32px; }
}
@media (max-width: 576px) {
    .profile-grid { grid-template-columns: 1fr; padding: 0 5%;}
    .navbar { flex-direction: column; padding: 5px 10px; }
    .navbar-nav { margin-top: 10px; flex-wrap: wrap; justify-content: center; display:none}
    .hero { margin-top: 0; height: auto; }
    .btn-search {
        width: 100%;
    }
    .content-box2{
        padding: 1% 2%;
    }
}

/* Description for 2nd profile section */
.profile-description {
    padding: 10px;
    text-align: center;
    background-color: #ffffff;
}
.profile-description p {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.5;
}

/* Floating Buttons */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}
.float-btn:hover {
    transform: scale(1.1);
}
.float-whatsapp {
    background-color: #25D366;
}
.float-call {
    background-color: #de0f0f;
}
