:root {
    --primary-color: #e60000;
    --primary-dark: #cc0000;
    --primary-light: #ff3333;
    --accent-color: #39B352;
    --accent-light: #87c936;
    --dark-bg: #ffffff;
    --dark-bg-light: #f5f5f5;
    --light-text: #333333;
    --gray-text: #666666;
    --border-color: #dddddd;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--light-text);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}

/* Background Animation - Half Page */
.bg-animation {
    position: fixed;
    top: 0;
    left: 50%; /* Start from the middle of the page */
    width: 50%; /* Only take up half the width */
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.wave-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.05;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 38% 42% 61% 39% / 40% 45% 55% 60%;
    animation: wave 20s infinite linear;
}

.wave:nth-child(2) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    animation: wave 25s infinite linear reverse;
    opacity: 0.3;
}

.wave:nth-child(3) {
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    animation: wave 30s infinite linear;
    opacity: 0.2;
}

@keyframes wave {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.floating-particle {
    position: absolute;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    opacity: 0.05;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(0) translateX(20px) rotate(180deg);
    }
    75% {
        transform: translateY(20px) translateX(10px) rotate(270deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

/* Custom Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;

}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-text);
}

.hero-visual {
    position: absolute;
    
    width: 50%;
    height: 100%;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    opacity: 0.7;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 15s infinite alternate;
}

.hero-shape:nth-child(1) {
    top: 20%;
    right: 20%;
    width: 300px;
    height: 300px;
}

.hero-shape:nth-child(2) {
    top: 50%;
    right: 30%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    animation-delay: -5s;
}

.hero-shape:nth-child(3) {
    top: 30%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    animation-delay: -10s;
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

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

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 80px;
    left: 0;
    height: 3px;
    background-color: var(--primary-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.services-section {
    background-color: var(--dark-bg-light);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--dark-bg);
    border-radius: 10px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

.about-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.image-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: var(--dark-bg-light);
    transition: transform 0.5s ease;
}
.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    
}

.image-container:hover  {
    transform: scale(1.05);
}


.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    padding: 80px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
}

.cta-content p {
    color: white;
}

footer {
    background-color: var(--light-text);
    padding: 80px 0 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #dddddd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #dddddd;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    color: white;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #dddddd;
    font-size: 0.9rem;
}

/* Bootstrap Button Overrides */
.btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 0, 0, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.btn-about {
    background-color: white;
    color: var(--accent-color);
}

.btn-about:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px); 
    color: var(--dark-bg);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-visual {
        opacity: 0.3;
        width: 100%;
    }
    
    /* Adjust background animation for mobile */
    .bg-animation {
        left: 0;
        width: 100%;
        opacity: 0.03; /* Even lower opacity on mobile */
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
}

/* About page */

.page-header {
    background-color: var(--dark-bg-light);
    padding: 120px 0 60px;
    position: relative;
    z-index: 1;
}




.about-content {
    padding: 80px 0;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.about-card {
    background-color: var(--dark-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    height: 100%;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-section {
    background-color: var(--dark-bg-light);
    padding: 80px 0;
}

.team-card {
   
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    background-color: var(--dark-bg);
}

.team-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--dark-bg-light);
    color: var(--light-text);
    transition: var(--transition);
    text-decoration: none;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}



.btn-service {
    background-color: white;
    color: black;
}

.btn-service:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px); 
    color: var(--dark-bg);
}