body{
    font-family:Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    padding: 0%;
    margin: 0%;
    background-color: #f4f4f4;

}
/*Global*/
.container{

    width: 80%;
    margin: auto;
    overflow: hidden;
}

header{
    background: #35424a;
    color: #ffffff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #e8492e 3px solid;
}
header a{
   
    color: #ffffff;
    text-decoration: none;
text-transform: uppercase;
    font-size: 16px;
}
header ul{
    margin: 0px;
    padding: 0px;
}
header li{
    float: left;
    display:inline;
    padding: 0px 20px 0px 20px;
}
header #branding{
    float: left;
}
header #branding h1{
    margin: 0px;

}

header nav{
    float: right;
    margin-top: 10px;
}

header .highlight, header .current a{
    color:#e8491d;
    font-weight:bold
}
header a:hover{
    color:#cccccc;
    font-weight: bold;
}
#showcase
{
    background:url('../images/bg.jpg')no-repeat 0 -400px ;
    min-height: 400px;
    text-align: center;
    color:#ffffff
}
#showcase h1{
    margin-top: 5px;
    font-size: 55px;
    margin-bottom: 10px;
}
#showcase p{
    font-size: 20px;
   
}

#newsletter{
    padding: 10px;
    color:#ffffff;
    background: #35424a;
}
#newsletter h1{
    float:left;
}
#newsletter form{
    float:right;
    margin-top: 15px;
}
#newsletter input[type="email"]{
    padding: 4px;
    height: 28px;
    width: 250px;
}
.subscribebtn{
    height: 38px;
    background: #e8491d;
    border:0px;
    padding-left: 20px;
    padding-right: 20px;
    color:#ffffff;
}
#boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Optional: adds space between boxes */
  
}

#boxes .box {
    flex: 1 1 300px; /* Flexbox properties for responsiveness */
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.box:hover {
    transform: translateY(-5px); /* Add hover effect */
}
@media screen and (max-width: 768px) {
    .box {
        flex-basis: calc(50% - 20px); /* 2 cards per row on smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .box {
        flex-basis: calc(100% - 20px); /* 1 card per row on even smaller screens */
    }
}
.box h2 {
    margin-top: 0;
}

#boxes .box img{
    width: 90px;
}

  .logo img{
	width: 120px;
	height: 70px;
	cursor: pointer;
	transition: all 1s;

}
.read-more-btn {
    display: block;
    margin: 10px auto 0;
    padding: 10px 20px;
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #003f7f;
}
footer {
    background-color: #e8491d;
    color: #fff;
    padding: 5px 0;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
  }

  .footer-section {
    flex: 1;
    margin: 10px;
    text-align: center;
    display: flex;
    align-items: center; /* Center vertically */
  }

  .footer-section.logo img {
    max-width: 150px;
    margin-right: 10px; /* Optional: space between the image and the text */
  }

  .footer-section.contact-info p {
    margin: 5px 0;
  }

  .footer-section.contact-info a {
    color: #fff;
    text-decoration: none;
  }

  .footer-section.contact-info a:hover {
    text-decoration: underline;
  }

  .footer-section.social-media a {
    margin: 0 10px;
    display: inline-block;
  }

  .footer-section.social-media img {
    width: 30px;
    height: 30px;
  }

/* .swiper-container {
    width: 100%;
    padding: 20px 0;
  }
  .swiper-slide {
    background:url('../images/bg.jpg')no-repeat -400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
   overflow: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  .swiper-slide h1 {
    margin-bottom: 20px;
  }
   */