:root {
    --primary-color: #2c3e50;
    --secondary-color: #3E93FC;
    --accent-color: #3498db;
}
       
body{
    overflow-x: hidden;
    font-family: "Open Sans", sans-serif;
}
pre {
    font-family: "Open Sans", 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;
}
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: "Open Sans", 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; 
}

.background-light{
    background: white;
}

.background-dark{
    background: #f8f9fa;
}

.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(--accent-color);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.heading-section h2{
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

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

.button {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    filter: brightness(1.2);
}

.container-padding{
    margin-top:150px; 
    margin-bottom: 50px;
}

/* Adjust padding for smaller devices */
@media (max-width: 768px) {
    .container-padding {
        margin-top:100px; 
        margin-bottom: 100px;
    }
}

.owl-carousel .item {
    background: transparent !important;  /* Remove unwanted background */
    box-shadow: none !important;         /* Remove any shadow */
    border: none !important;             /* Remove any border */
}

.testimonial-card {
	transition: all 0.3s ease;
}

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

.testimonial-card img{
    object-fit:cover;
}
.logo{
    height:40px;
    object-fit:cover;
}
/* Parallax Section */
.parallax-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.parallax-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
}

.parallax-section h1,.parallax-section  p {
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

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