:root {
    --primary-color: #5C6BC0;
    --secondary-color: #C5CAE9;
    --dark-color: #8BC34A;
    --light-color: #F5F5F5;
    --light-bg: #212121;
}

/*:root {*/
/*    --primary-color: #2c3e50;*/
/*    --secondary-color: #3E93FC;*/
/*    --accent-color: #3498db;*/
/*}*/
       
body{
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}
pre {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    overflow-x: auto; /* Enables horizontal scrolling for long lines */
    white-space: pre-wrap; /* Ensures text wraps within container */
    word-wrap: break-word;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Merriweather", serif;
}

textarea{
    resize:none;
}
ul#menulist li {
    display:inline;
}
#c1,#c2,#c3,.carousel-control-prev,.carousel-control-next{
	display:none;
}
.fa-round{
    padding: 5px;
    font-size: 30px;
    text-align: center;
    text-decoration: none;
    color:black;
}
p{
    font-family: "Poppins", sans-serif;
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word; 
}
		
.links{
    font-size:25px;
    border-radius:20px;
    color:black;
    padding:10px;
}
.links:hover {
    font-size:22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.contents{
    font-size:20px;
}

.section-padding{
    padding: 100px 0;
}

/* Adjust padding for smaller devices */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0; /* Reduced padding for smaller devices */
    }
}

.heading-section small{
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: bold;
}

.brand-name{
    font-weight: bold;
    font-size: 25px;
    font-family: "Merriweather", serif;
    color: var(--primary-color);
}

.primary-text{
    color: var(--primary-color);
}

.team-img{
    object-fit:cover;
    aspect-ratio:1/1;
    transition: all 0.5s ease;
}

.team-info{
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}
.team-info:hover .team-img{
    transform: rotateY(180deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.learn-more-btn{
    border: 1px solid var(--primary-color);
    padding: 7px;
    color: var(--primary-color);
}

.learn-more-btn:hover{
    background-color: var(--primary-color);
    color: white;
}

.learn-more{
    background: var(--primary-color);
    padding: 7px;
    color: white;
}

.learn-more:hover{
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: white;
}

.team-social{
    text-align:center;
}

.team-social i{
    margin: 0 10px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.testimonial-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.quote-icon {
    color: #ff6b6b;
}

.testimonial-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    position: static;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #ff6b6b;
}

.carousel-control-prev i,
.carousel-control-next i {
    color: #333;
    font-size: 20px;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    color: white;
}

@media (max-width: 991px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-image {
        margin-top: 30px;
    }
    
    .testimonial-image img {
        height: 300px;
    }
}
.logo{
    height:40px;
    object-fit:cover;
}
.footer-logo{
    height:100px;
    object-fit:cover;
}