* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #e6f0ff; /* Lighter blue with less green nuance */
    text-align: justify;
}

/* Reset text alignment for headers and other elements */
h1, h2, h3, h4, h5, h6, .btn, .nav-links a, .section-title, .service-card h3, .testimonial-card p::before, .faq-question, .footer-section h3 {
    text-align: left;
}

/* Ensure text alignment is justified for article content */
p, li, .section-subtitle, .service-card p, .service-card ul li, .about-text p, .testimonial-card p, .faq-answer p, .contact-item p, .contact-section p, .footer-section p, .tips-category ul li {
    text-align: justify;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: transparent;
}

/* Header Styles */
header {
    background-color: #e6f0ff; /* Light blue with less green nuance */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    background-color: transparent; /* Ensures navbar matches header background */
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    margin-right: 8px;
}

.logo h2 {
    font-size: 1.5rem;
    color: #2a6db5; /* Blue color to match theme */
}

.logo {
    display: flex;
    align-items: center;
    background-color: transparent; /* Ensure logo area remains transparent to match header */
}

.logo h2 span {
    color: #3a88c9; /* Blue color to match theme */
}

.nav-links {
    display: flex;
    list-style: none;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.nav-links li {
    margin-left: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap; /* Prevent text wrapping */
}

.nav-links a:hover {
    color: #2a6db5; /* Blue color to match theme */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #d0e6ff 0%, #bbd9f5 100%);
    margin-top: 80px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2a6db5; /* Blue color to match theme */
    line-height: 1.3;
}

.hero-content h1 span {
    color: #3a88c9; /* Blue color to match theme */
    position: relative;
    display: block;
    font-size: 1.8rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #2a6db5; /* Blue color to match theme */
    color: white;
}

.btn-primary:hover {
    background-color: #1d5a9c; /* Darker blue on hover */
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: #2a6db5; /* Blue color to match theme */
    border: 2px solid #2a6db5; /* Blue color to match theme */
}

.btn-secondary:hover {
    background-color: #2a6db5; /* Blue color to match theme */
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* General Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2a6db5; /* Blue color to match theme */
}

.section-title span {
    color: #3a88c9; /* Blue color to match theme */
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

/* Services Section */
.services {
    background-color: #e6f0ff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Update services grid to show 4 items per row on larger screens */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: #e1f0ff; /* More distinct light blue background with less green */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2a6db5, #3a88c9); /* Blue gradient to match theme */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-card .icon i {
    font-size: 30px;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2a6db5; /* Blue color to match theme */
}

.service-card p {
    margin-bottom: 15px;
    color: #666;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 5px 0;
    color: #555;
}

.service-card ul li::before {
    content: "✓";
    color: #2a6db5; /* Blue color to match theme */
    margin-right: 10px;
    font-weight: bold;
}

/* About Section */
.about {
    background-color: #dae9f7;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #2a6db5; /* Blue color to match theme */
    margin-bottom: 5px;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Gallery Section */
.gallery {
    background-color: #e6f0ff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination-btn {
    padding: 8px 16px;
    background-color: #cce6f5; /* Light blue pagination buttons */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.pagination-btn.active,
.pagination-btn:hover {
    background-color: #4db8e6; /* Light blue active/hover state */
    color: white;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
}

.lightbox-close:hover {
    color: #ccc;
}

#lightbox-caption {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    text-align: center;
    width: 90%;
}

/* Pricing Section */
.pricing {
    background-color: #dae9f7;
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: #e1f0ff; /* More distinct light blue background with less green */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #2a6db5; /* Blue color to match theme */
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #2a6db5; /* Blue color to match theme */
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #3a88c9; /* Blue color to match theme */
    margin: 15px 0;
}

.price span {
    display: block;
    font-size: 2.5rem;
    color: #2a6db5; /* Blue color to match theme */
}

.pricing-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.pricing-card ul li::before {
    content: "✓";
    color: #2a6db5; /* Blue color to match theme */
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pricing-notes {
    background: #e1f0ff; /* More distinct light blue background with less green */
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-notes h3 {
    color: #2a6db5; /* Blue color to match theme */
    margin-bottom: 15px;
}

.pricing-notes ul {
    margin-left: 20px;
}

.pricing-notes ul li {
    margin-bottom: 10px;
    color: #555;
}

.special-offer {
    background: #d0e6ff; /* Light blue with less green nuance */
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    margin-top: 15px;
    font-weight: 600;
    color: #0d5c73;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #d0e6ff 0%, #bbd9f5 100%);
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #e1f0ff; /* More distinct light blue background with less green */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    position: relative;
}

.testimonial-card p::before {
    content: """;
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -15px;
    color: rgba(42, 109, 181, 0.1); /* Blue color to match theme */
    font-family: Georgia, serif;
}

.customer h4 {
    color: #2a6db5; /* Blue color to match theme */
    margin-bottom: 5px;
}

.customer p {
    color: #666;
}

/* FAQ Section */
.faq {
    background-color: #e6f0ff;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: #d0e6ff; /* Light blue with less green nuance */
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a6db5; /* Blue color to match theme */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: #e0f2f1;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #e1f0ff; /* More distinct light blue background with less green */
}

.faq-answer p {
    padding: 20px 0;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact Section */
.contact {
    background-color: #e6f0ff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #e1f0ff; /* More distinct light blue background for contact items */
    padding: 15px;
    border-radius: 8px;
}



.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item i {
    font-size: 1.3rem;
    color: #2a6db5; /* Blue color to match theme */
    margin-top: 6px;
}

.contact-item h3 {
    color: #2a6db5; /* Blue color to match theme */
    margin-bottom: 3px;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}



/* Added styles for social media in contact section */
.contact-social {
    display: flex;
    flex-direction: column;
}

.contact-social h3 {
    color: #2a6db5; /* Blue color to match theme */
    margin-bottom: 20px;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link-large {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: #e1f0ff; /* More distinct light blue background with less green */
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background-color: #2a6db5; /* Blue color to match theme */
    color: white;
    transform: translateX(5px);
}

.social-link-large i {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
    margin-right: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #a3c8e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background-color: #e1f0ff; /* More distinct light blue background with less green */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0d9488;
}

/* Footer */

/* Footer */
.footer {
    background-color: #2a6db5; /* Blue background to match theme */
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Adjust services grid for medium screens */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #e1f0ff; /* More distinct light blue background with less green */
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        transition: 0.3s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Adjust services grid for medium screens */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Mobile responsive for services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Mobile responsive for pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    /* Mobile responsive for contact */
    .contact-container {
        gap: 20px;
    }
    
    .contact-social h3 {
        margin-bottom: 15px;
    }
    
    .social-link-large {
        padding: 10px 15px;
    }
    
    .social-link-large i {
        font-size: 1rem;
        width: 25px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .pagination-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .contact-item {
        gap: 10px;
    }
    
    .contact-item i {
        font-size: 1.1rem;
    }
}/* Arwana Tips Section */
.arwana-tips {
    background-color: #dae9f7;
    padding: 80px 0;
}

.arwana-tips .section-subtitle {
    margin-bottom: 40px;
}

.arwana-tips-content {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.tips-category {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #e1f0ff; /* More distinct light blue background with less green */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tips-category h3 {
    color: #2a6db5; /* Blue color to match theme */
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d0e6ff; /* Blue color to match theme */
    font-size: 1.5rem;
}

.tips-category ul {
    margin-left: 20px;
}

.tips-category ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.tips-category ul li strong {
    color: #2a6db5; /* Blue color to match theme */
}

.contact-cta {
    text-align: center;
    margin-top: 30px;
}

.contact-cta h3 {
    color: #2a6db5; /* Blue color to match theme */
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* Floating WhatsApp Button */  
.whatsapp-float {  
    position: fixed;  
    width: 60px;  
    height: 60px;  
    bottom: 40px;  
    right: 40px;  
    background-color: #25D366;  
    color: white;  
    border-radius: 50%;  
    text-align: center;  
    font-size: 30px;  
    box-shadow: 2px 2px 3px #999;  
    z-index: 1000;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    text-decoration: none;  
    transition: all 0.3s ease;  
}  
.whatsapp-float:hover {  
    transform: scale(1.1);  
    background-color: #128C7E;  
}

/* Mobile fix: Ensure images appear above text in both hero and about sections */
@media (max-width: 992px) {
    /* For about section */
    .about-text {
        order: 2; /* Show text second on mobile */
    }
    
    .about-image {
        order: 1; /* Show image first on mobile */
    }
    
    /* For hero section */
    .hero-content {
        order: 2; /* Show content second on mobile */
    }
    
    .hero-image {
        order: 1; /* Show image first on mobile */
    }
} 
