/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(25, 25, 112, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFC107;
}

.logo-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #FFC107;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #FFC107, #1a1a1a);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(55, 48, 163, 0.3) 50%, rgba(30, 27, 75, 0.3) 100%), url('images/FOT.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.3"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.3"/><circle cx="60" cy="10" r="1" fill="white" opacity="0.3"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: twinkle 3s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #FFC107, #FFB300);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #FFC107, #1a1a1a);
    border-radius: 2px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-content > div {
    width: 100%;
    text-align: center;
}

.about-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    display: block;
}

.about-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #cccccc;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: block;
}

.about-text ul {
    list-style: none;
}

.about-text li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #cccccc;
}

.about-text li i {
    margin-right: 15px;
    color: #FFC107;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.about-logo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.5);
    transition: transform 0.3s ease;
    border: 5px solid rgba(255, 193, 7, 0.4);
}

.about-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
}

/* Principles Grid Styles */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.principle-card {
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.8), rgba(138, 43, 226, 0.8));
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.5s ease;
}

.principle-card:hover::before {
    left: 100%;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    border-color: rgba(255, 193, 7, 0.6);
}

.principle-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFC107, #FF8C00);
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
    transition: all 0.3s ease;
}

.principle-card:hover .principle-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.principle-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.principle-card:hover .principle-icon i {
    transform: rotate(360deg);
}

.principle-content h4 {
    color: #FFC107;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-align: center;
}

.principle-content p {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
    opacity: 0.9;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FFC107, #FFB300);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.05);
}

.image-placeholder p {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #000000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonial-image i {
    font-size: 4rem;
    color: #FFC107;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFC107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: transform 0.3s ease;
}

.testimonial-photo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFC107, #FFB300);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFC107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.testimonial-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, #FFB300, #FFC107);
}

.testimonial-avatar i {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.testimonial-author h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #1e1b4b 100%);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-section .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.gallery-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.gallery-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 193, 7, 0.25);
    border-color: rgba(255, 193, 7, 0.4);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-icon i {
    font-size: 4.5rem;
    color: #FFC107;
    text-shadow: 0 0 25px rgba(255, 193, 7, 0.6);
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.4)); }
    100% { filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.8)); }
}

.gallery-content {
    position: relative;
    z-index: 2;
}

.gallery-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    color: #FFC107;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
}

.wisdom-quote {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.05));
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.wisdom-quote i {
    color: #FFC107;
    font-size: 1.2rem;
    margin-right: 0.5rem;
    opacity: 0.8;
}

.wisdom-quote span {
    color: #FFC107;
    font-weight: 600;
    font-size: 1rem;
    font-style: italic;
}

.gallery-footer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
}

.wisdom-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.wisdom-message i {
    color: #FFC107;
    font-size: 2rem;
    animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.wisdom-message p {
    font-size: 1.4rem;
    color: white;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.4);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFC107, #FFB300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.trust-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFC107;
    line-height: 1;
}

.trust-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #FFC107;
    margin-right: 1rem;
    width: 30px;
}

.contact-item span {
    font-size: 1.1rem;
    color: #cccccc;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFC107, #FFB300);
    color: #1a1a1a;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #333;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFC107;
}

.submit-btn {
    background: linear-gradient(45deg, #FFC107, #FFB300);
    color: #1a1a1a;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #FFC107;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFC107;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .about-logo {
        width: 280px;
        height: 280px;
    }
    
    .principles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .principle-card {
        padding: 1.8rem;
        min-height: 180px;
    }
    
    .principle-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }
    
    .principle-icon i {
        font-size: 1.6rem;
    }
    
    .principle-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .principle-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item {
        padding: 2rem;
    }
    
    .gallery-title {
        font-size: 1.6rem;
    }
    
    .gallery-description {
        font-size: 1rem;
    }
    
    .wisdom-message {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wisdom-message p {
        font-size: 1.2rem;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .about-content {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .about-logo {
        width: 220px;
        height: 220px;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .principle-card {
        padding: 1.5rem;
        min-height: 160px;
    }
    
    .principle-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .principle-icon i {
        font-size: 1.3rem;
    }
    
    .principle-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .principle-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .testimonials-grid {
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        padding: 1.5rem;
    }
    
    .gallery-icon i {
        font-size: 3.5rem;
    }
    
    .gallery-title {
        font-size: 1.4rem;
    }
    
    .gallery-description {
        font-size: 0.95rem;
    }
    
    .wisdom-quote {
        padding: 1rem;
    }
    
    .wisdom-quote span {
        font-size: 0.9rem;
    }
    
    .gallery-footer {
        padding: 2rem 1.5rem;
    }
    
    .wisdom-message {
        margin-bottom: 2rem;
    }
    
    .wisdom-message p {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-item {
        padding: 1rem;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .trust-text {
        font-size: 0.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Hover Effects */
.testimonial-card,
.gallery-item,
.about-image .image-placeholder {
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #FFC107, #1a1a1a);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #FFB300, #1a1a1a);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-button a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(45deg, #128C7E, #25D366);
}

.whatsapp-button i {
    font-size: 1.5rem;
    margin-right: 10px;
    animation: whatsappWiggle 1s ease-in-out infinite alternate;
}

.whatsapp-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes whatsappWiggle {
    0% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(5deg);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button a {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .whatsapp-button i {
        font-size: 1.3rem;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button a {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-button i {
        font-size: 1.5rem;
        margin-right: 0;
    }
} 