/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn-custom {
    background: #449C8B;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #077F82;
}

.btn-custom:hover {
    background: #2e6358;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fadeInUp"] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fadeInUp"].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header Styles (Aligned with style.css from index1.php) */
header.sticky-top {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: -10px;
    margin-left: -30px;
}

header .brand-slogan {
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
    margin-left: -25px;
}

.btn-ws {
    background: #449C8B;
    color: #fff;
    width: 150px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.1s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.btn-ws:hover {
    background: rgb(255, 255, 255);
    color: #333;
    border: 1px solid #333;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f7f9 0%, #009688 50%, #1e3c72 100%);
    background-size: 200% 200%;
    animation: gradientAnimation 15s ease infinite;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-section canvas#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(68, 156, 139, 0.3), rgba(7, 127, 130, 0.6));
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* About Section */
.about-section .about-img {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission-section .card-title {
    color: #449C8B;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Passion Section */
.passion-section .stat-number {
    color: #449C8B;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #077F82;
    color: #fff;
    padding: 60px 0;
}

.footer-title {
    font-size: 2rem;
    font-weight: 600;
}

.footer-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #449C8B;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

#backToTop:hover {
    background: #2e6358;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        padding: 150px 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-padding {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    header .brand-name {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        margin-bottom: -10px;
        margin-left: -45px;
    }
    header .brand-slogan {
        font-size: 0.8rem;
        font-weight: 400;
        color: #666;
        margin-left: -41px;
    }
    .webinfo {
        margin-left: -7px;
        width: 50px;
        height: 40px;
    }
}

.get-quote h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px;
}