

/* General Styles */
:root {
    --primary-color: #FF6B38;
    --text-dark: #333333;
    --bg-light: #F5F8FF;
}

body {
    font-family: 'Arial', sans-serif;
      background: linear-gradient(to bottom, #E8EAF6);
}

.a{
    color: black;
}
/* Header */
header {
    /* background: linear-gradient(to right, #4CAF50, #2e7d32); */
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

header .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header .hero p {
    font-size: 1.2rem;
}

/* Main Section */
main {
    max-width: 1000px;
    margin: auto;
}

/* Feature Section */
.feature-section h2 {
    font-size: 2rem;
    /* color: #4CAF50; */
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

/* Feature Row */
.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.feature-content p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.feature-content ul {
    list-style: none;
    padding-left: 20px;
}

.feature-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.feature-content ul li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 1.2rem;
}



/* Header */
header {
    /* color: white; */
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}



/* Main Section */
main {
    max-width: 1000px;
    margin: auto;
}

/* Feature Section */
.feature-section {
    margin-bottom: 40px;
}

.feature-section h2 {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.feature-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.feature-card p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.feature-card ul {
    list-style: none;
    padding-left: 20px;
}

.feature-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.feature-card ul li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 1.2rem;
}

















/* Navigation */

.col-lg-6 h1{
    color:#b0285f;
}

.col-lg-6 p{
    color:black;
    font-size: 149%;
}
.container1 p{
    color: black;
}
.logo {
    height: 70px;
}

/* Default Button Styles */
.btn {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #333333; /* Dark background */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #555555; /* Slightly lighter dark on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

.btn-dark {
    background-color: #000000; /* Specific dark style */
}

.ms-lg-3 {
    margin-left: 1rem; /* Margin for larger screens */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .btn {
        
        font-size: 14px; /* Smaller font size for mobile */
        padding: 12px 15px; /* Adjust padding for smaller screens */
        width: 100%; /* Full-width button for mobile */
        text-align: center; /* Center-align text */
    }

    .ms-lg-3 {
        margin-left: 0; /* Remove left margin for mobile */
        margin-top: 10px; /* Add top margin for spacing */
    }
    .newsletter-form {
        margin-left: 0;
    }
}
.features {
    text-align: center;
}

h2 {
    font-size: 2rem;
    text-align: center;
}



.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.hero-video {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    cursor: pointer;
}

/* Trusted Brands */
.trusted-brands {
    padding: 3rem 0;
    background: var(--light-color);
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3%;
}

.brand-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}


.brand-logos img:hover {
    opacity: 1;
}

/* Product Features */
.feature-block {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}


.heading{
    padding: 2rem;
}
.feature-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Testimonials */
.testimonials {
    background: #f8f9fa;
    padding: 5rem 0;
}

.testimonial-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Integration Partners */
.integration-partners {
    padding: 3rem 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--primary-color), #3333cc);
    color: var(--light-color);
}


.contact-info p {
    margin: 10px 0;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
}










/* Content Container */
.content-container {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    margin: 20px;
    z-index: 1;
}



@keyframes moveParticles {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50px);
    }
}

/* Floating Circles */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Trusted Brands Section Animation */
.trusted-brands {
    position: relative;
    background: linear-gradient(135deg, #f6f9fc, #eef2f7);
    overflow: hidden;
    padding: 50px 0;
}


/* Content Positioning */
.hero .container,
.trusted-brands .container {
    position: relative;
    z-index: 1;
}

/* Hero Content Animation */
.hero h1 {
    animation: fadeInUp 1s ease-out;
}

.hero p {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}



/* Brand Logos Animation */
.brand-logos img {
    transition: transform 0.3s ease;
    animation: floatUpDown 3s ease-in-out infinite;
}

.brand-logos img:hover {
    transform: scale(1.1);
}






/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-video {
        margin-top: 2rem;
    }
    
    .feature-block {
        text-align: center;
    }
    
    .feature-image {
        margin-bottom: 2rem;
    }
}




/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */



.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* Newsletter Section */






/* Optional: Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #0056b3;
    transform: translateY(-3px);
}
/* Header Styles */
header {
    /* background: #007BFF; */
    color: #fff;
    padding: 1rem;
    text-align: center;
    /* position: sticky; */
    top: 0;
    z-index: 100;
}

header h1 {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: 7%;
}

/* Main Content */
main {
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Styles */
section {
    background: #fff;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Headings */
h2 {
    color: #007BFF;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 3vw, 2rem);
}

h3 {
    color: #0056b3;
    margin: 1rem 0;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
}






/* Mobile-specific styles */
@media screen and (max-width: 768px) {
    main {
        padding: 0.5rem;
    }

    section {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    ul {
        margin-left: 1rem;
    }
    
    /* Increase touch targets for mobile */
    li, a {
        padding: 0.5rem 0;
    }
}

/* Small screens */
@media screen and (max-width: 480px) {
    header {
        padding: 0.8rem;
    }

    section {
        border-radius: 8px;
        padding: 0.8rem;
    }

    h2 {
        margin-bottom: 0.8rem;
    }

    h3 {
        margin: 0.8rem 0;
    }
}

