/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

a {
    color: #0056b3;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: none;
}

h1 {
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 15px;
    color: #000000;
    font-size: 30px;
    font-family: 'Times New Roman', Times, serif;
}

h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 15px;
    color: #D4AF37;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: justify;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 30px;
    color: #fc7c05;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #007bff;
}

.section-header p {
    color: #000000;
    text-align: justify;
    margin: 0 auto;
}

.btn {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    color: #fff;
}

/* Header Styles */
.header {
    background-color:  #007bff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-width: 100%;
    height: auto;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: #fff;
    font-weight: 600;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Banner Styles */
.banner-section {
    padding: 50px 0 25px;
    position: relative;
    margin-top: 50px;
}

.carousel-item {
    padding: 30px 0;
}

.banner-img {
    height: 600px;
    width: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.banner-content {
    padding-left: 30px;
}

.banner-content h1 {
    font-size: 30px;
    margin-bottom: 5px;
    color: #D4AF37;
    font-family: 'Times New Roman', Times, serif;
}

.banner-content h2 {
    font-size: 30px;
    margin-bottom: 5px;
    color: #D4AF37;
    font-family: 'Times New Roman', Times, serif;
}

.banner-content p {
    font-size: 16px;
    color: #ccc;
    font-family: sans-serif;
    text-align: justify;
    margin-top: 30px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgb(222, 214, 2);
    border-radius: 50%;
    top: 25%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

/* Carousel animation via CSS classes  */
.carousel-rotate-animation {
    animation: slideIn 0.0s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0.5;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Optional: For a 3D rotation effect */
.carousel-rotate-3d {
    animation: rotate3dSlide 0.0s ease-in-out;
}

@keyframes rotate3dSlide {
    from {
        transform: rotateY(90deg);
        opacity: 0;
    }
    to {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

/* Gallery Styles */
.gallery-section {
    padding: 100px 0;
    background-color: #87ceeb; 
}

.gallery-row {
    margin-top: 20px;
}

.profile-card {
    background: #000000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 3px solid #ffd700; 
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.profile-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.profile-info {
    padding: 20px;
    text-align: center;
}

.profile-info h3 {
    color: #1dacee;
    margin-bottom: 10px;
    font-size: 20px;
    text-align:left;
}

.profile-desc {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more {
    background: #2e0153;
    color: #FFE32B;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #0056b3;
}

/* Rate Card Styles */
.rates-section {
    padding: 60px 0;
    background: #000000;
}
.rates-content {
    text-align: center;
    
}

.rates-content p{
    color: #ffffff;
    text-align: center;
    
}
.rates-table {
    margin-top: 30px;
    box-shadow: 0 5px 15px #D4AF37;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #D4AF37;
}

.rates-table thead th {
    background: linear-gradient(135deg, #000000 0%, #D4AF37 100%);
    color: #27ae60;
    border: none;
    padding: 18px 15px;
    font-weight: 600;
    text-align: center;
}

.rates-table tbody td {
    padding: 16px 15px;
    vertical-align: middle;
    border-color: #D4AF37;
}

.rates-table tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.05);
}

.rates-table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.category-name {
    background-color: rgba(0, 0, 0, 0.15);
    font-weight: 600;
    color: #27ae60;
    vertical-align: middle;
}

.rates-table td:nth-child(1),
.rates-table td:nth-child(2),
.rates-table td:nth-child(3),
.rates-table td:nth-child(4) {
    font-weight: 600;
    color: #27ae60;
    text-align: center;
    font-size: 1.1em;
}

.rates-note {
    margin-top: 40px;
    padding: 25px;
    background-color: rgb(0, 0, 0);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.rates-note h5 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-weight: 600;
}

.rates-note h5 i {
    color: #D4AF37;
    margin-right: 10px;
}

.rates-note ul {
    list-style-type: none;
    padding-left: 0;
}

.rates-note ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.rates-note ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.booking-highlight {
    background: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%);
    padding: 25px;
    border-radius: 8px;
    color: white;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-highlight h5 {
    color: white;
    font-weight: 600;
}

.highlight-price {
    font-size: 2.2em;
    font-weight: 700;
    margin: 10px 0;
    color: #27ae60;
}

.btn-book-now {
    background-color: rgb(99, 100, 102);
    color: #D4AF37;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background-color: #27ae60;
    color: #2c3e50;
    transform: translateY(-2px);
}

.rates-disclaimer {
    margin-top: 30px;
    padding: 15px;
    background-color: #fff8e1;
    border-left: 4px solid #D4AF37;
    border-radius: 4px;
}

.rates-disclaimer p {
    margin-bottom: 0;
    color: #5d4037;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rates-table {
        font-size: 0.9em;
    }
    
    .rates-table thead th,
    .rates-table tbody td {
        padding: 12px 8px;
    }
    
    .category-name {
        font-size: 0.95em;
    }
    
    .booking-highlight {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .rates-table {
        display: block;
        overflow-x: auto;
    }
    
    .highlight-price {
        font-size: 1.8em;
    }
}

/* Comparison Table Styles */
.comparison-section {
    padding: 60px 0;
    background-color: #87ceeb;
}

.comparison-table {
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    background-color: #D4AF37;
    color: white;
}

.our-service {
    background-color: rgba(212, 175, 55, 0.1);
    color: #2c3e50;
    font-weight: 600;
}

.scam-service {
    background-color: rgba(231, 76, 60, 0.1);
    color: #2c3e50;
}

.comparison-table th.our-service {
    background-color: #27ae60;
    color: white;
}

.comparison-table th.scam-service {
    background-color: #e74c3c;
    color: white;
}

.comparison-table td {
    padding: 15px;
    vertical-align: middle;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(0,0,0,0.02);
}

.comparison-note {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.comparison-note p {
    margin-bottom: 0;
    color: #856404;
}

/* About, Services, Why Us, Meet Sections */
.about-section,
.services-section,
.why-us-section,
.meet-section {
    padding: 50px 0;
}

.about-img img,
.services-img img,
.why-us-img img,
.meet-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid #007bff; /* Blue border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content,
.services-content,
.why-us-content,
.meet-content {
    padding-left: 30px;
}

.about-content h4,
.services-content h4,
.why-us-content h5,
.meet-content h6 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 22px;
}

.about-content p,
.services-content p,
.why-us-content p,
.meet-content p {
    color: #ccc;
    margin-bottom: 20px;
    text-align: justify;
}

.services-section,
.meet-section {
    background-color: #111;
}

.about-content ul,
.services-content ul,
.why-us-content ul,
.meet-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: #ccc;
}

.about-content ul li,
.services-content ul li,
.why-us-content ul li,
.meet-content ul li {
    margin-bottom: 10px;
    text-align: justify;
}

/* Buttons Section */
.buttons-section {
    padding: 50px 0;
    background-color: #8ce7fe;
    
}

.btn-custom {
    background-color: #007bff; 
    border-color: #007bff;
    color: #000000;
    font-size: 1rem;
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 2px;
    text-align: center; 
    padding: 10px 15px; 
    white-space: nowrap; 
}

.btn-custom:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.btn-custom.btn-block {
    font-family: sans-serif;
    font-size: 12px;
    width: 100%; 
    display: flex;
    justify-content: center;
    align-items: center; 
    text-align: center; 
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #000000;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-section .section-header h3 {
    color: #D4AF37;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.faq-section .section-header p {
    color: #f3eeee;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 20px;
    background-color: #000000;
    border: 1px solid #D4AF37;
    color: #D4AF37;
}

.accordion-button:not(.collapsed) {
    background-color: #000000;
    color: #D4AF37;
    border-color: #D4AF37;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    border-color: #D4AF37;
}

.accordion-body {
    padding: 20px;
    background-color: #000000;
    border: 1px solid #000000;
    border-top: none;
    color: #8ce7fe;
    line-height: 1.6;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4AF37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media (max-width: 768px) {
    .faq-section .section-header h2 {
        font-size: 2rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 12px 15px;
    }
}

  /* Fixed Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.fixed-btn {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: vibrate 2s infinite;
}

.call-btn {
    background-color: #797374;
}

.whatsapp-btn {
    background-color: #25D366;
}

.fixed-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Mobile devices */
@media (max-width: 768px) {
    .fixed-buttons {
        bottom: 100px;
        right: 15px;
        gap: 20px;
    }
    
    .fixed-btn {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .fixed-buttons {
        bottom: 120px;
        right: 10px;
        gap: 25px;
    }
    
    .fixed-btn {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .fixed-buttons {
        bottom: 100px;
        right: 10px;
        gap: 15px;
    }
    
    .fixed-btn {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
}

@keyframes vibrate {
    0% { transform: rotate(0deg); }
    2% { transform: rotate(-5deg); }
    4% { transform: rotate(5deg); }
    6% { transform: rotate(-5deg); }
    8% { transform: rotate(5deg); }
    10% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* Footer */
.footer {
    background-color: #007bff;
    padding: 20px 0;
    color: #fff;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}