:root {
    --primary-color: #28346c;
    --secondary-color: #224b8f;
    --light-bg: #f1f5fa;
    --dark-text: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Header Styles */



/* Book Demo button styling */


/* Fixed navbar dropdown positioning */

/* Responsive adjustments */

  /* Improve mobile menu appearance */
 .navbar {
    
    background-color: white;
    height:84px;
}

.navbar-nav .nav-link.active {
  color:var(--primary-color);
  font-weight: bolder;
}

#successToast:not(:first-of-type) {
  display: none;
}

/* Modal enhancements for better UX */
.modal-content {
  border-radius: 12px;
  border: none;
}

.modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Form styling improvements */
#contactForm .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

#contactForm .btn-primary {
  padding: 10px 16px;
  font-weight: 500;
  background-color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
}

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



/* Hero Section */
.hero-section {
    background-color: rgba(235, 242, 251, 1);
    padding: 5rem 0;
    margin-bottom:20px;
}

.hero-title{
    font-size: 2.75rem;
    font-weight: 600;
    font-size: 55px;
    color: rgba(122, 107, 107, 1);
    margin-bottom: 1.5rem;
margin-top: 50px;}
.hero-title span{
    color: rgba(9, 18, 66, 1);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-image img {
    height: auto;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color:rgba(235, 242, 251, 1);
    margin: 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: rgba(122, 107, 107, 1);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color:rgba(38, 50, 56, 1);
    margin-bottom: 3rem;
    font-weight: 400;
    
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width:65;
    height:56;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon.blue {
    background-color: #e8f1ff;
}

.feature-icon.green {
    background-color: #e6f7f5;
}

.feature-icon img {
    width: 65;
    height: 56;
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgba(107, 114, 128, 1);
}

.feature-text {
    font-size: 14px;
    font-weight: 400;
    color:Neutral/Black;
}

/* CTA Section */
.cta-section {
    background-color: rgba(235, 242, 251, 1);
    margin:20px;
}

.cta-title {
    font-size: 36px;
    font-weight: 600;
    color: rgba(122, 107, 107, 1);
    margin-bottom: 1.5rem;
}

.cta-title p{
    color:rgba(113, 113, 113, 1);
    font-size: 14px;
    font-weight: 400;
}
/* Clients Section */
.clients-section {
    padding: 4rem 0;
    background-color:rgba(235, 242, 251, 1);
    margin:20px;
}

.clients-title {
    font-size: 36px;
    font-weight: 600;
    color: rgba(122, 107, 107, 1);
    margin-bottom: 0.5rem;
}

.clients-subtitle {
    font-size: 16px;
    font-weight: 400;
    color:Neutral/Grey;
    margin-bottom: 2rem;
}

.client-logo {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.client-link{
    color:var(--primary-color);

}
.client-logo:hover {
    opacity: 1;
}

/* Testimonial Section */
.testimonial-section {
    padding: 4rem 0;
    background-color: rgba(235, 242, 251, 1);
    margin:20px;
}

.testimonial-label {
    font-size: 16px;
    font-weight: 600;
    color:rgba(113, 113, 113, 1);
    margin-bottom: 0.5rem;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 600;
    color: rgba(11, 25, 86, 1);
    margin-bottom: 0.25rem;
}

.testimonial-company {
    font-size: 16px;
    font-weight: 400;
    color:Neutral/L_Grey;
    margin-bottom: 1.5rem;
}

.testimonial-image img {
    width: 100%;
    border-radius: 10px;
}
.testimonal-logo{
    display: flex;
    justify-content: right;
    gap:20px;
}


/* Collaboration Section */
.collab-section {
    padding: 3rem 0;
    background-color:rgba(235, 242, 251, 1);
    text-align: center;
    
}

.collab-title {
    font-size:  40px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color:var(--primary-color);
    color: #ffffff;
    padding: 50px 0;
}

.footer a, .footer p {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer a:hover {
    color: #ccc;
    text-decoration: underline;
}

.footer h5 {

    font-weight: 600;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

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

.footer .social-icons {
    margin-top: 40px;
}

.footer .social-icons a {
    color: #ffffff;
    margin-right: 15px;
    font-size: 1.2rem;
}

.footer .social-icons a:hover {
    color: #ccc;
}

.footer-logo {
    max-width: 80px;
    justify-content: left;
    margin-bottom: 15px;
}

.copyright {
    font-size: 0.85rem;
    margin-top: 5px;
    margin-left: 10px;
}

.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    color: #fff;
    width: 100%;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: transparent;
    border: none;
    color: #fff;
    padding: 5px 10px;
}
.social-icons {
    display: flex;
    gap: 1rem;
    
    
    margin-top: 1rem;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 3rem;
}

/* Dots pagination */
.carousel-indicators {
    position: static;
    margin-top: 2rem;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
}

/* Responsive adjustments */


    
    