/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background-color: #000;
    background-image: url('https://cdn.pixabay.com/photo/2017/11/20/20/12/underwater-2966572_1280.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

body.loaded {
    opacity: 1;
}

.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

a:hover {
    color: #FFA500;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.header-top {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.header-top.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    gap: 1.5rem;
}

.header-contact a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-social {
    display: flex;
    gap: 1rem;
}

.header-social a {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.navbar {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

.navbar.compact {
    height: 60px;
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 120px;
    /* Adjust based on header height */
}

.navbar .logo {
    display: flex;
    flex-direction: column;
}

.navbar .logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.motto-header {
    color: #FFA500;
    font-style: italic;
    font-size: 0.8rem;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}

.navbar .links a {
    transition: color 0.3s ease;
}

.navbar .toggle_btn {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action_btn {
    background-color: #FFA500;
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: none;
    text-decoration: none;
}

.action_btn:hover {
    transform: scale(1.05);
    color: #fff !important;
}

.action_btn:active {
    transform: scale(0.95);
}

/* Dropdown Menu */
.dropdown_menu {
    display: none;
    position: fixed;
    right: 2rem;
    top: 120px;
    height: 0;
    width: 300px;
    background: rgba(35, 73, 63, 0.802);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.dropdown_menu.open {
    height: 380px;
}

.dropdown_menu.compact {
    top: 100px;
}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Main Content */
.main-content {
    flex: 1;
}

/* Hero Section */
.hero-section {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFA500, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    background: #25D366;
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: scale(1.05);
    color: white !important;
}

.btn-secondary {
    background: transparent;
    color: #FFA500 !important;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #FFA500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #FFA500;
    color: white !important;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-item i {
    color: #FFA500;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-weight: bold;
    color: #333;
}

/* Banking Details Section */
.banking-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    margin: 4rem auto 0;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.banking-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* The wrapper holding details + instructions */
.banking-flex {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap; /* makes them stack nicely on small screens */
}

.payment-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #FFA500;
}

.payment-info h3 {
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-info h3 i {
    color: #FFA500;
}

.bank-details {
    display: grid;
    gap: 1rem;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.bank-detail-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.bank-detail-label {
    font-weight: bold;
    color: #555;
    font-size: 0.9rem;
}

.bank-detail-value {
    color: #333;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

.bankSelect {
    padding: 0.5rem;
}

.copy-btn {
    background: #FFA500;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #e89500;
    transform: scale(1.05);
}

.copy-btn.copied {
    background: #25D366;
}

/* .payment-instructions {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #25D366;
} */
 .payment-instructions {
     flex: 1;
    min-width: 300px; /* ensures stacking below 600px */
 }

.payment-instructions h3 {
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-instructions h3 i {
    color: #25D366;
}

.payment-steps {
    list-style: none;
    counter-reset: step-counter;
}

.payment-steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 1rem 0 1rem 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #555;
    line-height: 1.6;
}

.payment-steps li:last-child {
    border-bottom: none;
}

.payment-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    background: #25D366;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.payment-note {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid #FFA500;
}

.payment-note p {
    color: #856404;
    margin: 0;
    font-weight: 500;
}

.payment-note i {
    color: #FFA500;
    margin-right: 0.5rem;
}

/* Services Section */
.services-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-icon {
    color: #FFA500;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 2.5rem;
}

.service-title {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.service-price {
    font-weight: bold;
    color: #FFA500;
    font-size: 1.1rem;
}

.service-turnaround {
    color: #25D366;
    font-weight: bold;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.service-features li i {
    color: #25D366;
    font-size: 1rem;
}

.service-order-btn {
    display: block;
    text-align: center;
    background: #FFA500;
    color: white !important;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.service-order-btn:hover {
    background: #e89500;
    color: white !important;
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    margin: 4rem auto 0;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.about-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-item i {
    color: #FFA500;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.about-item p {
    color: #666;
    line-height: 1.6;
}

/* Comments Section Styles */
.comments-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    margin: 4rem auto 0;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comments-header-main {
    text-align: center;
    margin-bottom: 3rem;
}

.comments-header-main h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FFA500, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comments-header-main p {
    color: #666;
    font-size: 1.1rem;
}

.comment-form-container {
    margin-bottom: 3rem;
}

.comment-form-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.comment-form-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-form-card h3 i {
    color: #FFA500;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFA500;
}

.rating-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.rating-group label {
    margin: 0;
    font-weight: bold;
    color: #333;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
}

.star:hover,
.star.active {
    color: #FFA500;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.submit-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #20b954;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.admin-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.admin-panel {
    margin-bottom: 2rem;
    display: none;
}

.admin-card {
    background: linear-gradient(135deg, #ffe5e5, #fff0f0);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #ff6b6b;
}

.admin-card h4 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-card h4 i {
    color: #ff6b6b;
}

.admin-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-controls input {
    flex: 1;
    padding: 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
}

.admin-auth-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.admin-auth-btn:hover {
    background: #ff5252;
}

.admin-status {
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    margin-top: 1rem;
}

.admin-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.admin-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.comments-container {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.comments-header {
    background: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.comments-header h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comments-header h3 i {
    color: #FFA500;
}

.comment-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #e0e0e0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #666;
}

.filter-btn:hover,
.filter-btn.active {
    background: #FFA500;
    color: white;
    border-color: #FFA500;
}

.comments-list {
    padding: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
}

.comment-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #e0e0e0;
    transition: all 0.3s ease;
}

.comment-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.comment-item.admin-comment {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left-color: #FFA500;
}

.comment-item.review {
    border-left-color: #25D366;
}

.comment-item.question {
    border-left-color: #007bff;
}

.comment-item.testimonial {
    border-left-color: #dc3545;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-badge {
    background: #FFA500;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.comment-meta {
    font-size: 0.8rem;
    color: #666;
}

.comment-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.type-badge {
    background: #e0e0e0;
    color: #666;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.type-badge.review {
    background: #25D366;
    color: white;
}

.type-badge.question {
    background: #007bff;
    color: white;
}

.type-badge.testimonial {
    background: #dc3545;
    color: white;
}

.comment-rating {
    display: flex;
    gap: 0.2rem;
}

.comment-rating .star {
    font-size: 1rem;
    color: #FFA500;
    cursor: default;
}

.comment-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.reply-btn,
.like-btn,
.delete-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.reply-btn:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

.like-btn:hover {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.delete-btn:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.like-btn.liked {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.reply-form {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    display: none;
}

.reply-form.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reply-input {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    resize: vertical;
    min-height: 80px;
}

.reply-input:focus {
    border-color: #007bff;
    outline: none;
}

.reply-buttons {
    display: flex;
    gap: 0.5rem;
}

.reply-submit {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.reply-submit:hover {
    background: #0056b3;
}

.reply-cancel {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reply-cancel:hover {
    background: #545b62;
}

.replies {
    margin-top: 1rem;
    padding-left: 1.5rem;
    border-left: 3px solid #e0e0e0;
}

.reply-item {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.reply-item:last-child {
    margin-bottom: 0;
}

.empty-comments {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.empty-comments i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #25D366;
}

.notification.error {
    background: #dc3545;
}

.notification.warning {
    background: #FFA500;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.contact-description {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #25D366;
    color: white !important;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white !important;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.whatsapp-float.visible {
    opacity: 1;
    transform: scale(1);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white !important;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white !important;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Footer Styles */
footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 2rem 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-logo h3 {
    color: #FFA500;
    margin-bottom: 10px;
}

.motto {
    color: #FFA500;
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-address p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1rem 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive Design */
@media(max-width: 992px) {
    body {
        padding-top: 110px;
    }

    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
        top: 110px;
    }

    .dropdown_menu.open {
        height: 380px;
    }

    .header-contact {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .banking-container {
        flex-direction: column;
        gap: 2rem;
    }
}

@media(max-width: 668px) {
    body {
        padding-top: 90px;
    }

    .dropdown_menu {
        top: 90px;
    }

    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }

    .header-container {
        justify-content: center;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-indicators {
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        margin: 0 0.5rem;
    }

    .bank-detail-row {
        flex-direction: column;
        align-items: start;
        gap: 0.5rem;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .comment-filters {
        justify-content: center;
    }

    .admin-controls {
        flex-direction: column;
    }

    .replies {
        padding-left: 1rem;
    }

    .comment-actions {
        justify-content: space-between;
    }
}

@media(max-width: 500px) {
    body {
        padding-top: 70px;
    }

    .header-top {
        display: none;
    }

    .dropdown_menu {
        left: 2rem;
        width: calc(100vw - 4rem);
        top: 70px;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .hero-section {
        margin: 1rem;
        padding: 2rem 1rem;
    }

    .services-section,
    .about-section,
    .contact-section,
    .banking-section,
    .comments-section {
        padding: 2rem 1rem;
        margin: 1rem;
    }

    .service-card {
        margin: 0;
    }

    .bank-detail-value {
        font-size: 0.85rem;
    }

    .comment-form-card,
    .comments-container {
        padding: 1rem;
    }

    .comment-item {
        padding: 1rem;
    }

    .comment-filters {
        gap: 0.3rem;
    }

    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .replies {
        padding-left: 0.5rem;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.about-item.visible {
    animation: fadeInUp 0.6s ease forwards;
}